/* ================================================================
   ROOF REPAIR PASADENA TX — Design System
   SCOS v2 Engine 05 | Mobile-First | Performance Budget
   ================================================================ */

/* ── CSS Custom Properties (Design Tokens) ── */
:root {
    /* Brand — Navy / Slate Blue palette (roofing trust + premium) */
    --primary: #0c2340;
    --primary-light: #163a5f;
    --primary-foreground: #ffffff;

    /* Accent — Vivid Blue (interactive elements) */
    --accent: #2563eb;
    --accent-dark: #1d4ed8;
    --accent-soft: rgba(37, 99, 235, 0.08);

    /* CTA — Warm Orange (conversion, distinct from brand) */
    --cta: #f97316;
    --cta-dark: #ea580c;

    /* Surfaces */
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-subtle: #f1f5f9;
    --card-border: #e2e8f0;

    /* Text */
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Semantic */
    --success: #16a34a;
    --error: #dc2626;
    --warning: #f59e0b;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container: 1280px;
    --header-height: 72px;

    /* Radius */
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px -10px rgba(12, 35, 64, 0.18);

    /* Motion */
    --transition: 0.25s ease;
    --bounce: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-bottom: 68px;
    /* mobile sticky CTA */
}

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

a {
    color: var(--accent-dark);
    text-decoration: none;
    transition: all var(--transition);
}

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

ul {
    list-style: none;
}

/* ── Layout ── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 64px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--primary);
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
    background: var(--accent-soft);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-tag svg {
    width: 14px;
    height: 14px;
}

.section-dark .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cta);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 14px;
}

.section-dark .section-title {
    color: #fff;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: normal;
    text-align: center;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta {
    background: var(--cta);
    color: #fff;
    border-color: var(--cta);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-cta:hover {
    background: var(--cta-dark);
    border-color: var(--cta-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.9);
}

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-emergency {
    background: var(--error);
    color: #fff;
    border-color: var(--error);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.35);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── HEADER (sticky, glass, logo+nav+actions) ── */
.emergency-bar,
.top-bar {
    display: none !important;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    height: var(--header-height);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-decoration: none;
}

.header-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary);
    line-height: 1.15;
}

.header-logo-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

/* ── HEADER NAVIGATION (Desktop) ── */
.header-nav {
    display: none;
    align-items: stretch;
    height: 100%;
    gap: 2px;
}

.header-nav .nav-link,
.header-nav>a {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: center;
}

.header-nav .nav-link:hover,
.header-nav>a:hover {
    color: var(--accent-dark);
    background: var(--bg-alt);
}

.header-nav .nav-link.active,
.header-nav>a.active {
    color: var(--accent-dark);
    background: var(--accent-soft);
}

/* ── DROPDOWN CONTAINER (Full Header Height) ── */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    align-self: stretch;
}

.nav-dropdown-toggle {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    transition: all var(--transition);
}

.nav-dropdown-toggle:hover,
.nav-item-dropdown:hover .nav-dropdown-toggle,
.nav-item-dropdown.is-open .nav-dropdown-toggle {
    color: var(--accent-dark);
    background: var(--bg-alt);
}

.dropdown-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s var(--bounce);
    color: var(--text-muted);
}

.nav-item-dropdown:hover .dropdown-chevron,
.nav-item-dropdown:focus-within .dropdown-chevron,
.nav-item-dropdown.is-open .dropdown-chevron {
    transform: rotate(180deg);
    color: var(--accent-dark);
}

/* ── REDESIGNED MEGA MENU SYSTEM ── */
.mega-menu {
    position: absolute;
    top: 100%;
    left: -140px;
    width: 820px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px -10px rgba(12, 35, 64, 0.2), 0 0 0 1px rgba(12, 35, 64, 0.05);
    padding: 22px 24px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.22s var(--bounce), transform 0.22s var(--bounce), visibility 0.22s;
    z-index: 1050;
    overflow: hidden;
}

/* ── AREAS MEGA MENU REDESIGN (3 COLUMNS AREA-WISE) ── */
.nav-item-dropdown .mega-menu-areas,
.nav-item-dropdown .mega-menu[style*="width"] {
    width: 820px !important;
    left: -260px !important;
    padding: 20px 24px 0 !important;
}

/* Unbreakable cursor bridge between nav toggle and dropdown */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: -30px;
    right: -30px;
    height: 28px;
    background: transparent;
    pointer-events: auto;
}

/* Active / Hover display */
.nav-item-dropdown:hover > .mega-menu,
.nav-item-dropdown:focus-within > .mega-menu,
.nav-item-dropdown.is-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(2px);
}

/* Grid layout for columns */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-menu-areas .mega-menu-grid,
.mega-menu[style*="width"] .mega-menu-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--bg-alt);
}

.mega-col-title svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
    flex-shrink: 0;
}

.mega-menu-areas .mega-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    background: transparent;
    padding: 0 0 6px;
    border: 0;
    border-bottom: 2px solid var(--bg-alt);
    border-radius: 0;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
}

/* City Item specific badge in Areas Dropdown */
.city-badge {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.city-badge-hq {
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent-dark);
}

.city-badge-fast {
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
}

.city-badge-sub {
    background: rgba(100, 116, 139, 0.08);
    color: var(--text-muted);
}

/* Pasadena remains the business location, but it is not listed as an Areas
   dropdown destination. This applies to the desktop mega menu and mobile menu. */
.mega-menu-item[href="/service-areas/pasadena.html"],
.mobile-sub-link[href="/service-areas/pasadena.html"] {
    display: none !important;
}

.mega-menu-areas .mega-menu-item {
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.mega-menu-areas .mega-menu-item:hover {
    background: var(--bg-alt);
    border-color: rgba(37, 99, 235, 0.15);
    transform: translateX(3px);
}

.mega-menu-areas .mega-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.mega-menu-areas .mega-item-title {
    font-size: 0.84rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.mega-menu-areas .mega-item-desc {
    font-size: 0.7rem;
    margin-top: 1px;
}

/* Areas has four destinations per column. Keep its action row as compact and
   scannable as the Services dropdown without sacrificing any links. */
.mega-menu-areas .mega-menu-footer {
    margin-top: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mega-menu-areas .mega-footer-info {
    white-space: nowrap;
    font-size: 0.75rem;
}

.mega-menu-areas .mega-footer-actions {
    gap: 6px;
    flex-shrink: 0;
}

.mega-menu-areas .mega-footer-call {
    padding: 4px 6px;
    font-size: 0.78rem;
}

.mega-menu-areas .btn-sm {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius);
    text-decoration: none;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.mega-menu-item:hover {
    background: var(--bg-alt);
    border-color: rgba(37, 99, 235, 0.12);
    transform: translateX(3px);
}

.mega-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mega-item-icon svg {
    width: 16px;
    height: 16px;
}

.mega-menu-item:hover .mega-item-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.mega-item-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.mega-item-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.mega-menu-item:hover .mega-item-title {
    color: var(--accent-dark);
}

.mega-item-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin-top: 2px;
    font-weight: 400;
}

/* Mega menu footer action strip */
.mega-menu-footer {
    margin-top: 16px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 12px 24px;
    border-top: 1px solid var(--card-border);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mega-footer-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mega-footer-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.mega-footer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.mega-footer-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mega-footer-call svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

.mega-footer-call:hover {
    color: var(--accent-dark);
    background: rgba(37, 99, 235, 0.08);
}

.mega-footer-call svg {
    width: 15px;
    height: 15px;
    color: var(--accent);
}

.mega-footer-call:hover {
    color: var(--accent-dark);
    background: var(--card-border);
}

/* Header actions (phone + CTA button) */
.header-actions {
    display: none;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.header-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    padding: 6px 10px;
    border-radius: 8px;
    transition: all var(--transition);
}

.header-phone-link svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

/* Keep the shared header phone icon constrained even with cached page CSS. */
.header .header-phone-link > svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    flex: 0 0 16px !important;
}

.header-phone-link:hover {
    background: var(--bg-alt);
    color: var(--accent-dark);
}

/* Hamburger */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid var(--card-border);
    cursor: pointer;
    color: var(--text);
    border-radius: 8px;
    transition: all var(--transition);
}

.hamburger:hover {
    background: var(--bg-alt);
}

.hamburger svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

/* ── MOBILE NAVIGATION ── */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100dvh;
    background: var(--bg);
    z-index: 1100;
    transition: right 0.35s var(--bounce);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.08);
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--card-border);
}

.mobile-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text);
    transition: all var(--transition);
}

.mobile-drawer-close:hover {
    background: var(--card-border);
}

.mobile-drawer-close svg {
    width: 20px;
    height: 20px;
}

.mobile-drawer-body {
    padding: 8px 20px 24px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--bg-alt);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--accent-dark);
}

.mobile-nav-link svg {
    width: 18px;
    height: 18px;
    color: var(--text-light);
    transition: transform var(--transition);
}

.mobile-nav-link.expanded svg {
    transform: rotate(180deg);
    color: var(--accent-dark);
}

.mobile-sub-list {
    display: none;
    padding: 4px 0 8px 16px;
}

.mobile-sub-list.open {
    display: block;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.mobile-sub-link:hover {
    color: var(--accent-dark);
}

.mobile-sub-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.mobile-sub-icon svg {
    width: 14px;
    height: 14px;
}

.mobile-drawer-cta {
    padding: 20px;
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
    text-decoration: none;
}

.mobile-cta-phone svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
}

/* Mobile sticky bottom bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: var(--bg);
    border-top: 1px solid var(--card-border);
    padding: 10px 16px;
    display: flex;
    gap: 10px;
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.05);
}

.mobile-sticky-bar .btn {
    flex: 1;
    padding: 12px;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* ── HERO ── */
.hero {
    position: relative;
    padding: 48px 0 56px;
    background-color: #061324;
    background-image:
        radial-gradient(circle at 15% 5%, rgba(56, 189, 248, .15), transparent 32rem),
        radial-gradient(circle at 88% 88%, rgba(234, 88, 12, .13), transparent 25rem),
        linear-gradient(135deg, var(--primary), #061324 68%);
    overflow: hidden;
}

/* Use the homepage hero surface on the About and Contact hero variants. */
.about-hero,
.contact-hero-section {
    background-color: #061324 !important;
    background-image:
        radial-gradient(circle at 15% 5%, rgba(56, 189, 248, .15), transparent 32rem),
        radial-gradient(circle at 88% 88%, rgba(234, 88, 12, .13), transparent 25rem),
        linear-gradient(135deg, var(--primary), #061324 68%) !important;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    z-index: 2;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    color: #fff;
}

/* Breadcrumb (shared across all hero variants) */
.svc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,.5);
    justify-content: center;
}
.svc-breadcrumb a { color: rgba(255,255,255,.7); transition: color 0.2s; text-decoration: none; font-weight: 500; }
.svc-breadcrumb a:hover { color: #fff; text-decoration: underline; }
.svc-breadcrumb svg { width: 12px; height: 12px; opacity: 0.6; flex-shrink: 0; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.35);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: #93c5fd;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero h1 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.hero h1 mark {
    background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: #cbd5e1;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 540px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-stat,
.hero-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
}

.hero-stat-val,
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--cta, #f97316);
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.hero-stat-label,
.hero-stat-lbl {
    font-size: 0.74rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}

/* Hero image — hidden for centered text-only hero */
.hero-visual {
    display: none !important;
    position: relative;
}

.hero-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

/* Floating trust cards on hero image */
.hero-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero-float.card-1 {
    bottom: 28px;
    left: -14px;
    animation-delay: 0s;
}

.hero-float.card-2 {
    top: 28px;
    right: -14px;
    animation-delay: 1.5s;
}

.hero-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-float-text strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
}

.hero-float-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── TRUST BAR ── */
.trust-bar {
    padding: 40px 0;
    border-bottom: 1px solid var(--card-border);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.trust-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.trust-chip-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.trust-chip-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-dark);
}

.trust-chip-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

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

/* Explicit Grid Variants */
.grid-2,
.grid.grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.grid-3,
.grid.grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px;
}

.grid-4,
.grid.grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px;
}

.card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.card-body {
    padding: 28px;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-soft), rgba(37, 99, 235, 0.15));
    border-radius: var(--radius);
    margin-bottom: 18px;
    color: var(--accent-dark);
    transition: all var(--transition);
}

.card:hover .card-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.05);
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.25;
}

.card-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--accent-dark);
    transition: gap var(--transition), color var(--transition);
}

.card-link:hover {
    gap: 10px;
    color: var(--accent);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.card-link:hover svg {
    transform: translateX(2px);
}

/* ── ABOUT SPLIT ── */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.split-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.split-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.split-img-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--cta);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 20px 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.check-item svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* ── PROCESS PIPELINE (5-Step Redesigned Flow) ── */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    counter-reset: step;
}

.process-card {
    position: relative;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 18px rgba(12, 35, 64, 0.04);
    counter-increment: step;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(12, 35, 64, 0.09);
    border-color: #93c5fd;
}

.process-card:hover::before {
    opacity: 1;
}

.process-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0c2340 0%, #1e3a8a 100%);
    color: #ffffff;
    border-radius: 50%;
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(12, 35, 64, 0.18);
    flex-shrink: 0;
    border: 2px solid #ffffff;
}

.process-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0c2340;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-card p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── CTA BANNER ── */
.cta-section {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0a1f38 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 50%;
}

.cta-section h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 28px;
    font-size: 1rem;
}

/* Universal final-CTA visual system. */
.cta-section {
    isolation: isolate;
    background: linear-gradient(135deg, #0d2949 0%, #071a31 100%);
}

.cta-section::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -13rem;
    right: -8rem;
    width: 23rem;
    height: 23rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, .09);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -.03em;
}

.cta-section .btn-ghost {
    border: 1px solid rgba(255,255,255,.48);
    background: transparent;
    color: #fff;
}

.cta-section .btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    color: #fff;
}

.cta-phone-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-phone-block a {
    color: var(--cta);
}

.cta-phone-block svg {
    width: 24px;
    height: 24px;
    color: var(--cta);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
    padding: 28px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-stars {
    color: #facc15;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.testimonial-location {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ── FAQ ── */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}

.faq-q:hover {
    color: var(--accent-dark);
}

.faq-q-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--text-muted);
}

.faq-q-icon svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.faq-item.active .faq-q-icon {
    background: var(--accent);
    color: #fff;
}

.faq-item.active .faq-q-icon svg {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 800px;
}

.faq-a-inner {
    padding: 0 0 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── SERVICE AREAS ── */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.area-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    text-decoration: none;
}

.area-chip svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.area-chip:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    background: var(--accent-soft);
    transform: translateX(3px);
}

/* ── CONTACT FORM ── */
.form-card {
    background: var(--bg);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--card-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition);
    min-height: 48px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-textarea {
    min-height: 110px;
    resize: vertical;
}

/* ── FOOTER ── */
.footer {
    background: #0a1628;
    color: var(--text-light);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 28px;
}

.footer-local-business {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-logo {
    display: block;
    margin-bottom: 10px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
}

.footer-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 320px;
}

.footer-desc strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-highlights {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px 14px;
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.footer-highlights span::before {
    content: "✓";
    color: var(--cta);
    font-weight: 800;
    font-size: 0.82rem;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    flex-wrap: wrap;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon:hover {
    background: var(--cta);
    border-color: #fb923c;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.45);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.footer-heading a {
    color: #ffffff;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-heading a:hover {
    color: var(--cta);
}

.footer-hub-link {
    color: var(--cta) !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-top: 8px !important;
    padding-top: 4px !important;
    font-size: 0.86rem !important;
    transition: all var(--transition) !important;
}

.footer-hub-link:hover {
    color: #fb923c !important;
    transform: translateX(4px) !important;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.84rem;
    color: var(--text-light);
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--cta);
    transform: translateX(3px);
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    color: var(--cta);
}

.footer-contact-row strong {
    display: block;
    font-size: 0.78rem;
    color: #fff;
    margin-bottom: 2px;
}

.footer-contact-row a,
.footer-contact-row span {
    font-size: 0.84rem;
    color: var(--text-light);
}

.footer-contact-row a:hover {
    color: var(--cta);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.footer-bottom-links a:hover {
    color: var(--cta);
}

/* Home footer: a clear local-business reference point with visible NAP and
   a lightweight, lazy-loaded directions map. */
#site-footer .footer-grid {
    grid-template-columns: minmax(15rem, 1.25fr) minmax(10rem, .8fr) minmax(10rem, .8fr) minmax(16rem, 1.15fr);
    gap: 32px;
    align-items: stretch;
}

#site-footer .footer-grid > div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#site-footer .footer-links {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#site-footer .footer-hub-link {
    margin-top: auto !important;
}

#site-footer .footer-social-links {
    margin-top: auto !important;
    padding-top: 14px;
}

#site-footer .footer-directions {
    margin-top: auto;
}

.footer-directions:hover { color: var(--cta); }

.footer-map { min-width: 0; }

.footer-map-nap {
    display: grid;
    gap: 3px;
    margin: -6px 0 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: .76rem;
    line-height: 1.45;
}

.footer-map-nap strong { color: #fff; font-size: .82rem; }
.footer-map-nap span { color: rgba(255, 255, 255, 0.85); }

.footer-map-nap a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-map-nap a:hover,
.footer-map-nap a:active,
.footer-map-nap a:focus {
    color: var(--cta);
}

.footer-map-frame {
    display: block;
    width: 100%;
    flex: 1;
    min-height: 120px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    background: #10233d;
}

.footer-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1023px) {
    #site-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    #site-footer .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-map-frame { height: 190px; }
}

/* ── FOOTER WEATHER PANEL ── */
.footer-weather-panel {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 36px 0 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.weather-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.weather-panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.weather-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
    animation: pulseWeather 2s infinite;
}

@keyframes pulseWeather {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.weather-location-tag {
    background: rgba(56, 189, 248, 0.15);
    color: #7dd3fc;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.76rem;
    font-weight: 600;
}

.weather-timestamp {
    font-size: 0.78rem;
    color: #94a3b8;
}

.weather-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.weather-metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color 0.2s ease;
}

.weather-metric-card:hover {
    border-color: rgba(56, 189, 248, 0.35);
}

.metric-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.metric-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.metric-val {
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 600;
}

.weather-card-advisory {
    grid-column: span 1;
}

.weather-climate-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #94a3b8;
}

.weather-emergency-link {
    color: #38bdf8;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.weather-emergency-link:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

/* ── BREADCRUMB ── */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 14px 0;
    font-size: 0.84rem;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent-dark);
}

.breadcrumb-sep {
    color: var(--text-light);
    font-size: 0.7rem;
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 600;
}

/* ── EMERGENCY BANNER ── */
.emergency-bar {
    /* Site-wide policy: this pre-hero banner is retired. Do not add it to
       current or future page templates. */
    display: none !important;
    background: var(--error);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.84rem;
    font-weight: 600;
}

.emergency-bar a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

/* ── MAP ── */
.map-wrap {
    width: 100%;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── UTILITIES ── */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-8 {
    margin-top: 32px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================================
   RESPONSIVE — Mobile-First
   ================================================================ */
@media (max-width: 768px) {
    .grid-2,
    .grid.grid-2 {
        grid-template-columns: 1fr !important;
    }

    .container {
        padding: 0 20px;
        width: 100%;
    }

    .header {
        height: 60px;
    }

    .header-logo img {
        height: 34px;
    }

    .hamburger {
        width: 38px;
        height: 38px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.92rem;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
}

@media (min-width: 480px) {
    .trust-row {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .check-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

    .split {
        grid-template-columns: 1fr 1fr;
    }

    .split-img img {
        height: 420px;
    }

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

    .hero-visual {
        display: none !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 56px 0 64px;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 96px 0;
    }

    /* Show desktop nav, hide hamburger */
    .header-nav {
        display: flex;
    }

    .header-actions {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-sticky-bar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .trust-row {
        grid-template-columns: repeat(6, 1fr);
    }

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

    .process-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-img-wrap img {
        height: 500px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ── Gradient Card Variants ── */
.card-gradient-red {
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.card-gradient-red:hover {
    border-color: #fecaca;
}

.card-gradient-blue {
    background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
}

.card-gradient-blue:hover {
    border-color: #bfdbfe;
}

.card-gradient-purple {
    background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%);
}

.card-gradient-purple:hover {
    border-color: #c4b5fd;
}

.card-gradient-teal {
    background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
}

.card-gradient-teal:hover {
    border-color: #99f6e4;
}

.card-gradient-amber {
    background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
}

.card-gradient-amber:hover {
    border-color: #fde68a;
}

.card-gradient-slate {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.card-gradient-slate:hover {
    border-color: #cbd5e1;
}

.card-gradient-green {
    background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%);
}

.card-gradient-green:hover {
    border-color: #86efac;
}

/* Colored icon variants */
.icon-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.18));
    color: #dc2626;
}

.card:hover .icon-red {
    background: #dc2626;
    color: #fff;
}

.icon-blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.18));
    color: #2563eb;
}

.card:hover .icon-blue {
    background: #2563eb;
    color: #fff;
}

.icon-purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(124, 58, 237, 0.18));
    color: #7c3aed;
}

.card:hover .icon-purple {
    background: #7c3aed;
    color: #fff;
}

.icon-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(20, 184, 166, 0.18));
    color: #0d9488;
}

.card:hover .icon-teal {
    background: #0d9488;
    color: #fff;
}

.icon-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.18));
    color: #d97706;
}

.card:hover .icon-amber {
    background: #d97706;
    color: #fff;
}

.icon-slate {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.08), rgba(100, 116, 139, 0.18));
    color: #475569;
}

.card:hover .icon-slate {
    background: #475569;
    color: #fff;
}

.icon-green {
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.08), rgba(22, 163, 74, 0.18));
    color: #16a34a;
}

.card:hover .icon-green {
    background: #16a34a;
    color: #fff;
}

/* ── Services Grid ── */
.services-grid {
    gap: 20px;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Comparison Table ── */
.compare-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 480px;
}

.compare-table thead th {
    background: var(--primary);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--card-border);
    color: var(--text);
}

.compare-table tbody tr:nth-child(even) {
    background: var(--bg-alt);
}

.compare-table tbody tr:hover {
    background: var(--accent-soft);
}

.compare-table .check {
    color: var(--success);
    font-weight: 700;
}

.compare-table .cross {
    color: var(--text-light);
}

.compare-highlight {
    background: linear-gradient(135deg, var(--accent-soft), rgba(37, 99, 235, 0.04));
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 24px;
}

.compare-highlight h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.compare-highlight p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── Cost Table ── */
.cost-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 400px;
}

.cost-table thead th {
    background: var(--primary);
    color: #fff;
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cost-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--card-border);
    color: var(--text);
}

.cost-table tbody tr:nth-child(even) {
    background: var(--bg-alt);
}

.cost-table tbody tr:hover {
    background: var(--accent-soft);
}

.cost-highlight {
    font-weight: 700;
    color: var(--accent-dark);
}

/* ── Warning Signs / Damage / Icon-text list ── */
.icon-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.icon-list-item:hover {
    border-color: var(--accent);
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
}

.icon-list-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.icon-list-icon svg {
    width: 20px;
    height: 20px;
}

.icon-list-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.icon-list-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

@media (min-width: 480px) {
    .icon-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .icon-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Case Study / Project Cards ── */
.project-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.project-card-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.project-card-imgs>div {
    position: relative;
    overflow: hidden;
}

.project-card-imgs img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-card-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.project-card-body {
    padding: 20px;
}

.project-card-body h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.project-card-body p {
    font-size: 0.84rem;
    margin-bottom: 10px;
}

.project-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-card-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--bg-alt);
    color: var(--text-muted);
}

/* ── Equipment List ── */
.equip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.equip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.equip-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.equip-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 8px;
    flex-shrink: 0;
}

.equip-icon svg {
    width: 18px;
    height: 18px;
}

.equip-text {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text);
}

@media (min-width: 768px) {
    .equip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .equip-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Community Cards ── */
.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.community-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all var(--transition);
}

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

.community-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.community-card-body {
    padding: 18px;
}

.community-card-body h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.community-card-body p {
    font-size: 0.82rem;
    margin-bottom: 0;
}

@media (min-width: 480px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .community-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Coverage / ZIP Grid ── */
.zip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.zip-chip {
    text-align: center;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    transition: all var(--transition);
}

.zip-chip:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}

.zip-chip small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (min-width: 480px) {
    .zip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .zip-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ── Emergency CTA Banner (inline) ── */
.emergency-cta {
    background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 50%, #b91c1c 100%);
    padding: 56px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.emergency-cta h2 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 12px;
    position: relative;
}

.emergency-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin: 0 auto 24px;
    position: relative;
}

.emergency-cta .btn-row {
    position: relative;
}

/* ── Leak Trace Steps ── */
.trace-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    counter-reset: trace;
}

.trace-step {
    counter-increment: trace;
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.trace-step:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.trace-step::before {
    content: counter(trace);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.trace-content h4 {
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.trace-content p {
    font-size: 0.84rem;
    margin-bottom: 0;
}

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

/* ── Climate Stats ── */
.climate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.climate-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.climate-stat:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.climate-stat-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.climate-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (min-width: 480px) {
    .climate-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .climate-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ── Scroll Animations ── */
@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Back to Top (Down to Up) Button ── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta) 0%, var(--cta-dark) 100%) !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    z-index: 9999 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.2s ease,
                box-shadow 0.2s ease;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.visible {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #fb923c 0%, var(--cta) 100%) !important;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.7) !important;
    transform: translateY(-4px) scale(1.06) !important;
    color: #ffffff !important;
}

.back-to-top:active {
    transform: translateY(-1px) scale(0.96) !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.5) !important;
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    stroke: #ffffff !important;
    stroke-width: 2.8;
    fill: none;
    transition: transform 0.2s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Mobile adjustments to avoid overlapping mobile sticky CTA bar */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 84px !important;
        right: 18px !important;
        width: 44px !important;
        height: 44px !important;
        box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45) !important;
    }
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ── Print ── */
@media print {

    .header,
    .footer,
    .mobile-sticky-bar,
    .mobile-drawer,
    .mobile-overlay,
    .emergency-bar,
    .back-to-top {
        display: none !important;
    }

    body {
        padding: 0;
    }

    .section {
        padding: 16px 0;
    }
}

