﻿/* ── About Us page styles ───────────────────────────────── */

/* ─── HERO VARIANT: single-col + CTA buttons ─────────────── */
.about-hero--simple .about-hero-content {
  grid-template-columns: 1fr;
  max-width: 640px;
}
.about-hero-btns {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ─── PROMISE / VISION extras ─────────────────────────────── */
.about-pv-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}
.about-pv-subtitle {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-bottom: 18px;
  margin-top: -8px;
}

/* ─── MISSION extras ──────────────────────────────────────── */
.about-mission-subtitle {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  margin-bottom: 20px;
  margin-top: -16px;
}

/* Light mission list — used inside .about-pv (white bg) */
.about-mission-list--light {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-mission-list--light li {
  font-size: 13.5px;
  font-weight: 500;
  color: #555;
  padding: 12px 0;
  border-bottom: 1px solid rgba(62, 66, 150, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-mission-list--light li:last-child { border-bottom: none; }
.about-mission-list--light li::before {
  content: '•';
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
}

/* ─── PRINCIPAL person block below quote ─────────────────── */
.about-principal-person {
  margin-top: 24px;
}
.about-principal-person-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.about-principal-person-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ─── HERO ───────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-bg .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #2a2e8a;
}
.about-hero-bg .img-wrap img { object-position: center 30%; }
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--blue);
  opacity: 0.72;
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  width: 100%;
}
.about-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.14;
  margin-bottom: 22px;
}
.about-hero-content > p,
.about-hero-col p {
  font-size: 14px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 14px;
}
.about-hero-content > p:last-child,
.about-hero-col p:last-child { margin-bottom: 0; }

/* ─── PROMISE / VISION shared layout ─────────────────────── */
.about-pv {
  padding: 72px 80px;
  background: var(--white);
  display: flex;
  gap: 68px;
  align-items: center;
}

.about-pv-text { flex: 1; }
.about-pv-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-pv-text p {
  font-size: 13.5px;
  line-height: 1.6;
  color: #555;
}

/* Reversed (Vision): keep text left-aligned */
.about-pv--rev .about-pv-text {
  text-align: left;
}

/* 3D image — blue block bottom-right */
.about-img-3d {
  flex: 0 0 380px;
  position: relative;
  padding-right: 28px;
  padding-bottom: 28px;
}
.about-img-3d::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  background: var(--blue);
  border-radius: 14px;
  z-index: 0;
}
.about-img-box {
  position: relative;
  z-index: 2;
  height: 290px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(62, 66, 150, 0.25);
}
.about-img-box .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #c0c3e0;
}
.about-img-box .img-wrap img { object-position: top center; }

/* 3D image — reversed (Vision): blue block bottom-LEFT */
.about-img-3d--rev {
  padding-right: 0;
  padding-left: 28px;
}
.about-img-3d--rev::after {
  right: auto;
  left: 0;
}

/* ─── MISSION ────────────────────────────────────────────── */
.about-mission {
  background: var(--blue);
  padding: 72px 80px;
}
.about-mission h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.2;
}
.about-mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-mission-list li {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-mission-list li:last-child { border-bottom: none; }
.about-mission-list li::before {
  content: '•';
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  line-height: 1;
}

/* ─── VISIONARIES ────────────────────────────────────────── */
.about-visionaries {
  padding: 72px 80px;
  background: var(--white);
}
.about-vis-header { margin-bottom: 36px; }
.about-vis-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.22;
  margin-bottom: 8px;
}
.about-vis-sub {
  font-size: 13px;
  color: #888;
  font-style: italic;
}
.about-vis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 48px;
}
/* 5th card: centered in its own row */
.about-vis-card:nth-child(5) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 24px);
}
.about-vis-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #c8cbe8;
}
.about-vis-img .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #c8cbe8;
}
.about-vis-img .img-wrap img { object-position: top center; }
.about-vis-name {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
}
.about-vis-role {
  font-size: 12px;
  color: #888;
  font-style: italic;
}

/* ─── PRINCIPAL'S QUOTE ──────────────────────────────────── */
.about-principal {
  background: var(--white);
  padding: 64px 80px;
}
.about-principal-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  text-align: left;
  margin-bottom: 24px;
}
/* The blue card */
.about-principal-card {
  background: var(--blue);
  border-radius: 14px;
  padding: 40px 48px;
}
.about-principal-body {
  display: flex;
  gap: 48px;
  align-items: center;
}
.about-principal-photo {
  flex-shrink: 0;
  text-align: center;
}
.about-principal-circle {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 auto 10px;
}
.about-principal-circle .img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.15);
}
.about-principal-circle .img-wrap img { object-position: top center; }
.about-principal-caption {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  text-align: center;
}
.about-principal-quote {
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
}
.about-principal-quote p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}
