/* ===========================================================
   About Us page — scoped add-ons.
   Loaded ONLY on /about-us/ (conditional enqueue in functions.php).
   Everything else reuses the global design system in main.css.
   =========================================================== */

/* ---- Banner stats row (sits in the navy .ihero--media banner) ---- */
.about-banner .ab-stats{
  display:flex;
  flex-wrap:wrap;
  gap:14px 34px;
  margin-top:30px;
}
.about-banner .ab-stat{
  display:flex;
  flex-direction:column;
  padding-right:34px;
  border-right:1px solid rgba(255,255,255,.18);
}
.about-banner .ab-stat:last-child{ border-right:0; padding-right:0; }
.about-banner .ab-stat b{
  font-family:var(--serif);
  font-size:2.4rem;
  line-height:1;
  color:#fff;
}
.about-banner .ab-stat span{
  margin-top:6px;
  font-size:.82rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#9fc7f4;
}

/* ---- Mission & Vision cards ---- */
.mv-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:36px;
  text-align:left;
}
.mv-card{
  background:#fff;
  border:1px solid var(--cyan-200);
  border-radius:var(--radius);
  padding:34px 32px;
  box-shadow:0 8px 22px rgba(16,40,80,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}
.mv-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.mv-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border-radius:16px;
  background:var(--cyan-100);
  color:var(--blue);
  margin-bottom:18px;
}
.mv-icon svg{ width:28px; height:28px; }
.mv-card h3{ font-size:1.4rem; margin:0 0 .45em; }
.mv-card p{ margin:0; color:var(--body); }

/* ---- About section: key points as cards on the right (no image) ---- */
.about-points{ display:grid; gap:16px; align-content:center; }
.about-point{
  display:flex;
  gap:16px;
  align-items:center;
  background:var(--cyan-50);
  border:1px solid var(--cyan-200);
  border-radius:var(--radius-sm);
  padding:20px 22px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.about-point:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(16,40,80,.07); }
.about-point__ic{
  flex:0 0 28px;
  width:28px;
  height:28px;
  background:url('../icons/tick.svg') center/contain no-repeat;
}
.about-point p{ margin:0; color:var(--ink); font-weight:500; font-size:1rem; line-height:1.45; }

/* ---- Premium circle-tick bullets: render tick.svg (blue circle + white
        check) as a real icon instead of an alpha mask, which the global
        rule flattens into a solid dot. Scoped to the About page only. ---- */
.checklist li::before{
  flex-basis:22px;
  width:22px;
  height:22px;
  background:transparent;
  -webkit-mask:none;
  mask:none;
  background-image:url('../icons/tick.svg');
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  border-radius:0;
}

/* ---- "Our Promise" — image + connected timeline of value points ---- */
.promise{
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:54px;
  align-items:center;
}
.promise__media img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  object-fit:cover;
}
.promise__list{ position:relative; margin-top:26px; }
.promise__item{ position:relative; display:flex; gap:20px; align-items:flex-start; }
.promise__item + .promise__item{ margin-top:30px; }
.promise__ic{
  position:relative;
  z-index:1;
  flex:0 0 52px;
  width:52px;
  height:52px;
  border-radius:999px;
  background:var(--cyan-100);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
}
.promise__ic svg{ width:24px; height:24px; }
.promise__item h3{
  font-family:var(--sans);
  font-size:1.18rem;
  font-weight:700;
  color:var(--ink);
  margin:8px 0 6px;
}
.promise__item p{ margin:0; color:var(--body); font-size:.95rem; }
.promise-u{
  text-decoration:underline;
  text-decoration-color:var(--blue);
  text-decoration-thickness:3px;
  text-underline-offset:6px;
}
@media(max-width:980px){
  .promise{ grid-template-columns:1fr; gap:30px; }
}

/* ---- Technology: match the media image height to the right-column content.
        The image is absolutely placed so the content column sizes the row, and
        the media cell stretches to that height. Desktop only — mobile keeps
        the natural stacked image. Scoped to the About page. ---- */
@media(min-width:981px){
  .feat{ align-items:stretch; }
  .feat__media img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
  }
}
/* play badge: align the SVG icon with the label */
.feat__media .play{ gap:9px; padding:9px 16px; line-height:1; }
.feat__media .play .play__ic{ width:13px; height:13px; flex:0 0 auto; }

/* ---- Locations: no permanently-active card — the blue treatment applies on
        HOVER only. Shorter "Get Direction" button with more space above it.
        Scoped to the About page. ---- */
.loc{ transition:background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease; }
.loc:hover{
  background:#06A9FF;
  border-color:#06A9FF;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.loc:hover h3,
.loc:hover p{ color:#fff; }
.loc .btn{ margin-top:20px; padding-top:9px; padding-bottom:9px; }
.loc:hover .btn{ background:#fff; color:#06A9FF; border-color:#fff; }

/* ---- Meet Our Providers: no section background. Drop the top padding so it
        doesn't create a doubled empty gap against the (white) Locations
        section above. ---- */
.about-providers{ padding-top:0; }

/* ---- CTA: highlighted, boxed dark-blue container, inset from the edges via
        the .container. Scoped to the About page (the shared cta.php part is
        left untouched for other pages). ---- */
.about-cta-wrap{ background:var(--cyan-50); }
.about-cta{
  background:#0059A6;
  color:#fff;
  border-radius:24px;
  padding:64px 40px;
  text-align:center;
  box-shadow:0 26px 60px -24px rgba(0,89,166,.55);
}
.about-cta .pill{
  background:rgba(255,255,255,.14);
  color:#fff;
  border-color:rgba(255,255,255,.28);
}
.about-cta h2{ color:#fff; }
.about-cta .lead{ color:rgba(255,255,255,.85); margin:0 auto 26px; }
.about-cta__btns{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.about-cta .btn--light{ background:#fff; color:#0059A6; }
.about-cta .btn--light:hover{ background:#e9f2fb; color:#0059A6; }
.about-cta__ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.6); }
.about-cta__ghost:hover{ background:#fff; color:#0059A6; border-color:#fff; }
@media(max-width:640px){
  .about-cta{ padding:44px 22px; }
}

/* ---- Responsive ---- */
@media(max-width:780px){
  .mv-grid{ grid-template-columns:1fr; gap:18px; }
}
@media(max-width:520px){
  .about-banner .ab-stat{ padding-right:22px; }
  .about-banner .ab-stat b{ font-size:2rem; }
  .mv-card{ padding:26px 24px; }
}
