   /* ============================================================
                   GLOBAL RESET & VARIABLES
                   ============================================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0f2b5c;
            --primary-blue-dark: #091b3d;
            --accent-gold: #dfb76c;
            --accent-gold-dark: #c9a55a;
            --accent-gold-light: #f0d28c;
            --dark-bg: #0b132b;
            --slate-dark: #0f172a;
            --slate-mid: #1e293b;
            --light-bg: #f8fafc;
            --pure-white: #ffffff;
            --text-dark: #1e293b;
            --text-muted: #94a3b8;
            --text-light: #f1f5f9;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container-max: 1200px;
            --card-radius: 6px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================================
                   TYPOGRAPHY
                   ============================================================ */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 500;
            line-height: 1.2;
            color: var(--text-dark);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 500;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2.25rem;
            font-weight: 400;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.4;
        }
        h5 {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        h6 {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
        }

        p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-dark);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.75rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            h4 {
                font-size: 1.1rem;
            }
        }

        /* ============================================================
                   BUTTONS
                   ============================================================ */
        .btn-primary {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 1rem 2.2rem;
            border-radius: var(--card-radius);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(223, 183, 108, 0.3);
            text-align: center;
        }

        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(223, 183, 108, 0.4);
        }

        /* ============================================================
                   NAVBAR – GLOBAL
                   ============================================================ */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            background: rgba(15, 43, 92, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 2px solid var(--accent-gold);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
            transition: var(--transition);
        }

        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0.7rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.6rem;
            color: var(--pure-white);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .logo .gold-text {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 0.92rem;
            padding: 0.4rem 0;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .emergency-cta {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(223, 183, 108, 0.2);
            padding: 0.45rem 1.2rem 0.45rem 0.8rem;
            border-radius: var(--card-radius);
            transition: var(--transition);
        }

        .emergency-cta:hover {
            border-color: var(--accent-gold);
            background: rgba(223, 183, 108, 0.08);
            transform: translateY(-1px);
        }

        .cta-pulse {
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .cta-pulse::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse-dot 2s infinite ease-in-out;
        }

        @keyframes pulse-dot {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(2.8);
                opacity: 0;
            }
        }

        .cta-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .cta-label {
            font-size: 0.6rem;
            text-transform: uppercase;
            color: var(--accent-gold);
            letter-spacing: 1px;
            font-weight: 700;
        }

        .cta-number {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--pure-white);
            font-family: var(--font-heading);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .mobile-menu-btn .bar {
            width: 26px;
            height: 2.5px;
            background: var(--pure-white);
            border-radius: 4px;
            transition: var(--transition);
        }

        .mobile-menu-btn.open .bar:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .mobile-menu-btn.open .bar:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.open .bar:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;           /* Hidden off‑screen */
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--primary-blue-dark);
    z-index: 9998;
    padding: 6rem 2.5rem 2.5rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
}

.mobile-drawer.open {
    right: 0;               /* Slides into view */
}

        .mobile-drawer .drawer-links {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
            list-style: none;
            margin-bottom: 3rem;
        }

        .mobile-drawer .drawer-links a {
            color: #e2e8f0;
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .mobile-drawer .drawer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(6px);
        }

        .mobile-drawer .drawer-contacts {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2rem;
        }

        .mobile-drawer .drawer-contacts p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }

        .mobile-drawer .drawer-contacts a {
            color: var(--pure-white);
            font-weight: 700;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 0.3rem;
        }

        .mobile-drawer .drawer-contacts .drawer-cta {
            margin-top: 1.5rem;
        }

        .drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9997;
        }

        .drawer-overlay.open {
            display: block;
        }

        /* ============================================================
                   CONTACT PAGE – SPLIT SCREEN LAYOUT
                   ============================================================ */

        /* --- Page hero (mini) --- */
        .contact-hero {
            position: relative;
    padding: 10rem 0 6rem 0;
    overflow: hidden;

    /* Premium layered background: dark overlay + cinematic image */
    background:
        linear-gradient(135deg, rgba(9, 27, 61, 0.90) 0%, rgba(11, 19, 43, 0.92) 100%),
        url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=1600&h=900&fit=crop&crop=center')
        center center / cover no-repeat;
        }

        .contact-hero .hero-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(223, 183, 108, 0.10);
            border: 1px solid rgba(223, 183, 108, 0.2);
            color: var(--accent-gold);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.45rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
        }

        .contact-hero h1 {
            color: var(--pure-white);
            max-width: 700px;
        }

        .contact-hero h1 .gold-highlight {
            color: var(--accent-gold);
        }

        .contact-hero p {
            color: #cbd5e1;
            font-size: 1.1rem;
            max-width: 550px;
            line-height: 1.7;
            margin-top: 0.6rem;
        }

        /* --- Main Contact Section: Split Screen --- */
        .contact-main {
            padding: 3rem 0 5rem 0;
            background: var(--light-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: stretch;
        }

        /* ---- LEFT COLUMN: Physical Footprint ---- */
        .contact-left {
            background: var(--primary-blue-dark);
            border-radius: var(--card-radius);
            padding: 3rem 2.5rem;
            color: var(--pure-white);
            display: flex;
            flex-direction: column;
            gap: 2rem;
            border: 1px solid rgba(223, 183, 108, 0.15);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .contact-left::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 60%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(223, 183, 108, 0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .contact-left .left-header {
            position: relative;
            z-index: 1;
        }

        .contact-left .left-header .hq-badge {
            display: inline-block;
            background: rgba(223, 183, 108, 0.12);
            border: 1px solid rgba(223, 183, 108, 0.2);
            color: var(--accent-gold);
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            margin-bottom: 0.8rem;
        }

        .contact-left .left-header h2 {
            color: var(--pure-white);
            font-size: 1.8rem;
            margin-bottom: 0.3rem;
        }

        .contact-left .left-header p {
            color: #94a3b8;
            font-size: 0.95rem;
        }

        /* Address block */
        .contact-left .address-block {
            position: relative;
            z-index: 1;
            border-left: 3px solid var(--accent-gold);
            padding-left: 1.2rem;
        }

        .contact-left .address-block .addr-line {
            font-size: 0.95rem;
            color: #e2e8f0;
            line-height: 1.8;
            font-weight: 500;
        }

        .contact-left .address-block .addr-line i {
            color: var(--accent-gold);
            width: 1.4rem;
            text-align: center;
            margin-right: 0.2rem;
        }

        /* Phone block */
        .contact-left .phone-block {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .contact-left .phone-block .phone-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--card-radius);
            padding: 0.8rem 1.2rem;
            transition: var(--transition);
        }

        .contact-left .phone-block .phone-item:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(223, 183, 108, 0.2);
        }

        .contact-left .phone-block .phone-item i {
            font-size: 1.2rem;
            color: var(--accent-gold);
            width: 1.8rem;
            text-align: center;
        }

        .contact-left .phone-block .phone-item .phone-number {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--pure-white);
            font-family: var(--font-heading);
        }

        .contact-left .phone-block .phone-item .phone-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
            margin-left: auto;
        }

        /* Email block */
        .contact-left .email-block {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--card-radius);
            padding: 0.8rem 1.2rem;
            transition: var(--transition);
        }

        .contact-left .email-block:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(223, 183, 108, 0.15);
        }

        .contact-left .email-block i {
            font-size: 1.2rem;
            color: var(--accent-gold);
            width: 1.8rem;
            text-align: center;
        }

        .contact-left .email-block a {
            font-weight: 600;
            color: var(--pure-white);
            font-size: 1rem;
        }

        .contact-left .email-block a:hover {
            color: var(--accent-gold);
        }

        /* Map container */
        .contact-left .map-container {
            position: relative;
            z-index: 1;
            border-radius: var(--card-radius);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 0.5rem;
            height: 180px;
            background: var(--slate-dark);
        }

        .contact-left .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: invert(0.85) hue-rotate(180deg) saturate(0.4) brightness(0.85);
        }

        /* ---- RIGHT COLUMN: Form ---- */
        .contact-right {
            background: var(--pure-white);
            border-radius: var(--card-radius);
            padding: 3rem 2.5rem;
            border: 1px solid #eef2f6;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
        }

        .contact-right .form-header {
            margin-bottom: 2rem;
        }

        .contact-right .form-header h2 {
            font-size: 1.6rem;
            margin-bottom: 0.3rem;
        }

        .contact-right .form-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* ---- Service Toggle Buttons ---- */
        .service-toggles {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .service-toggle {
            padding: 0.6rem 0.8rem;
            border-radius: var(--card-radius);
            border: 2px solid #eef2f6;
            background: transparent;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .service-toggle:hover {
            border-color: var(--accent-gold);
            color: var(--primary-blue);
        }

        .service-toggle.active {
            border-color: var(--primary-blue);
            background: var(--primary-blue);
            color: var(--pure-white);
            box-shadow: 0 2px 12px rgba(15, 43, 92, 0.15);
        }

        /* ---- Form Fields ---- */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .form-group .form-label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
            margin-bottom: 0.3rem;
            transition: var(--transition);
        }

        .form-group .form-label .required {
            color: #ef4444;
            margin-left: 0.2rem;
        }

        .form-group .form-input,
        .form-group .form-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #eef2f6;
            border-radius: var(--card-radius);
            font-family: var(--font-body);
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--pure-white);
            transition: var(--transition);
            outline: none;
        }

        .form-group .form-input:focus,
        .form-group .form-textarea:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 4px rgba(15, 43, 92, 0.06);
        }

        .form-group .form-input.error,
        .form-group .form-textarea.error {
            border-color: #f59e0b;
        }

        .form-group .form-input.success,
        .form-group .form-textarea.success {
            border-color: #22c55e;
        }

        .form-group .form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        /* Validation message */
        .form-group .validation-msg {
            font-size: 0.75rem;
            color: #f59e0b;
            margin-top: 0.3rem;
            opacity: 0;
            transform: translateY(-4px);
            transition: var(--transition);
            height: 0;
            overflow: hidden;
        }

        .form-group .validation-msg.show {
            opacity: 1;
            transform: translateY(0);
            height: auto;
        }

        /* ---- Submit Button ---- */
        .submit-wrap {
            margin-top: 0.5rem;
        }

        .submit-btn {
            width: 100%;
            padding: 1.1rem;
            background: var(--accent-gold);
            color: var(--primary-blue);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            border-radius: var(--card-radius);
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(223, 183, 108, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .submit-btn:hover {
            background: var(--accent-gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(223, 183, 108, 0.35);
        }

        .submit-btn .btn-text {
            transition: var(--transition);
        }

        .submit-btn .btn-spinner {
            display: none;
            width: 1.4rem;
            height: 1.4rem;
            border: 3px solid rgba(15, 43, 92, 0.15);
            border-top-color: var(--primary-blue);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        .submit-btn.loading .btn-text {
            display: none;
        }

        .submit-btn.loading .btn-spinner {
            display: block;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ---- Success Modal ---- */
        .success-modal {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 10001;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .success-modal.open {
            display: flex;
        }

        .success-modal .modal-box {
            background: var(--pure-white);
            border-radius: var(--card-radius);
            padding: 3rem 2.5rem;
            max-width: 480px;
            width: 100%;
            text-align: center;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .success-modal .modal-box .modal-icon {
            font-size: 3.5rem;
            color: #22c55e;
            margin-bottom: 1rem;
        }

        .success-modal .modal-box h3 {
            margin-bottom: 0.5rem;
        }

        .success-modal .modal-box p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .success-modal .modal-box .modal-btn {
            background: var(--primary-blue);
            color: var(--pure-white);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: var(--card-radius);
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }

        .success-modal .modal-box .modal-btn:hover {
            background: var(--primary-blue-dark);
        }

        /* ============================================================
                   CLIENT INCENTIVES BLOCK (below form)
                   ============================================================ */
        .incentives-section {
            padding: 3rem 0 0 0;
        }

        .incentives-section .incentives-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
        }

        .incentives-section .incentive-item {
            background: var(--light-bg);
            border-radius: var(--card-radius);
            padding: 1.2rem 1.2rem;
            border: 1px solid #eef2f6;
            transition: var(--transition);
            text-align: center;
        }

        .incentives-section .incentive-item:hover {
            border-color: var(--accent-gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }

        .incentives-section .incentive-item .inc-icon {
            font-size: 1.4rem;
            color: var(--accent-gold);
            margin-bottom: 0.3rem;
        }

        .incentives-section .incentive-item h6 {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 0.7rem;
            letter-spacing: 0.06em;
        }

        .incentives-section .incentive-item p {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.4;
            margin-top: 0.2rem;
        }

        /* ============================================================
                   GLOBAL FOOTER
                   ============================================================ */
        .main-footer {
            background: var(--dark-bg);
            border-top: 2px solid var(--accent-gold);
            padding: 4rem 0 0 0;
            color: #e2e8f0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-brand .logo a {
            font-size: 1.8rem;
        }

        .footer-brand p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin: 1rem 0 1.5rem 0;
            max-width: 340px;
            line-height: 1.7;
        }

        .footer-brand .legal-note {
            font-size: 0.8rem;
            color: #64748b;
            line-height: 1.6;
            border-left: 2px solid var(--accent-gold);
            padding-left: 1rem;
        }

        .footer-col h5 {
            color: var(--accent-gold);
            font-weight: 700;
            letter-spacing: 0.12em;
            margin-bottom: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .footer-col ul a {
            color: #94a3b8;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--accent-gold);
            transform: translateX(4px);
            display: inline-block;
        }

        .footer-col .county-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1rem;
        }

        .footer-col .county-grid span {
            font-size: 0.9rem;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .footer-col .county-grid span i {
            color: var(--accent-gold);
            font-size: 0.65rem;
        }

        .footer-col .contact-detail {
            margin-bottom: 1rem;
        }

        .footer-col .contact-detail .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
        }

        .footer-col .contact-detail a,
        .footer-col .contact-detail .value {
            font-weight: 600;
            color: var(--pure-white);
            font-size: 1rem;
        }

        .footer-col .contact-detail .address {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col .contact-detail .address strong {
            color: #e2e8f0;
        }

        .sub-footer {
            padding: 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.8rem;
            color: #64748b;
        }

        .sub-footer .sub-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .sub-footer .sub-links a {
            color: #64748b;
            transition: var(--transition);
            font-size: 0.8rem;
        }

        .sub-footer .sub-links a:hover {
            color: var(--accent-gold);
        }

        /* ============================================================
                   FLOATING WHATSAPP
                   ============================================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            background: #25d366;
            border-radius: 50%;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
            transition: var(--transition);
            animation: whatsapp-bounce 2.5s infinite ease-in-out;
        }

        .whatsapp-float:hover {
            transform: scale(1.06);
            box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float i {
            font-size: 2.2rem;
            color: var(--pure-white);
        }

        @keyframes whatsapp-bounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        /* ============================================================
                   RESPONSIVE
                   ============================================================ */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
            .incentives-section .incentives-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .emergency-cta .cta-text .cta-label {
                display: none;
            }
            .emergency-cta {
                padding: 0.45rem 0.8rem;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .contact-left {
                order: 2;
            }
            .contact-right {
                order: 1;
            }
            .contact-hero {
                padding: 7rem 0 1.5rem 0;
            }
            .contact-hero h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0.7rem 1.2rem;
            }
            .logo a {
                font-size: 1.3rem;
            }
            .contact-hero {
                padding: 6rem 0 1rem 0;
            }
            .contact-hero h1 {
                font-size: 1.8rem;
            }
            .contact-hero p {
                font-size: 1rem;
            }
            .contact-left {
                padding: 2rem 1.5rem;
            }
            .contact-left .left-header h2 {
                font-size: 1.4rem;
            }
            .contact-right {
                padding: 2rem 1.5rem;
            }
            .contact-right .form-header h2 {
                font-size: 1.3rem;
            }
            .service-toggles {
                grid-template-columns: 1fr 1fr;
                gap: 0.4rem;
            }
            .service-toggle {
                font-size: 0.6rem;
                padding: 0.5rem 0.4rem;
            }
            .incentives-section .incentives-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.8rem;
            }
            .incentives-section .incentive-item {
                padding: 1rem 0.8rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-col .county-grid {
                grid-template-columns: 1fr 1fr;
            }
            .sub-footer {
                flex-direction: column;
                text-align: center;
            }
            .whatsapp-float {
                width: 3.4rem;
                height: 3.4rem;
                bottom: 1.2rem;
                right: 1.2rem;
            }
            .whatsapp-float i {
                font-size: 1.8rem;
            }
            .mobile-drawer {
                max-width: 100%;
                padding: 5rem 1.8rem 2rem 1.8rem;
            }
            .mobile-drawer .drawer-links a {
                font-size: 1.2rem;
            }
            .contact-left .map-container {
                height: 140px;
            }
            .success-modal .modal-box {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .service-toggles {
                grid-template-columns: 1fr 1fr;
            }
            .service-toggle {
                font-size: 0.55rem;
                padding: 0.4rem 0.3rem;
            }
            .incentives-section .incentives-grid {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            .incentives-section .incentive-item p {
                font-size: 0.65rem;
            }
            .footer-col .county-grid {
                grid-template-columns: 1fr;
            }
            .contact-hero h1 {
                font-size: 1.5rem;
            }
            .contact-left .phone-block .phone-item {
                flex-wrap: wrap;
                gap: 0.3rem;
            }
            .contact-left .phone-block .phone-item .phone-label {
                margin-left: 0;
                width: 100%;
                font-size: 0.6rem;
            }
            .contact-left .phone-block .phone-item .phone-number {
                font-size: 0.95rem;
            }
            .submit-btn {
                font-size: 0.85rem;
                padding: 1rem;
            }
        }