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

/* About Hero */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,215,0,.05);
  top: -150px; right: -100px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-hero-text h1 { color: var(--white); margin-bottom: 16px; }
.about-hero-text h1 span { color: var(--gold); }
.about-hero-text p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.8; }
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-stat-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all var(--transition);
}
.about-stat-box:hover { background: rgba(255,215,0,.1); border-color: rgba(255,215,0,.3); }
.about-stat-box .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.about-stat-box .lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; }

.about-hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.about-img-main img { width: 100%; height: 380px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255,215,0,.4);
}
.about-img-badge .num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.about-img-badge .lbl { font-size: .72rem; font-weight: 700; color: rgba(0,51,102,.7); text-transform: uppercase; }

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
.mv-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mv-card.mission { background: var(--navy); }
.mv-card.vision  { background: var(--gold); }
.mv-card.values  { background: var(--dark); }
.mv-card::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  bottom: -60px; right: -60px;
  background: rgba(255,255,255,.04);
}
.mv-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}
.mission .mv-icon { background: rgba(255,215,0,.15); color: var(--gold); }
.vision .mv-icon  { background: rgba(0,51,102,.15); color: var(--navy); }
.values .mv-icon  { background: rgba(255,215,0,.12); color: var(--gold); }
.mv-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.mission h3, .values h3 { color: var(--white); }
.vision h3  { color: var(--navy); }
.mv-card p  { font-size: .88rem; line-height: 1.7; }
.mission p, .values p { color: rgba(255,255,255,.7); }
.vision p  { color: rgba(0,51,102,.75); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-6px); }
.team-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), #004a8f);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--gold);
  position: relative;
  overflow: hidden;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 20px; }
.team-body h4 { margin-bottom: 4px; }
.team-body .role { font-size: .82rem; color: var(--gold-dk); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.team-body p { font-size: .83rem; color: var(--text-muted); margin-top: 8px; }

/* Achievements Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 30px;
}
.timeline-dot {
  position: absolute;
  left: -38px; top: 4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800;
  box-shadow: 0 0 0 4px rgba(255,215,0,.2);
}
.timeline-year {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-dk);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.timeline-item h5 { color: var(--navy); margin-bottom: 4px; font-size: .95rem; }
.timeline-item p { font-size: .85rem; color: var(--text-muted); }

/* Partners */
.partners-strip {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.partners-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.partner-logo {
  height: 50px;
  opacity: .5;
  filter: grayscale(1);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--text-muted);
  border: 1.5px solid #eee; border-radius: 8px; padding: 8px 20px;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); border-color: var(--gold); color: var(--navy); }

@media (max-width: 1024px) {
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-img { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .about-hero-stats { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
