/*=========================================
        GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
        RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0b0b0b;
    color:#ffffff;
    overflow-x:hidden;
}

/*=========================================
        SCROLLBAR
=========================================*/

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0b0b0b;
}

::-webkit-scrollbar-thumb{
    background:#d4af37;
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#e2c35d;
}

/*=========================================
        HEADER
=========================================*/

header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:110px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    background:#000;

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:1000;

}

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    width:250px;
    height:auto;
    display:block;
    transition:.4s;

}

.logo img:hover{

    transform:scale(1.03);

}

/*=========================================
        NAVIGATION
=========================================*/

nav ul{

    display:flex;

    list-style:none;

    gap:45px;

}

nav ul li a{

    color:#fff;

    text-decoration:none;

    font-size:17px;

    font-weight:500;

    position:relative;

    transition:.35s;

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#d4af37;

    transition:.35s;

}

nav ul li a:hover{

    color:#d4af37;

}

nav ul li a:hover::after{

    width:100%;

}

.active{

    color:#d4af37;

}

/*=========================================
        MOBILE MENU
=========================================*/

.menu-btn{

    display:none;

    font-size:34px;

    cursor:pointer;

    color:#fff;

}

/*=========================================
        HERO
=========================================*/

.hero{

    height:100vh;

    background:url("images/hero/hero-bmw.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

    padding:0 8%;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.85),
        rgba(0,0,0,.45),
        rgba(0,0,0,.15)
    );

}

/*=========================================
        HERO CONTENT
=========================================*/

.hero-content{

    position:relative;

    z-index:5;

    max-width:650px;

}

.hero-tag{

    display:inline-block;

    padding:12px 24px;

    background:#d4af37;

    color:#000;

    font-weight:700;

    border-radius:40px;

    margin-bottom:25px;

    letter-spacing:1px;

    font-size:14px;

}

.hero-content h1{

    font-size:78px;

    line-height:1.05;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content p{

    color:#d6d6d6;

    font-size:19px;

    line-height:1.8;

    margin-bottom:40px;

}

/*=========================================
        BUTTONS
=========================================*/

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    display:inline-block;

    padding:18px 38px;

    background:#d4af37;

    color:#000;

    text-decoration:none;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(212,175,55,.3);

}

.btn-secondary{

    display:inline-block;

    padding:18px 38px;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:#000;

}

/*=========================================
        HERO ANIMATION
=========================================*/

.hero{

    animation:zoomHero 15s ease-in-out infinite alternate;

}

@keyframes zoomHero{

    from{

        background-size:100%;

    }

    to{

        background-size:108%;

    }

}
/*=========================================
        FEATURED VEHICLES
=========================================*/

.featured{

    padding:110px 8%;

    background:#111111;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#d4af37;

    font-size:15px;

    font-weight:600;

    letter-spacing:3px;

}

.section-title h2{

    font-size:52px;

    margin-top:15px;

    margin-bottom:15px;

    font-weight:700;

}

.section-title p{

    color:#9d9d9d;

    font-size:18px;

}

/*=========================================
        SLIDER
=========================================*/

.cars-slider{

    position:relative;

    overflow:hidden;

}

.cars-track{

    display:flex;

    gap:30px;

    transition:.6s ease;

    scroll-behavior:smooth;

    overflow-x:auto;

    scrollbar-width:none;

}

.cars-track::-webkit-scrollbar{

    display:none;

}

/*=========================================
        CARD
=========================================*/

.car-card{

    min-width:370px;

    background:#181818;

    border-radius:22px;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(255,255,255,.05);

    flex-shrink:0;

}

.car-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

/*=========================================
        IMAGE
=========================================*/

.car-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.45s;

}

.car-card:hover img{

    transform:scale(1.08);

}

/*=========================================
        INFO
=========================================*/

.car-info{

    padding:28px;

}

.car-info h3{

    font-size:27px;

    margin-bottom:12px;

}

.car-info p{

    color:#a8a8a8;

    font-size:16px;

    margin-bottom:18px;

}

.car-info h4{

    color:#d4af37;

    font-size:34px;

    margin-bottom:25px;

}

/*=========================================
        BUTTON
=========================================*/

.car-info a{

    display:inline-block;

    padding:14px 30px;

    border-radius:40px;

    background:#d4af37;

    color:#000;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.car-info a:hover{

    background:#ffffff;

    transform:translateY(-4px);

}

/*=========================================
        SLIDER ARROWS
=========================================*/

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.8);

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.35s;

    z-index:5;

}

.slider-btn:hover{

    background:#d4af37;

    color:#000;

}

.prev{

    left:-10px;

}

.next{

    right:-10px;

}

/*=========================================
        FEATURED RESPONSIVE
=========================================*/

@media(max-width:992px){

.car-card{

    min-width:320px;

}

.section-title h2{

    font-size:42px;

}

}

@media(max-width:768px){

.featured{

    padding:80px 6%;

}

.car-card{

    min-width:280px;

}

.slider-btn{

    width:48px;

    height:48px;

    font-size:22px;

}

}

@media(max-width:480px){

.section-title h2{

    font-size:34px;

}

.section-title p{

    font-size:16px;

}

.car-card{

    min-width:260px;

}

.car-card img{

    height:200px;

}

.car-info{

    padding:20px;

}

.car-info h3{

    font-size:22px;

}

.car-info h4{

    font-size:28px;

}

}
/*=========================================
        WHY CHOOSE US
=========================================*/

.why-us{

    padding:110px 8%;
    background:#0b0b0b;

}

.features{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;

}

.feature{

    background:#171717;
    padding:40px 30px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;

}

.feature:hover{

    transform:translateY(-10px);
    border-color:#d4af37;

}

.feature h3{

    color:#d4af37;
    font-size:24px;
    margin-bottom:18px;

}

.feature p{

    color:#bdbdbd;
    line-height:1.8;

}

/*=========================================
        CUSTOMER REVIEWS
=========================================*/

.reviews{

    padding:110px 8%;

    background:#111111;

}

.reviews-container{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.review-card{

    background:#181818;

    padding:40px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-10px);

    border-color:#d4af37;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.stars{

    color:#d4af37;

    font-size:24px;

    letter-spacing:4px;

    margin-bottom:25px;

}

.review-card p{

    color:#cfcfcf;

    line-height:1.8;

    font-size:16px;

    margin-bottom:25px;

    min-height:65px;

}

.review-card h3{

    color:#ffffff;

    font-size:22px;

    margin-bottom:8px;

}

.review-card span{

    color:#d4af37;

    font-size:15px;

}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:992px){

.reviews-container{

    grid-template-columns:1fr;

}

.review-card{

    padding:35px;

}

}
/*=========================================
        CONTACT SECTION
=========================================*/

.footer-contact{

    padding:110px 8%;
    background:#0f0f0f;

}

.footer-contact h2{

    text-align:center;
    font-size:60px;
    margin-bottom:25px;

}

.footer-contact>p{

    text-align:center;
    color:#aaaaaa;
    max-width:750px;
    margin:auto;
    line-height:1.9;
    font-size:18px;
    margin-bottom:70px;

}

.contact-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}

/*=========================================
        CONTACT CARDS
=========================================*/

.contact-card{

    background:#171717;
    border-radius:24px;
    padding:45px;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;

}

.contact-card:hover{

    border-color:#d4af37;
    transform:translateY(-8px);

}

.contact-card h3{

    color:#d4af37;
    font-size:28px;
    margin-bottom:30px;

}

.contact-card p{

    color:#dddddd;
    font-size:20px;
    line-height:2;

}

/*=========================================
        CONTACT BUTTONS
=========================================*/

.contact-buttons{

    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:70px;

}

.contact-buttons a{

    text-decoration:none;

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:1100px){

.features{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.features{

    grid-template-columns:1fr;

}

.contact-grid{

    grid-template-columns:1fr;

}

.sell-banner h2{

    font-size:42px;

}

.footer-contact h2{

    font-size:42px;

}

.contact-buttons{

    flex-direction:column;

}

.contact-buttons a{

    width:100%;
    text-align:center;

}

}

@media(max-width:480px){

.sell-banner{

    padding:90px 6%;

}

.footer-contact{

    padding:90px 6%;

}

.feature{

    padding:30px;

}

.contact-card{

    padding:30px;

}

.contact-card h3{

    font-size:22px;

}

.contact-card p{

    font-size:17px;

}

}
/*=========================================
                FOOTER
=========================================*/

footer{

    background:#050505;

    padding:80px 8% 40px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo{

    width:220px;

    margin-bottom:30px;

}

footer p{

    color:#9d9d9d;

    font-size:16px;

    line-height:1.8;

}

.footer-links{

    display:flex;

    justify-content:center;

    gap:40px;

    margin:40px 0;

    flex-wrap:wrap;

}

.footer-links a{

    color:#ffffff;

    text-decoration:none;

    transition:.35s;

    font-size:16px;

}

.footer-links a:hover{

    color:#d4af37;

}

footer .copyright{

    margin-top:35px;

    color:#666;

    font-size:15px;

}

/*=========================================
            HEADER HIDE
=========================================*/

header.hide{

    transform:translateY(-120px);

    transition:.4s;

}

header{

    transition:.4s;

}

/*=========================================
            MOBILE MENU
=========================================*/

@media(max-width:992px){

.menu-btn{

    display:block;

}

nav{

    position:absolute;

    top:110px;

    left:0;

    width:100%;

    background:#000;

    overflow:hidden;

    max-height:0;

    transition:.4s;

}

nav.active{

    max-height:450px;

}

nav ul{

    flex-direction:column;

    gap:0;

}

nav ul li{

    border-top:1px solid rgba(255,255,255,.08);

}

nav ul li a{

    display:block;

    padding:22px 35px;

}

}

/*=========================================
            HERO MOBILE
=========================================*/

@media(max-width:992px){

.hero{

    justify-content:center;

    text-align:center;

    padding:0 6%;

}

.hero-overlay{

    background:rgba(0,0,0,.72);

}

.hero-content{

    max-width:100%;

}

.hero-buttons{

    justify-content:center;

}

.hero h1{

    font-size:56px;

}

}

@media(max-width:768px){

.hero{

    height:85vh;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:17px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    width:100%;

    text-align:center;

}

.hero-tag{

    font-size:12px;

}

}

/*=========================================
        SECTION SPACING
=========================================*/

section{

    position:relative;

}

img{

    max-width:100%;

    display:block;

}

/*=========================================
        REVEAL ANIMATION
=========================================*/

.reveal{

    opacity:0;

    transform:translateY(80px);

    transition:1s;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/*=========================================
            HOVER EFFECTS
=========================================*/

button,
.btn-primary,
.btn-secondary,
.card-btn{

    cursor:pointer;

}

button:active,
.btn-primary:active,
.btn-secondary:active{

    transform:scale(.97);

}

/*=========================================
            IMAGE EFFECT
=========================================*/

img{

    user-select:none;

}

.hero img,
.car-card img{

    transition:.5s;

}

/*=========================================
            SELECTION
=========================================*/

::selection{

    background:#d4af37;

    color:#000;

}

/*=========================================
            BODY
=========================================*/

body{

    overflow-x:hidden;

}

/*=========================================
            END
=========================================*/
/*==================================================
                BUY PAGE
==================================================*/

/* Hero Banner */

.buy-hero{

    height:55vh;
    background:url("images/cars/showroom.jpg") center center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-top:110px;

}

.buy-hero .overlay{

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);

}

.buy-content{

    position:relative;
    z-index:2;
    max-width:800px;

}

.buy-content h1{

    font-size:64px;
    margin:20px 0;
    font-weight:700;

}

.buy-content p{

    color:#d2d2d2;
    font-size:18px;
    line-height:1.8;

}

.hero-tag{

    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:12px 28px;
    border-radius:50px;
    font-weight:600;

}




/* Car Grid */

.cars-section{

    background:#111;
    padding:0 8% 120px;

}

.cars-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

/* Card */

.car-card{

    background:#181818;
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);

}

.car-card:hover{

    transform:translateY(-10px);
    border-color:#d4af37;
    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.car-card img{

    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;

}

.car-card:hover img{

    transform:scale(1.08);

}

.car-info{

    padding:28px;

}

.car-info h2{

    font-size:26px;
    margin-bottom:12px;

}

.car-info h3{

    color:#d4af37;
    font-size:34px;
    margin-bottom:25px;

}

.specs{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:30px;

}

.specs span{

    color:#d2d2d2;
    font-size:15px;

}

/* Button */

.details-btn{

    display:inline-block;
    padding:15px 35px;
    background:#d4af37;
    color:#000;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;

}

.details-btn:hover{

    background:#fff;
    transform:translateY(-3px);

}
/*==================================================
                CAR DETAILS PAGE
==================================================*/

/* Vehicle Section */

.vehicle-details{

    padding:170px 8% 80px;
    background:#111;

}

.vehicle-container{

    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:start;

}

/*=========================
        GALLERY
=========================*/

.main-image{

    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);

}

.thumbnail-row{

    display:flex;
    gap:15px;
    margin-top:20px;

    overflow-x:auto;
    overflow-y:hidden;

    white-space:nowrap;

    scrollbar-width:none;

}

.thumbnail-row::-webkit-scrollbar{

    display:none;

}

.thumb{

    width:110px;
    height:75px;

    object-fit:cover;

    border-radius:10px;

    cursor:pointer;

    flex-shrink:0;

}

.thumb:hover{

    border-color:#d4af37;
    transform:translateY(-3px);

}

.active-thumb{

    border-color:#d4af37;

}

/*=========================
        INFO
=========================*/

.vehicle-info{

    background:#181818;
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.06);

}

.stock{

    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    background:#d4af37;
    color:#000;
    font-weight:600;
    margin-bottom:25px;

}

.vehicle-info h1{

    font-size:46px;
    margin-bottom:18px;

}

.vehicle-info h2{

    font-size:42px;
    color:#d4af37;
    margin-bottom:40px;

}

/*=========================
        SPEC GRID
=========================*/

.spec-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:40px;

}

.spec-grid div{

    background:#111;
    padding:22px;
    border-radius:14px;

}

.spec-grid h4{

    color:#888;
    font-size:15px;
    margin-bottom:8px;

}

.spec-grid p{

    font-size:18px;
    font-weight:600;

}

/*=========================
        DESCRIPTION
=========================*/

.vehicle-description{

    padding:0 8% 90px;
    background:#111;

}

.description-box{

    background:#181818;
    padding:45px;
    border-radius:20px;

}

.description-box h2{

    margin-bottom:25px;
    font-size:34px;

}

.description-box p{

    color:#cfcfcf;
    line-height:2;
    font-size:17px;

}

/*=========================
        FEATURES
=========================*/

.vehicle-features{

    padding:0 8% 90px;
    background:#111;

}

.vehicle-features h2{

    text-align:center;
    margin-bottom:45px;
    font-size:42px;

}

.features-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;

}

.feature-item{

    background:#181818;
    padding:22px;
    border-radius:14px;
    transition:.35s;

}

.feature-item:hover{

    background:#d4af37;
    color:#000;

}

/*=========================
        TABLE
=========================*/

.vehicle-specifications{

    padding:0 8% 100px;
    background:#111;

}

.vehicle-specifications h2{

    text-align:center;
    margin-bottom:40px;
    font-size:42px;

}

.vehicle-specifications table{

    width:100%;
    border-collapse:collapse;
    background:#181818;
    border-radius:20px;
    overflow:hidden;

}

.vehicle-specifications td{

    padding:22px;
    border-bottom:1px solid rgba(255,255,255,.05);

}

.vehicle-specifications td:first-child{

    color:#9c9c9c;
    width:40%;

}

/*=========================
        CTA
=========================*/

.vehicle-cta{

    padding:90px 8%;
    background:#0d0d0d;
    text-align:center;

}

.vehicle-cta h2{

    font-size:46px;
    margin-bottom:20px;

}

.vehicle-cta p{

    color:#cfcfcf;
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:40px;

}

/*=========================
        SIMILAR CARS
=========================*/

.similar-cars{

    padding:100px 8%;
    background:#111;

}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:1100px){

.vehicle-container{

    grid-template-columns:1fr;

}

.main-image{

    height:420px;

}

}

@media(max-width:768px){

.vehicle-details{

    padding:140px 6% 60px;

}

.vehicle-info{

    padding:30px;

}

.vehicle-info h1{

    font-size:34px;

}

.vehicle-info h2{

    font-size:32px;

}

.spec-grid{

    grid-template-columns:1fr;

}

.features-grid{

    grid-template-columns:1fr;

}

.main-image{

    height:280px;

}

.thumbnail-row{

    flex-wrap:wrap;

}

.thumb{

    width:80px;
    height:60px;

}

.description-box{

    padding:30px;

}

.vehicle-specifications table{

    display:block;
    overflow-x:auto;

}

}
/*====================================================
                CONTACT PAGE
====================================================*/

.contact-page{

    padding:170px 6% 100px;
    background:#0d0d0d;
    min-height:100vh;

}

.contact-title{

    text-align:center;
    margin-bottom:70px;

}

.contact-title h1{

    font-size:72px;
    color:#fff;
    margin:20px 0;

    font-weight:700;

}

.contact-title p{

    max-width:700px;
    margin:auto;

    color:#a8a8a8;

    font-size:20px;

    line-height:1.8;

}

.contact-container{

    max-width:1400px;

    margin:auto;

}

.contact-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{

    background:#181818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.contact-card h3{

    color:#d4af37;

    font-size:32px;

    margin-bottom:30px;

}

.contact-card p{

    color:#d8d8d8;

    font-size:20px;

    line-height:2;

}

.contact-card strong{

    color:#fff;

}

.contact-card a{

    color:#d4af37;

    text-decoration:none;

}

.contact-card a:hover{

    color:#fff;

}

.tag{

    display:inline-block;

    padding:10px 22px;

    background:#d4af37;

    color:#000;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

/*==========================
        RESPONSIVE
==========================*/

@media(max-width:992px){

.contact-title h1{

    font-size:54px;

}

.contact-info{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.contact-page{

    padding:150px 20px 80px;

}

.contact-title h1{

    font-size:42px;

}

.contact-title p{

    font-size:17px;

}

.contact-card{

    padding:30px;

}

.contact-card h3{

    font-size:26px;

}

.contact-card p{

    font-size:18px;

}

}