        /* --- RESET & VARIABLES --- */
        :root {
            --primary-red: #EF4444; /* Vibrant Auto Red */
            --primary-red-hover: #DC2626;
            --dark-slate: #1F2937; /* Dark Grey/Blue */
            --text-dark: #111827;
            --text-light: #6B7280;
            --bg-light: #F9FAFB;
            --white: #ffffff;
            --radius: 8px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        a { text-decoration: none; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITIES --- */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 16px;;
            border-radius: var(--radius);
            cursor: pointer;
            text-align: center;
        }

        .btn-red {
            background-color: var(--primary-red);
            color: white;
            border: none;
        }
        .btn-red:hover { background-color: var(--primary-red-hover); transform: translateY(-1px); }

        .btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
            background: transparent;
        }
        .btn-outline:hover { background: var(--white); color: var(--text-dark); }

        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }
        .badge {
            background: #FEE2E2;
            color: var(--primary-red);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 01.2rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .badge.glow {
            background: #FEE2E2;
            color: var(--primary-red);
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.6), 0 0 20px rgba(239, 68, 68, 0.4), inset 0 0 10px rgba(239, 68, 68, 0.2);
            animation: glow-pulse 5s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% {
                box-shadow: 0 0 10px rgba(239, 68, 68, 0.6), 0 0 20px rgba(239, 68, 68, 0.4), inset 0 0 10px rgba(239, 68, 68, 0.2);
            }
            50% {
                box-shadow: 0 0 20px rgba(239, 68, 68, 0.8), 0 0 30px rgba(239, 68, 68, 0.6), inset 0 0 15px rgba(239, 68, 68, 0.3);
            }
        }

        /* --- HEADER --- */
        header {
            background: var(--white);
            border-bottom: 1px solid #E5E7EB;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--dark-slate);
            font-style: italic;
            text-decoration: none;
        }
        .logo:hover { color: var(--dark-slate); }
        .logo span { color: var(--primary-red); }
        
        .nav-links { display: flex; gap: 30px; }
        .nav-links a { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; }
        .nav-links a:hover { color: var(--primary-red); }

        .header-cta { font-weight: 700; color: var(--white); background: var(--primary-red); padding: 10px 20px; border-radius: 6px; }

        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.4rem;
            color: var(--text-dark);
            cursor: pointer;
            padding: 6px 8px;
            border-radius: var(--radius);
            line-height: 1;
        }
        .hamburger:hover { background: #F3F4F6; }

        .nav-mobile-cta { display: none; }

        /* --- HERO --- */
        .hero {
            padding: 100px 0 60px;
            text-align: center;
            background: radial-gradient(circle at center, #fff 0%, #f3f4f6 100%);
        }
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-dark);
            margin-top: 18px;
        }
        .hero h1 span { color: var(--primary-red); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }
        .hero p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 35px;
        }
        .trust-metrics {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        .avatars { display: flex; }
        .avatars span {
            width: 30px; height: 30px; background: #ddd; border-radius: 50%; border: 2px solid white; margin-left: -10px;
        }
        .avatars span:first-child { margin-left: 0; background: #EF4444; }

        /* --- TRUST BAR --- */
        .trust-bar {
            background: #111827;
            padding: 50px 0;
            color: white;
            text-align: center;
        }
        .logos-grid {
            display: flex;
            justify-content: center;
            gap: 60px;
            opacity: 0.6;
            flex-wrap: wrap;
        }
        .logos-grid i { font-size: 2rem; }

        /* --- DEALERSHIP SLIDER --- */
        .dealership-slider {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
            overflow: hidden;
        }
        .slider-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
            animation: autoScroll 20s infinite linear;
        }
        
        @keyframes autoScroll {
            0% { transform: translateX(0); }
            20% { transform: translateX(0); }
            25% { transform: translateX(-170px); }
            45% { transform: translateX(-170px); }
            50% { transform: translateX(-340px); }
            70% { transform: translateX(-340px); }
            75% { transform: translateX(-510px); }
            95% { transform: translateX(-510px); }
            100% { transform: translateX(0); }
        }
        .dealership-card {
            flex: 0 0 150px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        .dealership-card.active {
            opacity: 1;
            background: rgba(239, 68, 68, 0.15);
            border-color: var(--primary-red);
            transform: scale(1.08);
        }
        .dealership-card i {
            font-size: 3rem;
            margin-bottom: 10px;
            color: var(--primary-red);
        }
        .dealership-card .name {
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            white-space: nowrap;
        }
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(-50%);
            pointer-events: none;
            z-index: 10;
        }
        .slider-btn {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: all;
            margin: 0 -20px;
        }
        .slider-btn:hover {
            background: rgba(239, 68, 68, 0.6);
        }
        .slider-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }
        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .indicator.active {
            background: var(--primary-red);
            width: 24px;
            border-radius: 4px;
        }

        /* --- MAP & LOCATION STRIP --- */
        .location-strip {
            background: var(--white);
            padding: 40px 0;
            border-bottom: 1px solid #eee;
        }
        .loc-card {
            background: white;
            border: 1px solid #E5E7EB;
            border-radius: var(--radius);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--shadow);
        }
        .map-bg {
            height: 300px;
            border-radius: var(--radius);
            margin-top: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .map-bg iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .map-pin {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            color: var(--primary-red); font-size: 2rem;
        }
        .map-radius {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 100px; height: 100px; background: rgba(239, 68, 68, 0.2); border-radius: 50%; border: 2px solid var(--primary-red);
        }

        /* --- SERVICES GRID --- */
        .services { background: var(--bg-light); }
        .services-header { max-width: 800px; margin: 0 auto 50px; text-align: center; }
        .services-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
        .services-header h2 span { color: var(--primary-red); }

        .grid-2x2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .service-card {
            background: #1F2937;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: white;
            transition: min-height 0.4s ease;
        }
        /* Using gradients to simulate images for reliability */
        .sc-1 { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1512080482556-ea648017576c?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); background-size: cover; }
        .sc-2 { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1762049297259-f9fdd460ec99?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); background-size: cover; }
        .sc-3 { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); background-size: cover; }
        .sc-4 { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1494905998402-395d579af36f?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); background-size: cover; }
        
        .service-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
        .service-card p { opacity: 0.9; margin-bottom: 20px; font-size: 0.95rem; }
        .service-btn {
            background: var(--primary-red); color: white; border: none; padding: 10px 20px; border-radius: 4px; width: fit-content; font-weight: 600; cursor: pointer;
        }
        .service-card-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s ease, opacity 0.4s ease, margin-top 0.3s ease;
            opacity: 0;
            margin-top: 0;
        }
        .service-card.expanded .service-card-details {
            max-height: 600px;
            opacity: 1;
            margin-top: 18px;
        }
        .service-card-details p {
            font-size: 0.9rem;
            opacity: 0.85;
            line-height: 1.7;
            margin-bottom: 10px;
        }
        .service-card-details ul {
            padding-left: 18px;
            margin-bottom: 12px;
        }
        .service-card-details ul li {
            font-size: 0.88rem;
            opacity: 0.85;
            line-height: 1.6;
            margin-bottom: 4px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials { background: white; }
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .testi-card {
            border: 1px solid #eee;
            padding: 30px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }
        .checkmark { color: #F59E0B; margin-bottom: 15px; font-size: 22px; }
        .tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: #6B7280; border: 1px solid #E5E7EB; padding: 4px 8px; border-radius: 4px; float: right; }
        .testi-text { font-style: italic; color: #374151; margin-bottom: 20px; display: block; }
        .author { display: flex; align-items: center; gap: 10px; }
        .author-avatar { width: 40px; height: 40px; background: #EF4444; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
        .author-info h5 { font-size: 0.9rem; }
        .author-info span { font-size: 0.8rem; color: #9CA3AF; }

        /* --- FAQ ACCORDION --- */
        .faq { background: #e7e7e7; padding: 80px 0; }
        .faq-container { max-width: 1100px; }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 60px;
        }
        .faq-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .faq-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .faq-card h3 {
            color: var(--primary-red);
            font-size: 1.2rem;
            margin: 0 0 15px 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .faq-card h3::before {
            content: "?";
            background: var(--primary-red);
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
            font-weight: bold;
        }
        .faq-card p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* --- CONVERSION SPLIT FOOTER --- */
        .conversion-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 50px;
        }
        .form-side {
            padding: 80px 40px;
            background: rgb(224, 224, 224);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .red-side {
            background: var(--primary-red);
            padding: 80px 40px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
        .form-control {
            width: 100%; padding: 12px; border: 1px solid #D1D5DB; border-radius: 6px; font-family: inherit;
        }
        
        .red-side h2 { font-size: 2.5rem; margin-bottom: 10px; color: white; }
        .red-side h3 { font-size: 3rem; margin-bottom: 30px; color: white; font-weight: 900; }
        .features-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .features-list i { background: rgba(255,255,255,0.2); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

        /* --- BOTTOM SEO FOOTER --- */
        .seo-footer {
            background: #fff;
            padding: 60px 0 20px;
            text-align: center;
        }
        
        .copyright { font-size: 0.8rem; color: #9CA3AF; border-top: 1px solid #eee; padding-top: 20px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {

            /* Navigation — hamburger */
            .hamburger { display: flex; align-items: center; }
            .header-cta { display: none; }
            .nav-wrapper { position: relative; }

            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: var(--white);
                border-top: 2px solid var(--primary-red);
                box-shadow: 0 8px 24px rgba(0,0,0,0.12);
                padding: 10px 0 20px;
                gap: 0;
                z-index: 999;
            }
            .nav-links.open { display: flex; }
            .nav-links a {
                padding: 14px 24px;
                font-size: 1rem;
                border-bottom: 1px solid #F3F4F6;
                width: 100%;
            }
            .nav-links a:last-child { border-bottom: none; }
            .nav-mobile-cta {
                display: block !important;
                background: var(--primary-red);
                color: white !important;
                font-weight: 700;
                margin: 12px 24px 0;
                border-radius: 6px;
                text-align: center;
                border-bottom: none !important;
                width: auto !important;
            }

            /* Hero */
            .hero { padding: 60px 0 40px; }
            .hero h1 { font-size: 2rem; }
            .hero p { font-size: 1rem; }
            .trust-metrics { flex-direction: column; gap: 8px; text-align: center; }

            /* Section padding */
            .section-padding { padding: 55px 0; }

            /* Services */
            .grid-2x2 { grid-template-columns: 1fr; }
            .service-card { min-height: 300px; }
            .service-card h3 { font-size: 1.4rem; }
            .services-header h2 { font-size: 1.9rem; }

            /* Trust bar / dealership */
            .logos-grid { gap: 30px; }

            /* Location card */
            .loc-card {
                flex-direction: column;
                gap: 14px;
                text-align: center;
                align-items: flex-start;
            }

            /* Testimonials */
            .testi-grid { grid-template-columns: 1fr; }

            /* FAQ */
            .faq-grid { grid-template-columns: 1fr; gap: 20px; }
            .faq-card { padding: 22px; }
            .faq-card h3 { font-size: 1.05rem; }

            /* Estimate section heading */
            #estimate .container h2 { font-size: 1.9rem !important; }

            /* Conversion split */
            .conversion-split { grid-template-columns: 1fr; }
            .form-side { padding: 50px 24px; }
            .red-side { padding: 50px 24px; }
            .red-side h2 { font-size: 1.8rem; }
            .red-side h3 { font-size: 2.2rem; }

            /* SEO footer */
            .seo-footer h3 { font-size: 1.6rem !important; }
        }