/* =========================================================
   Mokpa — stylesheet rebuilt from the Elementor export
   (site-settings.json global kit + templates + content pages)

   Global colours (Elementor kit "elementor-kit-6"):
     ROYAL BLUE  #1B3C73   --e-global-color-065c769   (navbar, footer, hero buttons, headings)
     WARM GOLD   #FFB347   --e-global-color-1d67bee   (accent, hovers, borders, active)
     DEEP ORANGE #CD5C5C   --e-global-color-56f249f   (card / CTA buttons)
     FOREST GREEN#2E8B57   --e-global-color-3cfae8e   (icon-list check icons)
     DARK GREY   #333333   --e-global-color-46119ed   (body text)
     OFF WHITE   #FAF9F6   --e-global-color-3ab0955   (alternating section bg)
     MILK        #FFF4E6   --e-global-color-d6df515
     BEIGE       #FFF7F0   --e-global-color-45f80b8
     OVERLAY     #1B3C7399 --e-global-color-cff1ecd   (navy @ 60% — hero / section image overlay)
   Typography: Poppins everywhere; navigation menu = Montserrat 18px / 600.
   ========================================================= */

:root {
  --navy: #1B3C73;
  --navy-strong: #1B3C73F0;
  --gold: #FFB347;
  --gold-dark: #f0a132;
  --rust: #CD5C5C;
  --rust-dark: #c04a4a;
  --green: #2E8B57;
  --grey: #333333;
  --white: #FFFFFF;
  --offwhite: #FAF9F6;
  --milk: #FFF4E6;
  --beige: #FFF7F0;

  --overlay: rgba(27, 60, 115, .6);          /* #1B3C7399 */
  --overlay-strong: rgba(27, 60, 115, .94);  /* #1B3C73F0 */

  --line: #e4e6ec;
  --muted: #6b7280;

  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-nav: "Montserrat", "Poppins", system-ui, sans-serif;

  --header-h: 84px;
  --maxw: 1200px;
  --radius-btn: 10px;   /* hero buttons */
  --radius-btn-sm: 6px; /* card / CTA buttons */
  --radius-card: 15px;  /* Elementor image_border_radius */

  --shadow-sm: 0 4px 14px rgba(27, 60, 115, .08);
  --shadow: 0 16px 40px rgba(27, 60, 115, .12);
  --shadow-lg: 0 28px 60px rgba(27, 60, 115, .18);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* stop flex / grid children from refusing to shrink (min-width/height:auto) */
.split > *, .carousel-track > *, .btn-row > *, .header-inner > *,
.approach-band > *, .contact-grid > *, .footer-grid > *, .vm-grid > * { min-width: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.7;
  color: var(--grey);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.22;
  font-weight: 600;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(32px, 5vw, 60px); }
h2 { font-size: clamp(24px, 4vw, 40px); }
h3 { font-size: clamp(18px, 3vw, 25px); }
h4 { font-size: clamp(1.05rem, 1.6vw, 20px); }

p { max-width: 68ch; overflow-wrap: break-word; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(52px, 8vw, 96px) 0; }
.section--pale { background: var(--offwhite); }
.section--cream { background: var(--beige); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, .9); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.lead { font-size: clamp(1.05rem, 1.6vw, 20px); color: var(--grey); }
.section--navy .lead { color: rgba(255, 255, 255, .9); }

.accent-bar { width: 64px; height: 4px; border-radius: 2px; background: var(--gold); margin: 18px 0 0; }
.center .accent-bar { margin-left: auto; margin-right: auto; }

.narrow { max-width: 780px; margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ---------- Buttons ----------
   Hero buttons (Elementor global): bg #1B3C73, white, radius 10, 20px, pad 15.
   Card / CTA buttons: bg #CD5C5C, white, gold border, radius 5-6.
   All hover: bg #FFB347, text #1B3C73.
*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 26px;
  min-height: 44px;
  border-radius: var(--radius-btn-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

/* Primary = hero style: navy fill, 10px radius, larger text */
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  border-radius: var(--radius-btn);
  font-size: 1.05rem;
  padding: 15px 28px;
}
.btn-primary:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Card / CTA button: deep-orange fill, gold border */
.btn-amber {
  background: var(--rust);
  color: #fff;
  border-color: var(--gold);
}
.btn-amber:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* On dark bands: transparent, gold outline */
.btn-outline,
.btn-ghost-light {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover,
.btn-ghost-light:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.center .btn-row { justify-content: center; }

/* ---------- Header / Nav (navy bar, Montserrat menu) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 26px rgba(15, 23, 42, .28); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  color: #fff;
}
.brand:hover { color: #fff; }
.brand .nav-logo {
  height: 52px;
  width: auto;
  /* the export logo (ChatGPT-Image…png) is a transparent mark in light grey */
  filter: brightness(0) invert(1);
}
.brand--light { color: #fff; }
.brand--light:hover { color: #fff; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
  position: fixed;
  left: 0; right: 0;
  top: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 22px 44px rgba(15, 23, 42, .38);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  transform: translateY(-135%);
  transition: transform .32s var(--ease);
}
.primary-nav.is-open { transform: translateY(0); }

.nav-list { list-style: none; display: flex; flex-direction: column; padding: 8px 16px 20px; }
.nav-list > li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.nav-list > li:last-child { border-bottom: 0; }

.nav-list a, .nav-list .nav-parent {
  display: block;
  padding: 14px 6px;
  font-family: var(--font-nav);
  font-weight: 600;
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
}
.nav-list a:hover { color: #fff; }
.nav-list a.active {
  color: var(--gold);
  box-shadow: inset 0 -3px 0 var(--green);
}

.has-dropdown { position: relative; }
.has-dropdown .nav-parent-row { display: flex; align-items: center; justify-content: space-between; }
.has-dropdown .nav-parent-row > a { flex: 1; }

.caret {
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
}
.caret svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.has-dropdown.open .caret svg { transform: rotate(180deg); }

.submenu {
  list-style: none;
  display: none;
  padding: 4px 0 12px 14px;
  border-left: 2px solid var(--gold);
  margin: 0 0 10px 6px;
}
.has-dropdown.open .submenu { display: block; }
.submenu a { display: flex; align-items: center; min-height: 44px; padding: 8px 6px; font-family: var(--font-nav); font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, .78); }
.submenu a.active { color: var(--gold); font-weight: 600; box-shadow: none; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }

  .primary-nav {
    position: static;
    transform: none;
    max-height: none;
    overflow: visible;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav-list { flex-direction: row; align-items: center; gap: 0; padding: 0; }
  .nav-list > li { border: 0; }
  .nav-list a, .nav-list .nav-parent { padding: 30px 13px; }
}
@media (min-width: 1120px) {
  .nav-list a, .nav-list .nav-parent { padding: 30px 16px; }
}
@media (min-width: 960px) {
  .nav-list > li > a:hover,
  .has-dropdown:hover > .nav-parent-row > a { color: #fff; background: rgba(255, 255, 255, .07); }
  .nav-list a.active { box-shadow: inset 0 -3px 0 var(--green); }

  .has-dropdown .nav-parent-row { display: block; }
  .caret { display: none; }

  /* Services dropdown — navy #1B3C73, white inactive, gold active, hover, clean shadow */
  .submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, .14);
    border-top: 3px solid var(--gold);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 20px 48px rgba(10, 20, 45, .42);
    padding: 8px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .has-dropdown:hover .submenu,
  .has-dropdown:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .submenu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
  .submenu a { border-radius: 5px; color: rgba(255, 255, 255, .92); padding: 12px 14px; font-size: 15px; }
  .submenu a:hover { background: rgba(255, 255, 255, .06); color: var(--gold); }
  .submenu a.active { color: var(--gold); font-weight: 600; box-shadow: none; }
}

/* ---------- Hero slider (Elementor nested-carousel: 1 slide shown, 3s autoplay, navy 60% overlay) ---------- */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: clamp(520px, 88vh, 820px);
  display: flex;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s linear, visibility .4s;   /* Elementor "speed": 400 */
  /* navy overlay reduced 60% -> 35% (#1B3C7359) so faces stay visible */
  background-image: linear-gradient(rgba(27, 60, 115, .35), rgba(27, 60, 115, .35)), var(--bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide > .container { width: 100%; }

.hero-slide-inner { position: relative; z-index: 2; max-width: 720px; }
.hero-slide .eyebrow { text-shadow: 0 1px 8px rgba(12, 24, 48, .5); }
.hero-slide h1 { color: #fff; font-weight: 600; text-shadow: 0 2px 14px rgba(12, 24, 48, .6); }
.hero-slide p {
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 20px);
  font-weight: 400;
  margin-top: 20px;
  max-width: 40ch;
  text-shadow: 0 2px 12px rgba(12, 24, 48, .6);
}
.hero-slide .btn { margin-top: 30px; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  cursor: pointer;
  z-index: 6;
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
  padding-bottom: 3px;
  transition: background .2s var(--ease);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}
.hero-dots button {
  position: relative;
  width: 15px;               /* Elementor dots_size 15 */
  height: 15px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  padding: 0;
  transition: background .2s var(--ease), width .2s var(--ease);
}
.hero-dots button.is-active { background: var(--gold); width: 34px; border-radius: 8px; }

@media (max-width: 640px) {
  .hero-slider { min-height: clamp(460px, 86vh, 620px); }
  .hero-arrow { top: auto; bottom: 16px; transform: none; width: 40px; height: 40px; font-size: 22px; }
  .hero-arrow:hover { transform: none; }
  .hero-prev { left: 14px; }
  .hero-next { right: 14px; }
  .hero-dots { bottom: 34px; }
}

/* ---------- Page hero (interior pages: navy image + strong navy overlay) ---------- */
.page-hero {
  color: #fff;
  background: linear-gradient(160deg, var(--navy), #14305c 78%);
  text-align: center;
}
/* inner-page hero eyebrows are white (only the index hero slider keeps gold) */
.page-hero .eyebrow { color: #fff; }
.page-hero.has-photo {
  background-image: linear-gradient(var(--overlay-strong), var(--overlay-strong)), var(--photo);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* About hero — original element 923d84c: AGZ9UKQ.jpg, ::before overlay = #1B3C7399 (navy 60%), position center center */
.page-hero.about-hero.has-photo {
  background-image: linear-gradient(rgba(27, 60, 115, .6), rgba(27, 60, 115, .6)), var(--photo);
  background-position: center center;
}
.page-hero.about-hero .eyebrow { text-shadow: 0 1px 8px rgba(12, 24, 48, .45); }
.page-hero.about-hero h1 { text-shadow: 0 2px 14px rgba(12, 24, 48, .5); }

/* Service-detail hero — very light overlay, photo clearly visible; NO eyebrow, NO button.
   Heading = service name, then a thin divider, then the tagline. */
.page-hero.hero-soft {
  min-height: 520px;
  display: flex;
  align-items: center;
}
.page-hero.hero-soft.has-photo {
  background-image: linear-gradient(rgba(27, 60, 115, .24), rgba(27, 60, 115, .24)), var(--photo);
  background-position: center center;
}
.page-hero.hero-soft .page-hero-inner { width: 100%; }
.page-hero.hero-soft h1 {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .8), 0 3px 12px rgba(0, 0, 0, .6), 0 6px 34px rgba(0, 0, 0, .45);
}
.page-hero.hero-soft .hero-sub {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 18px);
  font-weight: 400;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .85), 0 2px 10px rgba(0, 0, 0, .7), 0 4px 24px rgba(0, 0, 0, .5);
}
.hero-divider {
  display: block;
  width: 210px; height: 0;
  border-top: 1px solid rgba(255, 255, 255, .55);
  margin: 18px auto;
  position: relative;
}
.hero-divider::before, .hero-divider::after {
  content: "";
  position: absolute; top: -3.5px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
}
.hero-divider::before { left: 0; }
.hero-divider::after { right: 0; }

/* wide hero subtext (Services overview page) */
.page-hero .hero-sub.hero-sub--wide { max-width: 1040px; margin: 6px auto 0; }
.page-hero.hero-soft .page-hero-inner:has(.hero-sub--wide) { max-width: 1100px; }

/* centered section title used across service pages */
.sec-title { text-align: center; color: var(--navy); font-weight: 600; font-size: clamp(24px, 4vw, 40px); }
.sec-head-c { text-align: center; max-width: 820px; margin: 0 auto 40px; }
.sec-head-c .sec-sub { margin-top: 14px; color: var(--muted); font-size: .95rem; }

/* Service overview — white bg, image LEFT, heading + para + green checklist + rust button RIGHT */
.svc-overview .split { align-items: center; }
.svc-overview h2 {
  font-family: var(--font-nav);
  font-size: clamp(1.25rem, 2.3vw, 27px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.svc-overview .ov-para { margin-top: 16px; color: var(--grey); font-size: .98rem; }
.svc-overview .check-list { margin-top: 22px; }
.svc-overview .btn { margin-top: 26px; }
.svc-overview .feature-figure img { aspect-ratio: 3 / 2; }

/* Home "Our Approach" — deep-orange #CD5C5C panel, image LEFT, white copy RIGHT */
.approach-band {
  margin-top: 40px;
  background: var(--rust);
  color: #fff;
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 44px);
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}
@media (min-width: 860px) { .approach-band { grid-template-columns: 0.85fr 1.15fr; } }
.approach-band p { color: #fff; }
.approach-band .check-list { margin-top: 16px; gap: 14px 22px; }
.approach-band .check-list li { color: #fff; font-size: .95rem; }
.approach-band .btn { margin-top: 22px; background: #fff; color: var(--rust); border-color: #fff; }
.approach-band .btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.approach-band .feature-figure { box-shadow: 0 20px 44px rgba(0, 0, 0, .25); align-self: stretch; }
.approach-band .feature-figure img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; aspect-ratio: auto; }

/* carousel card with title only (Youth "What's Included") */
.carousel-item .card > h3:last-child { padding-bottom: 4px; }

/* Youth "What's Included" — green-bordered cards; navy fill only on hover */
.whats-carousel .carousel-item .card {
  border: 1.5px solid var(--green);
  transition: background .3s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whats-carousel .carousel-item .card h3 { color: var(--navy); padding-bottom: 26px; transition: color .3s var(--ease); }
.whats-carousel .carousel-item.is-center .card { border-color: var(--green); }
.whats-carousel .carousel-item .card:hover,
.whats-carousel .carousel-item .card:focus-within { background: var(--navy); border-color: var(--navy); }
.whats-carousel .carousel-item .card:hover h3,
.whats-carousel .carousel-item .card:focus-within h3 { color: #fff; }

/* full-width navy CTA band (About "Let's sit at the mat together") */
.cta-fullwidth { text-align: center; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.cta-fullwidth h2 { color: #fff; }
.cta-fullwidth p { color: rgba(255, 255, 255, .9); margin: 12px auto 0; }
.cta-fullwidth .btn-row { justify-content: center; margin-top: 26px; }

@property --pct { syntax: "<number>"; inherits: true; initial-value: 0; }

/* Youth donut / progress-circle stats */
.donut-row { display: grid; gap: 34px 24px; grid-template-columns: 1fr; justify-items: center; }
@media (min-width: 560px) { .donut-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .donut-row { grid-template-columns: repeat(3, 1fr); } }
.donut {
  --size: 190px;
  --pct: 0;
  width: var(--size);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.donut::before {
  content: "";
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background:
    radial-gradient(closest-side, var(--navy) 78%, transparent 79%),
    conic-gradient(var(--gold) calc(var(--pct) * 1%), rgba(27, 60, 115, .16) 0);
}
.donut-num {
  position: absolute;
  top: calc(var(--size) / 2);
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.8rem;
}
.donut p { margin-top: 16px; max-width: 24ch; text-align: center; color: var(--grey); font-size: .92rem; }

.youth-band { padding: 40px 0; }
.youth-band .btn-row { justify-content: center; margin: 0; }

/* ---------- Small-screen hardening ---------- */
@media (max-width: 700px) {
  /* carousel: 1 card per view, arrows stay usable in a slim gutter */
  .carousel { padding: 0 46px; overflow: visible; }
  .carousel-viewport { overflow: hidden; }
  .carousel-track { gap: 16px; }
  .carousel-arrow { width: 44px; height: 44px; font-size: 20px; top: 38%; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .hero-arrow { width: 40px; height: 40px; font-size: 20px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .approach-band { padding: 22px; }
  .cta-band { padding: 28px 20px; }
  .btn { padding: 13px 20px; font-size: .95rem; }
  .btn-primary { padding: 14px 22px; font-size: 1rem; }
}

/* ---------- Mobile: full-width stacked buttons, single-column grids ---------- */
@media (max-width: 640px) {
  .btn-row { flex-direction: column; gap: 12px; align-items: stretch; margin-top: 24px; }
  .btn-row > .btn,
  .split > div > .btn,
  .svc-overview .btn,
  .about-presence .btn,
  .cta-fullwidth .btn,
  .contact-form .btn,
  .footer-talk {
    width: 100%;
    justify-content: center;
  }
  .center .btn-row, .about-band .btn-row { align-items: stretch; }
  /* keep the carousel card CTA inside its padded card */
  .carousel-item .card .btn { width: auto; }

  .split { gap: 28px; }
  .page-hero { min-height: 400px; display: flex; align-items: center; }
  .page-hero-inner { padding: 44px 0; width: 100%; }
  .hero-slide h1 { font-size: clamp(28px, 8vw, 34px); }
  .hero-slide p { font-size: clamp(15px, 4vw, 17px); }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .footer-grid { padding-left: 18px; padding-right: 18px; }
  .hero-slide-inner h1, .page-hero h1 { overflow-wrap: break-word; }
  .donut { --size: 168px; }
}
.page-hero-inner { padding: clamp(60px, 10vw, 120px) 0; max-width: 780px; margin: 0 auto; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, .92); margin: 18px auto 0; font-size: clamp(1.02rem, 1.6vw, 20px); }
.page-hero .btn-row { justify-content: center; }

/* ================= About page — cloned from mokpa.com content/page/843 ================= */

/* Vision & Mission — full-bleed image + light warm rose overlay (original f296b03: microsoft-365…jpg) */
.about-band {
  position: relative;
  color: #fff;
  background-image: linear-gradient(rgba(205, 92, 92, 0.25), rgba(205, 92, 92, 0.25)), var(--photo);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.about-band h2, .about-band h3 { color: #fff; }
/* single centered column: Our Vision, gap, Our Mission, then buttons below */
.vm-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.vm-grid h3 {
  font-size: clamp(1.6rem, 3vw, 40px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(6, 14, 30, .95), 0 2px 10px rgba(6, 14, 30, .9), 0 4px 26px rgba(6, 14, 30, .8);
}
.vm-grid p {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 20px);
  max-width: 760px;
  margin: 0 auto;
  text-shadow: 0 1px 3px rgba(6, 14, 30, .95), 0 2px 10px rgba(6, 14, 30, .9), 0 3px 20px rgba(6, 14, 30, .8);
}
.about-band .btn-row { display: flex; justify-content: center; width: 100%; margin-top: 44px; }

/* Our Presence & Promise — navy section, gold arrow bullets (original 536ae21) */
.arrow-list { list-style: none; display: grid; gap: 19px; margin-top: 18px; }
.arrow-list li {
  position: relative;
  padding-left: 2.2rem;
  color: #fff;
  font-size: clamp(.98rem, 1.4vw, 1.05rem);
}
.arrow-list li svg {
  position: absolute;
  left: 0; top: .15em;
  width: 1.35rem; height: 1.35rem;
  color: var(--gold);
}
.about-presence h3 { font-size: clamp(1.5rem, 2.6vw, 35px); font-weight: 600; color: #fff; }
.about-presence p + h3 { margin-top: 28px; }
.about-presence p { color: rgba(255, 255, 255, .92); }
.about-presence .btn { margin-top: 28px; }

/* Core Values — off-white bg, 2-col icon-box grid (original 6aeac9d, primary_color #1B3C73) */
.values-head { text-align: center; margin-bottom: 44px; }
.values-head h2 { font-size: clamp(1.7rem, 3.4vw, 40px); font-weight: 600; color: var(--navy); }
.values-grid { display: grid; gap: 34px 40px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .values-grid { grid-template-columns: 1fr 1fr; } }
.value-box { display: flex; gap: 18px; align-items: flex-start; }
.value-box .v-icon {
  flex: none;
  color: var(--navy);
  display: grid; place-items: center;
  margin-top: 2px;
}
.value-box .v-icon svg { width: 40px; height: 40px; }
.value-box h3 { font-size: clamp(1.15rem, 1.9vw, 25px); font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.value-box p { font-size: 15px; color: var(--grey); max-width: 42ch; }

/* ---------- Generic content blocks ---------- */
.split { display: grid; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.1fr .9fr; }
}

.media-card {
  border-radius: var(--radius-card);
  background: linear-gradient(155deg, var(--navy), #2a5090);
  color: #fff;
  padding: clamp(28px, 5vw, 46px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.media-card::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255, 179, 71, .28);
}
.media-card h3 { color: #fff; position: relative; }
.media-card p { color: rgba(255, 255, 255, .88); position: relative; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: 1fr; }
.grid.cols-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid.cols-2, .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(27, 60, 115, .08);
  color: var(--navy);
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--grey); font-size: .98rem; flex: 1; }

.card-link {
  margin-top: 18px;
  min-height: 44px;
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy);
}
.card-link:hover { color: var(--gold-dark); }
.card-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

.value-card { text-align: left; }
.value-card .card-icon { background: rgba(255, 179, 71, .22); color: var(--navy); }

/* navy CTA card */
.card--cta { background: var(--navy); border-color: var(--navy); justify-content: center; color: #fff; }
.card--cta h3 { color: #fff; }
.card--cta p { color: rgba(255, 255, 255, .85); flex: 0 0 auto; }

/* ---------- Services carousel (Elementor nested-carousel: 3 shown, 12px dots) ---------- */
.carousel { position: relative; padding: 0; }
@media (min-width: 700px) { .carousel { padding: 0 72px; } }   /* gutter so arrows clear the cards */
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.carousel-item { flex: 0 0 100%; min-width: 0; }
@media (min-width: 700px) { .carousel-item { flex-basis: calc((100% - 24px) / 2); } }
@media (min-width: 1000px) { .carousel-item { flex-basis: calc((100% - 48px) / 3); } }
.carousel-item .card { height: 100%; padding: 0 0 26px; overflow: hidden; }
.carousel-item .card-media { margin: 0 0 18px; border-radius: 10px 10px 0 0; aspect-ratio: 16 / 10; }
.carousel-item .card h3,
.carousel-item .card p { padding: 0 24px; }
.carousel-item .card .btn { margin: 18px 24px 0; align-self: flex-start; }
.carousel-item .card p { flex: 1; }
/* featured centre card */
.carousel-item.is-center .card {
  box-shadow: 0 26px 50px rgba(27, 60, 115, .22);
  border-color: #cfe0f4;
  transform: translateY(-8px);
}
.carousel-item.is-center .card .btn { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.carousel-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 4;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  padding-bottom: 3px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.carousel-arrow:hover { background: var(--gold); color: var(--navy); }
.carousel-arrow[disabled] { opacity: .35; cursor: default; }
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
@media (min-width: 1280px) { .carousel-prev { left: 10px; } .carousel-next { right: 10px; } }

.carousel-dots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.carousel-dots button {
  position: relative;
  width: 12px;              /* Elementor dots_size 12 */
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #c9cfdc;
  cursor: pointer;
  padding: 0;
  transition: background .2s var(--ease), width .2s var(--ease);
}
/* expand tap target to 44px without changing the visible dot */
.carousel-dots button::after,
.hero-dots button::after { content: ""; position: absolute; inset: -16px; }
.carousel-dots button.is-active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ---------- Check lists (Elementor icon-list: forest-green chevron icons) ---------- */
.check-list { list-style: none; display: grid; gap: 12px; }
.check-list.two-col { grid-template-columns: 1fr; }
@media (min-width: 700px) { .check-list.two-col { grid-template-columns: 1fr 1fr; } }

.check-list li { position: relative; padding-left: 2.1rem; color: var(--grey); font-size: .98rem; }
/* Elementor fas fa-chevron-circle-right — solid green circle + white ">" */
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .12em;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: var(--green);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: .5rem; top: .42em;
  width: .34rem; height: .34rem;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
.section--navy .check-list li { color: rgba(255, 255, 255, .92); }
/* two-column checklist used inside split sections */
.check-list.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 560px) { .check-list.cols-2 { grid-template-columns: 1fr 1fr; column-gap: 20px; } }
.check-list.cols-2 li { padding-left: 1.9rem; font-size: .93rem; }
.check-list.cols-2 li::before { width: 1.25rem; height: 1.25rem; }
.check-list.cols-2 li::after { left: .45rem; }

/* feature list inside white panel */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow-sm);
}

/* ---------- Stats ---------- */
.stats { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.stat strong { display: block; font-family: var(--font-body); font-size: 1.7rem; color: var(--navy); font-weight: 600; margin-bottom: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #24488a);
  color: #fff;
  border-radius: var(--radius-card);
  padding: clamp(32px, 6vw, 58px);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .9); margin: 12px auto 0; }
.cta-band .btn-row { justify-content: center; margin-top: 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 34px; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* navy contact section */
.contact-intro {
  color: #fff;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 20px);
  max-width: 34ch;
  line-height: 1.55;
}
.contact-lines { list-style: none; display: grid; gap: 16px; margin: 26px 0 40px; }
.contact-lines li { display: flex; align-items: center; gap: 14px; color: #fff; font-size: .98rem; }
.contact-lines a { color: #fff; }
.contact-lines a:hover { color: var(--gold); }
.cl-ico {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .5);
  display: grid; place-items: center;
}
.cl-ico svg { width: 17px; height: 17px; color: #fff; }

.contact-form-map { display: grid; gap: 30px; align-items: start; }
@media (min-width: 900px) { .contact-form-map { grid-template-columns: 1.05fr .95fr; } }
.contact-form-map .contact-form { gap: 16px; }
.contact-form-map .field textarea { min-height: 96px; }
.contact-form-map #message { min-height: 120px; }

.section--navy .field label { color: #fff; }
.section--navy .field label .req { color: var(--rust); }
.section--navy .field input,
.section--navy .field textarea { background: #fff; color: var(--grey); border-color: transparent; }
.section--navy .field input::placeholder,
.section--navy .field textarea::placeholder { color: #9aa4b2; }

/* form + map now sit in their own full-width white section */
.contact-formsection .contact-map { background: rgba(27, 60, 115, .06); }
.btn-send {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
  border-radius: var(--radius-btn-sm);
  font-weight: 600;
  padding: 13px 30px;
  cursor: pointer;
  font-family: var(--font-body);
  justify-self: start;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.btn-send:hover { background: var(--gold-dark); transform: translateY(-2px); }

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  min-height: 340px;
  height: 100%;
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.info-list { list-style: none; display: grid; gap: 18px; margin-top: 8px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(27, 60, 115, .08);
  color: var(--navy);
  display: grid; place-items: center;
}
.info-list .ico svg { width: 20px; height: 20px; }
.info-list span.label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }

form.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 620px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 6px; }
.field label { font-size: .9rem; font-weight: 500; color: var(--navy); }
.field input, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--grey);
  padding: .8rem .95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 60, 115, .14);
}
.field.invalid input, .field.invalid textarea { border-color: #dc2626; }
.field .err { color: #dc2626; font-size: .82rem; display: none; }
.field.invalid .err { display: block; }

.form-note {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: .95rem;
}
.form-note.show { display: block; }

/* ---------- Footer (navy, white text, Poppins) ---------- */
.site-footer { background: var(--navy); color: #fff; }
.footer-grid {
  display: grid;
  gap: 36px;
  padding: clamp(46px, 7vw, 74px) 24px clamp(30px, 5vw, 46px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1.5fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.7fr 1.5fr 1fr 1.2fr; } }
.footer-col--services a { line-height: 1.4; }

.footer-brand p { margin: 16px 0 20px; color: rgba(255, 255, 255, .82); font-size: 15px; font-weight: 400; max-width: 42ch; }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 20px; font-weight: 600; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col li { color: #fff; font-size: 15px; font-weight: 400; overflow-wrap: break-word; min-width: 0; }
.footer-col a { color: #fff; font-size: 15px; font-weight: 400; overflow-wrap: break-word; }
.footer-col a:hover { color: var(--gold); }
.footer-col a.btn { font-size: 1rem; }
.site-footer .btn-amber { color: #fff; }
.site-footer .btn-amber:hover { color: var(--navy); }

/* Contact-Us column: icon + text rows, then Talk To Us button */
.footer-contact li { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-contact svg { width: 15px; height: 15px; flex: none; color: #fff; }
.footer-contact a { min-width: 0; overflow-wrap: anywhere; }
.footer-talk { margin-top: 18px; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .14); }
.footer-bottom .container {
  display: block;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 24px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .78);
}
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Images ---------- */
.feature-figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; }

.inline-figure { margin: 0 0 8px; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.inline-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

.card-media {
  margin: -28px -26px 20px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }

.img-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .img-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .img-grid { grid-template-columns: repeat(3, 1fr); } }
.img-grid figure { margin: 0; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.img-grid img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

/* footer uses logost.png (navy-field wordmark from the export); 'lighten' drops the field on the navy footer */
.footer-logo { width: 150px; height: auto; display: block; mix-blend-mode: lighten; }

.graphic-figure { margin: 0; background: none; box-shadow: none; }
.graphic-figure img {
  width: 100%; height: auto; aspect-ratio: auto;
  object-fit: contain; box-shadow: none; border-radius: 0; display: block;
}

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }
