
/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#111111;
    color:#FFFFFF;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(17,17,17,0.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo a{
    color:#FFFFFF;
    font-size:1.5rem;
    font-weight:700;
    letter-spacing:2px;
}
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:60px;
    height:60px;
    object-fit:contain;
}

nav{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    color:#B8BCC6;
    transition:0.3s ease;
    font-weight:500;
}

.nav-links a:hover,
.nav-links a.active{
    color:#6A1FB3;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#FFFFFF;
    border-radius:5px;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:120px 8%;
    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.80)
    ),
    url("images/hero-car.jpg");
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:700px;
}

.hero-subtitle{
    color:#6A1FB3;
    letter-spacing:3px;
    margin-bottom:15px;
    position:relative;
    display:inline-block;
}

.hero-subtitle::after{
    content:'';
    width:60px;
    height:2px;
    background:#6A1FB3;
    position:absolute;
    left:105%;
    top:50%;
}
.hero-content h1{
    font-size:4.5rem;
    line-height:1.1;
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
    max-width:700px;
}

.hero-content p{
    color:#B8BCC6;
    margin-bottom:30px;
}
.hero-content{
    position:relative;
    z-index:2;
}

.hero-content::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(106,31,179,0.15);
    filter:blur(120px);
    top:-100px;
    left:-100px;
    z-index:-1;
}
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */

.btn-primary{
    display:inline-block;
    background:#6A1FB3;
    color:#FFFFFF;
    padding:14px 30px;
    border-radius:50px;
    transition:0.3s;
}

.btn-primary:hover{
    background:#53178D;
}

.btn-secondary{
    display:inline-block;
    border:2px solid #6A1FB3;
    color:#FFFFFF;
    padding:14px 30px;
    border-radius:50px;
    
}

.btn-secondary:hover{
    background:#6A1FB3;
}
.btn-primary,
.btn-secondary{
    transition:all 0.3s ease;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-secondary:hover{
    transform:translateY(-3px);
}

/* =========================
   PAGE HERO
========================= */

.page-hero{
    padding:180px 8% 100px;
    text-align:center;
    background:#181818;
}

.page-hero h1{
    font-size:3.5rem;
    margin-bottom:15px;
    font-family:'Playfair Display',serif;
}

.page-hero p{
    color:#B8BCC6;
    max-width:700px;
    margin:auto;
}

/* =========================
   GENERAL SECTIONS
========================= */

.services-preview,
.featured,
.inventory-page,
.contact-section,
.tracking-section,
.about-preview{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p{
    color:#6A1FB3;
    letter-spacing:3px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:3rem;
    font-family:'Playfair Display',serif;
    color:#FFFFFF;
}
.service-icon{
    font-size:3rem;
    margin-bottom:20px;
    transition:0.3s ease;
}

.service-card:hover .service-icon{
    transform:scale(1.15);
}

/* =========================
   CARDS
========================= */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:#1C1C1C;
    padding:30px;
    border-radius:15px;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#B8BCC6;
}

/* FEATURED VEHICLES */

.featured{
    padding:120px 8%;
    background:#111111;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title p{
    color:#6A1FB3;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:10px;
    font-weight:600;
}

.section-title h2{
    font-family:'Playfair Display', serif;
    font-size:3rem;
    color:#FFFFFF;
}

.car-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:40px;
}

.car-card{
    background:#1C1C1C;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    transition:0.4s ease;
}

.car-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(106,31,179,0.25);
}

.car-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.car-card:hover img{
    transform:scale(1.05);
}

/* STATUS BADGE */

.status{
    position:absolute;
    top:15px;
    right:15px;
    background:#6A1FB3;
    color:#FFFFFF;
    padding:10px 18px;
    border-radius:30px;
    font-size:0.85rem;
    font-weight:600;
    letter-spacing:0.5px;
    z-index:10;
    box-shadow:0 4px 12px rgba(106,31,179,0.35);
}

.status.in-stock{
    background:#6A1FB3;
}

/* CAR CONTENT */

.car-info{
    padding:25px;
}

.car-info h3{
    color:#FFFFFF;
    font-size:1.4rem;
    margin-bottom:10px;
}

.car-info p{
    color:#B8BCC6;
    margin-bottom:15px;
    line-height:1.6;
}

.car-info h4{
    color:#6A1FB3;
    font-size:1.1rem;
    margin-bottom:20px;
    font-weight:600;
}

/* BUTTON */

.view-btn{
    display:inline-block;
    padding:12px 25px;
    background:#6A1FB3;
    color:#FFFFFF;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s ease;
}

.view-btn:hover{
    background:#8A4FD1;
}

/* MOBILE */

@media (max-width:768px){

    .featured{
        padding:80px 5%;
    }

    .section-title h2{
        font-size:2rem;
    }

    .car-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .car-card img{
        height:220px;
    }

    .car-info{
        padding:20px;
    }

    .view-btn{
        width:100%;
        text-align:center;
    }
}

/* =========================
   ABOUT SECTION
========================= */

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-image img{
    border-radius:20px;
}

.about-text p{
    color:#B8BCC6;
    margin-bottom:20px;
}

.about-text h2{
    margin-bottom:20px;
    font-size:2.5rem;
    font-family:'Playfair Display',serif;
}

/* =========================
   FORMS
========================= */

.contact-container,
.tracking-form-container{
    max-width:800px;
    margin:auto;
}

.contact-form,
.tracking-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea,
.tracking-form input{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#1C1C1C;
    color:#FFFFFF;
}

.contact-form button,
.tracking-form button{
    border:none;
    cursor:pointer;
}
.contact-form select{
    width:100%;
    padding:15px;
    background:#1C1C1C;
    border:1px solid #333;
    border-radius:10px;
    color:#FFFFFF;
    font-family:'Poppins', sans-serif;
    margin-bottom:20px;
}

.contact-form select:focus{
    outline:none;
    border-color:#6A1FB3;
}

/* CTA SECTION */

.cta{
    padding:100px 8%;
    text-align:center;
    background:linear-gradient(
        135deg,
        #111111,
        #1C1C1C
    );
}

.cta h2{
    font-family:'Playfair Display', serif;
    font-size:3rem;
    color:#FFFFFF;
    margin-bottom:20px;
}

.cta p{
    color:#B8BCC6;
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta .btn-primary{
    display:inline-block;
    padding:15px 35px;
    background:#6A1FB3;
    color:#FFFFFF;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s ease;
}
.service-card a{
    color:inherit;
    text-decoration:none;
}

.cta .btn-primary:hover{
    background:#8A4FD1;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .cta{
        padding:80px 5%;
    }

    .cta h2{
        font-size:2rem;
    }

}

/* =========================
   FOOTER
========================= */

.footer{
    background:#0D0D0D;
    text-align:center;
    padding:50px 8%;
    border-top:1px solid rgba(106,31,179,0.2);
}

.footer h3{
    color:#FFFFFF;
    margin-bottom:10px;
}

.footer p{
    color:#B8BCC6;
    margin:10px 0;
}

.footer-socials{
    display:flex;
    justify-content:center;
    gap:15px;
    margin:20px 0;
}

.footer-socials a{
    color:#FFFFFF;
    font-size:1.2rem;
    transition:0.3s;
}

.footer-socials a:hover{
    color:#6A1FB3;
}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:80px;
        right:-100%;
        width:250px;
        background:#1C1C1C;
        flex-direction:column;
        padding:30px;
        transition:0.4s ease;
    }

    .nav-links.active{
        right:20px;
    }

    .hero-content h1{
        font-size:2.6rem;
    }

    .page-hero h1{
        font-size:2.3rem;
    }

    .section-title h2{
        font-size:2rem;
    }

    .about-content{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .car-grid{
        grid-template-columns:1fr;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .cta h2{
        font-size:2rem;
    }
}

.btn-primary,
.btn-secondary{
    font-weight:600;
    letter-spacing:0.5px;
}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content,
.section-title,
.car-card,
.service-card{
    animation:fadeUp 0.8s ease;
}
/* =========================
   STATS
========================= */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    padding:70px 8%;
    background:#0B0B0B;
}

.stat-box{
    text-align:center;
    background:#151515;
    padding:30px;
    border-radius:15px;
}

.stat-box h2{
    color:#6A1FB3;
    font-size:2rem;
}
*{
    transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(106,31,179,0.15);
}
.hero-trust{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
    color:#B8BCC6;
    font-size:0.9rem;
}

.hero-trust span{
    background:rgba(255,255,255,0.08);
    padding:8px 14px;
    border-radius:30px;
}
/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    padding:120px 8%;
    background:#111111;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#1C1C1C;
    border-radius:20px;
    padding:35px;
    border:1px solid rgba(106,31,179,0.2);
    transition:0.4s ease;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(106,31,179,0.25);
}

.quote-icon{
    font-size:2rem;
    color:#6A1FB3;
    margin-bottom:15px;
}

.stars{
    color:#FFD700;
    font-size:1rem;
    letter-spacing:2px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#B8BCC6;
    line-height:1.8;
    margin-bottom:25px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#6A1FB3;
    color:#FFFFFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:600;
    font-size:1rem;
}

.client h4{
    color:#FFFFFF;
    margin-bottom:4px;
}

.client span{
    color:#B8BCC6;
    font-size:0.85rem;
}

/* MOBILE */

@media (max-width:768px){

    .testimonials{
        padding:80px 5%;
    }

    .testimonial-card{
        padding:25px;
    }
}
/* BACK TO TOP */

#backToTop{
    position:fixed;
    bottom:25px;
    right:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#6A1FB3;
    color:#FFFFFF;
    font-size:1.2rem;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

#backToTop:hover{
    background:#8A4FD1;
    transform:translateY(-3px);
}
/* FLOATING WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:90px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#FFFFFF;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    text-decoration:none;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
    transition:0.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}
/* TRACKING SECTION */

.tracking-section{
    padding:100px 8%;
    background:#111111;
    text-align:center;
}

.tracking-form-container{
    max-width:800px;
    margin:0 auto;
    background:linear-gradient(
        135deg,
        #1C1C1C,
        #252525
    );
    padding:60px;
    border-radius:24px;
    border:1px solid rgba(106,31,179,0.3);
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.tracking-form-container p{
    color:#B8BCC6;
    line-height:1.8;
    margin-bottom:20px;
    font-size:1rem;
}

.tracking-form-container .btn-primary{
    margin-top:15px;
}
