/* ==========================================================================
   CRAWL SPACE RECOVERY — PRODUCTION STYLESHEET
   Exact Visual & UX Design System Replicating sumppumpfailurecleanup.com
   100% RESPONSIVE ARCHITECTURE (MOBILE, TABLET, DESKTOP, WIDE)
   ========================================================================== */

/* ==========================================================================
   PART 1: DESIGN TOKENS & CSS VARIABLES
   ========================================================================== */
:root {
    /* Color Palette — Exact Reference Ratios */
    --brand-dark-green: #115439;
    --brand-dark-green-hover: #0c3e29;
    --brand-bright-green: #20aa4d;
    --brand-bright-green-hover: #188f3f;
    --brand-navy: #001457;
    --brand-navy-dark: #000d38;
    --brand-gold: #f7be00;

    --bg-page: #f3f3f2;
    --bg-white: #ffffff;
    --bg-green-tint: #eef9f2;
    --bg-navy-tint: #f0f4fc;

    --border-light: #e1e0de;
    --border-green: #a6ddb8;

    --text-heading: #001457;
    --text-body: #36393d;
    --text-muted: #717171;

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-main: var(--font-family);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --shadow-subtle: 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 16px rgba(0, 20, 87, 0.06);
    --shadow-hover: 0 10px 28px rgba(0, 20, 87, 0.12);
    --shadow-cta: 0 6px 20px rgba(32, 170, 77, 0.35);

    --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max: 1200px;
    --container-pad: 16px;

    /* Legacy Token Aliases for Total Backward Compatibility */
    --brand-primary: var(--brand-dark-green);
    --brand-primary-dark: var(--brand-dark-green-hover);
    --brand-accent: var(--brand-bright-green);
    --brand-accent-hover: var(--brand-bright-green-hover);
    --brand-green: var(--brand-bright-green);
    --brand-green-light: var(--bg-green-tint);
    --brand-alert: #EF4444;
    --bg-light: var(--bg-page);
    --bg-subtle: var(--bg-navy-tint);
    --text-dark: var(--text-heading);
    --border-color: var(--border-light);
    --border-dark: rgba(255, 255, 255, 0.12);
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-page);
    font-size: 16px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

main {
    flex: 1;
    width: 100%;
}

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

iframe, video {
    max-width: 100%;
}

a {
    color: var(--brand-dark-green);
    text-decoration: none;
    transition: var(--transition);
}

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

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

p {
    margin-bottom: 1.1rem;
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    color: var(--text-heading);
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

/* ==========================================================================
   PART 3: TYPOGRAPHY HIERARCHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.22;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(28px, 6vw, 34px);
    margin-bottom: 0.9rem;
    line-height: 1.2;
    font-weight: 900;
}

h2 {
    font-size: clamp(22px, 5vw, 28px);
    margin-bottom: 0.8rem;
    line-height: 1.25;
    font-weight: 800;
}

h3 {
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--brand-dark-green);
    line-height: 1.3;
}

h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

/* Section Header Centers */
.section-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px auto;
}

.section-tag, .feature-cat-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-bright-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    background: var(--bg-green-tint);
    border: 1px solid var(--border-green);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   PART 4: TOP EMERGENCY DISPATCH BAR (HIGH CONTRAST)
   ========================================================================== */
.emergency-top-bar {
    background: var(--brand-navy);
    color: #ffffff !important;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

.emergency-top-bar,
.emergency-top-bar * {
    color: #ffffff;
}

.emergency-top-bar strong,
.emergency-top-bar b,
.emergency-top-bar span {
    color: #ffffff !important;
}

.emergency-top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.dispatch-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ffffff !important;
}

.dispatch-status span,
.dispatch-status strong {
    color: #ffffff !important;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background-color: var(--brand-bright-green) !important;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(32, 170, 77, 0.7);
    animation: pulse-green 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(32, 170, 77, 0.7); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 7px rgba(32, 170, 77, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(32, 170, 77, 0); }
}

.top-bar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-cta span {
    color: #ffffff !important;
}

.top-phone-link,
.top-phone-link *,
.emergency-top-bar .top-phone-link,
.emergency-top-bar .top-phone-link * {
    color: var(--brand-gold) !important;
    font-weight: 800;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: auto;
    text-decoration: none;
}

.top-phone-link:hover,
.top-phone-link:hover *,
.emergency-top-bar .top-phone-link:hover,
.emergency-top-bar .top-phone-link:hover * {
    color: #ffffff !important;
    text-decoration: underline;
}

/* ==========================================================================
   PART 5: MAIN HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
}

/* Main Logo Styling - Prominent & Professional */
.brand-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    min-height: 36px;
    padding: 2px 0;
}

.brand-logo-img {
    height: 36px;
    max-height: 43px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    position: relative;
    min-height: 56px;
}

.header-actions-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-phone-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--brand-bright-green);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 50px;
    min-height: 44px;
    min-width: 44px;
    text-decoration: none !important;
    box-shadow: var(--shadow-cta);
}

.mobile-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: var(--bg-page);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 9px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu-btn:hover, .mobile-menu-btn:focus-visible {
    background: var(--bg-green-tint);
    border-color: var(--brand-bright-green);
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--brand-navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Nav Drawer */
.nav-links {
    display: none;
    list-style: none;
}

.nav-links.open, #mainNav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 2px solid var(--border-light);
    box-shadow: 0 16px 36px rgba(0, 20, 87, 0.18);
    padding: 12px 16px 20px 16px;
    gap: 4px;
    z-index: 1000;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.nav-link {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none !important;
}

.nav-link:hover, .nav-link:focus-visible {
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
}

.nav-item-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    position: relative;
}

.dropdown-chevron {
    transition: transform 0.25s ease;
}

.nav-item-dropdown.open .dropdown-chevron,
.nav-item-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: static;
    transform: none;
    background: var(--bg-green-tint);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-sm);
    box-shadow: none;
    padding: 6px 0;
    margin: 4px 0 8px 0;
    list-style: none;
}

.nav-item-dropdown.open .dropdown-menu,
.nav-item-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--brand-dark-green);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: #ffffff;
    color: var(--brand-bright-green);
    padding-left: 22px;
}

.header-cta-btn {
    display: none;
}

/* ==========================================================================
   PART 6: HERO SECTION (BALANCED FIRST-IMPRESSION ARCHITECTURE)
   ========================================================================== */
.hero-section {
    background: var(--bg-white);
    padding: 24px 0 32px 0;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-breadcrumbs {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero-breadcrumbs a {
    color: var(--brand-dark-green);
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-green-tint);
    border: 1px solid var(--border-green);
    color: var(--brand-dark-green);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.hero-title {
    font-size: clamp(24px, 2.6vw, 34px);
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.22;
}

.hero-lead {
    font-size: 14.5px;
    color: var(--text-body);
    margin-bottom: 10px;
    line-height: 1.55;
}

.hero-content p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.55;
}

.hero-bullets {
    list-style: none;
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    padding: 0;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.35;
}

.hero-check-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--brand-bright-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 0;
}

.btn-primary-action,
.emergency-phone-btn,
.footer-phone-btn {
    background: var(--brand-bright-green);
    color: #ffffff !important;
    font-size: 15.5px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-cta);
    transition: var(--transition);
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    min-height: 48px;
    width: auto;
    text-align: center;
}

.btn-primary-action:hover,
.emergency-phone-btn:hover,
.footer-phone-btn:hover {
    background: var(--brand-bright-green-hover);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-secondary-action {
    background: transparent;
    color: var(--brand-dark-green) !important;
    border: 2px solid var(--brand-dark-green);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none !important;
    min-height: 48px;
    width: auto;
    text-align: center;
}

.emergency-secondary-btn,
.btn-banner-secondary {
    background: #ffffff !important;
    color: var(--brand-navy) !important;
    font-size: 15.5px;
    font-weight: 800;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    text-decoration: none !important;
    border: 2px solid #ffffff;
    cursor: pointer;
    font-family: var(--font-family);
    min-height: 48px;
    width: auto;
    text-align: center;
}

.emergency-secondary-btn *,
.btn-banner-secondary * {
    color: var(--brand-navy) !important;
}

.emergency-secondary-btn:hover,
.btn-banner-secondary:hover {
    background: #f1f5f9 !important;
    color: var(--brand-dark-green) !important;
    border-color: #f1f5f9;
    transform: translateY(-2px);
}


.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a1628;
    box-shadow: 0 8px 24px rgba(0, 20, 87, 0.10);
    border: 1px solid var(--border-light);
    height: 100%;
    min-height: 360px;
    max-height: 460px;
    display: flex;
    flex-direction: column;
}

.hero-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1;
}

.hero-trust-overlay {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 20, 87, 0.94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    text-align: left;
}

.hero-trust-overlay h4 {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
}

.hero-trust-overlay p {
    color: var(--brand-gold) !important;
    font-size: 14.5px;
    font-weight: 900;
    margin-bottom: 0;
}

/* ==========================================================================
   PART 7: TRUST BAR (4 BADGES)
   ========================================================================== */
.trust-bar-section {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-page);
    border: 1px solid var(--border-light);
}

.trust-icon-badge {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
    border: 1.5px solid var(--border-green);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-card-text h4, .trust-card-text strong {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 2px;
    display: block;
}

.trust-card-text p, .trust-card-text span {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 0;
    display: block;
}

/* ==========================================================================
   PART 8: MODULAR FEATURE SECTIONS (ZIG-ZAG LAYOUT)
   ========================================================================== */
.feature-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.feature-section:nth-of-type(odd)  { background: var(--bg-white); }
.feature-section:nth-of-type(even) { background: var(--bg-page); }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.feature-content h2 {
    font-size: clamp(22px, 5vw, 26px);
    font-weight: 900;
    color: var(--text-heading);
    margin-bottom: 14px;
    line-height: 1.25;
}

.feature-content h3 {
    font-size: clamp(18px, 4vw, 20px);
    color: var(--brand-dark-green);
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 14px;
}

.feature-bullets {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 16px 0;
    padding: 0;
}

.feature-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.55;
}

.feature-bullet-item strong {
    color: var(--text-heading);
}

.check-bullet-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--bg-green-tint);
    border: 1.5px solid var(--brand-bright-green);
    color: var(--brand-bright-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 20, 87, 0.08);
    min-height: 240px;
    max-height: 340px;
    background: #0a1628;
}

.feature-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-img-badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0, 20, 87, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 210px;
}

.feature-img-badge svg {
    flex-shrink: 0;
    color: var(--brand-bright-green);
}

.feature-img-badge-text strong {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.feature-img-badge-text span {
    display: block;
    font-size: 14.5px;
    font-weight: 900;
    color: var(--brand-gold);
}

.feature-cta-row {
    margin-top: 20px;
}

.feature-cta-row .btn-primary-action {
    width: 100%;
    justify-content: center;
}

/* Inline mini trust bar */
.inline-features-bar {
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-green);
    padding: 28px 0;
}

.inline-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.inline-feature-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--border-green);
}

.inline-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.inline-feature-item strong {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--text-heading);
    display: block;
    line-height: 1.3;
}

.inline-feature-item span {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   PART 9: PROCESS 6-STEP CARD GRID
   ========================================================================== */
.process-steps-section {
    padding: 48px 0;
    background: var(--bg-page);
    border-bottom: 1px solid var(--border-light);
}

.process-steps-grid-2col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.process-step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--brand-bright-green);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.process-step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 8px;
    flex-wrap: wrap;
}

.step-card-badge {
    background: var(--brand-dark-green);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 50px;
}

.step-time-badge {
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid var(--border-green);
}

.step-card-title {
    font-size: 18.5px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-card-desc {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* ==========================================================================
   PART 10: COMPARISON MATRIX & DATA TABLES
   ========================================================================== */
.table-section {
    padding: 44px 0;
    background: var(--bg-white);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-subtle);
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    min-width: 580px;
}

th, td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
}

th {
    background: var(--brand-navy);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

thead th:nth-child(2) {
    background: var(--brand-bright-green);
    color: #ffffff;
}

tbody tr:hover td {
    background: var(--bg-green-tint);
}

tbody td:nth-child(2) {
    background-color: rgba(32, 170, 77, 0.05);
    font-weight: 600;
}

/* Search Box Containers */
.search-box-container {
    max-width: 600px;
    margin: 0 auto 24px auto;
}

.city-search-box,
.search-box-container input {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px !important;
    border: 2px solid var(--brand-dark-green);
    border-radius: var(--radius-sm);
    margin: 12px 0;
    font-family: var(--font-family);
    outline: none;
    min-height: 48px;
    background: #ffffff;
    color: var(--text-heading);
}

.city-search-box:focus,
.search-box-container input:focus {
    border-color: var(--brand-bright-green);
    box-shadow: 0 0 0 3px rgba(32, 170, 77, 0.22);
}

/* State & City Directory Grids */
.state-directory-grid,
.nearby-cities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.state-link-card,
.city-card,
.nearby-cities-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg-white);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--brand-dark-green);
    font-weight: 700;
    font-size: 14.5px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-subtle);
    min-height: 48px;
}

.state-link-card:hover,
.city-card:hover,
.nearby-cities-grid a:hover {
    background: var(--bg-green-tint);
    border-color: var(--brand-bright-green);
    color: var(--brand-dark-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

/* ==========================================================================
   PART 11: FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 48px 0;
    background: var(--bg-page);
}

.faq-accordion, .faq-list {
    display: grid;
    gap: 10px;
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

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

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-family);
    gap: 12px;
    min-height: 48px;
}

.faq-toggle-icon, .faq-icon {
    width: 20px;
    height: 20px;
    color: var(--brand-dark-green);
    font-weight: 900;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.active .faq-toggle-icon,
.faq-item.open .faq-toggle-icon,
.faq-item.active .faq-icon,
.faq-item.open .faq-icon {
    color: var(--brand-bright-green);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.65;
}

.faq-item.active .faq-answer,
.faq-item.open .faq-answer {
    max-height: 800px;
    padding: 0 18px 18px 18px;
}

/* ==========================================================================
   PART 12: EMERGENCY CTA BANNER
   ========================================================================== */
.emergency-call-banner, .emergency-cta-banner {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark-green) 100%);
    color: #ffffff;
    padding: 48px 0;
}

.emergency-call-banner-inner, .emergency-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.emergency-call-banner-inner h2, .emergency-cta-text h3 {
    color: #ffffff;
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 900;
    margin-bottom: 6px;
}

.emergency-call-banner-inner p, .emergency-cta-text p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15.5px;
    margin-bottom: 0;
}

.emergency-call-note {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-top: 10px !important;
}

.emergency-call-banner-inner .btn-primary-action,
.emergency-cta-inner .btn-primary-action {
    width: 100%;
    max-width: 380px;
    font-size: 16.5px;
    padding: 16px 28px;
}

/* ==========================================================================
   PART 13: FOOTER
   ========================================================================== */
.site-footer {
    background: var(--brand-navy-dark);
    color: #cbd5e1;
    padding: 48px 0 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-brand .brand-logo-img {
    height: 42px;
    max-height: 49px;
    width: auto;
    max-width: 175px;
    background: #FFFFFF;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
    object-fit: contain;
}

.footer-brand p, .footer-desc {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
    color: #94a3b8;
}

.footer-col h4, .footer-heading {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 13px;
    gap: 10px;
    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
}

.footer-bottom a:hover {
    color: var(--brand-bright-green);
}

/* ==========================================================================
   PART 14: RESPONSIVE BREAKPOINT SYSTEM
   ========================================================================== */

/* Large Mobile (480px+) */
@media (min-width: 480px) {
    :root {
        --container-pad: 20px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .state-directory-grid,
    .nearby-cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .btn-primary-action, .btn-secondary-action {
        width: auto;
        min-width: 200px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
    .header-inner {
        min-height: 66px;
        padding: 6px 0;
    }
    .brand-logo-img {
        height: 48px;
        max-height: 55px;
        max-width: 200px;
    }
    :root {
        --container-pad: 24px;
    }
    body, p {
        font-size: 16.5px;
        line-height: 1.65;
    }
    h1 {
        font-size: clamp(32px, 4vw, 40px);
    }
    h2 {
        font-size: clamp(24px, 3vw, 30px);
    }
    h3 {
        font-size: clamp(20px, 2.5vw, 24px);
    }
    .hero-section {
        padding: 48px 0 54px 0;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-image-wrap {
        height: 360px;
        min-height: 360px;
        max-height: none;
    }
    .hero-trust-overlay {
        position: absolute;
        bottom: 20px;
        right: 20px;
        margin: 0;
        min-width: 180px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .feature-section {
        padding: 56px 0;
    }
    .feature-image-wrap {
        min-height: 320px;
        max-height: none;
    }
    .inline-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .inline-feature-item {
        padding: 0 16px 20px 16px;
        border-bottom: 1px solid var(--border-green);
    }
    .process-steps-grid-2col {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .process-step-card {
        padding: 28px 24px;
    }
    .state-directory-grid,
    .nearby-cities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {

    /* Desktop Enhanced Header & Logo */
    .header-inner {
        min-height: 74px;
        padding: 6px 0;
    }
    .brand-logo-img {
        height: 58px;
        max-height: 65px;
        max-width: 230px;
    }

    :root {
        --container-pad: 32px;
        --container-max: 1200px;
    }
    body, p {
        font-size: 16.5px;
        line-height: 1.7;
    }
    h1 {
        font-size: clamp(38px, 3.8vw, 48px);
    }
    h2 {
        font-size: clamp(28px, 2.6vw, 34px);
    }
    h3 {
        font-size: clamp(20px, 2vw, 24px);
    }

    /* Desktop Navigation Bar */
    .header-actions-mobile,
    .mobile-menu-btn {
        display: none;
    }

    .nav-links, #mainNav .nav-links {
        display: flex;
        flex-direction: row;
        gap: 18px;
        align-items: center;
        position: static;
        background: transparent;
        border-bottom: none;
        box-shadow: none;
        padding: 0;
        max-height: none;
        overflow-y: visible;
    }

    .nav-link {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-heading);
        padding: 5px 0;
        min-height: auto;
        width: auto;
        position: relative;
    }

    .nav-link:hover, .nav-link:focus-visible {
        background: transparent;
        color: var(--brand-bright-green);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--brand-bright-green);
        transition: var(--transition);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .nav-item-dropdown {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 6px 0;
        width: auto;
    }

    .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: #ffffff;
        min-width: 260px;
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        box-shadow: 0 12px 36px rgba(0, 20, 87, 0.16);
        padding: 8px 0;
        margin: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        z-index: 1100;
    }

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 12px;
        height: 12px;
        background: #ffffff;
        border-left: 1px solid var(--border-light);
        border-top: 1px solid var(--border-light);
        z-index: 1;
        display: block;
    }

    .nav-item-dropdown:hover .dropdown-menu,
    .nav-item-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown-menu li a {
        display: block;
        padding: 11px 20px;
        color: var(--text-body);
        font-size: 14px;
        font-weight: 600;
        min-height: auto;
        white-space: nowrap;
        transition: var(--transition);
    }

    .dropdown-menu li a:hover {
        background: var(--bg-green-tint);
        color: var(--brand-dark-green);
        padding-left: 24px;
    }

    .header-cta-btn {
        background: var(--brand-bright-green);
        color: #ffffff !important;
        font-weight: 700;
        font-size: 14.5px;
        padding: 11px 22px;
        border-radius: var(--radius-sm);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-cta);
        transition: var(--transition);
        text-decoration: none !important;
        white-space: nowrap;
        min-height: 44px;
    }

    .header-cta-btn:hover {
        background: var(--brand-bright-green-hover);
        transform: translateY(-1px);
    }

        /* Desktop Hero Balanced Layout */
    .hero-section {
        padding: 28px 0 36px 0;
    }
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 40px;
        align-items: stretch;
    }
    .hero-image-wrap {
        height: auto;
        min-height: 380px;
        max-height: 480px;
    }

    /* Desktop Trust Cards */
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Desktop Feature Zig-Zag */
    .feature-section {
        padding: 72px 0;
    }
    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        min-height: 440px;
    }
    .feature-grid.reverse {
        direction: rtl;
    }
    .feature-grid.reverse > * {
        direction: ltr;
    }
    .feature-cta-row .btn-primary-action {
        width: auto;
    }

    /* Desktop Inline features */
    .inline-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    .inline-feature-item {
        border-left: 2px solid var(--border-green);
        border-bottom: none;
        padding: 0 28px;
    }
    .inline-feature-item:first-child {
        border-left: none;
        padding-left: 0;
    }

    /* Desktop Emergency CTA Banner */
    .emergency-call-banner-inner, .emergency-cta-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .emergency-call-banner-inner .btn-primary-action,
    .emergency-cta-inner .btn-primary-action {
        width: auto;
    }

    /* Desktop Nearby Cities / State Grid */
    .state-directory-grid,
    .nearby-cities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    /* Desktop Footer (4 columns) */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
    }
}

/* ==========================================================================
   HIGH CONTRAST SAFEGUARDS FOR ALL DARK BACKGROUND SURFACES
   ========================================================================== */

/* Top bar text */
.emergency-top-bar,
.emergency-top-bar span,
.emergency-top-bar strong,
.emergency-top-bar b,
.emergency-top-bar div {
    color: #ffffff !important;
}
.emergency-top-bar a.top-phone-link,
.emergency-top-bar a.top-phone-link * {
    color: var(--brand-gold) !important;
}
.emergency-top-bar a.top-phone-link:hover,
.emergency-top-bar a.top-phone-link:hover * {
    color: #ffffff !important;
}

/* Table Headers */
thead th,
thead th *,
table th,
table th * {
    color: #ffffff !important;
}

/* Hero and Feature Image Overlays / Badges */
.hero-trust-overlay,
.hero-trust-overlay h4,
.hero-trust-overlay strong,
.feature-img-badge,
.feature-img-badge strong {
    color: #ffffff !important;
}
.hero-trust-overlay p,
.hero-trust-overlay span,
.feature-img-badge span {
    color: var(--brand-gold) !important;
}

/* Process Step Badges */
.step-card-badge {
    color: #ffffff !important;
    background: var(--brand-dark-green) !important;
}

/* CTA Banners */
.emergency-call-banner,
.emergency-cta-banner,
.emergency-call-banner-inner,
.emergency-cta-inner {
    color: #ffffff !important;
}
.emergency-call-banner h1,
.emergency-call-banner h2,
.emergency-call-banner h3,
.emergency-call-banner h4,
.emergency-call-banner strong,
.emergency-call-banner b,
.emergency-cta-banner h1,
.emergency-cta-banner h2,
.emergency-cta-banner h3,
.emergency-cta-banner h4,
.emergency-cta-banner strong,
.emergency-cta-banner b {
    color: #ffffff !important;
}
.emergency-call-banner p,
.emergency-cta-banner p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.emergency-call-note {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Action Buttons */
.btn-primary-action,
.btn-primary-action *,
.emergency-phone-btn,
.emergency-phone-btn *,
.footer-phone-btn,
.footer-phone-btn *,
.header-cta-btn,
.header-cta-btn *,
.header-phone-mobile,
.header-phone-mobile * {
    color: #ffffff !important;
}

/* Footer Contrast */
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer strong,
.site-footer b,
.site-footer .footer-heading {
    color: #ffffff !important;
}
.site-footer p,
.site-footer .footer-desc {
    color: #94a3b8 !important;
}
.site-footer .footer-links a {
    color: #94a3b8 !important;
}
.site-footer .footer-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}
.site-footer .footer-bottom,
.site-footer .footer-bottom a {
    color: #94a3b8 !important;
}
.site-footer .footer-bottom a:hover {
    color: var(--brand-bright-green) !important;
}

/* ==========================================================================
   PART 15: COMPLETE 10-PHASE SERVICES ARCHITECTURE (PROFESSIONAL DESIGNER EDITION)
   ========================================================================== */
.complete-services-section {
    padding: 56px 0;
    background: var(--bg-page);
}

.services-metrics-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: 0 auto 36px auto;
}

@media (min-width: 768px) {
    .services-metrics-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.metric-chip {
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 14px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.metric-chip:hover {
    border-color: var(--brand-bright-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.metric-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--brand-dark-green);
    line-height: 1.1;
    margin-bottom: 4px;
    font-family: var(--font-family);
}

.metric-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-phases-container {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 1120px;
    margin: 0 auto;
}

.phase-master-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--brand-dark-green);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(0, 20, 87, 0.04);
    transition: var(--transition);
}

.phase-master-card:hover {
    box-shadow: 0 8px 26px rgba(0, 20, 87, 0.08);
    border-top-color: var(--brand-bright-green);
}

.phase-master-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid #edf2f7;
    flex-wrap: wrap;
}

.phase-title-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phase-icon-badge {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
    border: 1.5px solid var(--border-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phase-master-title {
    font-size: clamp(19px, 2.2vw, 23px);
    font-weight: 800;
    color: var(--text-heading);
    margin: 0;
    line-height: 1.25;
}

.phase-scope-badge {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand-dark-green);
    background: var(--bg-green-tint);
    border: 1px solid var(--border-green);
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.phase-capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .phase-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

.capability-card {
    background: #fbfcfd;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.capability-card:hover {
    background: #ffffff;
    border-color: var(--brand-bright-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.capability-card-body {
    flex: 1;
    margin-bottom: 14px;
}

.capability-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.capability-desc {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.capability-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
}

.capability-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--bg-green-tint);
    color: var(--brand-dark-green) !important;
    border: 1.5px solid var(--border-green);
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none !important;
    transition: var(--transition);
    width: 100%;
}

.capability-cta-btn:hover {
    background: var(--brand-bright-green);
    color: #ffffff !important;
    border-color: var(--brand-bright-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 170, 77, 0.25);
}

.capability-cta-btn svg {
    flex-shrink: 0;
}

.services-cta-banner {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-dark-green) 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    box-shadow: var(--shadow-card);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta-content h3 {
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.services-cta-content h3 a {
    color: var(--brand-gold) !important;
    text-decoration: none;
}

.services-cta-content h3 a:hover {
    text-decoration: underline;
}

.services-cta-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14.5px;
    margin: 0;
}

/* ==========================================================================
   CONTACT INTAKE FORM STYLES
   ========================================================================== */
.intake-form-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 36px 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.intake-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row-1col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-label .required-star {
    color: #e11d48;
    margin-left: 2px;
}

.form-label .optional-tag {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}

.form-control-input,
.form-control-select,
.form-control-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #fafbfc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.form-control-textarea {
    min-height: 90px;
    resize: vertical;
    line-height: 1.5;
}

/* Checkbox Grid */
.checkbox-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.checkbox-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
    user-select: none;
}

.checkbox-tile:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.checkbox-tile input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: var(--brand-accent);
    cursor: pointer;
    margin: 0;
}

.checkbox-tile:has(input[type="checkbox"]:checked) {
    background: rgba(13, 148, 136, 0.08);
    border-color: var(--brand-accent);
    color: var(--brand-navy);
    font-weight: 600;
}

.form-submit-wrapper {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.intake-submit-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--brand-bright-green) 0%, var(--brand-dark-green) 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(32, 170, 77, 0.35);
    transition: all 0.2s ease;
}

.intake-submit-btn:hover {
    background: linear-gradient(135deg, var(--brand-bright-green-hover) 0%, var(--brand-dark-green-hover) 100%);
    box-shadow: 0 6px 20px rgba(32, 170, 77, 0.45);
    transform: translateY(-2px);
}

.intake-submit-btn svg {
    flex-shrink: 0;
}

.form-trust-note {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.form-success-banner {
    display: none;
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    color: #065f46;
    margin-bottom: 20px;
    text-align: center;
}

.form-success-banner.active {
    display: block;
}

.form-success-banner h4 {
    color: #047857;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
}

.form-success-banner p {
    font-size: 14px;
    margin: 0;
    color: #065f46;
}

@media (max-width: 680px) {
    .intake-form-card {
        padding: 24px 18px;
    }
    .form-row-2col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .checkbox-options-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 440px) {
    .checkbox-options-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CONTACT PAGE ENHANCED SECTIONS
   ========================================================================== */
.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.contact-option-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
}

.contact-option-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-bright-green);
}

.contact-option-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.contact-option-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.contact-option-card p {
    font-size: 14.5px;
    color: var(--text-body);
    margin-bottom: 16px;
    flex-grow: 1;
}

.contact-phone-highlight {
    font-size: 17px;
    font-weight: 800;
    color: var(--brand-dark-green);
    display: block;
    margin-bottom: 16px;
}

.contact-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.contact-step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.contact-step-card:hover {
    border-color: var(--brand-bright-green);
    transform: translateY(-3px);
}

.contact-step-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-bright-green);
    background: var(--bg-green-tint);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 12px;
    width: fit-content;
}

.contact-step-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.contact-step-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0;
}

/* Service links grid */
.service-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.service-badge-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text-heading);
    text-decoration: none;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.service-badge-link:hover {
    border-color: var(--brand-bright-green);
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
    transform: translateX(3px);
}

.service-badge-link svg {
    color: var(--brand-bright-green);
    flex-shrink: 0;
}

/* Emergency Checklist Grid */
.emergency-checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 20px 0 28px 0;
}

.emergency-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
}

.emergency-check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--brand-bright-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

/* Location Search Component */
.contact-search-box {
    max-width: 600px;
    margin: 20px auto 0 auto;
    display: flex;
    gap: 10px;
}

.contact-search-input {
    flex: 1;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background: #ffffff;
    outline: none;
}

.contact-search-input:focus {
    border-color: var(--brand-bright-green);
    box-shadow: 0 0 0 3px rgba(32, 170, 77, 0.15);
}

/* Contact Info Box */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}

.contact-info-item {
    text-align: center;
}

.contact-info-item .info-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-info-item .info-val {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-heading);
}

.contact-info-item .info-val a {
    color: var(--brand-dark-green);
}

.contact-info-item .info-val a:hover {
    color: var(--brand-bright-green);
}

/* Insurance box */
.insurance-info-box {
    background: var(--bg-white);
    border-left: 4px solid var(--brand-bright-green);
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    box-shadow: var(--shadow-card);
    max-width: 860px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
    }
    .contact-steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .contact-steps-grid {
        grid-template-columns: 1fr;
    }
    .emergency-checklist-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-search-box {
        flex-direction: column;
    }
}

/* ==========================================================================
   ABOUT PAGE ENHANCED SECTIONS
   ========================================================================== */
.about-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-bright-green);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.about-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0;
}

.about-card p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

.about-pill-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.about-pill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-heading);
    box-shadow: var(--shadow-subtle);
}

.about-pill-item span.icon {
    color: var(--brand-bright-green);
    font-weight: 800;
}

@media (max-width: 900px) {
    .about-grid-3col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .about-grid-3col,
    .about-grid-2col {
        grid-template-columns: 1fr;
    }
}






/* ==========================================================================
   INTERACTIVE CITY & ZIP CODE SEARCH SYSTEM
   ========================================================================== */
.contact-search-wrap {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.contact-search-box {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.contact-search-input {
    flex: 1;
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-family);
    color: var(--text-heading);
    background: #ffffff;
    outline: none;
    transition: var(--transition);
}

.contact-search-input:focus {
    border-color: var(--brand-bright-green);
    box-shadow: 0 0 0 3px rgba(32, 170, 77, 0.18);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    line-height: 1;
    transition: var(--transition);
}

.search-clear-btn:hover {
    color: var(--brand-dark-green);
    background: rgba(0, 0, 0, 0.05);
}

.search-results-dropdown {
    position: relative;
    width: 100%;
    margin-top: 14px;
    background: #ffffff;
    border: 1.5px solid var(--border-green);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 20, 87, 0.08);
    max-height: 420px;
    overflow-y: auto;
    text-align: left;
    padding: 8px;
    animation: searchFadeIn 0.2s ease-out;
}

.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}
.search-results-dropdown::-webkit-scrollbar-track {
    background: var(--bg-page);
    border-radius: 4px;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
    background: var(--border-green);
    border-radius: 4px;
}
.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--brand-bright-green);
}

@keyframes searchFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.search-results-header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 8px 12px 4px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    transition: var(--transition);
    color: var(--text-heading);
    border-bottom: 1px solid var(--bg-page);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover,
.search-result-item.selected {
    background: var(--bg-green-tint);
    color: var(--brand-dark-green);
    padding-left: 18px;
}

.search-result-city {
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-result-city svg {
    color: var(--brand-bright-green);
    flex-shrink: 0;
}

.search-result-badge {
    background: var(--brand-dark-green);
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

.search-result-action {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-bright-green);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.search-result-item:hover .search-result-action {
    color: var(--brand-dark-green);
}

/* ZIP Code Result Card */
.zip-result-card {
    background: var(--bg-green-tint);
    border: 1.5px solid var(--border-green);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-bottom: 6px;
    text-align: left;
}

.zip-result-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.zip-result-tag {
    background: var(--brand-bright-green);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 50px;
    text-transform: uppercase;
}

.zip-result-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--brand-dark-green);
}

.zip-result-desc {
    font-size: 13.5px;
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.4;
}

.zip-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-dark-green);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none !important;
    transition: var(--transition);
}

.zip-result-cta:hover {
    background: var(--brand-bright-green);
    transform: translateY(-1px);
}

.search-status-box {
    padding: 16px;
    text-align: center;
    color: var(--text-body);
    font-size: 14px;
}

.search-loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(17, 84, 57, 0.2);
    border-top-color: var(--brand-bright-green);
    border-radius: 50%;
    animation: searchSpin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes searchSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .contact-search-box {
        flex-direction: column;
    }
    .contact-search-box .btn-primary-action {
        width: 100% !important;
        justify-content: center;
    }
}
