/* ============================================
   About Page Styles
   ============================================ */

/* Page Hero */
.page-hero {
  padding: 180px 0 120px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 122, 0, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 122, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-6);
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-xl);
}

/* About Intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-intro-content .label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-4);
}

.about-intro-content h2 {
  margin-bottom: var(--space-6);
}

.about-intro-content .lead {
  color: var(--color-grey-600);
  margin-bottom: var(--space-6);
}

.about-image-stack {
  position: relative;
  height: 450px;
}

.about-image {
  position: absolute;
  border-radius: var(--radius-xl);
}

.about-image-1 {
  width: 70%;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-image-2 {
  width: 60%;
  height: 250px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.about-stats-card {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-white);
  padding: var(--space-6) var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  text-align: center;
  z-index: 3;
}

.about-stats-card .stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--font-extrabold);
  color: var(--color-vibrant-orange);
  line-height: 1;
}

.about-stats-card .stat-label {
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  font-weight: var(--font-medium);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-grey-200);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: var(--space-12);
  position: relative;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + var(--space-10));
  text-align: right;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + var(--space-10));
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--color-vibrant-orange);
  border: 4px solid var(--color-white);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.timeline-content {
  background: var(--color-white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
}

.timeline-year {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-vibrant-orange);
  margin-bottom: var(--space-2);
}

.timeline-content h4 {
  margin-bottom: var(--space-2);
  color: var(--color-deep-blue);
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--color-grey-600);
}

/* Mission Vision */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.mv-card {
  background: var(--color-white);
  padding: var(--space-10);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-grey-100);
  transition: all var(--duration-normal) var(--ease-out);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.mv-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 122, 0, 0.1) 0%,
    rgba(10, 26, 63, 0.05) 100%
  );
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  color: var(--color-vibrant-orange);
}

.mv-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--color-deep-blue);
}

.mv-card p {
  color: var(--color-grey-600);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: var(--space-2) 0;
  padding-left: var(--space-6);
  position: relative;
  color: var(--color-grey-600);
}

.values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-vibrant-orange);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about-image-stack {
    height: 350px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 140px 0 80px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }

  .timeline-dot {
    left: 20px;
  }
}
