/* ==========================================================================
   About Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shared Section Title Styles
   -------------------------------------------------------------------------- */

/* Main section titles - 48px */
.pioneers-title,
.historical-section .section-title,
.mission-title,
.values-section .section-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-8);
}

/* Sub-section titles - 36px */
.team-title,
.approach-title,
.social-title,
.vision-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-8);
}

/* --------------------------------------------------------------------------
   About Hero Section
   -------------------------------------------------------------------------- */

.about-hero {
  background-color: var(--color-dark);
  padding-top: calc(var(--space-20) + var(--space-4));
  padding-bottom: var(--space-8);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-hero-content {
  max-width: 520px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.about-hero-subtitle {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-400);
  margin-bottom: var(--space-8);
}

.about-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* ==========================================================================
   Pioneers Section
   ========================================================================== */

.pioneers-section {
  background: linear-gradient(to bottom, var(--color-dark) 0%, #1e293b 40%, #334155 70%, #64748b 100%);
  padding-top: var(--space-10);
  padding-bottom: var(--space-12);
}

.pioneers-title {
  color: var(--color-white);
  text-align: center;
}

.pioneers-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pioneers-content p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-400);
  margin-bottom: var(--space-6);
}

.pioneers-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Historical Highlights (Stats) Section
   ========================================================================== */

.historical-section {
  background: linear-gradient(to bottom, #64748b 0%, #94a3b8 30%, #cbd5e1 60%, #f1f5f9 90%, #ffffff 100%);
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
  text-align: center;
}

.historical-section .section-title {
  color: var(--color-dark);
  margin-bottom: var(--space-12);
}

.historical-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.historical-stat {
  background-color: var(--color-dark);
  padding: var(--space-10) var(--space-6);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-base);
}

.historical-stat:hover {
  transform: translateY(-4px);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
  margin-bottom: var(--space-1);
}

.stat-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Mission Statement Section
   ========================================================================== */

.mission-section {
  background-color: var(--color-dark);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.mission-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: var(--radius-xl);
}

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

.mission-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-300);
}

/* ==========================================================================
   Our Values Section
   ========================================================================== */

.values-section {
  background-color: var(--color-white);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.values-section .section-title {
  color: var(--color-dark);
  margin-bottom: var(--space-12);
  text-align: center;
}

.values-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.values-image {
  display: flex;
  justify-content: center;
}

.values-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

.values-list {
  text-align: left;
}

.value-item {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-gray-200);
}

.value-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.value-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.value-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-500);
}

/* ==========================================================================
   The Team Section
   ========================================================================== */

.team-section {
  background-color: var(--color-white);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.team-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.team-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-xl);
}

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

.team-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
}

/* ==========================================================================
   Our Approach Section
   ========================================================================== */

.approach-section {
  background-color: var(--color-white);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.approach-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-xl);
}

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

.approach-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
}

/* ==========================================================================
   Social Responsibility Section
   ========================================================================== */

.social-section {
  background-color: var(--color-white);
  padding-top: var(--space-10);
  padding-bottom: var(--space-20);
}

.social-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.social-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-xl);
}

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

.social-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
}

/* ==========================================================================
   Vision for the Future Section
   ========================================================================== */

.vision-section {
  background-color: var(--color-white);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.vision-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-xl);
}

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

.vision-text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-gray-600);
}

/* ==========================================================================
   Responsive - Tablet Breakpoint (1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  /* About Hero */
  .about-hero {
    padding-top: calc(var(--space-20) + var(--space-6));
    padding-bottom: var(--space-12);
    min-height: auto;
  }

  .about-hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .about-hero-title {
    font-size: var(--text-4xl);
  }

  .about-hero-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-image img {
    max-width: 400px;
  }

  /* Pioneers */
  .pioneers-section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }

  .pioneers-title {
    font-size: var(--text-4xl);
  }

  /* Historical Stats */
  .historical-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .historical-stats {
    gap: var(--space-6);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  /* Mission, Team, Approach, Social, Vision */
  .mission-content,
  .team-content,
  .approach-content,
  .social-content,
  .vision-content {
    gap: var(--space-8);
  }

  .mission-title,
  .team-title,
  .approach-title,
  .social-title,
  .vision-title {
    font-size: var(--text-3xl);
  }

  .mission-text,
  .team-text,
  .approach-text,
  .social-text,
  .vision-text {
    font-size: var(--text-base);
  }

  /* Values */
  .values-content {
    gap: var(--space-8);
  }

  .values-image img {
    max-width: 400px;
  }

  .value-title {
    font-size: var(--text-3xl);
  }

}

/* ==========================================================================
   Responsive - Mobile Breakpoint (768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* About Hero */
  .about-hero {
    padding-top: calc(var(--space-16) + var(--space-6));
    padding-bottom: var(--space-10);
  }

  .about-hero .container {
    gap: var(--space-8);
  }

  .about-hero-title {
    font-size: var(--text-3xl);
  }

  .about-hero-subtitle {
    font-size: var(--text-base);
  }

  .about-hero-image img {
    max-width: 100%;
  }

  /* Pioneers */
  .pioneers-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .pioneers-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-6);
  }

  .pioneers-content p {
    font-size: var(--text-sm);
  }

  /* Historical Stats */
  .historical-section {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
  }

  .historical-stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 400px;
  }

  .historical-stat {
    padding: var(--space-6) var(--space-4);
  }

  .stat-number {
    font-size: var(--text-2xl);
  }

  .stat-label {
    font-size: var(--text-sm);
  }

  /* Mission, Team, Approach, Social, Vision */
  .mission-section,
  .team-section,
  .approach-section,
  .social-section,
  .vision-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .mission-content,
  .team-content,
  .approach-content,
  .social-content,
  .vision-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .mission-image,
  .team-image,
  .approach-image,
  .social-image,
  .vision-image {
    order: 1;
  }

  .mission-text-content,
  .team-text-content,
  .approach-text-content,
  .social-text-content,
  .vision-text-content {
    order: 2;
    text-align: center;
  }

  .mission-title,
  .team-title,
  .approach-title,
  .social-title,
  .vision-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
  }

  .mission-text,
  .team-text,
  .approach-text,
  .social-text,
  .vision-text {
    font-size: var(--text-sm);
  }

  .mission-image img,
  .team-image img,
  .approach-image img,
  .social-image img,
  .vision-image img {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Values */
  .values-section {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .values-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .values-list {
    order: 2;
  }

  .values-image {
    order: 1;
  }

  .values-image img {
    max-width: 280px;
  }

  .value-item {
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .value-title {
    font-size: var(--text-2xl);
  }

  .value-description {
    font-size: var(--text-sm);
  }

}

/* ==========================================================================
   Responsive - Small Mobile (480px)
   ========================================================================== */

@media (max-width: 480px) {
  /* About Hero */
  .about-hero {
    padding-top: calc(var(--space-12) + var(--space-8));
  }

  .about-hero-title {
    font-size: var(--text-2xl);
  }

  .about-hero-subtitle {
    font-size: var(--text-sm);
  }

  /* Pioneers */
  .pioneers-title {
    font-size: var(--text-2xl);
  }

  /* Historical Stats */
  .historical-stat {
    padding: var(--space-5) var(--space-4);
  }

  .stat-number {
    font-size: var(--text-xl);
  }

  .stat-label {
    font-size: var(--text-xs);
  }

  /* Section titles */
  .mission-title,
  .team-title,
  .approach-title,
  .social-title,
  .vision-title {
    font-size: var(--text-xl);
  }

  .mission-text,
  .team-text,
  .approach-text,
  .social-text,
  .vision-text {
    font-size: var(--text-sm);
  }

  .mission-image img,
  .team-image img,
  .approach-image img,
  .social-image img,
  .vision-image img {
    max-width: 250px;
  }

  /* Values */
  .values-image img {
    max-width: 220px;
  }

  .value-title {
    font-size: var(--text-xl);
  }

  .value-description {
    font-size: var(--text-xs);
  }

}
