        /* ===== RESET ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --dark: #0b1a2e;
            --dark-2: #142a45;
            --blue: #1a73e8;
            --blue-hover: #1557b0;
            --orange: #e85d26;
            --orange-hover: #c94d1c;
            --white: #ffffff;
            --bg: #f4f6f9;
            --card: #ffffff;
            --border: #e2e6ec;
            --text: #1a1a2e;
            --text-light: #6b7280;
            --text-lighter: #9ca3af;
            --success: #10b981;
            --shadow: 0 2px 12px rgba(11, 26, 46, 0.08);
            --shadow-md: 0 8px 30px rgba(11, 26, 46, 0.12);
            --shadow-lg: 0 16px 50px rgba(11, 26, 46, 0.16);
            --radius: 10px;
            --radius-lg: 16px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }

        .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed; inset: 0;
            background: var(--dark);
            display: flex; align-items: center; justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        .preloader.hidden { opacity: 0; visibility: hidden; }
        .preloader-content { text-align: center; }
        .preloader-logo {
            width: 70px; height: 70px;
            background: var(--orange);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900; font-size: 32px; color: var(--white);
            margin: 0 auto 20px;
            animation: pulse 1.2s ease-in-out infinite;
        }
        @keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
        .preloader-content h2 { color: var(--white); font-size: 24px; font-weight: 800; }
        .preloader-content h2 span { color: var(--orange); }
        .preloader-bar {
            width: 180px; height: 3px;
            background: rgba(255,255,255,0.15);
            margin: 18px auto 0; border-radius: 10px; overflow: hidden;
        }
        .preloader-bar::after {
            content: ''; display: block; width: 40%; height: 100%;
            background: var(--orange); border-radius: 10px;
            animation: load 1s ease-in-out infinite;
        }
        @keyframes load { 0%{transform:translateX(-100%)} 100%{transform:translateX(350%)} }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed; top: 0; left: 0; width: 100%;
            z-index: 1000; padding: 18px 0;
            background: var(--dark);
            transition: all 0.3s ease;
        }
        .navbar.scrolled {
            background: var(--dark);
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
            padding: 12px 0;
        }
        .navbar .container {
            display: flex; align-items: center; justify-content: space-between;
        }
        .nav-logo {
            display: flex; align-items: center; gap: 12px; z-index: 1001;
        }
        .nav-logo-icon {
            width: 44px; height: 44px;
            background: var(--orange);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 900; font-size: 20px; color: var(--white);
        }
        .nav-logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800; font-size: 20px; color: var(--white);
        }
        .nav-logo-text span { color: var(--orange); }

        .nav-links {
            display: flex; align-items: center; gap: 6px;
            list-style: none;
        }
        .nav-links a {
            color: rgba(255,255,255,0.75);
            font-weight: 500; font-size: 14px;
            padding: 10px 16px; border-radius: 8px;
            transition: all 0.25s ease;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--white);
            background: rgba(255,255,255,0.1);
        }
        .nav-cta {
            background: var(--orange) !important;
            color: var(--white) !important;
            font-weight: 600 !important;
            padding: 11px 22px !important;
            border-radius: 8px !important;
        }
        .nav-cta:hover {
            background: var(--orange-hover) !important;
        }

        .hamburger {
            display: none; flex-direction: column; gap: 5px;
            cursor: pointer; z-index: 1001; padding: 8px;
        }
        .hamburger span {
            width: 26px; height: 2.5px;
            background: var(--white); border-radius: 10px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex; align-items: center;
            background: var(--dark);
            overflow: hidden;
        }
        .hero-pattern {
            position: absolute; inset: 0;
            opacity: 0.04;
            background-image:
                radial-gradient(circle at 25% 50%, var(--blue) 1px, transparent 1px),
                radial-gradient(circle at 75% 30%, var(--orange) 1px, transparent 1px);
            background-size: 50px 50px, 70px 70px;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px; align-items: center;
            position: relative; z-index: 2;
            padding-top: 100px; padding-bottom: 60px;
        }
        .hero-content { animation: slideLeft 0.9s ease-out; }
        @keyframes slideLeft { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }

        .hero-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(232, 93, 38, 0.15);
            border: 1px solid rgba(232, 93, 38, 0.3);
            padding: 8px 18px; border-radius: 50px;
            color: var(--orange); font-size: 13px; font-weight: 600;
            margin-bottom: 22px;
        }
        .hero-badge i { font-size: 8px; animation: blink 2s infinite; }
        @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

        .hero h1 {
            font-size: clamp(34px, 4.5vw, 58px);
            font-weight: 900; color: var(--white);
            margin-bottom: 18px; letter-spacing: -0.5px;
        }
        .hero h1 .hl { color: var(--orange); }

        .hero-desc {
            font-size: 17px; color: rgba(255,255,255,0.65);
            margin-bottom: 32px; max-width: 480px; line-height: 1.7;
        }

        .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

        .btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 15px 30px; border-radius: 10px;
            font-weight: 600; font-size: 15px;
            cursor: pointer; border: none;
            transition: all 0.25s ease;
            font-family: 'Inter', sans-serif;
        }
        .btn-orange {
            background: var(--orange); color: var(--white);
        }
        .btn-orange:hover {
            background: var(--orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 93, 38, 0.35);
        }
        .btn-outline {
            background: transparent; color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.25);
        }
        .btn-outline:hover {
            border-color: var(--white);
            background: rgba(255,255,255,0.08);
            transform: translateY(-2px);
        }

        .hero-stats { display: flex; gap: 36px; }
        .hero-stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 30px; font-weight: 800; color: var(--white);
        }
        .hero-stat-number span { color: var(--orange); }
        .hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

        .hero-visual {
            position: relative;
            animation: slideRight 0.9s ease-out;
        }
        @keyframes slideRight { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

        .hero-car-box {
            position: relative;
            width: 100%; aspect-ratio: 1.1;
            background: var(--dark-2);
            border-radius: 24px;
            border: 1px solid rgba(255,255,255,0.06);
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .hero-car-box::before {
            content: '';
            position: absolute; bottom: 0; left: 0; right: 0;
            height: 40%;
            background: rgba(232, 93, 38, 0.06);
        }
        .hero-car-emoji {
            font-size: 160px;
            position: relative; z-index: 2;
            animation: carFloat 4s ease-in-out infinite;
        }
        @keyframes carFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

        .hero-float-card {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 14px 18px;
            box-shadow: var(--shadow-md);
            z-index: 3;
            animation: floatCard 5s ease-in-out infinite;
        }
        .hero-float-card:nth-child(2) { top: 12%; right: -10px; animation-delay: 0s; }
        .hero-float-card:nth-child(3) { bottom: 18%; left: -10px; animation-delay: 1.5s; }
        @keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
        .float-card-row { display: flex; align-items: center; gap: 10px; }
        .float-card-icon {
            width: 36px; height: 36px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 16px;
        }
        .float-card-icon.blue { background: #e8f0fe; color: var(--blue); }
        .float-card-icon.orange { background: #fde8e0; color: var(--orange); }
        .float-card-text { font-size: 13px; font-weight: 700; color: var(--text); }
        .float-card-sub { font-size: 11px; color: var(--text-light); }

        /* ===== MARQUEE ===== */
        .marquee {
            background: var(--dark-2);
            padding: 16px 0; overflow: hidden;
            border-top: 1px solid rgba(255,255,255,0.06);
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .marquee-track {
            display: flex; gap: 50px;
            animation: marquee 22s linear infinite;
            width: max-content;
        }
        .marquee-item {
            display: flex; align-items: center; gap: 10px;
            color: rgba(255,255,255,0.35);
            font-weight: 600; font-size: 13px;
            white-space: nowrap;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase; letter-spacing: 1.5px;
        }
        .marquee-item i { color: var(--orange); font-size: 6px; }
        @keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

        /* ===== SECTION ===== */
        .section { padding: 90px 0; }
        .section-header { text-align: center; margin-bottom: 56px; }
        .section-tag {
            display: inline-flex; align-items: center; gap: 8px;
            background: #fde8e0;
            padding: 7px 18px; border-radius: 50px;
            font-size: 12px; font-weight: 700;
            color: var(--orange);
            text-transform: uppercase; letter-spacing: 1.5px;
            margin-bottom: 14px;
        }
        .section-title {
            font-size: clamp(26px, 3.5vw, 40px);
            font-weight: 800; color: var(--dark);
            margin-bottom: 14px;
        }
        .section-title span { color: var(--orange); }
        .section-subtitle {
            font-size: 16px; color: var(--text-light);
            max-width: 560px; margin: 0 auto;
        }

        /* ===== FEATURES ===== */
        .features-section { background: var(--bg); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 22px;
        }
        .feature-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            position: relative;
        }
        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--orange);
        }
        .feature-icon {
            width: 56px; height: 56px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; margin-bottom: 20px;
        }
        .feature-card:nth-child(1) .feature-icon { background: #e8f0fe; color: var(--blue); }
        .feature-card:nth-child(2) .feature-icon { background: #fde8e0; color: var(--orange); }
        .feature-card:nth-child(3) .feature-icon { background: #d1fae5; color: var(--success); }
        .feature-card:nth-child(4) .feature-icon { background: #ede9fe; color: #7c3aed; }
        .feature-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
        .feature-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

        /* ===== VEHICLES ===== */
        .vehicles-section { background: var(--white); }
        .vehicles-filter {
            display: flex; justify-content: center; gap: 10px;
            margin-bottom: 44px; flex-wrap: wrap;
        }
        .filter-btn {
            padding: 10px 22px; border-radius: 50px;
            border: 1.5px solid var(--border);
            background: var(--white); color: var(--text-light);
            font-weight: 500; font-size: 14px;
            cursor: pointer; transition: all 0.25s ease;
            font-family: 'Inter', sans-serif;
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--dark); color: var(--white); border-color: var(--dark);
        }
        .vehicles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        .vehicle-card {
            background: var(--card);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .vehicle-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .vehicle-image {
            position: relative; height: 220px;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .vehicle-image .car-emoji { font-size: 110px; transition: transform 0.4s ease; }
        .vehicle-card:hover .car-emoji { transform: scale(1.08); }
        .vehicle-badge {
            position: absolute; top: 14px; left: 14px;
            padding: 5px 12px; border-radius: 6px;
            font-size: 11px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.5px;
        }
        .badge-new { background: var(--orange); color: var(--white); }
        .badge-popular { background: var(--blue); color: var(--white); }
        .badge-promo { background: var(--success); color: var(--white); }
        .vehicle-wishlist {
            position: absolute; top: 14px; right: 14px;
            width: 38px; height: 38px;
            background: var(--white); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; border: none;
            color: var(--text-lighter); font-size: 15px;
            transition: all 0.25s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .vehicle-wishlist:hover, .vehicle-wishlist.active {
            background: var(--orange); color: var(--white);
        }
        .vehicle-info { padding: 24px; }
        .vehicle-brand {
            font-size: 11px; font-weight: 700;
            color: var(--blue); text-transform: uppercase;
            letter-spacing: 1.5px; margin-bottom: 4px;
        }
        .vehicle-name {
            font-size: 20px; font-weight: 700;
            color: var(--dark); margin-bottom: 14px;
        }
        .vehicle-specs {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 10px; margin-bottom: 18px;
            padding-bottom: 18px; border-bottom: 1px solid var(--border);
        }
        .vehicle-spec { text-align: center; }
        .vehicle-spec i { font-size: 14px; color: var(--blue); margin-bottom: 3px; display: block; }
        .vehicle-spec-value { font-size: 12px; font-weight: 600; color: var(--text); }
        .vehicle-spec-label { font-size: 10px; color: var(--text-lighter); }
        .vehicle-footer { display: flex; align-items: center; justify-content: space-between; }
        .vehicle-price-label { font-size: 11px; color: var(--text-lighter); }
        .vehicle-price-value { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: var(--dark); }
        .btn-details {
            padding: 10px 20px; background: var(--dark); color: var(--white);
            border: none; border-radius: 8px;
            font-weight: 600; font-size: 13px;
            cursor: pointer; transition: all 0.25s ease;
            font-family: 'Inter', sans-serif;
        }
        .btn-details:hover { background: var(--orange); transform: translateY(-2px); }

        /* ===== SERVICES ===== */
        .services-section { background: var(--dark); }
        .services-section .section-title { color: var(--white); }
        .services-section .section-subtitle { color: rgba(255,255,255,0.55); }
        .services-section .section-tag { background: rgba(232,93,38,0.15); }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
        }
        .service-card {
            background: var(--dark-2);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: var(--radius-lg);
            padding: 34px 28px;
            transition: all 0.3s ease;
        }
        .service-card:hover {
            border-color: var(--orange);
            transform: translateY(-5px);
        }
        .service-icon {
            width: 52px; height: 52px;
            background: var(--orange);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; color: var(--white);
            margin-bottom: 20px;
        }
        .service-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
        .service-card p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; }
        .service-link {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--orange); font-weight: 600; font-size: 13px;
            margin-top: 16px; transition: gap 0.25s ease;
        }
        .service-link:hover { gap: 12px; }

        /* ===== DEVIS SECTION ===== */
        .devis-section { background: var(--bg); }
        .devis-wrapper {
            background: var(--dark);
            border-radius: 20px;
            padding: 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px; align-items: center;
            position: relative; overflow: hidden;
        }
        .devis-wrapper::before {
            content: '';
            position: absolute; top: -80px; right: -80px;
            width: 300px; height: 300px;
            background: rgba(232, 93, 38, 0.08);
            border-radius: 50%;
        }
        .devis-content { position: relative; z-index: 2; }
        .devis-content h2 {
            font-size: 34px; font-weight: 800;
            color: var(--white); margin-bottom: 14px;
        }
        .devis-content h2 span { color: var(--orange); }
        .devis-content p {
            color: rgba(255,255,255,0.6); font-size: 15px;
            margin-bottom: 28px; line-height: 1.7;
        }
        .devis-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
        .devis-feature {
            display: flex; align-items: center; gap: 12px;
            color: rgba(255,255,255,0.8); font-size: 14px;
        }
        .devis-feature i { color: var(--orange); font-size: 16px; }

        .devis-form {
            background: var(--white);
            border-radius: 16px;
            padding: 34px;
            position: relative; z-index: 2;
        }
        .devis-form h3 {
            font-size: 20px; font-weight: 700;
            color: var(--dark); margin-bottom: 22px;
        }
        .form-group { margin-bottom: 14px; }
        .form-group label {
            display: block; font-size: 13px; font-weight: 600;
            color: var(--text); margin-bottom: 6px;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%; padding: 13px 16px;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 8px;
            color: var(--text); font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.25s ease;
            outline: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--orange);
        }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
        .btn-submit {
            width: 100%; padding: 15px;
            background: var(--orange); color: var(--white);
            border: none; border-radius: 10px;
            font-size: 15px; font-weight: 700;
            cursor: pointer; transition: all 0.25s ease;
            font-family: 'Inter', sans-serif;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            margin-top: 6px;
        }
        .btn-submit:hover {
            background: var(--orange-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 93, 38, 0.3);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section { background: var(--white); }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }
        .testimonial-card {
            background: var(--bg);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .testimonial-quote {
            font-size: 36px; color: var(--orange);
            opacity: 0.3; font-family: serif; line-height: 1;
            margin-bottom: 10px;
        }
        .testimonial-text {
            font-size: 14px; color: var(--text);
            line-height: 1.8; margin-bottom: 20px;
            font-style: italic;
        }
        .testimonial-stars { color: #f59e0b; font-size: 13px; margin-bottom: 14px; }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .testimonial-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--orange);
            display: flex; align-items: center; justify-content: center;
            color: var(--white); font-weight: 700; font-size: 16px;
        }
        .testimonial-author-name { font-weight: 700; color: var(--dark); font-size: 14px; }
        .testimonial-author-role { font-size: 12px; color: var(--text-light); }

        /* ===== CONTACT ===== */
        .contact-section { background: var(--bg); }
        .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; }
        .contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
        .contact-info-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px;
            display: flex; align-items: flex-start; gap: 16px;
            transition: all 0.25s ease;
            border: 1px solid var(--border);
        }
        .contact-info-card:hover {
            transform: translateX(6px);
            box-shadow: var(--shadow);
            border-color: var(--orange);
        }
        .contact-info-icon {
            width: 48px; height: 48px; min-width: 48px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 20px;
        }
        .contact-info-card:nth-child(1) .contact-info-icon { background: #e8f0fe; color: var(--blue); }
        .contact-info-card:nth-child(2) .contact-info-icon { background: #fde8e0; color: var(--orange); }
        .contact-info-card:nth-child(3) .contact-info-icon { background: #d1fae5; color: var(--success); }
        .contact-info-card:nth-child(4) .contact-info-icon { background: #ede9fe; color: #7c3aed; }
        .contact-info-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
        .contact-info-text p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
        .contact-info-text a { color: var(--blue); font-weight: 600; }

        .contact-map {
            border-radius: var(--radius-lg); overflow: hidden;
            min-height: 380px;
            background: var(--dark);
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            color: var(--white);
        }
        .contact-map i { font-size: 50px; color: var(--orange); margin-bottom: 14px; }
        .contact-map h3 { font-size: 18px; margin-bottom: 6px; }
        .contact-map p { color: rgba(255,255,255,0.5); font-size: 13px; }

        /* ===== FOOTER ===== */
        .footer { background: var(--dark); padding: 70px 0 0; }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 44px; padding-bottom: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-brand p {
            color: rgba(255,255,255,0.45); font-size: 14px;
            line-height: 1.7; margin-bottom: 20px;
        }
        .footer-social { display: flex; gap: 10px; }
        .footer-social a {
            width: 40px; height: 40px;
            background: rgba(255,255,255,0.08);
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            color: rgba(255,255,255,0.5); transition: all 0.25s ease;
            font-size: 15px;
        }
        .footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
        .footer-col h4 {
            font-size: 15px; font-weight: 700; color: var(--white);
            margin-bottom: 20px; position: relative; padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: ''; position: absolute; bottom: 0; left: 0;
            width: 28px; height: 2px; background: var(--orange);
        }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-links a {
            color: rgba(255,255,255,0.45); font-size: 14px;
            transition: all 0.25s ease;
            display: flex; align-items: center; gap: 6px;
        }
        .footer-links a:hover { color: var(--orange); padding-left: 4px; }
        .footer-newsletter p {
            color: rgba(255,255,255,0.45); font-size: 13px;
            margin-bottom: 16px; line-height: 1.7;
        }
        .newsletter-form { display: flex; gap: 8px; }
        .newsletter-form input {
            flex: 1; padding: 12px 16px;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 8px; color: var(--white);
            font-size: 14px; outline: none;
            font-family: 'Inter', sans-serif;
        }
        .newsletter-form input:focus { border-color: var(--orange); }
        .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
        .newsletter-form button {
            padding: 12px 18px; background: var(--orange);
            color: var(--white); border: none; border-radius: 8px;
            cursor: pointer; transition: all 0.25s ease; font-size: 14px;
        }
        .newsletter-form button:hover { background: var(--orange-hover); }
        .footer-bottom {
            padding: 22px 0;
            display: flex; align-items: center; justify-content: space-between;
            flex-wrap: wrap; gap: 12px;
        }
        .footer-bottom p { color: rgba(255,255,255,0.35); font-size: 13px; }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 13px; transition: color 0.25s ease; }
        .footer-bottom-links a:hover { color: var(--orange); }

        /* ===== SCROLL TOP ===== */
        .scroll-top {
            position: fixed; bottom: 28px; right: 28px;
            width: 46px; height: 46px;
            background: var(--orange); color: var(--white);
            border: none; border-radius: 50%;
            font-size: 18px; cursor: pointer;
            z-index: 999; opacity: 0; visibility: hidden;
            transition: all 0.3s ease;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 15px rgba(232, 93, 38, 0.3);
        }
        .scroll-top.visible { opacity: 1; visibility: visible; }
        .scroll-top:hover { background: var(--orange-hover); transform: translateY(-3px); }

        /* ===== WHATSAPP ===== */
        .whatsapp-float { position: fixed; bottom: 28px; left: 28px; z-index: 999; }
        .whatsapp-btn {
            display: flex; align-items: center; gap: 10px;
            background: #25d366; color: var(--white);
            padding: 13px 22px; border-radius: 50px;
            font-weight: 600; font-size: 14px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
            transition: all 0.25s ease;
        }
        .whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); }
        .whatsapp-btn i { font-size: 20px; }

        /* ===== REVEAL ===== */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-d1 { transition-delay: 0.1s; }
        .reveal-d2 { transition-delay: 0.2s; }
        .reveal-d3 { transition-delay: 0.3s; }
        .reveal-d4 { transition-delay: 0.4s; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-desc { margin: 0 auto 32px; }
            .hero-buttons { justify-content: center; }
            .hero-stats { justify-content: center; }
            .hero-visual { max-width: 380px; margin: 0 auto; }
            .devis-wrapper { grid-template-columns: 1fr; padding: 40px 28px; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .nav-links {
                position: fixed; top: 0; right: -100%;
                width: 80%; max-width: 340px; height: 100vh;
                background: var(--dark);
                flex-direction: column; align-items: flex-start;
                padding: 90px 28px 28px; gap: 4px;
                transition: right 0.3s ease;
            }
            .nav-links.open { right: 0; }
            .nav-links a { width: 100%; padding: 13px 16px; font-size: 15px; }
            .nav-cta { margin-top: 12px; text-align: center; justify-content: center; }
            .hero h1 { font-size: 30px; }
            .hero-stats { gap: 20px; }
            .hero-stat-number { font-size: 22px; }
            .vehicles-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .form-row { grid-template-columns: 1fr; }
            .whatsapp-btn span { display: none; }
            .whatsapp-btn { padding: 14px; border-radius: 50%; }
        }
        @media (max-width: 480px) {
            .section { padding: 60px 0; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .btn { width: 100%; justify-content: center; }
            .devis-wrapper { padding: 28px 20px; }
            .devis-form { padding: 24px; }
        }

        .nav-overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998; opacity: 0; visibility: hidden;
            transition: all 0.3s ease;
        }
        .nav-overlay.active { opacity: 1; visibility: visible; }
