/* ================================================================
   NAS GHANA — 3D CORPORATE DESIGN SYSTEM
   National Ambulance Service Website Stylesheet
================================================================ */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
---------------------------------------------------------------- */
:root {
  /* Brand palette */
  --green-deep:    #000e05;
  --green-dark:    #002b12;
  --green-brand:   #006837;
  --green-mid:     #007d40;
  --green-vivid:   #00a651;
  --gold:          #fcd116;
  --gold-dark:     #c9a200;
  --red:           #ce1126;
  --red-dark:      #9e0d1d;
  --white:         #ffffff;
  --off-white:     #f4f7f5;
  --black:         #030d06;
  --gray-100:      #eef2ef;
  --gray-200:      #d4ddd6;
  --gray-500:      #6b7a6d;
  --gray-600:      #4a5a4c;

  /* Glass */
  --glass-w:       rgba(255,255,255,0.06);
  --glass-ws:      rgba(255,255,255,0.12);
  --glass-g:       rgba(0,104,55,0.12);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-impact:   'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;

  /* Shadows */
  --shadow-green:  0 20px 60px rgba(0,104,55,0.3);
  --shadow-red:    0 20px 60px rgba(206,17,38,0.35);
  --shadow-dark:   0 30px 80px rgba(0,0,0,0.5);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.08);

  /* Spacing */
  --sec-py:        120px;
  --sec-py-sm:     80px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

/* Skip-to-content link for keyboard users */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--green-brand); color: #fff;
  padding: 12px 20px; border-radius: 0 0 8px 8px;
  font-weight: 600; font-size: 0.9rem;
  z-index: 9999; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
a    { text-decoration: none; color: inherit; }
img  { max-width: 100%; display: block; }
ul   { list-style: none; }
button { cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ----------------------------------------------------------------
   3. TOP STRIP
---------------------------------------------------------------- */
.top-strip {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--green-deep);
  border-bottom: 1px solid rgba(252,209,22,0.12);
  padding: 7px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.78);
  transition: transform 0.4s ease;
}
.top-strip.hidden { transform: translateY(-100%); }
.top-strip-inner { display: flex; align-items: center; justify-content: space-between; }
.top-strip-left  { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-strip a { color: rgba(255,255,255,0.78); transition: color 0.2s; }
.top-strip a:hover { color: var(--gold); }
.top-strip-socials { display: flex; gap: 8px; }
.ts-soc {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; transition: all 0.2s;
  color: rgba(255,255,255,0.7);
}
.ts-soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(252,209,22,0.1); }

/* ----------------------------------------------------------------
   5. NAVBAR
---------------------------------------------------------------- */
.site-header {
  position: fixed; left: 0; right: 0;
  top: 35px; /* top-strip height */
  z-index: 1000;
  transition: top 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}
.site-header.scrolled {
  top: 0;
  background: rgba(2,10,4,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(0,104,55,0.2);
}

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  max-width: 1400px; margin: 0 auto;
}

/* Brand */
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
  flex-shrink: 0;
}
.logo-img {
  height: 64px; width: 64px; object-fit: contain; flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.12);
}
.brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 700;
  color: var(--gold); line-height: 1.3;
  letter-spacing: 1.5px; text-transform: uppercase;
  white-space: normal;
}

/* Nav list */
.main-nav { display: flex; align-items: center; gap: 6px; margin-left: 28px; }
.nav-list  { display: flex; align-items: center; gap: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex; align-items: center; gap: 3px;
  padding: 7px 9px;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  transition: all 0.25s;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold);
  background: rgba(252,209,22,0.08);
}

/* Report an Issue — distinct nav pill */
.nav-list > li > a.nav-report-btn {
  background: #dc2626;
  color: #fff !important;
  border-radius: 50px;
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1.5px solid #dc2626;
  box-shadow: 0 2px 10px rgba(220,38,38,0.35);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.nav-list > li > a.nav-report-btn:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  box-shadow: 0 4px 18px rgba(220,38,38,0.5);
  transform: translateY(-1px);
  color: #fff !important;
}
.nav-arrow { font-size: 0.65em; opacity: 0.6; transition: transform 0.3s; }
.nav-list > li.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #0a1a0e;
  border: 1px solid rgba(0,104,55,0.25);
  min-width: 220px; border-radius: 12px;
  padding: 10px 0;
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165,0.84,0.44,1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  z-index: 200;
}
.nav-list > li.has-dropdown:hover .dropdown,
.nav-list > li.has-dropdown.open .dropdown,
.nav-list > li.has-dropdown:focus-within .dropdown {
  visibility: visible; opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown li a {
  display: block; padding: 9px 18px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  border-radius: 6px; margin: 0 6px;
  transition: all 0.2s;
}
.dropdown li a:hover {
  color: var(--gold);
  background: rgba(252,209,22,0.08);
  transform: translateX(4px);
}

/* Emergency CTA button */
.nav-btn-cta {
  display: flex !important; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: white !important;
  padding: 7px 14px 7px 8px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 20px rgba(206,17,38,0.45);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: emg-glow 2.2s ease-in-out infinite;
  white-space: nowrap;
}
.nav-btn-cta:hover {
  background: linear-gradient(135deg,#e0202f,#ae001c) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(206,17,38,0.6);
}
.cta-pulse-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cta-text { display: flex; flex-direction: column; line-height: 1; }
.cta-title { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.cta-number { font-family: var(--font-impact); font-size: 1.1rem; letter-spacing: 1px; }
@keyframes emg-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(206,17,38,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(206,17,38,0.75), 0 0 50px rgba(206,17,38,0.15); }
}

/* Hamburger */
.menu-toggle {
  display: none; background: none; border: none;
  padding: 10px; z-index: 1001;
}
.hamburger-box { width: 24px; height: 20px; display: block; position: relative; }
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: var(--white); position: absolute;
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s;
}
.hamburger-inner          { top: 9px; }
.hamburger-inner::before  { top: -9px; }
.hamburger-inner::after   { top: 9px; }
.menu-toggle.active .hamburger-inner          { background: transparent; }
.menu-toggle.active .hamburger-inner::before  { top: 0; transform: rotate(45deg); }
.menu-toggle.active .hamburger-inner::after   { top: 0; transform: rotate(-45deg); }

/* Mobile menu drawer */
.nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 998;
}
.nav-backdrop.active { display: block; }

/* ----------------------------------------------------------------
   6. HERO
---------------------------------------------------------------- */
.hero-section {
  position: relative; height: 100dvh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--green-deep);
}

/* Ambient gradient */
.hero-ambient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(0,104,55,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 12% 75%, rgba(206,17,38,0.07) 0%, transparent 50%),
    linear-gradient(155deg, #000903 0%, #001508 38%, #002e14 68%, #000903 100%);
  animation: ambient-breathe 9s ease-in-out infinite alternate;
}
@keyframes ambient-breathe {
  from { filter: brightness(1); }
  to   { filter: brightness(1.1); }
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,166,81,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,166,81,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 20%, black 80%);
}

/* Hero background image slideshow */
.hero-bg-slides { position: absolute; inset: 0; overflow: hidden; }
.hero-bg-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-bg-slide.active { opacity: 1; }
.hero-bg-slide .bg-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transform: scale(1.07);
  animation: bg-zoom 12s ease-out forwards;
}
@keyframes bg-zoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}
.hero-bg-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,9,3,0.82) 0%,
    rgba(0,20,8,0.65) 40%,
    rgba(0,14,6,0.5) 100%
  );
}

/* Gold particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 2; }
.particle {
  position: absolute; border-radius: 50%; opacity: 0;
  animation: particle-rise var(--dur,10s) linear var(--delay,-5s) infinite;
}
@keyframes particle-rise {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  8%   { opacity: 0.7; }
  92%  { opacity: 0.3; }
  100% { transform: translateY(-30px) translateX(var(--drift,40px)); opacity: 0; }
}

/* NAS Logo 3D Artifact slot */
.hero-3d-logo-slot {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: auto;
}
/* (hla-* styles replaced by nas3d-root component in inc/logo-3d.php) */

.container-hero-fluid {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Hero content */
.hero-text-col {
  position: relative; z-index: 10;
  padding: 100px 80px 100px 50px;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 0; /* No more negative margin needed */
  max-width: 700px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 0 80px 80px 0;
  border-left: 12px solid var(--green-brand);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(252,209,22,0.1);
  border: 1px solid rgba(252,209,22,0.26);
  color: var(--gold); padding: 7px 18px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
}
.ew-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: dot-blink 1.6s ease-in-out infinite; }
@keyframes dot-blink { 0%,100%{opacity:1;} 50%{opacity:0.15;} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.0rem, 5.2vw, 5.5rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 24px; letter-spacing: -2px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.ht-white { display: block; color: var(--white); }
.ht-gold  { display: block; color: var(--gold); font-style: italic; }
.ht-muted { display: block; color: rgba(255,255,255,0.95); }

.hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  line-height: 1.6; max-width: 550px; margin-bottom: 40px;
  font-weight: 400;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--green-brand), var(--green-vivid));
  color: white; padding: 15px 30px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(0,104,55,0.45);
  transition: all 0.3s cubic-bezier(0.175,0.885,0.32,1.275);
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,104,55,0.6); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.26);
  color: white; padding: 15px 30px; border-radius: 50px;
  font-weight: 500; font-size: 0.9rem;
  backdrop-filter: blur(10px); background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(252,209,22,0.07); }

/* Slide dots */
.hero-slide-dots {
  position: absolute; bottom: 130px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 8px;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none;
  cursor: pointer; transition: all 0.3s ease;
  padding: 16px; /* expands hit area to 40px without changing visual */
  box-sizing: content-box;
  margin: -16px; /* cancel layout expansion */
}
.slide-dot.active { background: var(--gold); transform: scale(1.3); }

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 90px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.4;
}
.scroll-cue span { font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scroll-anim 2.2s ease-in-out infinite; }
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero stats bar */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07); z-index: 10;
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: 1280px; margin: 0 auto; padding: 0 36px;
}
.hs-item {
  padding: 22px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hs-item:last-child { border-right: none; }
.hs-num {
  font-family: var(--font-impact); font-size: 2.5rem;
  color: var(--gold); line-height: 1; letter-spacing: 0.5px;
}
.hs-label {
  font-size: 0.7rem; color: rgba(255,255,255,0.72);
  text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px;
}

/* ----------------------------------------------------------------
   7. EMERGENCY BANNER
---------------------------------------------------------------- */
.emg-banner {
  background: var(--red); padding: 14px 0;
  position: relative; overflow: hidden; z-index: 5;
}
.emg-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,0.04) 10px, rgba(0,0,0,0.04) 20px);
}
.emg-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; position: relative; flex-wrap: wrap;
}
.emg-pulse {
  width: 11px; height: 11px; background: white; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: emg-ring 1.6s ease-out infinite;
}
@keyframes emg-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.emg-label { font-family: var(--font-impact); font-size: 1.3rem; letter-spacing: 3px; color: white; }
.emg-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.28); }
.emg-number { font-family: var(--font-impact); font-size: 2.3rem; color: white; letter-spacing: 4px; }
.emg-sub { font-size: 0.76rem; color: rgba(255,255,255,0.82); text-transform: uppercase; letter-spacing: 1.5px; }

/* ----------------------------------------------------------------
   8. SECTION SHARED PATTERNS
---------------------------------------------------------------- */
.section { padding: var(--sec-py) 0; }
.section-sm { padding: var(--sec-py-sm) 0; }

.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
}
.sec-label::before { content: ''; display: inline-block; width: 26px; height: 2px; background: currentColor; }

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem,4vw,3.8rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.5px;
}

/* ----------------------------------------------------------------
   9. ABOUT SECTION
---------------------------------------------------------------- */
.sec-about {
  background: var(--off-white); padding: var(--sec-py) 0;
  position: relative; overflow: hidden;
}
.sec-about::before {
  content: ''; position: absolute; right: -180px; top: -180px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(0,104,55,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-content .sec-label { color: var(--green-brand); }
.about-content .sec-title { color: #071209; }
.about-content .sec-title em { color: var(--green-brand); font-style: italic; }
.about-body { margin-top: 20px; font-size: 1rem; color: var(--gray-600); line-height: 1.8; }

.about-pillars { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pillar {
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.06),
    0 12px 28px rgba(0,0,0,0.05);
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-brand) 0%, rgba(0,104,55,0.3) 100%);
  opacity: 0; transition: opacity 0.35s;
}
.pillar:hover {
  transform: translateY(-5px);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.05),
    0 8px 24px rgba(0,0,0,0.09),
    0 24px 48px rgba(0,0,0,0.08);
  border-color: rgba(0,104,55,0.14);
}
.pillar:hover::before { opacity: 1; }
.pillar-num {
  display: inline-block;
  font-family: var(--font-impact); font-size: 0.65rem;
  font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,104,55,0.45);
  margin-bottom: 14px;
  border: 1px solid rgba(0,104,55,0.18);
  padding: 3px 10px; border-radius: 4px;
  background: rgba(0,104,55,0.04);
}
.pillar-ico  { display: none; }
.pillar-h    { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #0a1a0e; margin-bottom: 7px; letter-spacing: -0.2px; }
.pillar-body { font-size: 0.82rem; color: #4a5568; line-height: 1.65; }

/* About visual column */
.about-visual { position: relative; }
.about-img-frame {
  border-radius: 22px; overflow: hidden;
  aspect-ratio: 4/5; position: relative;
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,104,55,0.25) 0%, transparent 55%);
}
.about-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--green-brand); color: white;
  border-radius: 18px; padding: 20px 24px;
  box-shadow: var(--shadow-green); z-index: 2;
}
.ab-num  { font-family: var(--font-impact); font-size: 2.6rem; color: var(--gold); line-height: 1; }
.ab-text { font-size: 0.74rem; opacity: 0.82; margin-top: 4px; line-height: 1.4; }
.about-badge-2 {
  position: absolute; top: -18px; right: -18px;
  background: white; border-radius: 14px;
  padding: 13px 16px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.ab2-ico {
  width: 36px; height: 36px; background: var(--red);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; color: white;
}
.ab2-num { font-family: var(--font-impact); font-size: 1.4rem; color: #071209; letter-spacing: 1px; line-height: 1; }
.ab2-sub { font-size: 0.65rem; color: var(--gray-500); }
.ab2-ico--logo {
  background: white !important;
  padding: 4px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(0,104,55,0.12);
}
.ab2-ico--logo img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
  border-radius: 6px;
}

/* ----------------------------------------------------------------
   10. STATS SECTION
---------------------------------------------------------------- */
.sec-stats {
  background: var(--off-white);
  border-top: 1px solid rgba(0,104,55,0.08);
  border-bottom: 1px solid rgba(0,104,55,0.08);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-block {
  padding: 60px 36px; text-align: center;
  border-right: 1px solid rgba(0,0,0,0.07);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(0,104,55,0.04); }
.stat-block::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px; background: var(--green-brand);
  transition: width 0.4s ease;
}
.stat-block:hover::after { width: 52%; }
.stat-ico  { font-size: 1.4rem; margin-bottom: 12px; }
.stat-big  { font-family: var(--font-impact); font-size: 4rem; color: var(--green-brand); line-height: 1; letter-spacing: -1px; }
.stat-sfx  { font-size: 1.8rem; color: var(--gold-dark); }
.stat-desc { font-size: 0.76rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 8px; }

/* ----------------------------------------------------------------
   11. SERVICES SECTION
---------------------------------------------------------------- */
.sec-services {
  background: linear-gradient(rgba(0,14,5,0.65), rgba(0,14,5,0.65)), url("../uploads/ghana_ambulance_city.png");
  background-size: cover; background-position: center; background-attachment: fixed;
  padding: var(--sec-py) 0; position: relative; overflow: hidden;
}
.svc-bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(0,166,81,0.07) 0%, transparent 40%),
    radial-gradient(ellipse at 82% 50%, rgba(252,209,22,0.03) 0%, transparent 40%);
}
.svc-header { text-align: center; margin-bottom: 58px; position: relative; z-index: 1; }
.svc-header .sec-label { color: var(--gold); display: flex; justify-content: center; }
.svc-header .sec-title { color: var(--white); }
.svc-header .sec-title em { color: var(--gold); font-style: italic; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; position: relative; z-index: 1;
}
.svc-card {
  background: rgba(15, 25, 20, 0.7);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 20px; padding: 36px 28px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,166,81,0.08) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.4s;
}
.svc-card:hover { border-color: rgba(0,166,81,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.svc-card:hover::before { opacity: 1; }
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 28px; right: 28px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-vivid), transparent);
  opacity: 0.35; transition: opacity 0.35s;
}
.svc-card:hover::after { opacity: 0.9; }
.svc-card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(0,166,81,0.4);
  color: var(--green-vivid);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 22px;
}
.svc-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2; text-transform: uppercase; }
.svc-desc  { font-size: 0.86rem; color: rgba(255,255,255,0.72); line-height: 1.7; }
.svc-link  {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--green-vivid); font-size: 0.8rem; font-weight: 600;
  margin-top: 20px; transition: gap 0.2s;
}
.svc-link:hover { gap: 9px; }

/* ----------------------------------------------------------------
   12. NEWS SECTION
---------------------------------------------------------------- */
.sec-news {
  background: var(--black);
  padding: var(--sec-py) 0;
  position: relative; overflow: hidden;
}
.sec-news::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,166,81,0.03) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(90deg, rgba(0,166,81,0.03) 0 1px, transparent 1px 72px);
}
.news-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; position: relative; z-index: 1; }
.news-hdr .sec-label { color: var(--red); }
.news-hdr .sec-title { color: var(--white); }
.view-all-link {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.65);
  padding: 10px 22px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  transition: all 0.3s; white-space: nowrap; letter-spacing: 0.04em;
}
.view-all-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(252,209,22,0.06); }

/* --- Grid: featured left + 2 right, then 3 across --- */
.news-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  position: relative; z-index: 1;
}
/* Row 2 cards span equally — override the 1.55fr for the 4th card */
.news-card-new:nth-child(4) { grid-column: 1; }
.news-card-new:nth-child(5) { grid-column: 2; }
.news-card-new:nth-child(6) { grid-column: 3; }

/* Row 2 resets to even thirds */
.news-grid::after {
  content: none;
}

.news-card-new {
  border-radius: 18px; overflow: hidden;
  background: #0d1e11;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
  position: relative;
}
/* Subtle top-edge accent line */
.news-card-new::before {
  content: '';
  position: absolute; top: 0; left: 16px; right: 16px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,166,81,0.5), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.news-card-new:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,166,81,0.3); border-color: rgba(0,166,81,0.35); }
.news-card-new:hover::before { opacity: 1; }

.nc-img-wrap { overflow: hidden; background: #091209; flex-shrink: 0; }
.nc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.news-card-new:hover .nc-img-wrap img { transform: scale(1.08); }

/* Featured card: taller image, image overlay text style */
.nc-featured .nc-img-wrap { height: 280px; position: relative; }

/* Small cards get a uniform image height */
.nc-small .nc-img-wrap { height: 168px; }

.nc-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.nc-meta { display: flex; align-items: center; gap: 10px; }
.nc-tag {
  background: rgba(206,17,38,0.18); color: #ff6b7a;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; border: 1px solid rgba(206,17,38,0.25);
}
.nc-date { font-size: 0.67rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

.nc-title {
  font-family: var(--font-display); font-weight: 700;
  color: var(--white); line-height: 1.28; flex: 1;
  transition: color 0.25s;
}
.news-card-new:hover .nc-title { color: var(--green-vivid); }
.nc-featured .nc-title { font-size: 1.5rem; }
.nc-small   .nc-title { font-size: 1.02rem; }

.nc-excerpt { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

.nc-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-vivid); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: gap 0.2s, color 0.2s;
}
.nc-more:hover { gap: 10px; color: var(--gold); }

/* ----------------------------------------------------------------
   13. CTA SECTION
---------------------------------------------------------------- */
.sec-cta {
  background: linear-gradient(135deg, var(--green-brand) 0%, #004d26 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.sec-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(2.8rem,5vw,4.5rem);
  font-weight: 700; color: white; line-height: 1.1; margin-bottom: 14px;
}
.cta-h em { color: var(--gold); font-style: italic; }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-cta-red {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: white;
  padding: 17px 34px; border-radius: 50px;
  font-weight: 700; font-size: 0.98rem;
  box-shadow: 0 8px 26px rgba(206,17,38,0.4);
  transition: all 0.3s;
}
.btn-cta-red:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(206,17,38,0.6); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.28);
  color: white; padding: 17px 34px; border-radius: 50px;
  font-weight: 600; font-size: 0.98rem; transition: all 0.3s;
}
.btn-cta-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ----------------------------------------------------------------
   14. PARTNERS MARQUEE
---------------------------------------------------------------- */
.sec-partners {
  background: var(--off-white); padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.partners-eyebrow { text-align: center; font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.26); margin-bottom: 32px; }
.marquee-outer {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: marquee 32s linear infinite; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }
.p-logo {
  height: 50px; width: auto; object-fit: contain; flex-shrink: 0;
  opacity: 0.85; transition: all 0.35s ease;
}
.p-logo:hover { opacity: 1; transform: scale(1.12); }

/* ----------------------------------------------------------------
   15. FOOTER
---------------------------------------------------------------- */
.footer-main {
  background: linear-gradient(160deg, #010903 0%, #000e04 100%);
  border-top: 1px solid rgba(0,104,55,0.18);
  padding: 76px 0 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.1fr; gap: 52px; }
.ft-logo {
  height: 52px; width: 52px; object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}
.ft-desc { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.8; max-width: 265px; }
.ft-emg {
  margin-top: 20px; display: flex; align-items: center; gap: 12px;
  background: rgba(206,17,38,0.1); border: 1px solid rgba(206,17,38,0.2);
  border-radius: 12px; padding: 12px 15px;
}
.ft-emg-ico { font-size: 1.3rem; }
.ft-emg-num { font-family: var(--font-impact); font-size: 1.6rem; color: var(--red); letter-spacing: 2px; }
.ft-emg-lbl { font-size: 0.64rem; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 1px; }
.ft-socials { display: flex; gap: 8px; margin-top: 18px; }
.ft-soc {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.72); transition: all 0.25s;
}
.ft-soc:hover { background: rgba(0,104,55,0.28); border-color: var(--green-brand); color: var(--green-vivid); transform: translateY(-3px); }
.ft-col h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-links { display: flex; flex-direction: column; gap: 8px; }
.ft-links a { font-size: 0.82rem; color: rgba(255,255,255,0.72); transition: all 0.2s; display: block; }
.ft-links a:hover { color: var(--gold); transform: translateX(5px); }
.ft-contact { display: flex; flex-direction: column; gap: 10px; }
.ft-ci { display: flex; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.72); line-height: 1.5; }
.ft-ci-ico { color: var(--green-vivid); flex-shrink: 0; margin-top: 1px; }

.footer-bar { background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 0; }
.footer-bar-inner { display: flex; align-items: center; justify-content: space-between; font-size: 0.74rem; color: rgba(255,255,255,0.65); }
.footer-bar-inner a { color: rgba(255,255,255,0.72); transition: color 0.2s; }
.footer-bar-inner a:hover { color: var(--gold); }
.ft-bar-links { display: flex; gap: 18px; }

/* ----------------------------------------------------------------
   16. INNER PAGE STYLES  (shared across about, services, etc.)
---------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(155deg, var(--green-deep) 0%, var(--green-dark) 100%);
  height: 50vh; min-height: 400px; display: flex; align-items: center; justify-content: center !important;
  position: relative; overflow: hidden; text-align: center !important; padding-top: 80px;
}
.ph-badge-wm {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.ph-badge-wm img {
  width: 340px; max-width: 55%; opacity: 0.06; filter: grayscale(1) brightness(3);
  user-select: none;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 60%, rgba(0,104,55,0.2) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 800px !important; margin: 0 auto !important; padding: 0 20px !important;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.page-hero-label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.page-hero-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4.5rem);
  font-weight: 700; color: var(--white); line-height: 1.08; margin-bottom: 16px; text-align: center;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; margin: 0 auto; text-align: center; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.25); }

/* Light section (for inner page content) */
.page-body {
  background: var(--white); color: #0a1a0e;
  padding: var(--sec-py) 0;
}
.page-body h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: #0a1a0e; margin-bottom: 20px; }
.page-body p  { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }

/* Generic cards (for inner pages that might use old classes) */
.cards-3-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.feature-box {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 32px 28px;
  transition: all 0.3s ease;
}
.feature-box.accent { background: var(--green-brand); color: white; border-color: var(--green-brand); }
.feature-box:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.feature-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.feature-box h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.feature-box p { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; }

/* Buttons (general) */
.btn        { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.btn.primary { background: var(--green-brand); color: white; box-shadow: 0 6px 20px rgba(0,104,55,0.35); }
.btn.primary:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn.emergency { background: var(--red); color: white; box-shadow: var(--shadow-red); }
.btn.emergency:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn.ghost { border: 1px solid rgba(0,0,0,0.2); color: var(--gray-600); }
.btn.ghost:hover { border-color: var(--green-brand); color: var(--green-brand); }

/* ----------------------------------------------------------------
   17. SCROLL REVEAL ANIMATIONS
---------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------------
   18. RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .about-grid  { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; }
  .news-grid   { grid-template-columns: 1fr 1fr; }
  .nc-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-grid    { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .top-strip { display: none !important; }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2,10,4,0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 40px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(0,104,55,0.2);
  }
  .logo-img { height: 38px; width: 38px; padding: 2px; }
  .brand-name { font-size: 1.05rem !important; }
  .brand { gap: 10px; }
  :root { --sec-py: 80px; }
  .hero-3d-logo-slot { display: none; }
  .sec-services { background-attachment: scroll; }
  .hero-section {
    height: auto !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .scroll-cue { display: none !important; }
  .hero-slide-dots { bottom: 15px !important; }
  .hero-stats-bar {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    background: #010e05 !important;
    border-top: 1px solid rgba(252, 209, 22, 0.15) !important;
    border-bottom: 1px solid rgba(252, 209, 22, 0.15) !important;
    z-index: 10 !important;
    padding: 6px 0 !important;
  }
  .hero-stats-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 0 16px !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
  }
  .hero-stats-inner::-webkit-scrollbar {
    display: none !important;
  }
  .hs-item {
    flex: 0 0 auto !important;
    width: 220px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: none !important;
    padding: 14px 10px !important;
    text-align: center !important;
    scroll-snap-align: start !important;
  }
  .hs-item:last-child {
    border-right: none !important;
  }
  .sec-stats         { display: none !important; }
  .stats-grid        { grid-template-columns: repeat(2,1fr); }
  .container         { padding: 0 24px; }
  .header-main       { padding: 12px 24px; }
  .nav-list, .nav-btn-cta { display: none !important; }
  .menu-toggle { display: block !important; }
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #010e05; z-index: 999;
    flex-direction: column; align-items: flex-start;
    padding: 80px 30px 40px;
    transition: right 0.35s cubic-bezier(0.165,0.84,0.44,1);
    overflow-y: auto;
    gap: 0;
  }
  .main-nav.open { right: 0; }
  .nav-list { display: flex !important; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-list > li > a {
    display: block; padding: 14px 0; width: 100%;
    font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
  }
  /* Mobile submenu — high-specificity overrides */
  .main-nav .dropdown {
    position: static !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    background: #122a1b !important;   /* solid dark-green, NOT transparent */
    border: none !important;
    border-left: 3px solid var(--green-vivid) !important;
    border-radius: 0 6px 6px 0 !important;
    padding: 4px 0 !important;
    box-shadow: none !important;
    margin: 4px 0 4px 16px !important;
    min-width: 0 !important;
    display: none !important;
  }
  .main-nav .nav-list > li.has-dropdown.open > .dropdown {
    display: block !important;
  }
  .main-nav .dropdown li a {
    display: block !important;
    color: #ffffff !important;
    padding: 12px 18px !important;
    font-size: 0.86rem !important;
    font-weight: 500 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    background: transparent !important;
    transition: color 0.2s, background 0.2s !important;
  }
  .main-nav .dropdown li:last-child a { border-bottom: none !important; }
  .main-nav .dropdown li a:hover {
    color: var(--gold) !important;
    background: rgba(252,209,22,0.07) !important;
  }
  .nav-btn-cta { display: flex !important; margin-top: 24px; width: 100%; justify-content: center; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-text-col {
    margin-left: 0;
    padding: 40px 20px;
    max-width: 100%;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.7);
  }

  /* ---- Compact horizontal news cards on mobile ---- */
  .news-hdr { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .nc-featured,
  .nc-small {
    grid-column: span 1 !important;
    flex-direction: row !important;
    align-items: stretch !important;
    border-radius: 12px !important;
    min-height: 100px !important;
    max-height: 120px !important;
    overflow: hidden !important;
  }
  .nc-featured .nc-img-wrap,
  .nc-small    .nc-img-wrap {
    width: 110px !important;
    min-width: 110px !important;
    height: auto !important;
    flex-shrink: 0 !important;
  }
  .nc-featured .nc-img-wrap img,
  .nc-small    .nc-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .nc-body {
    padding: 10px 12px !important;
    gap: 4px !important;
    justify-content: center !important;
    overflow: hidden !important;
  }
  .nc-meta  { gap: 6px !important; }
  .nc-tag   { font-size: 0.5rem !important; padding: 2px 7px !important; }
  .nc-date  { font-size: 0.58rem !important; }
  .nc-title {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .nc-excerpt { display: none !important; }
  .nc-more { font-size: 0.68rem !important; padding-top: 6px !important; margin-top: 0 !important; border-top: none !important; }
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-grid    { grid-template-columns: 1fr; }
  .stat-block  { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .hero-stats-inner { grid-template-columns: repeat(2,1fr); }
  .emg-inner   { gap: 14px; }
  .cta-btns    { flex-direction: column; align-items: center; }
  .cards-3-col { grid-template-columns: 1fr; }
  .footer-bar-inner { flex-direction: column; gap: 10px; text-align: center; }
}

/* ----------------------------------------------------------------
   19. REDUCED MOTION
---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------------------------------------------------
   20. FOCUS STYLES (keyboard nav)
---------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
