:root {
            --bg-dark: #08080a;
            --bg-card: #111116;
            --bg-card-hover: #181820;
            --bg-input: #15151c;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --text-silver: #cbd5e1;
            
            /* Metallic Silver Accents (Matching Logo) */
            --silver-light: #f1f5f9;
            --silver-mid: #94a3b8;
            --silver-dark: #475569;
            --silver-gradient: linear-gradient(135deg, #ffffff 0%, #cbd5e1 30%, #94a3b8 70%, #e2e8f0 100%);
            --metallic-border: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(148,163,184,0.1) 50%, rgba(255,255,255,0.2) 100%);
            
            /* Strategic Crimson Red Highlights & CTAs */
            --red-primary: #dc2626;
            --red-hover: #b91c1c;
            --red-glow: rgba(220, 38, 38, 0.4);
            
            /* WhatsApp Branding */
            --whatsapp-green: #25d366;
            --whatsapp-hover: #1da851;
            
            /* Layout & Spacing */
            --container-max: 1240px;
            --transition-fast: 0.25s ease;
            --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.3;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        h1, h2, h3, h4, .brand-font {
            letter-spacing: 0.5px;
        }

        h2.section-title {
            font-size: 2rem;
            color: var(--text-main);
            text-align: center;
            margin-bottom: 0.75rem;
            letter-spacing: 1.5px;
        }

        h2.section-title span {
            background: var(--silver-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        p.section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 720px;
            margin: 0 auto 3rem auto;
            font-weight: 300;
        }

        /* Container */
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Buttons & CTAs */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.95rem 1.8rem;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: var(--radius-sm);
            transition: all var(--transition-fast);
            cursor: pointer;
            border: none;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .btn-red {
            background-color: var(--red-primary);
            color: #ffffff;
            box-shadow: 0 4px 20px var(--red-glow);
        }

        .btn-red:hover {
            background-color: var(--red-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
        }

        .btn-silver-outline {
            background: transparent;
            color: var(--silver-light);
            border: 1px solid rgba(203, 213, 225, 0.4);
            backdrop-filter: blur(5px);
        }

        .btn-silver-outline:hover {
            border-color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background-color: var(--whatsapp-green);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            background-color: var(--whatsapp-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
        }

        .btn-full {
            width: 100%;
        }

        /* ==========================================================================
           2. HEADER & NAVIGATION
           ========================================================================== */
        header.site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            background: rgba(8, 8, 10, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1.1rem 0;
        }

        header.site-header.scrolled {
            padding: 0.7rem 0;
            background: rgba(6, 6, 8, 0.95);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            border-bottom: 1px solid rgba(203, 213, 225, 0.15);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand-logo-wrap {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .brand-logo-img {
            height: 48px;
            max-width: 96%;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
            transition: transform 0.3s ease;
        }
        .car-card-title{
            margin-bottom: 1rem;
        }
        .brand-logo-wrap:hover .brand-logo-img {
            transform: scale(1.03);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            list-style: none;
        }

        .nav-link {
            color: var(--text-silver);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            transition: color var(--transition-fast);
            position: relative;
            padding: 0.4rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--red-primary);
            transition: width var(--transition-fast);
        }

        .nav-link:hover {
            color: #ffffff;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hamburger-btn {
            display: none;
            z-index: 1001;
            background: transparent;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* ==========================================================================
           3. HERO SECTION & INTEGRATED QUOTE FORM
           ========================================================================== */
        section.hero-section {
            position: relative;
            min-height: 100vh;
            padding-top: 130px;
            padding-bottom: 80px;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at center, rgba(15, 15, 20, 0.4) 0%, rgba(8, 8, 10, 0.65) 100%),
                        url('assets/caldas-novas.webp') center/cover no-repeat fixed;
        }

        section.hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(8,8,10,0.85) 0%, rgba(8,8,10,0.6) 50%, rgba(8,8,10,1) 100%);
            z-index: 1;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3.5rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(220, 38, 38, 0.12);
            border: 1px solid rgba(220, 38, 38, 0.35);
            border-radius: 50px;
            color: #f87171;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 3.2rem;
            line-height: 1.15;
            color: #ffffff;
            margin-bottom: 1.2rem;
            font-weight: 700;
        }

        .hero-title span {
            background: var(--silver-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-silver);
            margin-bottom: 2.2rem;
            font-weight: 300;
            line-height: 1.7;
        }

        .hero-description strong {
            color: #ffffff;
            font-weight: 600;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .hero-features-strip {
            display: flex;
            gap: 1.8rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.85rem;
            color: var(--text-silver);
        }

        .feature-item i {
            color: var(--red-primary);
            font-size: 1rem;
        }

        /* Quote Form Card */
        .quote-card {
            background: rgba(17, 17, 22, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            padding: 2.2rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
        }

        .quote-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--red-primary) 0%, var(--silver-light) 50%, var(--red-primary) 100%);
        }

        .quote-card-header {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .quote-card-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 0.3rem;
            letter-spacing: 1px;
        }

        .quote-card-subtitle {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-silver);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .form-group label i {
            color: var(--red-primary);
        }

        .form-control {
            background: var(--bg-input);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            padding: 0.85rem 1rem;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            transition: all var(--transition-fast);
            outline: none;
            width: 100%;
        }

        .form-control:focus {
            border-color: var(--red-primary);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
            background: #1a1a23;
        }

        select.form-control option {
            background-color: #121216;
            color: #ffffff;
        }

        .dynamic-input-field {
            display: none;
            margin-top: 0.4rem;
            animation: fadeIn 0.3s ease;
        }

        .dynamic-input-field.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ==========================================================================
           4. SECTIONS COMMON LAYOUT
           ========================================================================== */
        section.page-section {
            padding: 6rem 0;
            position: relative;
        }

        section.bg-dark-alt {
            background-color: #0d0d12;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }

        /* ==========================================================================
           5. DESTINATIONS SECTION
           ========================================================================== */
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.8rem;
            margin-bottom: 3rem;
        }

        .destination-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md);
            padding: 2rem;
            transition: all var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0%;
            background: var(--red-primary);
            transition: height var(--transition-smooth);
        }

        .destination-card:hover {
            transform: translateY(-6px);
            background: var(--bg-card-hover);
            border-color: rgba(203, 213, 225, 0.25);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .destination-card:hover::before {
            height: 100%;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: rgba(220, 38, 38, 0.1);
            border: 1px solid rgba(220, 38, 38, 0.25);
            color: var(--red-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
        }

        .destination-card h3 {
            font-size: 1.4rem;
            color: #ffffff;
            margin-bottom: 0.6rem;
        }

        .destination-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .card-action-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--silver-light);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            transition: color var(--transition-fast);
        }

        .card-action-link i {
            color: var(--red-primary);
            transition: transform var(--transition-fast);
        }

        .destination-card:hover .card-action-link i {
            transform: translateX(4px);
        }

        /* ==========================================================================
           6. ABOUT SECTION
           ========================================================================== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(203, 213, 225, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
        }

        .about-image-wrapper img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            object-position: bottom;
            display: block;
            transition: transform 0.6s ease;
        }

        .about-image-wrapper:hover img {
            transform: scale(1.04);
        }

        .about-content h2 {
            text-align: left;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            color: var(--text-silver);
            font-size: 1.02rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            line-height: 1.7;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.2rem;
            margin-top: 2rem;
        }

        .highlight-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 1rem 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .highlight-box i {
            color: var(--red-primary);
            font-size: 1.2rem;
        }

        .highlight-box span {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
        }

        /* ==========================================================================
           7. SERVICES SECTION
           ========================================================================== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md);
            padding: 2.2rem 1.8rem;
            transition: all var(--transition-smooth);
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: rgba(220, 38, 38, 0.4);
            box-shadow: 0 15px 35px rgba(0,0,0,0.6);
            background: var(--bg-card-hover);
        }

        .service-icon {
            font-size: 2.2rem;
            color: var(--red-primary);
            margin-bottom: 1.2rem;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.3rem;
            color: #ffffff;
            margin-bottom: 0.8rem;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.6;
        }

        /* ==========================================================================
           8. VEHICLE SECTION (TOYOTA COROLLA)
           ========================================================================== */
        .vehicle-container {
            background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.08) 0%, transparent 60%), var(--bg-card);
            border: 1px solid rgba(203, 213, 225, 0.15);
            border-radius: var(--radius-lg);
            padding: 3.5rem 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
            margin-bottom: 1.8rem;
            align-items: center;
        }

        .vehicle-image-box {
            position: relative;
            text-align: center;
        }

        .vehicle-image-box img {
            width: 100%;
            height: auto;
            max-height: 360px;
            object-fit: cover;
            border-radius: var(--radius-md);
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.8);
        }

        .vehicle-badge-tag {
            position: absolute;
            bottom: -15px;
            right: 0px;
            background: linear-gradient(135deg, #1e1e24 0%, #0d0d10 100%);
            border: 1px solid rgba(203, 213, 225, 0.3);
            padding: 0.7rem 1.4rem;
            border-radius: 50px;
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .vehicle-badge-tag i {
            color: var(--red-primary);
        }

        .vehicle-details h2 {
            text-align: left;
            margin-bottom: 1.2rem;
        }

        .vehicle-details p {
            color: var(--text-silver);
            font-size: 1.02rem;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .vehicle-specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            background: rgba(255,255,255,0.03);
            padding: 0.9rem 1.1rem;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255,255,255,0.06);
        }

        .spec-item i {
            color: var(--red-primary);
            font-size: 1.2rem;
        }

        .spec-item div {
            display: flex;
            flex-direction: column;
        }

        .spec-item strong {
            color: #ffffff;
            font-size: 0.9rem;
        }

        .spec-item span {
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        /* ==========================================================================
           9. DIFFERENTIALS SECTION
           ========================================================================== */
        .differentials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.8rem;
        }

        .diff-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-md);
            padding: 2.2rem;
            transition: all var(--transition-smooth);
            display: flex;
            gap: 1.5rem;
        }

        .diff-card:hover {
            border-color: var(--red-primary);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.5);
        }

        .diff-icon-wrap {
            flex-shrink: 0;
            width: 55px;
            height: 55px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.05) 100%);
            border: 1px solid rgba(220, 38, 38, 0.3);
            color: var(--red-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .diff-info h3 {
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .diff-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ==========================================================================
           10. TESTIMONIALS SECTION (EDITABLE PLACEHOLDERS)
           ========================================================================== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px dashed rgba(203, 213, 225, 0.25);
            border-radius: var(--radius-md);
            padding: 2.2rem 1.8rem;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .quote-icon {
            font-size: 2rem;
            color: rgba(220, 38, 38, 0.3);
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: var(--text-silver);
            font-size: 0.95rem;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--silver-light);
            font-size: 1rem;
        }

        .author-info h4 {
            font-size: 0.95rem;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .author-info span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ==========================================================================
           11. INSTAGRAM WIDGET SECTION
           ========================================================================== */
        .instagram-card-wrapper {
            max-width: 680px;
            margin: 0 auto;
            background: linear-gradient(135deg, #14141a 0%, #0b0b0e 100%);
            border: 1px solid rgba(203, 213, 225, 0.2);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
        }

        .insta-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .insta-profile {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .insta-avatar {
            width: 70px;
            height: 100%;
            border-radius: 50%;
            padding: 3px;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .insta-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #14141a;
        }

        .insta-meta h3 {
            font-size: 0.8rem;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .insta-meta h3 i {
            color: #38bdf8;
            font-size: 0.9rem;
        }

        .insta-meta p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .insta-stats {
            display: flex;
            justify-content: space-around;
            text-align: center;
            margin-bottom: 2rem;
            background: rgba(255, 255, 255, 0.02);
            padding: 1.2rem;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .stat-item strong {
            display: block;
            font-size: 1.2rem;
            color: #ffffff;
        }

        .stat-item span {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* ==========================================================================
           12. INTERMEDIATE & FINAL CTA BANNER
           ========================================================================== */
        .cta-banner {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(8, 8, 10, 0.95) 50%, rgba(18, 18, 24, 1) 100%),
                        radial-gradient(circle at top left, rgba(255,255,255,0.1), transparent);
            border: 1px solid rgba(220, 38, 38, 0.3);
            border-radius: var(--radius-lg);
            padding: 4rem 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
        }

        .cta-banner h2 {
            font-size: 2.3rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .cta-banner p {
            color: var(--text-silver);
            font-size: 1.1rem;
            max-width: 680px;
            margin: 0 auto 2.2rem auto;
            font-weight: 300;
        }

        .cta-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cta-badge-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-silver);
            font-size: 0.85rem;
            font-weight: 500;
        }

        .cta-badge-item i {
            color: var(--red-primary);
        }

        /* ==========================================================================
           13. FAQ ACCORDION
           ========================================================================== */
        .faq-accordion-wrap {
            max-width: 820px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: border-color var(--transition-fast);
        }

        .faq-item.active {
            border-color: rgba(220, 38, 38, 0.5);
            background: var(--bg-card-hover);
        }

        .faq-question {
            padding: 1.4rem 1.8rem;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: transparent;
            border: none;
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            gap: 1rem;
        }

        .faq-question i {
            color: var(--red-primary);
            transition: transform var(--transition-smooth);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 1.8rem;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            padding: 0 1.8rem 1.4rem 1.8rem;
            max-height: 300px;
        }

        /* ==========================================================================
           14. FOOTER
           ========================================================================== */
        footer.site-footer {
            background-color: #040405;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 4.5rem 0 2rem 0;
            color: var(--text-muted);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 3rem;
            margin-bottom: 3.5rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 1.2rem;
            line-height: 1.6;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1.05rem;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition-fast);
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            font-size: 0.9rem;
        }

        .footer-contact-info div {
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .footer-contact-info i {
            color: var(--red-primary);
        }

        .footer-social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
        }

        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-silver);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all var(--transition-fast);
        }

        .social-btn:hover {
            background: var(--red-primary);
            color: #ffffff;
            border-color: var(--red-primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #64748b;
        }

        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background-color: var(--whatsapp-green);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            text-decoration: none;
            transition: all var(--transition-fast);
            animation: pulseGlow 2s infinite;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            background-color: var(--whatsapp-hover);
        }

        @keyframes pulseGlow {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* Scroll to top button */
        .scroll-top-btn {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 998;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(21, 21, 28, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-fast);
        }

        .scroll-top-btn.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            background: var(--red-primary);
            border-color: var(--red-primary);
        }

        /* ==========================================================================
           15. RESPONSIVE BREAKPOINTS (MOBILE-FIRST)
           ========================================================================== */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-title {
                font-size: 2.6rem;
            }

            .about-grid, .vehicle-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 340px;
                height: 100vh;
                background: rgba(10, 10, 14, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                gap: 1.8rem;
                padding: 2rem;
                transition: right var(--transition-smooth);
                box-shadow: -10px 0 30px rgba(0,0,0,0.8);
                border-left: 1px solid rgba(255,255,255,0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .hamburger-btn {
                display: block;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .hero-title {
                font-size: 2.1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .about-highlights, .vehicle-specs-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }