/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────── */
/* TIMELINE */
/* ─────────────────────────────────────────────────────────────── */

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto var(--space-xl);
  padding: var(--space-md) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--color-gold);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--color-gold);
  border: 4px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--color-gold);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-year {
  text-align: right;
  padding-right: var(--space-lg);
}

.timeline-item:nth-child(even) .timeline-year {
  order: 2;
  text-align: left;
  padding-left: var(--space-lg);
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-year {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  font-family: var(--font-heading);
  padding-top: var(--space-xs);
}

.timeline-content h3 {
  font-size: var(--font-size-h4);
  color: var(--color-navy-dark);
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  color: var(--color-text-medium);
  line-height: 1.6;
}

/* Team Photo */
.team-photo {
  margin-top: var(--space-xl);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.team-photo img {
  width: 100%;
  height: auto;
}

/* ─────────────────────────────────────────────────────────────── */
/* EXPERTISE GRID */
/* ─────────────────────────────────────────────────────────────── */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.service-hexagon {
  text-align: center;
  padding: var(--space-md);
}

.hexagon-large {
  width: 150px;
  height: 150px;
  background: var(--color-gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.hexagon-large:hover {
  transform: rotate(180deg) scale(1.1);
}

.hexagon-large i {
  font-size: 4rem;
  color: var(--color-white);
}

.service-hexagon h4 {
  font-size: var(--font-size-h4);
  color: var(--color-navy-dark);
  margin-bottom: var(--space-xs);
}

.service-hexagon p {
  color: var(--color-text-medium);
  font-size: var(--font-size-small);
}

/* ─────────────────────────────────────────────────────────────── */
/* STATISTICS */
/* ─────────────────────────────────────────────────────────────── */

.statistics-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  border: 3px solid var(--color-gold);
  border-radius: var(--border-radius-card);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  background: var(--color-white);
  transition: var(--transition-smooth);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.stat-value {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: var(--space-xs);
}

.stat-description {
  font-size: var(--font-size-body);
  color: var(--color-navy-dark);
  font-weight: var(--font-weight-semibold);
}

/* ─────────────────────────────────────────────────────────────── */
/* MISSION & VISION */
/* ─────────────────────────────────────────────────────────────── */

.mission-vision {
  background: var(--color-gray-light);
  padding: var(--space-xl) 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card,
.vision-card {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--border-radius-card);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-card {
  background: var(--color-navy-dark);
  color: var(--color-white);
}

.vision-card {
  background: var(--color-gold);
  color: var(--color-navy-dark);
}

.mission-title,
.vision-title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 2;
}

.mission-title {
  color: var(--color-gold);
}

.vision-title {
  color: var(--color-navy-dark);
}

.mission-card p,
.vision-card p {
  font-size: var(--font-size-body);
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* ─────────────────────────────────────────────────────────────── */
/* RESPONSIVE */
/* ─────────────────────────────────────────────────────────────── */

@media (max-width: 1023px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-year,
  .timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding: 0;
    order: 1;
  }

  .timeline-item:nth-child(even) .timeline-content {
    order: 2;
    text-align: left;
  }
}

@media (max-width: 639px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .hexagon-large {
    width: 120px;
    height: 120px;
  }

  .hexagon-large i {
    font-size: 3rem;
  }

  .stat-value {
    font-size: 2.5rem;
  }

  .mission-card,
  .vision-card {
    min-height: 250px;
  }
}
