/* ============================================================
   ABOUT PAGE
   ============================================================ */


/* ── Stats Strip ─────────────────────────────────────────── */
.stats-strip {
  background: var(--wl-surface);
  border-bottom: 1px solid var(--wl-border);
  padding: 40px 0;
}
.stat-item   { text-align: center; }
.stat-number {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--wl-primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label  { font-size: 0.88rem; color: var(--wl-text-muted); font-weight: 500; }

/* ── Story Section ───────────────────────────────────────── */
.about-story { padding: 80px 0; }

.story-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  position: relative;
}
.story-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.story-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--wl-accent);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.88rem;
}

.story-text           { padding-left: 20px; }
.story-text h2        { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.story-text p         { color: var(--wl-text-muted); line-height: 1.8; margin-bottom: 16px; }

.story-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--wl-surface-2);
  border-left: 3px solid var(--wl-accent);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  margin-bottom: 24px;
}
.story-highlight i { color: var(--wl-accent); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.story-highlight p { margin: 0; font-size: 0.92rem; color: var(--wl-text); font-style: italic; }

/* ── Values Section ──────────────────────────────────────── */
.values-section { background: var(--wl-surface-2); padding: 80px 0; }

.value-card {
  background: var(--wl-surface);
  border-radius: 16px;
  border: 1px solid var(--wl-border);
  box-shadow: var(--wl-card-shadow);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}
.value-card:hover { box-shadow: var(--wl-card-shadow-hover); transform: translateY(-3px); }

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.value-icon.navy   { background: rgba(13,59,102,0.1);   color: var(--wl-primary); }
.value-icon.teal   { background: rgba(0,168,204,0.12);  color: var(--wl-secondary); }
.value-icon.orange { background: rgba(244,162,97,0.15); color: var(--wl-accent); }
.value-icon.green  { background: rgba(22,163,74,0.1);   color: #16a34a; }

.value-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--wl-text-muted); line-height: 1.7; margin: 0; }

/* ── Team Section ────────────────────────────────────────── */
.team-section { padding: 80px 0; }

.team-card {
  background: var(--wl-surface);
  border-radius: 16px;
  border: 1px solid var(--wl-border);
  box-shadow: var(--wl-card-shadow);
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: var(--wl-card-shadow-hover); transform: translateY(-3px); }

.team-img  { width: 100%; height: 220px; object-fit: cover; display: block; }
.team-body { padding: 20px 18px 22px; }

.team-name { font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.team-role { font-size: 0.8rem; color: var(--wl-accent); font-weight: 600; margin-bottom: 10px; }
.team-bio  { font-size: 0.82rem; color: var(--wl-text-muted); line-height: 1.6; margin-bottom: 14px; }

.team-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--wl-border);
  color: var(--wl-text-muted);
  font-size: 0.78rem;
  margin: 0 3px;
  transition: all 0.2s;
  text-decoration: none;
}
.team-socials a:hover { background: var(--wl-primary); border-color: var(--wl-primary); color: #fff; }

/* ── Timeline Section ────────────────────────────────────── */
.timeline-section { background: var(--wl-surface-2); padding: 80px 0; }

.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--wl-border);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.tl-item:nth-child(odd)  { flex-direction: row-reverse; }
.tl-content {
  flex: 1;
  background: var(--wl-surface);
  border: 1px solid var(--wl-border);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.tl-item:nth-child(odd) .tl-content { text-align: right; }
.tl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--wl-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 10px;
  box-shadow: 0 0 0 4px var(--wl-surface-2);
}
.tl-year  { font-size: 0.72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--wl-accent); margin-bottom: 4px; }
.tl-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.tl-desc  { font-size: 0.83rem; color: var(--wl-text-muted); line-height: 1.6; margin: 0; }

/* ── About CTA Section ───────────────────────────────────── */
.about-cta-section {
  background: linear-gradient(135deg, var(--wl-primary) 0%, #1a5c8a 100%);
  padding: 72px 0;
  text-align: center;
}
.about-cta-section .section-label { color: rgba(255,255,255,0.6); }
.about-cta-section h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.about-cta-section p  { color: rgba(255,255,255,0.78); margin-bottom: 30px; font-size: 1rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .story-text { padding-left: 0; margin-top: 28px; }
  .timeline::before { left: 20px; }
  .tl-item,
  .tl-item:nth-child(odd) { flex-direction: row; }
  .tl-item:nth-child(odd) .tl-content { text-align: left; }
}
