        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #1a3a52;
            --navy-dark: #0f2536;
            --navy-light: #2a5070;
            --orange: #ff6b35;
            --orange-glow: #ff8855;
            --gold: #ffd700;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-400: #9ca3af;
            --gray-600: #4b5563;
            --gray-800: #1f2937;
            --gray-light: rgba(255,255,255,0.15);
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
            background: var(--white);
            color: var(--gray-800);
            line-height: 1.6;
        }

        /* ===== Section Header Component ===== */
        .section-header {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(32px, 4vw, 52px);
            font-weight: 700;
            color: #1a2332;
            line-height: 1.1;
            letter-spacing: 1.5px;
            padding-bottom: 0;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #ff6b35;
            margin-top: 12px;
            border-radius: 0;
        }

        /* Center underline for center-aligned section headers */
        .reviews-heading.section-header::after,
        .service-area-section .section-header::after {
            margin-left: auto;
            margin-right: auto;
        }

        /* Dark background variant */
        .section-header-light {
            color: var(--white);
        }

        .section-header-light::after {
            background: var(--white);
        }

        /* ==================== HEADER TOP BAR ==================== */
        .header-top {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .header-top-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 16px 24px 16px 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo img {
            height: 72px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .logo-text {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 30px;
            color: var(--white);
            letter-spacing: 1px;
            line-height: 1;
        }

        .logo-text span {
            color: var(--orange);
        }

        /* Mobile header company name (hidden on desktop) */
        .header-mobile-name {
            display: none;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            color: var(--white);
            letter-spacing: 1.5px;
            line-height: 1;
            -webkit-text-stroke: 1.2px var(--navy);
            text-stroke: 1.2px var(--navy);
            paint-order: stroke fill;
        }

        .header-mobile-name span {
            color: var(--orange);
            -webkit-text-stroke: 1.2px var(--navy);
            text-stroke: 1.2px var(--navy);
        }

        /* Phone Block */
        .header-phone {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .header-phone-icon {
            width: 44px;
            height: 44px;
            background: var(--navy-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .header-phone-icon svg {
            width: 22px;
            height: 22px;
            color: white;
        }

        .header-phone-info {
            display: flex;
            flex-direction: column;
        }

        .header-phone-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 24px;
            color: var(--navy-dark);
            letter-spacing: 1px;
            line-height: 1.1;
            text-decoration: none;
        }

        .header-phone-number:hover {
            color: var(--orange);
        }

        .header-phone-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--orange);
            line-height: 1.2;
            max-width: 260px;
        }

        /* Trust Badges */
        .header-trust-badges {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }

        .trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            width: 110px;
            text-align: center;
        }

        .trust-badge-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .trust-badge-icon svg {
            width: 28px;
            height: 28px;
        }

        .trust-badge-icon.emergency {
            background: var(--orange);
        }

        .trust-badge-icon.licensed {
            background: var(--navy-dark);
        }

        .trust-badge-icon.reviews {
            background: var(--orange);
        }

        .trust-badge-icon.local {
            background: var(--navy-dark);
        }

        .trust-badge-icon.price {
            background: #1a8a5c;
        }

        .trust-badge-label {
            font-size: 11px;
            font-weight: 700;
            color: var(--navy-dark);
            line-height: 1.25;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Get Service Button */
        .get-service-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--orange);
            color: var(--white);
            padding: 18px 32px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 24px;
            letter-spacing: 2px;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
            flex-shrink: 0;
            white-space: nowrap;
        }

        .get-service-btn:hover {
            background: var(--orange-glow);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
        }

        .get-service-btn svg {
            width: 26px;
            height: 26px;
        }

        /* ==================== NAVIGATION BAR ==================== */
        .header-nav {
            background: var(--navy-dark);
            position: sticky;
            top: 0;
            z-index: 1000;
            margin-top: 106px;
            border-bottom: 3px solid var(--orange);
        }

        .header-nav-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            height: 56px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 16px 22px;
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
        }

        .nav-link:hover {
            color: var(--white);
            background: rgba(255,255,255,0.1);
        }

        .nav-link svg {
            width: 12px;
            height: 12px;
            transition: transform 0.2s ease;
        }

        .nav-item:hover .nav-link svg {
            transform: rotate(180deg);
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--white);
            border-radius: 0 0 10px 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(5px);
            transition: all 0.25s ease;
            padding: 8px;
            z-index: 100;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 12px 16px;
            color: var(--gray-800);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 6px;
            transition: all 0.2s ease;
            text-transform: none;
            letter-spacing: 0;
        }

        .dropdown-link:hover {
            background: var(--gray-100);
            color: var(--navy);
        }

        /* Nav CTA - styled as regular link on desktop */
        .nav-cta {
            /* inherits .nav-link styles */
        }

        .nav-cta:hover {
            /* inherits .nav-link:hover styles */
        }

        .nav-cta svg {
            width: 16px;
            height: 16px;
        }

        /* Mobile toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
        }

        .mobile-toggle svg {
            width: 28px;
            height: 28px;
            color: var(--navy-dark);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--navy-dark);
            z-index: 2000;
            flex-direction: column;
            padding: 0;
            overflow-y: auto;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-menu-header .logo-text {
            color: var(--white);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            padding: 8px;
            cursor: pointer;
        }

        .mobile-menu-close svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            padding: 16px 0;
        }

        .mobile-menu-links > a {
            display: block;
            padding: 16px 24px;
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.2s ease;
        }

        .mobile-menu-links > a:hover {
            background: rgba(255,255,255,0.05);
            color: var(--orange);
        }

        .mobile-menu-links .mobile-section-label {
            padding: 12px 24px 6px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--orange);
            border-bottom: none;
        }

        .mobile-menu-links .mobile-section-label:hover {
            background: none;
            cursor: default;
        }

        .mobile-menu-cta {
            margin: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-menu-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
        }

        .mobile-menu-cta .mobile-call-btn {
            background: var(--orange);
            color: white;
        }

        .mobile-menu-cta .mobile-service-btn {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
        }

        .mobile-menu-cta a svg {
            width: 22px;
            height: 22px;
        }

        /* Mobile Accordion */
        .mobile-accordion {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .mobile-accordion-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 16px 24px;
            background: none;
            border: none;
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            font-weight: 600;
            font-family: 'Source Sans 3', sans-serif;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .mobile-accordion-toggle:hover {
            background: rgba(255,255,255,0.05);
            color: var(--orange);
        }

        .mobile-accordion-toggle svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .mobile-accordion.open .mobile-accordion-toggle svg {
            transform: rotate(180deg);
        }

        .mobile-accordion.open .mobile-accordion-toggle {
            color: var(--orange);
        }

        .mobile-accordion-content {
            display: none;
            flex-direction: column;
            background: rgba(0,0,0,0.15);
        }

        .mobile-accordion.open .mobile-accordion-content {
            display: flex;
        }

        .mobile-accordion-content a {
            display: block;
            padding: 12px 24px 12px 40px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            border-bottom: 1px solid rgba(255,255,255,0.03);
            transition: all 0.2s ease;
        }

        .mobile-accordion-content a:hover {
            background: rgba(255,255,255,0.05);
            color: var(--orange);
        }

        /* Mobile Book Appointment Button */
        .mobile-book-appointment {
            padding: 16px 24px;
        }

        .mobile-book-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
        }

        .mobile-book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .mobile-book-btn svg {
            width: 22px;
            height: 22px;
        }

        /* Mobile Quote Button */
        .mobile-quote-btn-wrap {
            padding: 16px 24px 0;
        }

        .mobile-quote-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--orange), #e85d2a);
            color: white;
            font-size: 17px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .mobile-quote-btn svg {
            width: 20px;
            height: 20px;
        }

        /* Mobile trust badges */
        .mobile-trust-strip {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            padding: 20px 24px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .mobile-trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 72px;
            text-align: center;
        }

        .mobile-trust-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .mobile-trust-icon svg {
            width: 24px;
            height: 24px;
        }

        .mobile-trust-icon.emergency { background: var(--orange); }
        .mobile-trust-icon.licensed { background: var(--navy-dark); }
        .mobile-trust-icon.reviews { background: var(--orange); }
        .mobile-trust-icon.local { background: var(--navy-dark); }
        .mobile-trust-icon.price { background: #1a8a5c; }

        .mobile-trust-item span {
            font-size: 10px;
            font-weight: 700;
            color: rgba(255,255,255,0.85);
            line-height: 1.25;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* ==================== HERO ==================== */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
            padding-top: 0;
        }

        .hero-background {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-background picture {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 40%;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(15, 37, 54, 0.88) 0%,
                rgba(26, 58, 82, 0.78) 50%,
                rgba(26, 58, 82, 0.68) 100%
            );
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 24px 80px;
            text-align: center;
        }

        .headline {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(42px, 8vw, 72px);
            color: var(--white);
            line-height: 1.05;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }

        .headline .accent {
            color: var(--orange);
        }

        .subheadline {
            font-size: clamp(18px, 2.5vw, 26px);
            font-weight: 600;
            color: rgba(255,255,255,0.95);
            margin-bottom: 32px;
            line-height: 1.4;
        }

        .subheadline .separator {
            color: var(--orange);
            margin: 0 8px;
        }

        /* CTA Section */
        .cta-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-bottom: 40px;
        }

        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: var(--orange);
            color: var(--white);
            padding: 22px 48px;
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            box-shadow:
                0 8px 30px rgba(255, 107, 53, 0.5),
                0 0 60px rgba(255, 107, 53, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }

        .cta-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow:
                0 12px 40px rgba(255, 107, 53, 0.6),
                0 0 80px rgba(255, 107, 53, 0.4);
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow:
                    0 8px 30px rgba(255, 107, 53, 0.5),
                    0 0 60px rgba(255, 107, 53, 0.3);
            }
            50% {
                box-shadow:
                    0 8px 40px rgba(255, 107, 53, 0.7),
                    0 0 80px rgba(255, 107, 53, 0.5);
            }
        }

        .cta-primary svg {
            width: 32px;
            height: 32px;
            animation: ring 1.5s ease-in-out infinite;
        }

        @keyframes ring {
            0%, 100% { transform: rotate(0deg); }
            10%, 30% { transform: rotate(-10deg); }
            20%, 40% { transform: rotate(10deg); }
            50% { transform: rotate(0deg); }
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--white);
            padding: 16px 36px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border: 2px solid rgba(255,255,255,0.6);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: var(--white);
            transform: translateY(-2px);
        }

        .cta-secondary svg {
            width: 20px;
            height: 20px;
        }

        /* Hero Company Name Eyebrow */
        .hero-company-name {
            margin-bottom: 16px;
        }

        .hero-company-name .logo-text {
            font-size: clamp(22px, 3vw, 32px);
            letter-spacing: 3px;
        }

        /* Google 5-Star Badge */
        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 40px;
            padding: 10px 22px;
            margin-top: 28px;
        }

        .google-badge-stars {
            display: flex;
            gap: 2px;
        }

        .google-badge-stars svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
            color: var(--gold);
        }

        .google-badge-text {
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 0.3px;
        }

        /* Hero Tagline */
        .hero-tagline {
            font-size: clamp(15px, 2vw, 19px);
            font-weight: 600;
            color: rgba(255,255,255,0.75);
            margin-top: 24px;
            margin-bottom: 0;
            letter-spacing: 0.5px;
        }

        /* Contact Alternatives */
        .contact-alternatives {
            margin-top: 8px;
        }

        .contact-divider-text {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .contact-options {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .contact-option {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 16px 28px;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 240px;
        }

        .contact-option:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--orange);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .contact-option-icon {
            width: 44px;
            height: 44px;
            background: var(--orange);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-option-icon svg {
            width: 22px;
            height: 22px;
            color: white;
        }

        .contact-option-info {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .contact-option-label {
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
        }

        .contact-option-detail {
            font-size: 13px;
            color: rgba(255,255,255,0.6);
            line-height: 1.3;
        }

        /* ==================== LOCAL SERVICE SECTION ==================== */
        .local-section {
            padding: 100px 24px;
            background: var(--white);
        }

        .local-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .local-content {
            max-width: 540px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--orange);
            margin-bottom: 16px;
        }

        .section-label svg {
            width: 18px;
            height: 18px;
        }

        .local-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(36px, 4vw, 52px);
            color: var(--navy);
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .local-text {
            font-size: 18px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .local-text strong {
            color: var(--navy);
        }

        .local-features {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 28px;
        }

        .local-feature {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 22px;
            height: 22px;
            color: var(--orange);
        }

        .feature-text {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.5;
        }

        .feature-text strong {
            color: var(--navy);
            display: block;
            margin-bottom: 2px;
        }

        /* Local Image */
        .local-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(26, 58, 82, 0.15);
        }

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

        /* Service Area Map */
        .service-area-section {
            max-width: 1200px;
            margin: 40px auto 0;
        }

        .service-area-section h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(24px, 3vw, 32px);
            color: var(--navy);
            letter-spacing: 1px;
            margin-bottom: 16px;
            text-align: center;
        }

        .service-area-map-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(26, 58, 82, 0.12);
            height: 440px;
            border: 1px solid var(--gray-200);
        }

        #serviceAreaMap {
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .map-legend {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255,255,255,0.94);
            backdrop-filter: blur(6px);
            border-radius: 10px;
            padding: 12px 16px;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .map-legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            color: var(--navy);
        }

        .map-legend-item + .map-legend-item { margin-top: 6px; }

        .map-legend-swatch {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }

        .map-legend-swatch.metro { background: rgba(255, 107, 53, 0.3); border: 2px solid var(--orange); }
        .map-legend-swatch.south-shore { background: rgba(26, 58, 82, 0.2); border: 2px solid var(--navy); }

        /* City List Grid */
        .city-list-section {
            margin-top: 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 32px;
        }

        .city-list-region {
            margin-bottom: 12px;
        }

        .city-list-region-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0;
            padding: 12px 0 10px;
            border-bottom: 2px solid;
            cursor: pointer;
            user-select: none;
            transition: opacity 0.2s ease;
        }

        .city-list-region-header:hover { opacity: 0.8; }

        .city-list-region-header .chevron {
            width: 18px;
            height: 18px;
            margin-left: auto;
            transition: transform 0.3s ease;
        }

        .city-list-region.collapsed .city-list-region-header .chevron {
            transform: rotate(-90deg);
        }

        .city-list-region-header.metro { border-color: var(--orange); }
        .city-list-region-header.south-shore { border-color: var(--navy); }

        .city-list-region-header h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 18px;
            letter-spacing: 1.5px;
            margin: 0;
        }

        .city-list-region-header.metro h4 { color: var(--orange); }
        .city-list-region-header.metro .chevron { color: var(--orange); }
        .city-list-region-header.south-shore h4 { color: var(--navy); }
        .city-list-region-header.south-shore .chevron { color: var(--navy); }

        .map-city-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3px 8px;
            max-height: 500px;
            overflow: hidden;
            transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
            opacity: 1;
            margin-top: 10px;
        }

        .city-list-region.collapsed .map-city-list {
            max-height: 0;
            opacity: 0;
            margin-top: 0;
        }

        .map-city-list li {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 5px 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--gray-600);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .map-city-list li:hover,
        .map-city-list li.active {
            color: var(--navy);
        }

        .map-city-list.metro li:hover,
        .map-city-list.metro li.active {
            background: rgba(255, 107, 53, 0.08);
        }

        .map-city-list.south-shore li:hover,
        .map-city-list.south-shore li.active {
            background: rgba(26, 58, 82, 0.06);
        }

        .map-city-list li .city-pin {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            transition: all 0.2s ease;
        }

        .map-city-list.metro .city-pin { color: var(--orange); }
        .map-city-list.south-shore .city-pin { color: var(--navy); }

        .map-city-list li:hover .city-pin,
        .map-city-list li.active .city-pin {
            transform: scale(1.2);
        }

        .map-city-list.metro li:hover .city-pin,
        .map-city-list.metro li.active .city-pin { color: var(--orange); filter: drop-shadow(0 0 3px rgba(255,107,53,0.5)); }

        .map-city-list.south-shore li:hover .city-pin,
        .map-city-list.south-shore li.active .city-pin { color: var(--navy); filter: drop-shadow(0 0 3px rgba(26,58,82,0.4)); }

        /* ==================== TOOLS & PRINTOUTS SECTION ==================== */
        .tools-section {
            padding: 80px 24px;
            background: var(--white);
            overflow: hidden;
        }

        .tools-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .tools-left {
            display: flex;
            flex-direction: column;
        }

        .tools-header {
            margin-bottom: 32px;
        }

        .tools-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(34px, 5vw, 52px);
            letter-spacing: 2px;
            line-height: 1.05;
            margin-bottom: 6px;
        }


        .tools-title-sub {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(16px, 2.2vw, 22px);
            color: var(--gray-400);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .tools-desc {
            font-size: 16px;
            color: var(--gray-600);
            max-width: 620px;
            line-height: 1.7;
        }

        /* Tool info cards (left side text) */
        .tools-info-card {
            display: none;
        }

        .tools-info-card.active {
            display: block;
        }

        .tools-info-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(22px, 3vw, 30px);
            color: var(--navy);
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .tools-info-desc {
            font-size: 16px;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .tool-card-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--navy-dark);
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 0;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tool-card-cta:hover {
            background: var(--orange);
        }

        .tool-card-cta svg { width: 16px; height: 16px; }

        /* Right side: image carousel */
        .tools-right {
            position: relative;
        }

        .tools-carousel-wrapper {
            position: relative;
        }

        .tools-carousel {
            overflow: hidden;
            position: relative;
        }

        .tools-track {
            display: flex;
            transition: transform 0.4s ease;
        }

        .tool-slide {
            flex: 0 0 100%;
            min-width: 0;
        }

        .tool-slide-img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Dots bar below carousel */
        .tools-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-top: 16px;
        }

        .tools-arrow {
            width: 44px;
            height: 44px;
            background: rgba(26, 37, 54, 0.7);
            border: none;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            flex-shrink: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }

        .tools-arrow.prev {
            left: 0;
        }

        .tools-arrow.next {
            right: 0;
        }

        .tools-arrow:hover {
            background: rgba(255, 107, 53, 0.85);
        }

        .tools-arrow svg {
            width: 20px;
            height: 20px;
            color: var(--white);
        }

        .tools-arrow:hover svg { color: var(--white); }

        /* Dots */
        .tools-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .tools-dot {
            width: 10px;
            height: 10px;
            border-radius: 0;
            background: var(--gray-300);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tools-dot.active {
            background: var(--orange);
            width: 28px;
        }

        /* ==================== REVIEWS SECTION ==================== */
        .reviews-section {
            padding: 80px 24px;
            background: var(--gray-50);
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Platform Bar (inside reviews section) */
        .review-platforms-bar {
            padding-bottom: 32px;
            margin-bottom: 40px;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .review-platforms-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .review-platform {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            padding: 6px 10px;
            transition: opacity 0.2s ease;
            white-space: nowrap;
        }

        .review-platform:hover {
            opacity: 0.8;
        }

        .review-platform-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .angi-wordmark {
            font-family: 'Source Sans 3', Arial, sans-serif;
            font-size: 18px;
            font-weight: 800;
            color: #49A744;
            text-transform: lowercase;
            line-height: 1;
        }

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

        .review-platform-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--gray-800);
            line-height: 1;
        }

        .review-platform-stars {
            display: flex;
            gap: 1px;
        }

        .review-platform-stars svg {
            fill: var(--orange);
        }

        .review-platform-count {
            display: none;
        }

        /* Section Heading */
        .reviews-heading {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(40px, 5.5vw, 62px);
            color: var(--navy);
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .review-platforms-row {
                gap: 16px;
                justify-content: flex-start;
            }
            .review-platform {
                padding: 4px 8px;
            }
        }

        @media (max-width: 480px) {
            .review-platforms-bar {
                padding: 8px 12px;
            }
            .review-platforms-row {
                gap: 12px;
            }
            .review-platform {
                gap: 6px;
                padding: 4px 6px;
            }
            .review-platform-logo svg,
            .review-platform-logo .angi-wordmark {
                transform: scale(0.85);
            }
            .review-platform-name {
                font-size: 11px;
            }
            .review-platform-stars svg {
                width: 10px;
                height: 10px;
            }
        }

        /* Review Carousel Wrapper */
        .review-carousel-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto 40px;
        }

        .review-carousel-viewport {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .review-carousel-viewport::before,
        .review-carousel-viewport::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 48px;
            z-index: 2;
            pointer-events: none;
        }

        .review-carousel-viewport::before {
            top: 0;
            background: linear-gradient(to bottom, var(--gray-50), transparent);
        }

        .review-carousel-viewport::after {
            bottom: 0;
            background: linear-gradient(to top, var(--gray-50), transparent);
        }

        .review-carousel-track {
            display: flex;
            flex-direction: column;
            will-change: transform;
            transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        /* Review Cards */
        .review-card {
            background: var(--white);
            padding: 36px 40px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
            border: 1px solid var(--gray-200);
            border-left: 4px solid var(--orange);
            margin-bottom: 16px;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .review-card:hover {
            box-shadow: 0 12px 40px rgba(0,0,0,0.18);
            transform: translateY(-2px);
        }

        .review-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .review-card-reviewer {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }

        .review-card-name {
            font-weight: 700;
            font-size: 20px;
            color: #1a2332;
        }

        .review-card-location {
            font-size: 14px;
            color: var(--gray-400);
            font-weight: 400;
        }

        .review-card-service {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--orange);
            background: rgba(255, 107, 53, 0.08);
            padding: 4px 12px;
            white-space: nowrap;
        }

        .review-card-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 14px;
        }

        .review-card-stars svg {
            width: 18px;
            height: 18px;
            fill: var(--orange);
        }

        .review-card-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--gray-600);
        }

        /* Carousel Navigation */
        .review-carousel-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding-top: 20px;
            flex-shrink: 0;
        }

        .review-carousel-arrow {
            width: 36px;
            height: 36px;
            background: transparent;
            border: 1px solid var(--gray-200);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .review-carousel-arrow:hover {
            border-color: var(--orange);
            background: rgba(255, 107, 53, 0.06);
        }

        .review-carousel-arrow svg {
            width: 18px;
            height: 18px;
            color: var(--gray-400);
            stroke-width: 1.5;
            transition: color 0.25s ease;
        }

        .review-carousel-arrow:hover svg {
            color: var(--orange);
        }

        .review-carousel-dots {
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: center;
        }

        .review-carousel-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gray-200);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .review-carousel-dot.active {
            background: var(--orange);
            height: 18px;
            border-radius: 3px;
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .review-carousel-wrapper {
                max-width: 100%;
            }
            .review-card {
                padding: 28px 24px;
            }
            .review-carousel-viewport::before,
            .review-carousel-viewport::after {
                height: 32px;
            }
        }

        @media (max-width: 480px) {
            .review-carousel-wrapper {
                gap: 0;
            }
            .review-card {
                padding: 24px 20px;
                box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            }
            .review-card-header {
                flex-direction: column;
                gap: 8px;
            }
            .review-card-text {
                font-size: 14px;
            }
            .review-carousel-nav {
                display: none;
            }
            .review-carousel-viewport::before,
            .review-carousel-viewport::after {
                height: 24px;
            }
        }

        /* Reviews CTA Buttons */
        .reviews-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .reviews-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.2s ease;
        }

        .reviews-cta-filled {
            background: var(--orange);
            color: var(--white);
        }

        .reviews-cta-filled:hover {
            background: #e55a28;
        }

        .reviews-cta-outlined {
            background: transparent;
            color: var(--orange);
            border: 2px solid var(--orange);
        }

        .reviews-cta-outlined:hover {
            background: var(--orange);
            color: var(--white);
        }

        @media (max-width: 480px) {
            .reviews-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .reviews-cta-btn {
                width: 100%;
                max-width: 280px;
            }
        }

        /* ==================== SOCIAL MEDIA SECTION ==================== */
        .social-section {
            padding: 60px 24px;
            background: var(--white);
        }

        .social-container {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .social-label {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray-400);
            margin-bottom: 28px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }

        .social-icon-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            color: var(--navy);
            transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
        }

        .social-icon-link svg {
            width: 44px;
            height: 44px;
        }

        .social-icon-link:hover {
            color: var(--orange);
            transform: scale(1.15);
            filter: drop-shadow(0 4px 12px rgba(255, 107, 53, 0.3));
        }

        .social-icon-link:active {
            transform: scale(1.05);
        }

        @media (max-width: 480px) {
            .social-section {
                padding: 48px 24px;
            }
            .social-icons {
                gap: 32px;
            }
            .social-icon-link svg {
                width: 38px;
                height: 38px;
            }
        }

        /* ==================== INSTANT QUOTE SECTION ==================== */
        .quote-section {
            padding: 100px 24px;
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
            position: relative;
            overflow: hidden;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' 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/g%3E%3C/svg%3E");
        }

        .quote-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .quote-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 107, 53, 0.2);
            color: var(--orange);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
        }

        .quote-badge svg {
            width: 18px;
            height: 18px;
        }

        .quote-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(36px, 5vw, 56px);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .quote-title .highlight {
            color: var(--orange);
        }

        .quote-text {
            font-size: 20px;
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 16px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .quote-features {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 36px;
        }

        .quote-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: rgba(255,255,255,0.9);
        }

        .quote-feature svg {
            width: 20px;
            height: 20px;
            color: var(--orange);
        }

        .quote-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--orange);
            color: white;
            padding: 20px 44px;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
        }

        .quote-cta:hover {
            background: var(--orange-glow);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
        }

        .quote-cta svg {
            width: 24px;
            height: 24px;
        }

        .quote-disclaimer {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            margin-top: 20px;
        }

        /* ==================== PAYMENT & FINANCING SECTION ==================== */
        .payment-section {
            padding: 100px 24px;
            background: var(--gray-50);
        }

        .payment-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .payment-content {
            max-width: 560px;
        }

        .payment-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(32px, 3.5vw, 48px);
            color: var(--navy);
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        .payment-text {
            font-size: 17px;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .payment-text strong {
            color: var(--navy);
        }

        /* Price match banner in text column */
        .price-match-banner {
            display: flex;
            align-items: center;
            gap: 16px;
            background: linear-gradient(135deg, var(--navy), var(--navy-dark));
            color: white;
            padding: 18px 24px;
            border-radius: 14px;
            margin-top: 24px;
            position: relative;
            overflow: hidden;
        }

        .price-match-banner::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 53, 0.12);
            border-radius: 50%;
        }

        .price-match-banner svg {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        .price-match-banner p {
            font-size: 15px;
            line-height: 1.55;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .price-match-banner strong {
            color: var(--orange);
            font-size: 16px;
        }

        /* Right column: image + trust badges below */
        .payment-right {
            display: flex;
            flex-direction: column;
        }

        .payment-image {
            position: relative;
            border-radius: 16px;
            overflow: visible;
        }

        .payment-image img {
            width: 100%;
            object-fit: cover;
            display: block;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(26, 58, 82, 0.15);
        }

        /* Price match shield on image */
        .price-shield {
            position: absolute;
            bottom: -28px;
            right: -16px;
            width: 150px;
            height: 170px;
            z-index: 2;
            filter: drop-shadow(0 10px 25px rgba(0,0,0,0.3));
        }

        .price-shield .shield-bg {
            width: 100%;
            height: 100%;
        }

        .price-shield-text {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            font-family: 'Bebas Neue', sans-serif;
            pointer-events: none;
        }

        .price-shield-check {
            display: block;
            width: 28px;
            height: 28px;
            margin-bottom: 3px;
        }

        .price-shield-text .shield-line1 {
            font-size: 17px;
            letter-spacing: 3px;
            display: block;
            line-height: 1.1;
        }

        .price-shield-text .shield-line2 {
            font-size: 26px;
            letter-spacing: 2px;
            display: block;
            font-weight: 700;
            line-height: 1.1;
        }

        .price-shield-text .shield-line3 {
            font-size: 12px;
            letter-spacing: 2.5px;
            display: block;
            line-height: 1.1;
            opacity: 0.9;
        }

        /* Desktop trust badges under image */
        .payment-trust-row {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 50px;
            padding-top: 8px;
        }

        .payment-trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 85px;
            text-align: center;
        }

        .payment-trust-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.2s ease;
        }

        .payment-trust-item:hover .payment-trust-icon {
            transform: scale(1.08);
        }

        .payment-trust-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .payment-trust-icon.pt-square { background: #000; }
        .payment-trust-icon.pt-cards { background: var(--navy); }
        .payment-trust-icon.pt-contactless { background: var(--navy-dark); }
        .payment-trust-icon.pt-financing { background: var(--orange); }

        .payment-trust-label {
            font-size: 10px;
            font-weight: 700;
            color: var(--navy-dark);
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        /* Compact mobile trust strip (hidden on desktop) */
        .payment-trust-compact {
            display: none;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .payment-trust-compact span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--white);
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 600;
            color: var(--navy);
        }

        .payment-trust-compact svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        /* ==================== CITY LIST TOGGLE (mobile only) ==================== */
        .city-list-toggle {
            display: none;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1200px) {
            .header-trust-badges {
                gap: 10px;
            }

            .trust-badge {
                width: 95px;
            }

            .trust-badge-icon {
                width: 46px;
                height: 46px;
            }

            .trust-badge-icon svg {
                width: 24px;
                height: 24px;
            }

            .trust-badge-label {
                font-size: 10px;
            }

            .get-service-btn {
                padding: 14px 24px;
                font-size: 20px;
            }
        }

        @media (max-width: 1024px) {
            .header-trust-badges {
                display: none;
            }

            .header-phone {
                display: none;
            }

            .get-service-btn {
                display: none;
            }

            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                background: var(--navy-dark);
                border-radius: 8px;
                padding: 10px;
                min-width: 48px;
                min-height: 48px;
            }

            .mobile-toggle svg {
                width: 26px;
                height: 26px;
                color: white;
            }

            .header-mobile-name {
                display: block;
            }

            .hero-company-name {
                display: none;
            }

            .header-top-inner {
                padding: 12px 20px;
            }

            .main-nav {
                display: none;
            }

            .header-nav {
                display: none;
            }

            .hero {
                padding-top: 80px;
            }

            .local-container {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .local-content {
                max-width: none;
                order: 2;
            }

            .local-image {
                order: 1;
                max-height: 400px;
            }

            .city-list-section {
                grid-template-columns: 1fr 1fr;
                gap: 0 24px;
            }

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

            .payment-container {
                grid-template-columns: 1fr;
                gap: 0;
            }

            /* Change 6: Move payment header above image on mobile */
            .payment-content {
                display: contents;
            }

            .payment-section .section-label {
                order: 0;
            }

            .payment-title.section-header {
                order: 1;
                margin-bottom: 20px;
            }

            .payment-right {
                order: 2;
                margin-bottom: 28px;
            }

            .payment-text,
            .price-match-banner,
            .payment-trust-compact {
                order: 3;
            }

            .payment-image img {
                max-height: 360px;
            }

            /* Hide desktop trust circles, show compact strip */
            .payment-trust-row {
                display: none;
            }

            .payment-trust-compact {
                display: flex;
            }

            .tools-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .tools-header {
                text-align: center;
            }

            .tools-desc {
                margin: 0 auto;
            }

            .tools-info-card {
                text-align: center;
            }

        }

        @media (max-width: 768px) {

            /* Section headers: unified mobile styles (Changes 1-3) */
            .section-header {
                font-family: 'Bebas Neue', sans-serif;
                font-size: 28px;
                font-weight: 700;
                color: var(--navy);
                line-height: 1.15;
                letter-spacing: 1px;
                text-align: left;
                border-left: 3px solid var(--orange);
                padding-left: 12px;
                padding-bottom: 0;
                opacity: 0;
                transform: translateY(12px);
                transition: opacity 0.5s ease-out, transform 0.5s ease-out;
            }

            .section-header::after {
                display: none;
            }

            .section-header.visible {
                opacity: 1;
                transform: translateY(0);
            }

            .tools-section {
                padding: 36px 16px;
            }

            .tools-arrow {
                width: 48px;
                height: 48px;
            }

            .tools-arrow svg { width: 22px; height: 22px; }

            .tools-nav {
                gap: 12px;
            }

            .tools-header {
                margin-bottom: 20px;
            }

            .hero-content {
                padding: 36px 16px 32px;
            }

            .hero {
                min-height: auto;
            }

            .headline {
                margin-bottom: 10px;
            }

            .subheadline {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 4px;
                margin-bottom: 20px;
            }

            .cta-section {
                margin-bottom: 24px;
            }

            .cta-primary {
                padding: 16px 28px;
                font-size: 20px;
            }

            .contact-alternatives {
                margin-top: 4px;
            }

            .contact-divider-text {
                margin-bottom: 10px;
            }

            .contact-options {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }

            .contact-option {
                min-width: 280px;
                padding: 12px 18px;
            }

            .google-badge {
                padding: 8px 16px;
                margin-top: 16px;
            }

            .subheadline .separator {
                display: none;
            }

            .hero-tagline {
                margin-top: 14px;
            }

            .hero-company-name {
                margin-bottom: 10px;
            }

            .local-section {
                padding: 40px 16px;
            }

            .local-title {
                margin-bottom: 16px;
            }

            .local-text {
                font-size: 16px;
                margin-bottom: 14px;
                line-height: 1.6;
            }

            .local-features {
                margin-top: 18px;
                gap: 10px;
            }

            .service-area-section {
                margin-top: 28px;
            }

            .service-area-section h3 {
                margin-bottom: 12px;
            }

            .payment-section {
                padding: 40px 16px;
            }

            .reviews-section {
                padding: 40px 16px;
            }

            .reviews-heading {
                margin-bottom: 24px;
            }

            .review-platforms-bar {
                padding-bottom: 16px;
                margin-bottom: 20px;
            }

            .reviews-cta-buttons {
                margin-top: -16px;
            }

            .quote-section {
                padding: 48px 16px;
            }

            .quote-text {
                font-size: 17px;
                margin-bottom: 12px;
            }

            .quote-features {
                margin-bottom: 24px;
            }

            .site-footer {
                padding: 36px 16px 0;
            }

            .footer-main {
                gap: 24px;
                padding-bottom: 24px;
            }

            .payment-text {
                font-size: 16px;
                line-height: 1.7;
                margin-bottom: 16px;
            }

            .price-match-banner {
                padding: 14px 16px;
                gap: 12px;
                margin-top: 20px;
                flex-direction: column;
                text-align: center;
            }

            .price-match-banner svg {
                width: 28px;
                height: 28px;
            }

            .price-match-banner p {
                font-size: 13px;
                line-height: 1.5;
            }

            .price-match-banner strong {
                font-size: 14px;
            }

            .price-shield {
                width: 120px;
                height: 136px;
                bottom: -20px;
                right: -10px;
            }

            .price-shield-check {
                width: 22px;
                height: 22px;
                margin-bottom: 2px;
            }

            .price-shield-text .shield-line1 {
                font-size: 13px;
                letter-spacing: 2px;
            }

            .price-shield-text .shield-line2 {
                font-size: 20px;
                letter-spacing: 1.5px;
            }

            .price-shield-text .shield-line3 {
                font-size: 10px;
                letter-spacing: 2px;
            }

            .service-area-map-wrapper {
                height: 320px;
            }

            /* City list toggle button */
            .city-list-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                padding: 14px 20px;
                margin-top: 20px;
                background: linear-gradient(135deg, var(--orange), #e85d2a);
                color: var(--white);
                border: none;
                border-radius: 10px;
                font-family: 'Bebas Neue', sans-serif;
                font-size: 20px;
                letter-spacing: 1.5px;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            }

            .city-list-toggle:hover {
                box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
                transform: translateY(-1px);
            }

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

            .city-list-toggle-chevron {
                width: 18px;
                height: 18px;
                transition: transform 0.3s ease;
            }

            .city-list-toggle[aria-expanded="true"] .city-list-toggle-chevron {
                transform: rotate(180deg);
            }

            /* City list collapsed by default on mobile */
            .city-list-section {
                grid-template-columns: 1fr;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.3s ease;
            }

            .city-list-section.expanded {
                max-height: 800px;
                opacity: 1;
            }

            .map-city-list {
                grid-template-columns: repeat(4, 1fr);
                gap: 2px 4px;
            }

            .map-city-list li {
                font-size: 11px;
                padding: 3px 2px;
                gap: 3px;
            }

            .map-city-list li .city-pin {
                width: 14px;
                height: 14px;
            }

            .quote-features {
                flex-direction: column;
                gap: 16px;
            }
        }

        @media (max-width: 480px) {
            .mobile-trust-item {
                width: 60px;
            }

            .mobile-trust-icon {
                width: 42px;
                height: 42px;
            }

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

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

            .service-area-map-wrapper {
                height: 280px;
            }

            .map-city-list li {
                font-size: 10px;
                padding: 3px 1px;
                gap: 2px;
            }

            .map-city-list li .city-pin {
                width: 12px;
                height: 12px;
            }

            .payment-section {
                padding: 32px 14px;
            }

            .payment-title {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .payment-text {
                font-size: 15px;
                line-height: 1.65;
                margin-bottom: 14px;
            }

            .payment-trust-compact span {
                padding: 6px 10px;
                font-size: 11px;
                gap: 5px;
            }

            .payment-trust-compact svg {
                width: 14px;
                height: 14px;
            }

            .price-match-banner {
                padding: 12px 14px;
                margin-top: 16px;
                border-radius: 10px;
            }

            .price-match-banner p {
                font-size: 12px;
            }

            .price-match-banner strong {
                font-size: 13px;
            }

            .price-match-banner svg {
                width: 22px;
                height: 22px;
            }

            .price-shield {
                width: 100px;
                height: 114px;
                bottom: -14px;
                right: -4px;
            }

            .price-shield-check {
                width: 18px;
                height: 18px;
                margin-bottom: 1px;
            }

            .price-shield-text .shield-line1 {
                font-size: 11px;
                letter-spacing: 1.5px;
            }

            .price-shield-text .shield-line2 {
                font-size: 17px;
                letter-spacing: 1px;
            }

            .price-shield-text .shield-line3 {
                font-size: 8px;
                letter-spacing: 1.5px;
            }
        }
        /* ==================== SCROLL ANIMATIONS ==================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .scroll-reveal {
            opacity: 0;
        }

        .scroll-reveal.revealed {
            animation-fill-mode: forwards;
            animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
        }

        .scroll-reveal.revealed.fade-up {
            animation-name: fadeInUp;
            animation-duration: 0.7s;
        }

        .scroll-reveal.revealed.fade-left {
            animation-name: fadeInLeft;
            animation-duration: 0.8s;
        }

        .scroll-reveal.revealed.fade-right {
            animation-name: fadeInRight;
            animation-duration: 0.8s;
        }

        .scroll-reveal.delay-1 { animation-delay: 0.15s; }
        .scroll-reveal.delay-2 { animation-delay: 0.3s; }

        /* ==================== FOOTER ==================== */
        .site-footer {
            background: var(--navy-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 24px 0;
        }

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

        .footer-main {
            display: grid;
            grid-template-columns: 1.4fr 1fr 0.8fr;
            gap: 48px;
            padding-bottom: 48px;
        }

        .footer-logo {
            margin-bottom: 16px;
        }

        .footer-logo img {
            height: 44px;
            width: auto;
            display: block;
        }

        .footer-tagline {
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 12px;
            max-width: 320px;
        }

        .footer-license {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 0.5px;
        }

        .footer-heading {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 18px;
            letter-spacing: 2px;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-contact-items {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a.footer-contact-item:hover {
            color: var(--orange);
        }

        .footer-contact-item svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            opacity: 0.5;
        }

        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-nav a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-nav a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
        }

        .footer-legal {
            display: flex;
            gap: 24px;
        }

        .footer-legal a {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.35);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-legal a:hover {
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .footer-tagline {
                max-width: none;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

