:root {
  /* =========================
     BRAND COLORS
  ========================= */
  --primary-color: #2d742f;     /* Main green (trust, care, health) */
  --primary-dark: #078c0b;      /* Slightly darker green for hover */
  --primary-light: #5edc62;     /* Lighter green for backgrounds */

  --secondary-color: #f98e00;   /* Orange accent (energy, warmth) */
  --secondary-dark: #d97700;    /* Hover/active state */
  --secondary-light: #ffb84d;   /* Soft highlight */

  --white: #ffffff;
  --light-bg: #f9f9f9;          /* Soft background */
  --border-color: #e5e5e5;

  /* =========================
     TEXT COLORS
  ========================= */
  --text-primary: #222222;      /* Main body text */
  --text-secondary: #555555;    /* Paragraphs / muted text */
  --text-light: #888888;        /* Subtle text */
  --text-white: #ffffff;        /* Text on dark backgrounds */

  /* =========================
     OPTIONAL UI COLORS
  ========================= */
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;

  /* =========================
     TYPOGRAPHY
  ========================= */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}



* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    background: #f0f4f0;
}

html, body {
  overflow-x: hidden;
}

/* ── TOP BAR ─────────────────────────────── */
#top-bar {
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.78rem;
    color: var(--text-secondary);
    overflow: hidden;
}
#top-bar a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color .2s;
}
#top-bar a:hover { color: var(--primary-color); }

/* ── MAIN NAVBAR ─────────────────────────── */
#main-nav {
    position: sticky !important;
    top: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: box-shadow .3s, padding .3s;
}
#main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* Logo text styling */
.logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -.5px;
    line-height: 1.1;
}
.logo-sub {
    font-size: .65rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ── NAV LINKS ───────────────────────────── */
.nav-link {
    position: relative;
    font-size: .875rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    padding: .25rem 0;
    white-space: nowrap;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .25rem;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width .25s ease;
}
.nav-link:hover { color: var(--primary-color); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--primary-color); }
.nav-link.active::after { width: 100%; }

/* chevron icon */
.chevron {
    width: 14px;
    height: 14px;
    transition: transform .25s;
    flex-shrink: 0;
}
.services-trigger.open .chevron { transform: rotate(180deg); }

/* ── MEGA MENU ───────────────────────────── */
#mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.97);
    width: 520px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px var(--border-color);
    padding: 1.25rem;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}
#mega-menu.mega-visible {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}
#mega-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    rotate: 45deg;
}
.mega-card {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}
.mega-card:hover { background: #f0fdf0; }
.mega-card:hover .mega-icon { background: var(--primary-color); color: var(--white); }
.mega-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e9fde9;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s;
    font-size: 1rem;
}
.mega-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .2rem;
}
.mega-desc {
    font-size: .75rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ── CTA BUTTONS ─────────────────────────── */
.btn-outline {
    padding: .5rem 1.1rem;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: .825rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    transition: background .2s, color .2s, transform .15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-body);
}
.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.03);
}
.btn-solid {
    padding: .5rem 1.2rem;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: .825rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-body);
}
.btn-solid:hover {
    background: var(--secondary-dark);
    transform: scale(1.03);
}


.btn-main {
    padding: .5rem 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: .825rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-body);
}

.btn-main:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
}
/* ── HAMBURGER ───────────────────────────── */
#hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border: none;
    background: none;
}
.ham-bar {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}
#hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open .ham-bar:nth-child(2) { opacity: 0; }
#hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   MOBILE DRAWER OVERLAY
══════════════════════════════════════════════ */
#mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(2px);
    z-index: 1099;
    opacity: 0;
    transition: opacity .35s ease;
}
#mobile-overlay.visible {
    opacity: 1;
}

/* ══════════════════════════════════════════════
   MOBILE DRAWER PANEL (right side)
══════════════════════════════════════════════ */
#mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0,0,0,.12);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    /* hide when not open — no display:none so CSS transition works */
    visibility: hidden;
}
#mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}

/* ── Drawer Header ─── */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
    flex-shrink: 0;
}
.mobile-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    color: var(--text-secondary);
    transition: background .2s, color .2s, border-color .2s;
}
.mobile-close-btn:hover {
    background: var(--danger-color);
    color: var(--white);
    border-color: var(--danger-color);
}

/* ── Drawer Nav ─── */
.mobile-drawer-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .95rem 1.4rem;
    font-size: .92rem;
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    text-decoration: none;
    transition: color .2s, background .2s;
}
.mobile-link:hover { color: var(--primary-color); background: #f6fef6; }
.mobile-accordion-trigger { user-select: none; }

/* ── Services Sub-panel ─── */
#mobile-services-panel {
    overflow: hidden;
    height: 0;
    opacity: 0;
    background: #f6fef6;
    transition: height .28s ease, opacity .25s ease;
}
#mobile-services-panel.open {
    opacity: 1;
}
.mobile-service-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1.75rem;
    font-size: .85rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    text-decoration: none;
    transition: color .2s, background .2s;
}
.mobile-service-item:hover { color: var(--primary-color); background: #edfced; }
.mobile-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

/* ── Drawer CTA Buttons ─── */
.mobile-ctas {
    padding: 1.1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}
.mobile-cta-primary,
.mobile-cta-secondary {
    width: 100%;
    justify-content: center;
    padding: .8rem;
    font-size: .9rem;
    border-radius: 50px;
}
.mobile-cta-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}
.mobile-cta-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}
.mobile-cta-secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.mobile-cta-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ── Get in Touch block ─── */
.mobile-contact-block {
    margin: 0 1.25rem 1.25rem;
    border-radius: 12px;
    background: #f5fbf5;
    border: 1px solid #d8f0d8;
    padding: 1rem 1.1rem;
    flex-shrink: 0;
}
.mobile-contact-title {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: .65rem;
}
.mobile-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.mobile-contact-list li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .82rem;
    color: var(--text-secondary);
}
.mobile-contact-list li svg { flex-shrink: 0; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
    #desktop-nav, #desktop-ctas { display: none !important; }
    #hamburger { display: flex !important; }
}
@media (max-width: 640px) {
    #top-bar .tagline { display: none; }
}

/* Dot background pattern */
.hero-section {
    background-color: var(--light-bg);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%2309aa0d' fill-opacity='0.07'/%3E%3C/svg%3E");
}

/* Blobs */
.blob {
    position: absolute;
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
    z-index: 0;
}

/* Photo card hover lift */
.photo-card {
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s ease;
    will-change: transform;
}
.photo-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}

/* Primary CTA shimmer */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(249,142,0,0.32);
    transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--secondary-dark); transform: scale(1.03); }
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
    transform: translateX(-100%);
}
.btn-primary:hover::after { animation: shimmer 0.6s ease forwards; }
@keyframes shimmer { to { transform: translateX(100%); } }

/* Outline CTA */
.btn-outline-green {
    border: 2px solid var(--primary-dark);
    color: var(--primary-color);
    background: transparent;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-green:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.03);
}

/* Disclosure bar */
.disclosure-bar {
    border-left: 3px solid var(--primary-color);
    background: rgba(9,170,13,0.06);
}

/* Badge pulse — primary green */
@keyframes softPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(9,170,13,0.35); }
    50%       { box-shadow: 0 0 0 9px rgba(9,170,13,0); }
}
.pulse-ring { animation: softPulse 2.8s ease-in-out infinite; }

/* Trust bar */
.trust-bar { background: var(--white); border-top: 1px solid var(--border); }

/* Animate.css / WOW.js handle scroll reveals — no GSAP initial states needed */

#about-section {
  font-family: var(--font-body);
  background: #f0f4f0;
  padding: 5rem 1.5rem;
  overflow: hidden;
  position: relative;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── EYEBROW ── */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(9,170,13,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(9,170,13,0); }
}

/* ── HEADLINE ── */
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: .75rem;
}
.about-headline span {
  color: var(--primary-color);
  font-style: italic;
}

/* ── TWO-COL LAYOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── LEFT COLUMN ── */
.about-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.about-body p { margin-bottom: 1.1rem; }
.about-body strong { color: var(--text-primary); font-weight: 600; }

/* License badge */
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-left: 3px solid var(--primary-dark);
  background: rgba(9,170,13,.06);
  padding: .75rem 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
  font-size: .83rem;
  color: var(--primary-dark);
  font-weight: 500;
}

/* ── RIGHT COLUMN ── */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Who We Serve card */
.serve-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}
.serve-card-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.serve-card-title i { font-size: .85rem; }

.condition-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.condition-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-primary);
}
.cond-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--primary-light);
  color: var(--primary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

/* Adults card */
.adults-card {
  background: var(--secondary);
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.adults-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.adults-text p:first-child {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .2rem;
}
.adults-text p:last-child {
  font-size: .8rem;
  opacity: .85;
  line-height: 1.5;
}

/* Decorative blobs */
.blob-about {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}
.about-inner { position: relative; z-index: 1; }

/* ── SECTION BG PATTERN ─────────────────── */
#services-section {
  background-color: var(--light-bg);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%2309aa0d' fill-opacity='0.06'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}

/* ── BLOB ───────────────────────────────── */
.blob-svc {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}

/* ── EYEBROW PILL ───────────────────────── */
.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: pulse 2.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(9,170,13,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(9,170,13,0); }
}

/* ── SERVICE CARD ───────────────────────── */
.svc-card {
  position: relative;
  border-radius: 20px;
  height: 453px;
  cursor: pointer;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: box-shadow .35s ease, transform .35s cubic-bezier(.23,1,.32,1);
}
.svc-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,.15);
  transform: translateY(-6px) scale(1.015);
}

/* Image wrapper */
.svc-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.23,1,.32,1);
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.07); }

/* Icon badge */
.svc-icon-badge {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-color);
  z-index: 2;
  transition: background .3s, color .3s, transform .3s;
}
.svc-card:hover .svc-icon-badge {
  background: var(--primary-color);
  color: var(--white);
  transform: translateX(-50%) scale(1.1);
}

/* Footer area */
.svc-foot {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}
.svc-foot h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .35rem;
  transition: color .3s;
}
.svc-card:hover .svc-foot h3 { color: var(--primary-color); }
.svc-foot p {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ── HOVER OVERLAY (description panel) ─── */
.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,140,11,.94) 0%, rgba(5,100,8,.97) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  z-index: 10;
}
.svc-card:hover .svc-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.svc-overlay-icon {
  width: 52px !important; height: 52px !important;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: #fff;
  backdrop-filter: blur(4px);
}
.svc-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .85rem;
}
.svc-overlay ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.svc-overlay ul li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.svc-overlay ul li i {
  flex-shrink: 0;
  color: rgba(255,255,255,.75);
  font-size: .75rem;
}

/* ── SPECIAL NEEDS CARD ─────────────────── */
.special-card {
  background: linear-gradient(135deg, #fff 0%, #f0fdf0 100%);
  border: 1.5px solid #c8f0c8;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow .35s, transform .35s cubic-bezier(.23,1,.32,1);
  cursor: default;
}
.special-card:hover {
  box-shadow: 0 20px 48px rgba(9,170,13,.13);
  transform: translateY(-4px);
}
.special-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(9,170,13,.06);
}

/* Diagnosis pill */
.diag-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--primary-light);
  border: 1px solid rgba(9,170,13,.2);
  color: var(--primary-dark);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 50px;
  transition: background .2s, color .2s, transform .2s;
}
.diag-pill:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.05);
}

/* ── DISCLOSURE BAR ─────────────────────── */
.disclosure-bar {
  border-left: 3px solid var(--primary-color);
  background: rgba(9,170,13,.06);
  border-radius: 0 10px 10px 0;
}

/* svc-hidden classes removed — WOW.js handles scroll reveal */

/* ── FOOTER ───── */
#jabez-footer {
  font-family: var(--font-body);
  background: #222;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Blobs */
.ft-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}
#ft-blob1 { width: 380px; height: 380px; background: rgba(9,170,13,0.08); top: -100px; left: -120px; }
#ft-blob2 { width: 260px; height: 260px; background: rgba(249,142,0,0.06); bottom: 80px; right: -60px; }

/* Main body */
#ft-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 3.5rem 2rem 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

/* Brand column */
.ft-brand {}
.ft-logo {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.ft-logo-icon {
  width: 40px; height: 40px;
  background: var(--primary-color);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ft-logo-icon svg { width: 22px; height: 22px; fill: #fff; }

.ft-logo-text .mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.ft-logo-text .sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ft-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.4rem;
  max-width: 280px;
}

/* License badges */
.ft-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ft-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  background: rgba(9,170,13,0.12);
  border: 1px solid rgba(9,170,13,0.25);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #5edc62;
  letter-spacing: 0.04em;
}
.ft-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* Social icons */
.ft-socials { display: flex; gap: 0.6rem; }
.ft-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--footer-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  color: var(--text-muted);
}
.ft-social:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
.ft-social svg { width: 15px; height: 15px; fill: currentColor; }

/* Link columns */
.ft-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1.1rem;
}
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.ft-links li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.ft-links li a:hover { color: var(--secondary-color); padding-left: 4px; }
.ft-links li a .link-arrow {
  font-size: 0.6rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.ft-links li a:hover .link-arrow { opacity: 1; }

/* Contact column */
.ft-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.ft-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.ft-contact-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(9,170,13,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.ft-contact-icon svg { width: 14px; height: 14px; fill: var(--primary-color); }
.ft-contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.ft-contact-val {
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}
.ft-contact-val a { color: var(--text-soft); text-decoration: none; }
.ft-contact-val a:hover { color: var(--primary-color); }

/* Hours card */
.ft-hours-card {
  margin-top: 1rem;
  background: rgba(9,170,13,0.08);
  border: 1px solid rgba(9,170,13,0.18);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}
.ft-hours-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.ft-hours-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: ft-pulse 2.5s ease-in-out infinite;
}
@keyframes ft-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(9,170,13,0.45); }
  50%      { box-shadow: 0 0 0 7px rgba(9,170,13,0); }
}
.ft-hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ft-hours-row:last-child { border-bottom: none; }
.ft-hours-row span:last-child { color: var(--text-soft); font-weight: 500; }

/* Bottom bar */
#ft-bottom {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem;
  flex-wrap: wrap; gap: 1rem;
}
.ft-copyright { font-size: 0.8rem; color: var(--text-muted); }
.ft-copyright span { color: var(--primary-color); font-weight: 600; }
.ft-bottom-links { display: flex; gap: 1.5rem; }
.ft-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.ft-bottom-links a:hover { color: #fff; }
.ft-hhsc {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.ft-hhsc-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  background: rgba(249,142,0,0.12);
  border: 1px solid rgba(249,142,0,0.25);
  border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  color: #ffb84d;
  letter-spacing: 0.04em;
}

/* .ft-col WOW.js animated — no initial opacity needed */
.ft-col { }

@media (max-width: 900px) {
  #ft-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  #ft-main { grid-template-columns: 1fr; gap: 2rem; }
  #ft-cta-strip { flex-direction: column; align-items: flex-start; }
  #ft-bottom { flex-direction: column; align-items: flex-start; }
  .ft-bottom-links { flex-wrap: wrap; gap: 1rem; }
}

/* ── How to get Care SECTION ────────── */
#get-care {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
  background: #f5f8f5;
}

/* ── BLOBS ───── */
.gc-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}
#gc-blob1 {
  width: 420px; height: 420px;
  background: rgba(9,170,13,0.07);
  top: -120px; right: -100px;
}
#gc-blob2 {
  width: 300px; height: 300px;
  background: rgba(249,142,0,0.06);
  bottom: -60px; left: -80px;
}
#gc-blob3 {
  width: 180px; height: 180px;
  background: rgba(9,170,13,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ── CONTAINER ───────────────────────────── */
.gc-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── EYEBROW + HEADER ────────────────────── */
#gc-eyebrow {
  /* WOW.js animates this element */
}
#gc-headline {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}
#gc-sub {
  /* WOW.js animates this element */
}

/* ── STEPS GRID ──────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

/* dashed connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-color) 0px, var(--primary-color) 8px,
    transparent 8px, transparent 18px
  );
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* ── STEP CARD ───────────────────────────── */
.step-card {
  background: var(--white);
  border: 1.5px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: box-shadow .35s, transform .35s cubic-bezier(.23,1,.32,1), border-color .3s;
  cursor: default;
  z-index: 1;
}
.step-card:hover {
  box-shadow: 0 18px 48px rgba(9,170,13,0.13);
  transform: translateY(-6px);
  border-color: rgba(9,170,13,0.3);
}
.step-card:hover .step-icon-wrap {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.step-card:hover .step-icon-wrap i {
  color: #fff;
  transform: scale(1.12);
}
.step-card:hover .step-num {
  background: var(--primary-color);
  color: #fff;
}

/* Step number badge */
.step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.04em;
  transition: background .3s, color .3s;
  z-index: 2;
}

/* Icon wrapper */
.step-icon-wrap {
  width: 68px; height: 68px;
  background: transparent;
  border: 2px solid var(--primary-dark);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background .3s, border-color .3s;
}
.step-icon-wrap i {
  font-size: 1.5rem;
  color: var(--primary-dark);
  transition: color .3s, transform .3s;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── INSURANCE BADGE ROW ─────────────────── */
#gc-insurance {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ins-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ins-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: border-color .2s, color .2s;
}
.ins-pill i { color: var(--primary-color); font-size: 0.7rem; }
.ins-pill:hover { border-color: var(--primary-color); color: var(--primary-color); }

/* ── PHONE BADGE (floating) ──────────────── */
.gc-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  position: absolute;
  bottom: -18px;
  right: 2.5rem;
  white-space: nowrap;
  z-index: 2;
}
.gc-phone-badge i { color: #fff; font-size: 0.85rem; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid::before { display: none; }
  #gc-cta-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.75rem;
  }
  .gc-phone-badge { bottom: -18px; right: 1.25rem; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
  .gc-cta-btns { flex-direction: column; width: 100%; }
  .btn-cta-white, .btn-cta-outline { justify-content: center; }
  .gc-phone-badge { display: none; }
  #get-care { padding: 4rem 1.25rem 5rem; }
}


/* CTA Section */
.cta-wrap {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  font-family: var(--font-body);

}
.cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.18) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem 2rem 2rem;
  width: 100%;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(9,170,13,0.22);
  border: 1px solid rgba(9,170,13,0.55);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7ee880;
  margin-bottom: 1rem;
}
.cta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #09aa0d;
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(9,170,13,0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(9,170,13,0); }
}
.cta-headline {
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  max-width: 520px;
  margin-bottom: 1rem;
  font-family: "Playfair Display", Georgia, serif;
}
.cta-headline em {
  font-style: normal;
  color: var(--primary-color);
  
}
.cta-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-body {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 340px;
}
.cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}


.btn-arrow {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px;
}

/* ── DISCLOSURE ──────────────────────── */
#csn-disclosure { background: var(--white); padding: 3rem 1.5rem; }
.disclosure-box {
  max-width: 900px; margin: 0 auto;
  background: #fffbf0; border: 1.5px solid rgba(249,142,0,0.3);
  border-radius: 16px; padding: 1.75rem 2rem;
  display: flex; align-items: flex-start; gap: 1.25rem;
}
.disclosure-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(249,142,0,0.12); color: var(--secondary-color);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.disclosure-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--secondary-dark); margin-bottom: .4rem;
}
.disclosure-text { font-size: .875rem; color: var(--text-secondary); line-height: 1.75; }