/* =====================================================
   Virginia Home Care Insurance Program
   Stylesheet
   ===================================================== */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --color-navy: #0B0B45;
    --color-navy-dark: #07072e;
    --color-green: #6C9934;
    --color-green-dark: #557a28;
    --color-white: #FFFFFF;
    --color-gray-light: #F5F5F7;
    --color-text: #333333;
    --color-muted: #666666;
    --color-border: #e2e2e8;

    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Roboto Mono', 'Courier New', monospace;

    --container-max: 1200px;
    --container-pad: 1.5rem;
    --section-pad-desktop: 5rem;
    --section-pad-mobile: 3rem;

    --shadow-card: 0 2px 12px rgba(11, 11, 69, 0.08);
    --shadow-card-hover: 0 8px 28px rgba(11, 11, 69, 0.14);

    --transition: 0.25s ease;
}

/* =====================================================
   Reset and Base
   ===================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-navy);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-green);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: var(--color-navy);
}

h1 {
    font-size: 2rem;
    font-weight: 800;
}

h2 {
    font-size: 1.75rem;
    font-weight: 800;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

ul, ol {
    margin: 0 0 1rem 0;
    padding-left: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
}

/* =====================================================
   Skip Link / Accessibility
   ===================================================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
    color: var(--color-white);
}

:focus-visible {
    outline: 3px solid var(--color-green);
    outline-offset: 2px;
}

/* =====================================================
   Layout Helpers
   ===================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    width: 100%;
}

.section {
    padding: var(--section-pad-mobile) 0;
}

.section--gray {
    background: var(--color-gray-light);
}

.section--navy {
    background: var(--color-navy);
    color: var(--color-white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3 {
    color: var(--color-white);
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--color-muted);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.0625rem;
}

.section--navy .section-heading p {
    color: rgba(255, 255, 255, 0.85);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}

.btn--green {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

.btn--green:hover {
    background: var(--color-green-dark);
    border-color: var(--color-green-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(108, 153, 52, 0.3);
}

.btn--navy {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn--navy:hover {
    background: var(--color-navy-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(11, 11, 69, 0.3);
}

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline-white:hover {
    background: var(--color-white);
    color: var(--color-navy);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.125rem 2rem;
    font-size: 1rem;
}

/* =====================================================
   Top Bar
   ===================================================== */
.topbar {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.topbar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
}

.topbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-green);
    color: var(--color-white);
    padding: 0.4rem 0.9rem;
    border-radius: 3px;
    font-weight: 600;
    transition: background var(--transition);
}

.topbar__phone:hover {
    background: var(--color-green-dark);
    color: var(--color-white);
}

.topbar__social {
    display: inline-flex;
    gap: 0.5rem;
}

.topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-white);
    border-radius: 3px;
    transition: background var(--transition);
}

.topbar__social a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

/* =====================================================
   Main Header
   ===================================================== */
.header {
    background: var(--color-white);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    line-height: 0;
}

.header__logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.header__nav {
    display: none;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-menu__item,
.nav-menu__link {
    white-space: nowrap;
}

.nav-menu__item {
    position: static;
    margin: 0;
}

.nav-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: #0B0B45;
    text-decoration: none;
    padding: 16px 0;
    line-height: 1;
    transition: color 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-menu__link:hover,
.nav-menu__item--has-dropdown:hover > .nav-menu__link {
    color: #6C9934;
}

.nav-menu__caret {
    font-size: 10px;
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.nav-menu__item--has-dropdown:hover .nav-menu__caret,
.nav-menu__item--has-dropdown:focus-within .nav-menu__caret {
    transform: rotate(180deg);
}

/* Mega menu - opaque white panel, 3-col grid INSIDE the panel */
.mega-menu {
    display: none;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    border-top: 1px solid #e5e5e5 !important;
    padding: 48px 64px !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 64px !important;
    margin: 0 !important;
    opacity: 1 !important;
}

/* Invisible bridge extends the dropdown's hover area UPWARD,
   covering the gap between the nav link and the dropdown panel.
   Belongs to .mega-menu, so .mega-menu:hover stays true while
   the cursor is in the bridge zone. */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 24px;
    background: transparent;
}

/* Keep dropdown open while hovering EITHER the nav item OR the dropdown
   (including its invisible bridge zone). */
.nav-menu__item--has-dropdown:hover > .mega-menu,
.nav-menu__item--has-dropdown:focus-within > .mega-menu,
.mega-menu:hover {
    display: grid !important;
}

.mega-col {
    min-width: 0;
}

.mega-col-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mega-col-intro h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #0B0B45;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.mega-col-intro p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.mega-col-intro .btn-green {
    display: inline-block;
    background: #6C9934;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 9999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.mega-col-intro .btn-green:hover {
    background: #557a28;
    color: #ffffff;
}

.mega-col-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-col-links li {
    border-bottom: 1px solid rgba(11, 11, 69, 0.15);
    margin: 0;
}

.mega-col-links li:last-child {
    border-bottom: none;
}

.mega-col-links a {
    display: block;
    padding: 16px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #0B0B45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-col-links a:hover {
    color: #6C9934;
}

.header__cta {
    display: none;
    gap: 12px;
    align-items: center;
}

.header__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    color: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.25rem;
}

.header__menu-toggle:hover {
    background: var(--color-navy-dark);
}

/* Pill-style CTA button (overrides .btn defaults) */
.btn--pill {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 9999px;
    padding: 12px 24px;
    min-height: 48px;
}

/* =====================================================
   Mobile Menu
   ===================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 92vw);
    height: 100vh;
    background: var(--color-white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu__title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9375rem;
}

.mobile-menu__close {
    background: var(--color-navy);
    color: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.25rem;
}

.mobile-menu__nav {
    flex: 1;
    padding: 0.75rem 1.5rem;
}

.mobile-menu__nav > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__item {
    border-bottom: 1px solid var(--color-border);
    margin: 0;
}

.mobile-menu__link {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1rem;
    text-decoration: none;
}

.mobile-menu__parent {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-navy);
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
}

.mobile-menu__parent i {
    color: var(--color-green);
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.mobile-menu__parent[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-menu__sub {
    list-style: none;
    padding: 0 0 0.75rem 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu__item[data-open="true"] .mobile-menu__sub {
    max-height: 800px;
}

.mobile-menu__sub li {
    margin: 0;
}

.mobile-menu__sub a {
    display: block;
    padding: 0.6rem 0 0.6rem 1rem;
    font-size: 0.9375rem;
    color: var(--color-navy);
    border-left: 2px solid var(--color-green);
    margin-left: 0.5rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-menu__sub a:hover {
    color: var(--color-green);
}

.mobile-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--color-border);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 69, 0.55);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

body.no-scroll {
    overflow: hidden;
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--color-white);
    padding: 4rem 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 69, 0.65);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero__content h1 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero__content p {
    font-size: 1.0625rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero__highlight {
    color: var(--color-white);
    font-family: var(--font-mono);
    font-weight: 700;
    background: rgba(108, 153, 52, 0.85);
    padding: 0 0.2em;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.hero__card {
    background: rgba(7, 7, 46, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 1.75rem;
    color: var(--color-white);
}

.hero__card h2 {
    color: var(--color-white);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero__card li {
    padding: 0.55rem 0 0.55rem 1.75rem;
    position: relative;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__card li:last-child {
    border-bottom: none;
}

.hero__card li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-green);
    position: absolute;
    left: 0;
    top: 0.65rem;
}

/* =====================================================
   Program (Centerpiece) Section
   ===================================================== */
.program__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.program__col {
    background: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border-top: 4px solid var(--color-navy);
}

.program__col--solution {
    border-top-color: var(--color-green);
}

.program__col h3 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.program__col p {
    color: var(--color-text);
}

.program__col ul {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
}

.program__col ul li {
    padding: 0.65rem 0 0.65rem 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.program__col ul li:last-child {
    border-bottom: none;
}

.program__col ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-green);
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.stat-callout {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-green);
    margin: 0.75rem 0;
    display: block;
}

/* =====================================================
   VDH Requirements Cards
   ===================================================== */
.vdh-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.vdh-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.75rem 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-card);
}

.vdh-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.vdh-card__icon {
    width: 56px;
    height: 56px;
    background: var(--color-navy);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vdh-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.vdh-card p {
    color: var(--color-muted);
    font-size: 0.9375rem;
    margin: 0;
}

/* Expanded VDH requirements (long-form sub-sections) */
.vdh-requirements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 880px;
    margin: 2.5rem auto 0 auto;
}

.vdh-requirement {
    padding-top: 2.5rem;
    border-top: 3px solid var(--color-green);
}

.vdh-requirement:first-child {
    padding-top: 0;
    border-top: none;
}

.vdh-requirement h3 {
    color: var(--color-navy);
    margin: 0 0 1.25rem 0;
    font-size: 1.375rem;
    line-height: 1.3;
}

.vdh-requirement p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.vdh-requirement p:last-child {
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .vdh-requirement h3 {
        font-size: 1.5rem;
    }
}

/* =====================================================
   Why Choose Us
   ===================================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.why-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.why-card__icon {
    width: 64px;
    height: 64px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.why-card h3 {
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--color-muted);
    margin: 0;
}

/* =====================================================
   Service Area / Cities Grid
   ===================================================== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.cities-grid li {
    background: var(--color-gray-light);
    border-left: 3px solid var(--color-green);
    padding: 0.875rem 1rem;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    color: var(--color-navy);
    font-size: 0.9375rem;
    margin: 0;
    transition: background var(--transition), transform var(--transition);
}

.cities-grid li:hover {
    background: #e8e8ee;
    transform: translateX(3px);
}

/* =====================================================
   Process Section
   ===================================================== */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    counter-reset: step-counter;
}

.process-step {
    background: var(--color-white);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-card);
    padding-top: 3rem;
}

.process-step__number {
    position: absolute;
    top: -22px;
    left: 1.75rem;
    width: 48px;
    height: 48px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(108, 153, 52, 0.3);
}

.process-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.process-step p {
    color: var(--color-muted);
    margin: 0;
    font-size: 0.9375rem;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    margin-bottom: 0.875rem;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-card);
    border-color: var(--color-green);
}

.faq-item summary {
    padding: 1.125rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: var(--color-gray-light);
}

.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--color-green);
    font-size: 0.875rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item__body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.faq-item__body p {
    margin: 0 0 1rem 0;
}

.faq-item__body p:last-child {
    margin-bottom: 0;
}

/* =====================================================
   Final CTA
   ===================================================== */
.final-cta {
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto 2rem auto;
}

.final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: #0a0a0a;
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 32px 40px;
    font-family: var(--font-body);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.footer__col {
    margin: 0;
}

.footer__col--brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__logo {
    display: inline-block;
    line-height: 0;
}

.footer__logo-img {
    width: 100%;
    max-width: 240px;
    height: auto;
    display: block;
}

.footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__contact a:hover {
    color: #6C9934;
}

.footer__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 24px 0;
    padding: 0;
    border: none;
    line-height: 1.2;
    display: block;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer__links a:hover {
    color: #6C9934;
}

.footer__seo {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.7;
}

.footer__seo p {
    margin: 0;
}

.footer__authority {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 32px 0 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__authority a {
    color: #6C9934;
    text-decoration: underline;
}

.footer__authority a:hover {
    color: #84b042;
}

.footer__divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 48px 0 24px;
    height: 0;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.footer__social {
    display: inline-flex;
    gap: 12px;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    transition: background 0.2s ease;
    text-decoration: none;
}

.footer__social a:hover {
    background: #6C9934;
    color: var(--color-white);
}

/* =====================================================
   Responsive: Tablet (768px+)
   ===================================================== */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.375rem; }

    body {
        font-size: 1.0625rem;
    }

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero__grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
    }

    .hero__content h1 {
        font-size: 2.5rem;
    }

    .program__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .vdh-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .footer__copyright {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* =====================================================
   Responsive: Desktop (1024px+)
   ===================================================== */
@media (min-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }

    .section {
        padding: var(--section-pad-desktop) 0;
    }

    .hero {
        padding: 6rem 0;
    }

    .hero__content h1 {
        font-size: 3rem;
    }

    .header__nav {
        display: flex;
    }

    .header__cta {
        display: inline-flex;
    }

    .header__menu-toggle {
        display: none;
    }

    .footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
        gap: 48px;
    }

    .vdh-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vdh-grid .vdh-card:nth-child(4),
    .vdh-grid .vdh-card:nth-child(5) {
        grid-column: auto;
    }

    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* =====================================================
   Stacking context safety
   Pin page content below the header/dropdown layer.
   ===================================================== */
main,
.hero,
.section {
    position: relative;
    z-index: 1;
}

/* =====================================================
   Print
   ===================================================== */
@media print {
    .topbar,
    .header,
    .mobile-menu,
    .mobile-menu-overlay,
    .final-cta,
    .footer {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* =====================================================
   Mega-menu column overflow / wrapping overrides
   ===================================================== */
.mega-menu {
    display: none;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 64px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.nav-menu__item--has-dropdown:hover .mega-menu {
    display: grid !important;
}

.mega-col {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}

.mega-col-intro {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.mega-col-intro h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    color: #0B0B45 !important;
    line-height: 1.2 !important;
    margin: 0 0 20px 0 !important;
    max-width: 100% !important;
}

.mega-col-intro p {
    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
    color: #0B0B45 !important;
    line-height: 1.6 !important;
    margin: 0 0 32px 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
}

.mega-col-intro .btn-green {
    display: inline-block !important;
    background: #6C9934 !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 9999px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

/* =====================================================
   Mega-menu intro heading overflow fix
   ===================================================== */
.mega-col-intro {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.mega-col-intro h3 {
    font-size: 24px !important;
    line-height: 1.25 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
    white-space: normal !important;
}

/* =====================================================
   Mobile menu: full-screen overlay when open
   Scoped to .is-open / [aria-hidden="false"] so the menu
   still slides off-screen in its closed state.
   ===================================================== */
@media (max-width: 1023px) {
    .mobile-menu.is-open,
    #mobile-menu.is-open,
    .header__mobile-menu.is-open,
    .mobile-nav.is-open,
    .mobile-menu[aria-hidden="false"],
    #mobile-menu[aria-hidden="false"] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100% !important;
        background: #ffffff !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        padding: 24px !important;
        box-sizing: border-box !important;
    }

    body.mobile-menu-open,
    body.menu-open,
    body.no-scroll {
        overflow: hidden !important;
    }
}

/* === CONSISTENT CONTENT WIDTH ACROSS ALL SECTIONS === */

/* Standard container for all section content */
section .container,
.section__container,
.section-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
    box-sizing: border-box !important;
}

/* Section intro paragraphs - same width as body content, NOT narrower */
section > .container > p:first-of-type,
.section__intro,
.section-intro,
section .intro,
section .lead {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #333333 !important;
}

/* All section paragraphs match the same width */
section p {
    max-width: 100% !important;
    text-align: left !important;
}

/* H2 headings consistent left-align */
section h2 {
    text-align: left !important;
    max-width: 100% !important;
}

/* H3 sub-headings consistent left-align */
section h3 {
    text-align: left !important;
    max-width: 100% !important;
}

/* Remove any centered text in section bodies */
section .text-center {
    text-align: left !important;
}
