/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */

/* 1. About Hero */
.about-hero {
  margin-top: 85px;
  background-color: var(--color-white);
}

.about-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 70px 0;
}

.about-hero__heading {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.3;
  flex: 1;
}

.about-hero__heading .text-blue {
  color: var(--color-primary);
}

.about-hero__line {
  flex-shrink: 0;
  width: 2px;
  height: 155px;
  background-color: var(--color-border);
  margin: 0 10px;
}

.about-hero__desc {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.4;
  flex: 0 0 400px;
}

.about-hero__image {
  width: 100%;
  aspect-ratio: 1512 / 486;
  overflow: hidden;
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: translateY(80px);
  animation: slideUpHeroImage 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

/* 2. Who We Are */
.who-we-are {
  padding: var(--section-pad-y) 0;
  background-color: var(--color-white);
}

.who-we-are__inner {
  display: flex;
  gap: 60px;
  align-items: center;
  background-color: var(--color-bg-light);
  padding: 60px;
  border-radius: var(--radius-xl);
}

.who-we-are__image-wrapper {
  flex: 0 0 45%;
  overflow: hidden;
}

.who-we-are__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-we-are__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.who-we-are__title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  line-height: 1.3;
}

.who-we-are__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.6;
}

/* 3. Stats Banner */
.stats-banner {
  background-color: var(--color-primary);
  padding: 80px 0;
}

.stats-banner__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.stats-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.stats-card__value {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
}

.stats-card__text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-bg-light);
  line-height: 1.4;
}

/* 4. Mission & Vision */
.mission-vision {
  padding: var(--section-pad-y) 0;
  background-color: var(--color-white);
}

.mv-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

.mv-row:last-child {
  margin-bottom: 0;
}

.mv-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mv-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
}

.mv-text {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.6;
}

.mv-image-wrapper {
  flex: 0 0 50%;
  overflow: hidden;
}

.mv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 5. Why Choose Us Grid */
.why-choose-grid {
  padding: var(--section-pad-y) 0;
  background-color: var(--color-bg-light);
}

.wc-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.wc-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wc-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.6;
}

.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wc-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wc-item--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wc-item--text {
  padding: 40px;
  background: transparent;
}

.wc-item__title {
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  color: var(--color-dark-2);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.wc-item__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.4;
}

/* Responsive Overrides */
@media (max-width: 1100px) {
  .about-hero__top {
    flex-direction: column;
    gap: 30px;
  }

  .about-hero__desc {
    flex: none;
    max-width: 100%;
  }

  .about-hero__line {
    display: none;
  }

  .who-we-are__inner,
  .mv-row {
    flex-direction: column;
  }

  .who-we-are__inner {
    padding: 20px;
  }

  .mv-row--reverse {
    flex-direction: column-reverse;
  }

  .stats-banner__inner {
    flex-direction: column;
  }

  .wc-grid {
    grid-template-columns: 1fr;
  }

  .wc-item--image {
    min-height: 300px;
  }

  .wc-item--text {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .about-hero__top {
    padding: 50px 0;
    gap: 24px;
  }

  .about-hero__heading {
    font-size: 34px;
    flex: none;
  }
}