/* ════════════════════════════════════════════════
   ABOUT US PAGE — about.css
   Font      : Nunito (loaded in HTML <head>)
   Icons     : Font Awesome 6 (loaded in HTML <head>)
   Prefix    : all custom classes use "about-"
════════════════════════════════════════════════ */

:root {
  --purple:      #7c5cbf;
  --purple-mid:  #9b7fd4;
  --purple-soft: #c4aaee;
  --lavender:    #e8e0f7;
  --lavender-bg: #ede8f8;
  --dark:        #1a1a2e;
  --gray-text:   #6b7280;
  --card-bg:     #f5f2fc;
}

/* ── GLOBAL ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

/* ── CHIP ── */
.about-chip {
  display: inline-block;
  background: var(--lavender);
  color: var(--purple);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid #d8cff0;
}

.about-section-head { text-align: center; margin-bottom: 52px; }
.about-section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; }
.about-section-head p { color: var(--gray-text); font-size: .9rem; max-width: 480px; margin: 10px auto 0; line-height: 1.7; }

/* ── SCROLL REVEAL ── */
.about-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s, transform .6s; }
.about-reveal.visible { opacity: 1; transform: none; }


/* ════════════════════════════════════
   1. HERO
════════════════════════════════════ */
#about-hero {
  margin-top: 75px;
  background: var(--lavender-bg);
  padding: 80px 0 0;
  overflow: hidden;
  min-height: 460px;
  position: relative;
}
.about-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid #e0d8f5; border-radius: 50px;
  padding: 5px 14px; font-size: .75rem; font-weight: 700;
  color: var(--purple); margin-bottom: 20px;
}
.about-hero-tag span { width: 8px; height: 8px; background: #f5c842; border-radius: 50%; }
#about-hero h1 { font-size: clamp(2.2rem, 5vw, 3.3rem); font-weight: 900; line-height: 1.1; }
#about-hero h1 .about-purple { color: var(--purple); }
#about-hero .about-hero-p { font-size: .95rem; color: var(--gray-text); line-height: 1.75; max-width: 430px; margin: 16px 0 28px; }

.about-float-card {
  background: #fff; border-radius: 12px; padding: 10px 16px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(124,92,191,.15); font-size: .8rem; font-weight: 700;
}
.about-float-card .about-ic {
  width: 34px; height: 34px; background: var(--lavender); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: .95rem;
}
.about-float-card .about-sub { color: var(--gray-text); font-size: .72rem; font-weight: 400; }
.about-float-card-abs { position: absolute; top: 14px; right: 14px; }


/* ════════════════════════════════════
   2. OUR STORY
════════════════════════════════════ */
#about-story { padding: 80px 0; background: #fff; }

.about-story-left h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.about-story-left h2 .about-purple { color: var(--purple); }
.about-story-left p { font-size: .9rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 14px; }

.about-founded-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--lavender-bg); border: 1px solid #d8cff0;
  border-radius: 12px; padding: 12px 18px; margin-top: 8px;
}
.about-founded-badge .about-year { font-size: 1.8rem; font-weight: 900; color: var(--purple); line-height: 1; }
.about-founded-badge .about-badge-label { font-size: .78rem; color: var(--gray-text); font-weight: 500; }
.about-founded-badge .about-badge-label strong { display: block; font-size: .9rem; color: var(--dark); font-weight: 700; }

.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.about-story-card {
  background: var(--card-bg); border-radius: 16px; padding: 22px 20px;
  border: 1px solid #ece6f8; transition: box-shadow .25s, transform .25s;
}
.about-story-card:hover { box-shadow: 0 8px 28px rgba(124,92,191,.12); transform: translateY(-3px); }
.about-story-card.about-accent { background: var(--purple); }
.about-story-card .about-s-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--lavender); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 12px;
}
.about-story-card.about-accent .about-s-icon { background: rgba(255,255,255,.18); color: #fff; }
.about-story-card h6 { font-weight: 800; font-size: .9rem; margin-bottom: 4px; }
.about-story-card.about-accent h6 { color: #fff; }
.about-story-card p { font-size: .8rem; color: var(--gray-text); line-height: 1.6; margin: 0; }
.about-story-card.about-accent p { color: rgba(255,255,255,.75); }


/* ════════════════════════════════════
   3. MISSION & VISION
════════════════════════════════════ */
#about-mission { padding: 80px 0; background: var(--lavender-bg); }

.about-mv-card { border-radius: 20px; padding: 40px 34px; height: 100%; }
.about-mv-card.about-dark-card { background: var(--dark); color: #fff; }
.about-mv-card.about-light-card { background: #fff; border: 1px solid #e0d8f5; }

.about-mv-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 18px;
}
.about-dark-card .about-mv-icon { background: rgba(255,255,255,.1); color: var(--purple-soft); }
.about-light-card .about-mv-icon { background: var(--lavender); color: var(--purple); }

.about-mv-label { font-size: .67rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.about-dark-card .about-mv-label { color: var(--purple-soft); }
.about-light-card .about-mv-label { color: var(--purple); }

.about-mv-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 12px; }
.about-mv-card p  { font-size: .87rem; line-height: 1.78; }
.about-dark-card p { color: rgba(255,255,255,.65); }
.about-light-card p { color: var(--gray-text); }

.about-mv-list { list-style: none; padding: 0; margin-top: 16px; }
.about-mv-list li { display: flex; align-items: center; gap: 9px; font-size: .84rem; font-weight: 600; margin-bottom: 9px; }
.about-dark-card .about-mv-list li { color: rgba(255,255,255,.8); }
.about-dark-card .about-mv-list li i { color: var(--purple-soft); }
.about-light-card .about-mv-list li i { color: var(--purple); }


/* ════════════════════════════════════
   4. WHY CHOOSE US
════════════════════════════════════ */
#about-why { padding: 80px 0; background: #fff; }

.about-why-card {
  background: var(--card-bg); border-radius: 16px; padding: 28px 22px;
  height: 100%; border: 1px solid #ece6f8;
  transition: box-shadow .25s, transform .25s;
}
.about-why-card:hover { box-shadow: 0 8px 28px rgba(124,92,191,.12); transform: translateY(-4px); }
.about-why-icon {
  width: 46px; height: 46px; background: var(--lavender); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--purple); margin-bottom: 14px;
  transition: background .2s, color .2s;
}
.about-why-card:hover .about-why-icon { background: var(--purple); color: #fff; }
.about-why-card h6 { font-weight: 800; font-size: .93rem; margin-bottom: 7px; }
.about-why-card p  { font-size: .81rem; color: var(--gray-text); line-height: 1.65; margin: 0; }


/* ════════════════════════════════════
   5. HOW WE WORK
════════════════════════════════════ */
#about-how { padding: 80px 0; background: var(--lavender-bg); }
.about-how-wrap { background: #fff; border-radius: 20px; padding: 52px 40px; }

.about-step-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.about-step-row::before {
  content: '';
  position: absolute; top: 29px;
  left: calc(12.5% + 6px); right: calc(12.5% + 6px);
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--purple-soft) 0, var(--purple-soft) 8px, transparent 8px, transparent 16px);
}
.about-step-item { text-align: center; padding: 0 10px; }
.about-step-circle {
  width: 58px; height: 58px; border-radius: 50%;
  border: 2px solid var(--lavender);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: .9rem; font-weight: 800;
  color: var(--gray-text); background: #fff; position: relative; z-index: 1;
  transition: all .25s;
}
.about-step-item:last-child .about-step-circle { background: var(--dark); color: #fff; border-color: var(--dark); }
.about-step-item:hover .about-step-circle { background: var(--purple); color: #fff; border-color: var(--purple); }
.about-step-item h6 { font-weight: 800; font-size: .88rem; margin-bottom: 5px; }
.about-step-item p  { font-size: .78rem; color: var(--gray-text); line-height: 1.6; }


/* ════════════════════════════════════
   6. CORE VALUES
════════════════════════════════════ */
#about-values { padding: 80px 0; background: #fff; }

.about-value-card {
  border-radius: 16px; padding: 26px 20px;
  border: 1px solid #ece6f8; height: 100%;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.about-value-card:hover { border-color: var(--purple-soft); box-shadow: 0 8px 24px rgba(124,92,191,.1); transform: translateY(-3px); }
.about-value-num { font-size: 1.8rem; font-weight: 900; color: var(--lavender); line-height: 1; margin-bottom: 10px; }
.about-value-card h6 { font-weight: 800; font-size: .93rem; margin-bottom: 7px; }
.about-value-card p  { font-size: .81rem; color: var(--gray-text); line-height: 1.65; margin: 0; }


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media(max-width:991px){
  .about-step-row { grid-template-columns: 1fr 1fr; }
  .about-step-row::before { display: none; }
  .about-step-item { margin-bottom: 20px; }
}
@media(max-width:767px){
  .about-story-grid { grid-template-columns: 1fr; }
  .about-step-row { grid-template-columns: 1fr; }
  .about-how-wrap { padding: 32px 18px; }
}
@media(max-width:575px){
  #about-hero .col-lg-6:first-child { text-align: center; }
  #about-hero .about-hero-p { margin-left: auto; margin-right: auto; }
  .about-hero-cards-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center;
  }
  .about-float-card {
    flex: 1 1 0; min-width: 0;
    font-size: .71rem; padding: 8px 10px; gap: 7px;
  }
  .about-float-card .about-ic { width: 28px; height: 28px; font-size: .8rem; flex-shrink: 0; }
}
