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

        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
        }

        /* ── HEADER / NAV ── */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: black;
            color: white;
            height: 10vh;
            padding: 10px;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
        }

        .logo img {
            width: 100%;
            max-width: 150px;
            padding: 10px;
            margin-left: 30px;
            border-radius: 20px;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
            margin-right: 60px;
            margin-top: 20px;
        }

        .nav-links li a {
            text-decoration: none;
            color: white;
        }

        .nav-links li a:hover {
            border-bottom: 4px solid red;
            padding-bottom: 7px;
            transition: all 1s ease;
            transform: scale(1.08) translateX(-5px);
        }

        .nav-links li a.active-link {
            padding-bottom: 7px;
        }

        .hamburger {
            display: none;
        }

        /* ── PAGE TITLE ── */
        .inventory-hero {
            background-color: black;
            color: white;
            text-align: center;
            padding: 130px 20px 40px;
        }

        .inventory-hero h1 {
            font-size: 42px;
            letter-spacing: 6px;
            text-transform: uppercase;
        }

        .inventory-hero p {
            color: #aaa;
            margin-top: 10px;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .hero-line {
            width: 60px;
            height: 3px;
            background-color: red;
            margin: 15px auto 0;
        }

        /* ── INVENTORY GRID ── */
        .inventory-section {
            padding: 60px 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .inventory-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 40px;
        }

        /* ── CAR CARD ── */
        .car-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .car-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* ── MINI CAROUSEL ── */
        .carousel {
            position: relative;
            width: 100%;
            height: 440px;
            overflow: hidden;
            background: #111;
        }

        .carousel-track {
            display: flex;
            height: 100%;
            width: 100%;
            transition: transform 0.4s ease;
        }

        .carousel-track img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.55);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .carousel-btn:hover {
            background: rgba(200,0,0,0.8);
        }

        .carousel-btn.prev { left: 10px; }
        .carousel-btn.next { right: 10px; }

        .carousel-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
        }

        .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: red;
        }

        .carousel-counter {
            position: absolute;
            top: 10px;
            right: 12px;
            background: rgba(0,0,0,0.6);
            color: white;
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 20px;
        }

        /* ── CAR INFO ── */
        .car-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .car-badge {
            display: inline-block;
            background: red;
            color: white;
            width: 100%;
            max-width: 100px;
            font-size: 10px;
            font-weight: bold;
            letter-spacing: 2px;
            padding: 3px 10px;
            border-radius: 20px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .car-name {
            font-size: 20px;
            font-weight: 700;
            color: #111;
            margin-bottom: 4px;
        }

        .car-year {
            font-size: 13px;
            color: #888;
            margin-bottom: 14px;
        }

        .car-specs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
            margin-bottom: 16px;
        }

        .spec-item {
            display: flex;
            flex-direction: column;
        }

        .spec-label {
            font-size: 10px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .spec-value {
            font-size: 13px;
            font-weight: 600;
            color: #222;
            margin-top: 2px;
        }

        .car-features {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 18px;
        }

        .feature-tag {
            background: #f0f0f0;
            color: #444;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 20px;
        }

        .car-price {
            font-size: 22px;
            font-weight: 800;
            color: #111;
            border-top: 1px solid #eee;
            padding-top: 14px;
        }

        .car-price span {
            font-size: 13px;
            color: #888;
            font-weight: 400;
        }

        .whatsapp-btn {
            display: block;
            text-align: center;
            margin-top: auto;
            background: #25D366;
            color: white;
            text-decoration: none;
            padding: 11px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 14px;
            transition: background 0.3s;
        }

        .whatsapp-btn:hover {
            background: #1ebe5d;
        }

        /* ── FOOTER ── */
        footer {
            background: black;
            color: #888;
            text-align: center;
            padding: 30px;
            font-size: 13px;
            margin-top: 40px;
        }

        /* ── MEDIA QUERIES ── */
        @media (max-width: 1200px) {
            header { height: 5vh; }
        }

        @media (max-width: 1024px) {
            header { height: 13vh; }
        }

        @media (max-width: 872px) {
            header { height: 9vh; padding: 15px; font-size: 20px; }
        }

        @media (max-width: 768px) {
            header { height: 9vh; padding-top: 20px; }
            .inventory-section { padding: 40px 20px; }
        }

        @media (max-width: 480px) {
            header { height: 8vh; }
            .logo { margin-top: -9px; }
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                font-size: 24px;
                top: 50px;
                right: -60px;
                background-color: black;
                padding: 20px;
                width: 200px;
                z-index: 1000;
            }
            .hamburger {
                display: block;
                font-size: 40px;
                margin-right: 20px;
                margin-top: -10px;
                cursor: pointer;
            }
            .inventory-hero h1 { font-size: 28px; }
            .inventory-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 400px) {
            .nav-links.active {
                top: 47px;
                right: -50px;
                padding: 10px;
                width: 200px;
            }
        }

        @media (max-height: 500px) and (orientation: landscape) {
            header { height: 12vw; }
            .hamburger { display: block; font-size: 30px; margin-right: 20px; cursor: pointer; }
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                font-size: 18px;
                top: 45px;
                right: 0;
                background-color: black;
                padding: 15px;
                width: 180px;
                z-index: 1000;
            }
        }

/* FOOTER SECTION*/

footer{
    background-color: black;
    color: white;
    padding: 20px;
}

.footer-hero, .footer-hero1{
    display: flex;
    flex-direction: row;
    gap: 10%;
    margin-top: 50px;
}

.logo2{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
    margin-left: 7%;
}

.logo3{
    font-size: 30px;
}

.logo3 p{
    margin-left: 10%;
}

.logo3 span{
    font-size: 30px;
    font-style: italic;
}

.logo4{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.nav-footer1{
    display: flex;
    flex-direction: column;
    gap: 30px;
    list-style: none;
    margin-top: 15px;
}

.nav-footer1 li a{
    color: white;
    text-decoration: none;
}

.cont{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-left: 5%;
}

.cont1{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cont2{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.cont2 i{
    background-color: transparent;
    border: none;
    font-size: 17px;
}

.time{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
    margin-left: 18%;
}

.social-icons i {
    position: static;
    font-size: 24px;
    background-color: transparent;
    border: none;
    width: auto;
    height: auto;
    max-width: none;
    padding: 0;
    margin: 0;
    color: white;
}

.fa-brands, .fa-solid, .fa-regular {
    font-family: "Font Awesome 6 Brands";
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid #333;
    color: white;
    font-size: 14px;
}

@media (max-width: 480px){
    .footer-hero, .footer-hero1{
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .nav-footer{
        margin-left: 10%;
    }

    .time{
        margin-left: 10%;
    }
}

/* ── Landscape: footer ── */
@media (max-height: 500px) and (orientation: landscape){
    .footer-hero, .footer-hero1{
        gap: 5%;
        margin-top: 20px;
    }

    .logo2{
        margin-left: 3%;
    }

    .time{
        margin-left: 5%;
    }

    .cont{
        margin-left: 2%;
        padding: 10px;
    }
}

/* ── Extra small phones (Galaxy Fold, etc.) ── */
@media (max-width: 320px){
    .logo p{
        font-size: 16px;
    }

    .logo span{
        font-size: 16px;
    }

    .qua{
        font-size: 20px;
    }

    .trust{
        font-size: 18px;
    }

    .btn a{
        font-size: 13px;
        padding: 12px;
    }

    .hero-card1{
        height: auto;
        min-height: 100px;
    }

    .footer-hero, .footer-hero1{
        flex-direction: column;
        gap: 30px;
    }

    .logo2{
        margin-left: 3%;
    }

    .time{
        margin-left: 3%;
    }
}