/* ========================================
   ABOUT PAGE - One screen, one topic
   ======================================== */

/* 1. Hero */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 9.5rem 0 4rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 249, 252, 0.75) 0%, rgba(248, 249, 252, 0.65) 100%);
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.about-hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0;
}

/* 2. Our Approach */
.about-section {
  padding: 6rem 0;
  position: relative;
}

.about-approach {
  background: var(--light-bg);
  padding: 6rem 0;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-approach-content {
  padding-right: 2rem;
}

.about-approach .section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 1.25rem;
}

.about-approach-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-weight: 700;
}

.about-approach-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-approach-text:last-of-type {
  margin-bottom: 0;
}

.about-approach-cards-wrapper {
  background: var(--light-bg-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-top: 7rem;
}

.about-approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.about-approach-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0;
  background: transparent;
  border: none;
  transition: var(--transition);
}

.about-approach-card:not(:last-child) {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.about-approach-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-approach-card-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.about-approach-card-content {
  flex: 1;
}

.about-approach-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.about-approach-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

@media (max-width: 900px) {
  .about-approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-approach-content {
    padding-right: 0;
  }

  .about-approach-cards-wrapper {
    margin-top: 0;
    padding: 1.5rem;
  }
}

.about-section .section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

.about-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.about-body-strong {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* 3. Values - two-column with diagonal split */
.about-values-section {
  padding: 0;
  overflow: hidden;
  background: var(--light-bg-alt);
}

.about-values-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-values-content {
  background: var(--light-bg-alt);
  padding: 4rem 2.5rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-values-content > * {
  max-width: 480px;
}

.about-values-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.about-values-slogan {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 2rem;
  line-height: 1.35;
}

.about-values-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.about-value-item:last-child {
  margin-bottom: 0;
}

.about-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 30, 58, 0.12);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 22px;
  height: 22px;
}

.about-value-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.25rem;
}

.about-value-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
}

.about-values-visual {
  position: relative;
  min-height: 320px;
}

.about-values-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 900px) {
  .about-values-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-values-content {
    padding: 3rem 1.5rem;
  }

  .about-values-content > * {
    max-width: none;
  }

  .about-values-visual {
    min-height: 280px;
  }

  .about-values-img {
    clip-path: none;
  }
}

/* 4. Our Story - two-column layout */
.about-story {
  background: var(--light-bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-story-content {
  padding-right: 0.5rem;
}

.about-story-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 1.5rem;
}

.about-story .about-body {
  margin-bottom: 1.25rem;
}

.about-story .about-body:last-child {
  margin-bottom: 0;
}

.about-story-visual {
  position: relative;
}

.about-story-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-content {
    padding-right: 0;
  }
}

/* Story Gallery Carousel */
.about-story-gallery {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
}

.about-story-gallery-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.about-story-gallery-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--light-bg-card);
  color: var(--text-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-story-gallery-arrow:hover:not([aria-disabled="true"]) {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: rgba(196, 30, 58, 0.06);
}

.about-story-gallery-arrow[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
}

.about-story-gallery-viewport {
  flex: 1;
  overflow: hidden;
}

.about-story-gallery-track {
  display: flex;
  transition: transform 0.35s ease;
}

.about-story-gallery-item {
  flex: 0 0 33.333%;
  min-width: 0;
  padding: 0 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .about-story-gallery-item {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .about-story-gallery-item {
    flex: 0 0 100%;
  }
}

.about-story-gallery-item:hover {
  opacity: 0.95;
}

.about-story-gallery-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: 1rem;
}

.about-story-gallery-item:hover .about-story-gallery-img {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-story-gallery-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  text-align: center;
  transition: var(--transition);
}

.about-story-gallery-item:hover .about-story-gallery-title {
  color: var(--primary-red);
}

.about-story-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about-story-gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.about-story-gallery-dot.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

/* Story Gallery Lightbox */
.about-story-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-story-gallery-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-story-gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.about-story-gallery-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-story-gallery-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.about-story-gallery-lightbox-prev {
  left: 1.5rem;
}

.about-story-gallery-lightbox-next {
  right: 1.5rem;
}

.about-story-gallery-lightbox-content {
  text-align: center;
  max-width: 90vw;
  max-height: 90vh;
}

.about-story-gallery-lightbox-img {
  width: 90vw;
  max-width: 1200px;
  height: 70vh;
  max-height: 800px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-story-gallery-lightbox-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .about-story-gallery-lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .about-story-gallery-lightbox-prev {
    left: 0.5rem;
  }

  .about-story-gallery-lightbox-next {
    right: 0.5rem;
  }
}

.about-story-carousel {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.about-carousel-viewport {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--light-bg-alt);
}

.about-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

.about-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--light-bg-alt);
}

.about-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--light-bg-card);
  border-top: 1px solid var(--border-light);
}

.about-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--light-bg);
  color: var(--text-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-carousel-btn:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: rgba(196, 30, 58, 0.06);
}

.about-carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.about-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.about-carousel-dot.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

.about-carousel-caption {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 1rem 1.5rem;
  margin: 0;
  border-top: 1px solid var(--border-light);
}

/* 5. Senior Leadership - carousel + lightbox */
.about-leadership {
  background: var(--light-bg-alt);
  position: relative;
}

.about-leadership-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.about-leadership-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--light-bg-card);
  color: var(--text-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-leadership-arrow:hover:not([aria-disabled="true"]) {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: rgba(196, 30, 58, 0.06);
}

.about-leadership-arrow[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
}

.about-leadership-viewport {
  flex: 1;
  overflow: hidden;
}

.about-leadership-track {
  display: flex;
  transition: transform 0.35s ease;
}

.about-leadership-card {
  flex: 0 0 33.333%;
  min-width: 0;
  text-align: center;
  padding: 1rem 0.75rem;
  cursor: pointer;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .about-leadership-card {
    flex: 0 0 50%;
  }
}

@media (max-width: 600px) {
  .about-leadership-card {
    flex: 0 0 100%;
  }
}

.about-leadership-card:hover {
  opacity: 0.95;
}

.about-leadership-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--light-bg-alt) center/cover no-repeat;
  border: 3px solid var(--border-light);
  transition: var(--transition);
}

.about-leadership-card:hover .about-leadership-photo {
  border-color: var(--primary-red);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.2);
}

.about-leadership-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.2rem;
}

.about-leadership-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.about-leadership-contact {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0.25rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.about-leadership-contact img {
  flex-shrink: 0;
  opacity: 0.7;
}

.about-leadership-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.about-leadership-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.about-leadership-dot.active {
  background: var(--primary-red);
  transform: scale(1.2);
}

/* Lightbox */
.about-leadership-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-leadership-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-leadership-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.about-leadership-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.about-leadership-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.about-leadership-lightbox-prev {
  left: 1.5rem;
}

.about-leadership-lightbox-next {
  right: 1.5rem;
}

.about-leadership-lightbox-content {
  text-align: center;
  max-width: 90vw;
}

.about-leadership-lightbox-img {
  width: 400px;
  height: 400px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--light-bg-alt) center/cover no-repeat;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.about-leadership-lightbox-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.25rem;
}

.about-leadership-lightbox-title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem;
}

.about-leadership-lightbox-contact {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.about-leadership-lightbox-contact img {
  flex-shrink: 0;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

[x-cloak] {
  display: none !important;
}

/* 6. Mission & Vision - diagonal split layout */
.about-mission-vision {
  padding: 0;
  overflow: hidden;
  background: #E8E8E8;
}

.about-mv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.about-mv-content {
  background: #E8E8E8;
  padding: 4rem 3rem 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.about-mv-content > * {
  max-width: 520px;
}

.about-mv-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1A3A5F;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.about-mv-heading:not(:first-child) {
  margin-top: 2.5rem;
}

.about-mv-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 0;
  font-weight: 400;
}

.about-mv-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.about-mv-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 900px) {
  .about-mv-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-mv-content {
    padding: 3rem 2rem;
  }

  .about-mv-content > * {
    max-width: none;
  }

  .about-mv-visual {
    min-height: 400px;
  }

  .about-mv-img {
    clip-path: none;
  }
}

/* 7. CTA (uses .cta from sections.css) */
.about-cta .btn-outline {
  font-size: 1rem;
  padding: 0.875rem 2rem;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 8.5rem 0 3rem;
  }

  .about-section {
    padding: 4rem 0;
  }

  .about-mv-grid {
    grid-template-columns: 1fr;
  }

  .about-leadership-carousel {
    max-width: 100%;
  }

  .about-leadership-lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .about-leadership-lightbox-prev {
    left: 0.5rem;
  }

  .about-leadership-lightbox-next {
    right: 0.5rem;
  }

  .about-leadership-photo {
    width: 140px;
    height: 140px;
  }

  .about-leadership-lightbox-img {
    width: 300px;
    height: 300px;
  }
}
