/* ============================================
   ABOUT.HTML — PAGE-SPECIFIC STYLES
   Story, Mission/Vision, Values, Team, Milestones Timeline
   Requires: css/style.css (loaded first)
============================================ */

/* ── STORY SECTION ── */
.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-visual { position: relative; }
.story-img-box {
  background: linear-gradient(135deg, var(--brand-light) 0%, #D0E4FF 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}
.story-icon-big { font-size: 72px; margin-bottom: 20px; }
.story-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800; color: var(--dark);
  margin-bottom: 8px;
}
.story-tagline-sub { font-size: 15px; color: var(--muted); }
.story-badge {
  position: absolute; bottom: -16px; right: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px rgba(10,71,194,0.12);
}
.story-badge-num { font-size: 26px; font-weight: 800; color: var(--brand); }
.story-badge-txt { font-size: 13px; color: var(--muted); line-height: 1.4; }
.story-badge-txt strong { display: block; color: var(--dark); font-size: 14px; }

.story-content p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.story-content p strong { color: var(--dark); font-weight: 700; }
.story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.story-hl { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.story-hl-num { font-size: 28px; font-weight: 800; color: var(--brand); }
.story-hl-txt { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── MISSION VISION PROMISE ── */
.mission { background: var(--bg); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,71,194,0.1); }
.mv-card.featured { background: var(--brand); border-color: var(--brand); }
.mv-icon { font-size: 40px; margin-bottom: 20px; }
.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 12px;
}
.mv-card.featured h3 { color: #fff; }
.mv-card p { font-size: 15px; color: var(--muted); line-height: 1.7; }
.mv-card.featured p { color: rgba(255,255,255,0.82); }
.mv-watermark { position: absolute; bottom: -10px; right: -10px; font-size: 80px; opacity: 0.05; line-height: 1; }

/* ── VALUES ── */
.values { background: var(--white); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px;
  margin-top: 48px;
}
.value-card {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.value-card:hover { border-color: #B9D0FF; box-shadow: 0 8px 24px rgba(10,71,194,0.08); }
.val-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── TEAM ── */
.team { background: var(--bg); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,71,194,0.1); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: #fff;
  font-family: 'Playfair Display', serif;
}
.team-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--brand); font-weight: 600; letter-spacing: 0.3px; margin-bottom: 14px; }
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.team-skills { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.skill-pill {
  font-size: 12px; font-weight: 600;
  background: var(--brand-light); color: var(--brand);
  padding: 4px 12px; border-radius: 100px;
}

/* ── MILESTONES TIMELINE ── */
.milestones { background: var(--dark); }
.milestones .section-label { color: #FFD166; }
.milestones .section-title { color: #fff; }
.milestones .section-sub { color: rgba(255,255,255,0.7); }
.timeline {
  position: relative; margin-top: 56px;
  padding-left: 28px;
  border-left: 2px solid rgba(255,255,255,0.12);
}
.milestone { position: relative; padding: 0 0 48px 32px; }
.milestone:last-child { padding-bottom: 0; }
.milestone::before {
  content: '';
  position: absolute; left: -37px; top: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #FFD166; border: 3px solid var(--dark);
  box-shadow: 0 0 0 2px #FFD166;
}
.milestone-year {
  font-size: 12px; font-weight: 700; color: #FFD166;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px;
}
.milestone h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.milestone p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 560px; }

/* ── RESPONSIVE (page-specific) ── */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .story-highlights { grid-template-columns: 1fr 1fr; }
}
  