/* ================================================================
   XPEDITION GO AFRICA — MAIN STYLESHEET
   ================================================================

   🎨  TO CHANGE THE COLOUR SCHEME
       Edit ONLY the values inside the :root block below.
       Every colour across all pages updates automatically.

   ================================================================ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  /* ============================================================
     COLOUR PALETTE  –  Edit here to retheme the whole site
     ============================================================ */
  --deep-blue:     #1E3A5F;   /* trust, stability, education  */
  --sky-blue:      #4A90E2;   /* openness, exploration        */
  --burnt-orange:  #E67E22;   /* energy, adventure            */
  --golden-yellow: #F5A623;   /* warmth, community            */
  --earth-brown:   #8B5E3C;   /* grounding, belonging         */

  /* Semantic aliases – these drive every component */
  --color-primary:   var(--deep-blue);
  --color-accent:    var(--burnt-orange);
  --color-highlight: var(--golden-yellow);
  --color-secondary: var(--sky-blue);
  --color-tertiary:  var(--earth-brown);

  /* Neutrals */
  --color-white:      #FFFFFF;
  --color-off-white:  #F7F8FA;
  --color-light-gray: #E9EDF2;
  --color-text:       #1D2939;
  --color-text-body:  #374151;
  --color-text-muted: #6B7280;

  /* Overlays */
  --overlay-hero: rgba(8, 18, 36, 0.62);
  --overlay-page: rgba(30, 58, 95, 0.82);

  /* ============================================================
     TYPOGRAPHY
     ============================================================ */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  /* ============================================================
     LAYOUT
     ============================================================ */
  --container-max: 1200px;
  --nav-height:    72px;
  --section-py:    96px;
  --section-py-sm: 60px;

  /* ============================================================
     BORDER RADIUS
     ============================================================ */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;

  /* ============================================================
     SHADOWS
     ============================================================ */
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 16px 56px rgba(0,0,0,0.18);

  /* ============================================================
     TRANSITIONS
     ============================================================ */
  --transition-fast: all 0.18s ease;
  --transition:      all 0.30s ease;
  --transition-slow: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; font-family: inherit; }


/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p  { line-height: 1.8; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}


/* ================================================================
   LAYOUT HELPERS
   ================================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section        { padding: var(--section-py) 0; }
.section--sm    { padding: var(--section-py-sm) 0; }
.section--gray  { background: var(--color-off-white); }
.section--dark  { background: var(--color-primary); }

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p { color: var(--color-white); }

.text-center { text-align: center; }


/* ================================================================
   SECTION HEADER
   ================================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header .eyebrow { display: block; margin-bottom: 14px; }
.section-header h2        { margin-bottom: 16px; }
.section-header p         { color: var(--color-text-muted); font-size: 1.05rem; }

.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--burnt-orange), var(--golden-yellow));
  border-radius: var(--radius-full);
  margin: 18px auto 0;
}


/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary         { background: var(--burnt-orange);      color: var(--color-white); border-color: var(--burnt-orange); }
.btn--primary:hover   { background: transparent;              color: var(--burnt-orange); }

.btn--secondary       { background: var(--deep-blue);         color: var(--color-white); border-color: var(--deep-blue); }
.btn--secondary:hover { background: transparent;              color: var(--deep-blue); }

.btn--outline         { background: transparent;              color: var(--deep-blue);   border-color: var(--color-light-gray); }
.btn--outline:hover   { background: var(--deep-blue);         color: var(--color-white); border-color: var(--deep-blue); }

.btn--outline-white         { background: transparent;        color: var(--color-white); border-color: rgba(255,255,255,0.55); }
.btn--outline-white:hover   { background: var(--color-white); color: var(--deep-blue);   border-color: var(--color-white); }

.btn--gold            { background: var(--golden-yellow);     color: var(--deep-blue);   border-color: var(--golden-yellow); font-weight: 800; }
.btn--gold:hover      { background: transparent;              color: var(--golden-yellow); }


/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar--transparent        { background: transparent; }

.navbar--solid,
.navbar.scrolled {
  background: var(--deep-blue);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo { display: flex; flex-direction: column; line-height: 1; gap: 0; }
.navbar__logo .logo-top    { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.88); text-transform: uppercase; }
.navbar__logo .logo-bottom { font-family: var(--font-heading); font-size: 1.5rem;  font-weight: 900; letter-spacing: 0.06em; color: var(--burnt-orange);  text-transform: uppercase; line-height: 1.1; }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navbar__menu a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s ease;
  position: relative;
}
.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--burnt-orange);
  transition: width 0.3s ease;
}
.navbar__menu a:hover,
.navbar__menu a.active            { color: var(--color-white); }
.navbar__menu a:hover::after,
.navbar__menu a.active::after     { width: 100%; }

.navbar__cta-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 9px 22px;
  background: var(--burnt-orange);
  color: var(--color-white) !important;
  border-radius: var(--radius-full);
  border: none;
  transition: var(--transition);
}
.navbar__cta-btn:hover         { background: var(--golden-yellow) !important; color: var(--deep-blue) !important; }
.navbar__cta-btn::after        { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ================================================================
   HOME HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 55%;
  z-index: 0;
}

.hero__overlay {
  position: absolute; inset: 0;
  background: var(--overlay-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: calc(var(--nav-height) + 60px) 24px 100px;
}

.hero__content-inner { max-width: 840px; margin: 0 auto; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--golden-yellow);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 30px;
}
.hero__pill .dot { opacity: 0.4; }

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  color: var(--color-white);
  line-height: 1.03;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-bottom: 26px;
}
.hero__title .accent { color: var(--golden-yellow); }

.hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero__scroll-text {
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}


/* ================================================================
   PAGE HERO  (inner pages)
   ================================================================ */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,58,95,0.96) 0%,
    rgba(30,58,95,0.55) 50%,
    rgba(8,18,36,0.28) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 52px;
}
.page-hero__content .eyebrow { color: var(--golden-yellow); display: block; margin-bottom: 10px; }
.page-hero__content h1       { color: var(--color-white); font-size: clamp(2rem, 4.5vw, 3.2rem); }


/* ================================================================
   SPLIT LAYOUT  (image + text side by side)
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.split__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.split__image:hover img { transform: scale(1.05); }

.split__text .eyebrow  { display: block; margin-bottom: 14px; }
.split__text h2        { margin-bottom: 20px; }
.split__text p         { color: var(--color-text-muted); margin-bottom: 14px; font-size: 1.02rem; }


/* ================================================================
   PILLAR CARDS  (5-pillar overview)
   ================================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pillar-card:nth-child(1) { border-top-color: var(--sky-blue); }
.pillar-card:nth-child(2) { border-top-color: var(--burnt-orange); }
.pillar-card:nth-child(3) { border-top-color: var(--golden-yellow); }
.pillar-card:nth-child(4) { border-top-color: var(--earth-brown); }
.pillar-card:nth-child(5) { border-top-color: var(--deep-blue); }

.pillar-card__icon {
  width: 58px; height: 58px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.pillar-card:nth-child(1) .pillar-card__icon { background: rgba(74,144,226,0.10);  color: var(--sky-blue); }
.pillar-card:nth-child(2) .pillar-card__icon { background: rgba(230,126,34,0.10);  color: var(--burnt-orange); }
.pillar-card:nth-child(3) .pillar-card__icon { background: rgba(245,166,35,0.10);  color: var(--golden-yellow); }
.pillar-card:nth-child(4) .pillar-card__icon { background: rgba(139,94,60,0.10);   color: var(--earth-brown); }
.pillar-card:nth-child(5) .pillar-card__icon { background: rgba(30,58,95,0.10);    color: var(--deep-blue); }

.pillar-card__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pillar-card:nth-child(1) .pillar-card__label { color: var(--sky-blue); }
.pillar-card:nth-child(2) .pillar-card__label { color: var(--burnt-orange); }
.pillar-card:nth-child(3) .pillar-card__label { color: var(--golden-yellow); }
.pillar-card:nth-child(4) .pillar-card__label { color: var(--earth-brown); }
.pillar-card:nth-child(5) .pillar-card__label { color: var(--deep-blue); }

.pillar-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.3; }
.pillar-card p  { font-size: 0.88rem; color: var(--color-text-muted); flex: 1; margin-bottom: 20px; }


/* ================================================================
   STATS BAR
   ================================================================ */
.stats-bar { background: var(--deep-blue); padding: 64px 0; }

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--burnt-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}


/* ================================================================
   ICON LIST  (checkmark-style bullet list)
   ================================================================ */
.icon-list { margin: 16px 0 24px; display: flex; flex-direction: column; gap: 11px; }
.icon-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--color-text-muted);
}
.icon-list li::before {
  content: '→';
  color: var(--burnt-orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  position: relative;
  padding: 96px 24px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #2a527e 55%, var(--sky-blue) 100%);
}
.cta-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.1;
  z-index: 0;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
}
.cta-banner h2   { color: var(--color-white); margin-bottom: 18px; }
.cta-banner p    { color: rgba(255,255,255,0.78); margin-bottom: 38px; font-size: 1.05rem; }
.cta-banner .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ================================================================
   VALUES GRID  (about page)
   ================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.value-card {
  padding: 40px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.value-card:nth-child(1) { background: rgba(74,144,226,0.07); }
.value-card:nth-child(2) { background: rgba(230,126,34,0.07); }
.value-card:nth-child(3) { background: rgba(245,166,35,0.07); }
.value-card:nth-child(4) { background: rgba(139,94,60,0.07); }

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.value-card__icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--color-text-muted); }


/* ================================================================
   MISSION QUOTE  (about page)
   ================================================================ */
.mission-quote {
  background: linear-gradient(135deg, var(--deep-blue), #2a527e);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--font-heading);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.mission-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.mission-quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--golden-yellow);
  font-style: normal;
}


/* ================================================================
   PROGRAMS  (programs page)
   ================================================================ */
.program-block {
  padding: 72px 0;
  border-bottom: 1px solid var(--color-light-gray);
}
.program-block:last-child { border-bottom: none; }

.program-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: stretch;
}
.program-layout--flip {
  grid-template-columns: 1.3fr 1fr;
}

/* Single image — fills the full height of the sibling text column */
.program-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.program-img img { width: 100%; flex: 1; object-fit: cover; display: block; }

/* Stacked image pair — two images that together fill the text column height */
.program-img-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
}
.program-img-stack .program-img {
  flex: 1;
  min-height: 220px;
}

.program-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--burnt-orange);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.program-badge--coming {
  background: var(--golden-yellow);
  color: var(--deep-blue);
}

.program-badge--involve {
  background: var(--sky-blue);
  color: var(--color-white);
}

.program-text h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 8px; }
.program-text .purpose {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 3px solid var(--burnt-orange);
}

/* Pricing table */
.pricing-card {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 28px;
}
.pricing-card__head {
  background: linear-gradient(135deg, var(--deep-blue), #2a527e);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__head h4 { color: var(--color-white); font-size: 0.9rem; letter-spacing: 0.04em; }

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--color-light-gray);
  transition: background 0.18s;
}
.pricing-item:last-child { border-bottom: none; }
.pricing-item:hover { background: var(--color-white); }

.pricing-item__info { flex: 1; }
.pricing-item__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 2px;
}
.pricing-item__detail {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.pricing-item__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--burnt-orange);
  white-space: nowrap;
  padding-top: 2px;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  padding: 12px 28px;
  border-top: 1px solid var(--color-light-gray);
}

/* Coming soon card */
.coming-soon-card {
  background: linear-gradient(135deg, var(--golden-yellow) 0%, var(--burnt-orange) 100%);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  text-align: center;
  margin-top: 28px;
}
.coming-soon-card h3 { color: var(--color-white); margin-bottom: 10px; }
.coming-soon-card p  { color: rgba(255,255,255,0.85); max-width: 440px; margin: 0 auto 24px; font-size: 0.95rem; }

/* Get Involved card */
.get-involved-card {
  background: linear-gradient(135deg, var(--sky-blue), var(--deep-blue));
  border-radius: var(--radius-md);
  padding: 48px 36px;
  text-align: center;
  margin-top: 28px;
}
.get-involved-card h3 { color: var(--color-white); margin-bottom: 10px; }
.get-involved-card p  { color: rgba(255,255,255,0.82); max-width: 440px; margin: 0 auto 24px; font-size: 0.95rem; }


/* ================================================================
   CONTACT FORM  (contact page)
   ================================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.contact-info-item__icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--burnt-orange), var(--golden-yellow));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--color-white);
}
.contact-info-item__text h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item__text p,
.contact-info-item__text a  { font-size: 0.88rem; color: var(--color-text-muted); }
.contact-info-item__text a:hover { color: var(--burnt-orange); }

.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 6px; }
.contact-form > p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 36px; }

.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-body);
  background: var(--color-white);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(74,144,226,0.13);
}
.form-group textarea {
  resize: vertical;
  min-height: 135px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--burnt-orange), var(--golden-yellow));
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,126,34,0.4);
}

.form-success {
  display: none;
  background: rgba(74,144,226,0.08);
  border: 1px solid rgba(74,144,226,0.3);
  color: var(--deep-blue);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}


/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo-link { display: inline-block; margin-bottom: 20px; }
.footer__logo-img  {
  width: 240px;
  max-width: 100%;
  height: auto;
  display: block;
  /* The logo has a white background — invert to look great on the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.footer__logo-link:hover .footer__logo-img { opacity: 1; }

.footer__brand p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 20px; }

.footer__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--golden-yellow);
}
.footer__tagline .dot { opacity: 0.4; }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: var(--transition-fast); }
.footer__links a:hover { color: var(--golden-yellow); padding-left: 4px; }

.footer__contact-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer__contact-row i { font-size: 0.85rem; color: var(--burnt-orange); margin-top: 3px; flex-shrink: 0; }
.footer__contact-row span { font-size: 0.86rem; color: rgba(255,255,255,0.55); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.4); transition: var(--transition-fast); }
.footer__bottom a:hover { color: var(--golden-yellow); }
.footer__bottom-links { display: flex; gap: 24px; }


/* ================================================================
   BADGE UTILITIES
   ================================================================ */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: var(--radius-full);
}
.badge--orange { background: rgba(230,126,34,0.12); color: var(--burnt-orange); border: 1px solid rgba(230,126,34,0.25); }
.badge--yellow { background: rgba(245,166,35,0.14); color: #d4880c;             border: 1px solid rgba(245,166,35,0.30); }
.badge--blue   { background: rgba(74,144,226,0.12); color: var(--sky-blue);     border: 1px solid rgba(74,144,226,0.25); }


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .split          { gap: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .program-layout,
  .program-layout--flip { grid-template-columns: 1fr; gap: 32px; }
  .program-img-stack    { flex-direction: row; min-height: 220px; }
  .program-img-stack .program-img { min-height: 200px; }
}

@media (max-width: 900px) {
  .pillars-grid   { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --section-py-sm: 40px;
    --nav-height: 64px;
  }

  .navbar__menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--deep-blue);
    flex-direction: column;
    align-items: center;
    padding: 36px 24px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
  }
  .navbar__menu.open { display: flex; }
  .hamburger        { display: flex; }

  .split, .split--reverse { grid-template-columns: 1fr; gap: 36px; direction: ltr; }
  .split--reverse > *     { direction: ltr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 32px 24px; }

  .footer__grid  { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer__bottom-links { flex-direction: column; gap: 8px; }

  .page-hero { min-height: 280px; }

  .mission-quote { padding: 40px 28px; }
}

@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions, .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
