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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f8f9fb;

    color:#222;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

/* ========================================= */
/* ROOT */
/* ========================================= */

:root{

    --primary:#EB0A1E;

    --secondary:#111827;

    --white:#ffffff;

    --light:#f4f6f9;

    --text:#555;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

/* ========================================= */
/* CONTAINER */
/* ========================================= */

.container{

    width:min(1200px,92%);

    margin:auto;

}

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

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.82);

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

    transition:.35s;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:22px;

    font-weight:700;

    color:var(--secondary);

}

.logo img{

    width:45px;

}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.navbar{

    display:flex;

    gap:35px;

}

.navbar a{

    color:#333;

    font-weight:500;

    position:relative;

    transition:var(--transition);

}

.navbar a:hover{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover::after{

    width:100%;

}

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

.btn-nav,

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

    padding:14px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

    box-shadow:0 10px 25px rgba(235,10,30,.25);

}

.btn-nav:hover,

.btn-primary:hover{

    transform:translateY(-4px);

    background:#d40819;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:50px;

    border:2px solid #fff;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}

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

.menu-toggle{

    display:none;

    font-size:30px;

    cursor:pointer;

}

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

.hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

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

.hero-slider{

    position:absolute;

    inset:0;

}

.hero-slider img{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1.5s ease;

    transform:scale(1);

}

.hero-slider img.active{

    opacity:1;

    animation:zoomHero 8s linear;

}

@keyframes zoomHero{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.12);

    }

}

/* ========================================= */
/* OVERLAY */
/* ========================================= */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.55));

}

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

.hero-content{

    position:relative;

    z-index:5;

    color:#fff;

    text-align:center;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.12);

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

    padding:10px 18px;

    border-radius:50px;

    backdrop-filter:blur(12px);

    margin-bottom:20px;

    font-size:14px;

    letter-spacing:2px;

}

.hero-content h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:20px;

    font-weight:800;

}

.hero-content p{

    max-width:750px;

    margin:auto;

    font-size:20px;

    color:#f3f3f3;

}

.hero-button{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;

    flex-wrap:wrap;

}

/* ========================================= */
/* SCROLL */
/* ========================================= */

.hero-scroll{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

}

.hero-scroll span{

    display:block;

    width:28px;

    height:48px;

    border:2px solid #fff;

    border-radius:30px;

    position:relative;

}

.hero-scroll span::before{

    content:"";

    position:absolute;

    width:6px;

    height:10px;

    background:#fff;

    left:50%;

    top:8px;

    transform:translateX(-50%);

    border-radius:20px;

    animation:scrollDown 2s infinite;

}

@keyframes scrollDown{

    0%{

        opacity:0;

        top:8px;

    }

    50%{

        opacity:1;

    }

    100%{

        opacity:0;

        top:25px;

    }

}

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

@media(max-width:992px){

    .navbar{

        display:none;

    }

    .menu-toggle{

        display:block;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:17px;

    }

}
/* ========================================= */
/* STATISTICS */
/* ========================================= */

.stats{

    padding:90px 0;

    background:#fff;

}

.stats-grid{

    display:grid;

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

    gap:25px;

}

.stat-box{

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-10px);

}

.stat-box h2{

    color:var(--primary);

    font-size:40px;

    font-weight:700;

}

.stat-box p{

    color:#666;

    margin-top:8px;

}

/* ========================================= */
/* SECTION TITLE */
/* ========================================= */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.section-title h2{

    margin-top:10px;

    font-size:42px;

    color:#222;

}

.section-title p{

    max-width:700px;

    margin:20px auto 0;

    color:#666;

}

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

.features{

    padding:100px 0;

    background:#f8f9fb;

}

.feature-grid{

    display:grid;

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

    gap:25px;

}

.feature-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

    text-align:center;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.icon{

    width:75px;

    height:75px;

    background:var(--primary);

    color:#fff;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.feature-card h3{

    margin-bottom:15px;

}

.feature-card p{

    color:#666;

}

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

.cars{

    padding:100px 0;

    background:#fff;

}

.car-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.car-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.car-card:hover{

    transform:translateY(-10px);

}

.car-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.car-card h3{

    text-align:center;

    margin:20px 0 10px;

    font-size:24px;

}

/* ========================================= */
/* PRICE BOX */
/* ========================================= */

.price-box{

    padding:0 25px 25px;

}

.price-box p{

    color:#666;

    margin-bottom:8px;

}

.price-box h4{

    color:var(--primary);

    font-size:30px;

    margin-bottom:15px;

}

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

.btn-card{

    display:block;

    margin:25px;

    text-align:center;

    background:var(--primary);

    color:#fff;

    padding:15px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.btn-card:hover{

    background:#c40617;

}

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

@media(max-width:992px){

.stats-grid{

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

}

.feature-grid{

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

}

}

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:32px;

}

.car-card img{

height:200px;

}

}
/* ========================================= */
/* ABOUT */
/* ========================================= */

.about{

    padding:100px 0;

    background:#f8f9fb;

}

.about-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.about-content span{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:42px;

    margin:15px 0 10px;

}

.about-content h4{

    color:var(--primary);

    margin-bottom:20px;

}

.about-content p{

    color:#666;

    margin-bottom:25px;

}

.about-list{

    display:grid;

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

    gap:15px;

    margin-bottom:30px;

}

.about-item{

    background:#fff;

    padding:15px;

    border-radius:12px;

    box-shadow:var(--shadow);

    font-weight:600;

}

.about-contact{

    background:#fff;

    padding:20px;

    border-radius:15px;

    margin-bottom:30px;

    box-shadow:var(--shadow);

}

.about-contact p{

    margin:10px 0;

}

/* ========================================= */
/* SIMULATION */
/* ========================================= */

.simulation{

    padding:100px 0;

    background:#fff;

}

.simulation-box{

    max-width:700px;

    margin:auto;

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:var(--shadow);

}

.form-group{

    margin-bottom:25px;

}

.form-group label{

    display:block;

    font-weight:600;

    margin-bottom:10px;

}

.form-group input,

.form-group select{

    width:100%;

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:16px;

    transition:.3s;

}

.form-group input:focus,

.form-group select:focus{

    border-color:var(--primary);

}

/* ========================================= */
/* TESTIMONIAL */
/* ========================================= */

.testimonials{

    padding:100px 0;

    background:#f8f9fb;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.testimonial-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.testimonial-info{

    padding:25px;

    text-align:center;

}

.testimonial-info h3{

    font-size:24px;

    margin-bottom:10px;

}

.testimonial-info span{

    color:#777;

    display:block;

    margin-bottom:15px;

}

.rating{

    color:#FFD700;

    font-size:22px;

    letter-spacing:4px;

}

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

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

}

.about-list{

grid-template-columns:1fr;

}

.simulation-box{

padding:30px;

}

}

@media(max-width:768px){

.about-content h2{

font-size:34px;

}

.testimonial-card img{

height:240px;

}

}
/* ========================================= */
/* FAQ */
/* ========================================= */

.faq{

    padding:100px 0;

    background:#ffffff;

}

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#fff;

    padding:25px;

    margin-bottom:20px;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-5px);

}

.faq-item h3{

    color:var(--primary);

    margin-bottom:12px;

    font-size:22px;

}

.faq-item p{

    color:#666;

    line-height:1.8;

}

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

.cta{

    padding:110px 0;

    background:linear-gradient(135deg,#EB0A1E,#b90017);

    text-align:center;

    color:#fff;

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

    font-weight:700;

}

.cta p{

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

    font-size:18px;

    opacity:.95;

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

    box-shadow:none;

}

.cta .btn-primary:hover{

    background:#111827;

    color:#fff;

}

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

footer{

    background:#111827;

    color:#fff;

    padding:70px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:40px;

}

footer h3{

    margin-bottom:20px;

    font-size:22px;

}

footer p{

    color:#d5d5d5;

    margin-bottom:10px;

}

footer a{

    color:#fff;

    transition:.3s;

}

footer a:hover{

    color:#EB0A1E;

}

.copyright{

    margin-top:50px;

    text-align:center;

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

    padding-top:25px;

    color:#aaa;

    font-size:14px;

}

/* ========================================= */
/* FLOATING WHATSAPP */
/* ========================================= */

.floating-wa{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    color:#fff;

    z-index:999;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    transition:.35s;

}

.floating-wa:hover{

    transform:scale(1.12);

}

/* ========================================= */
/* BACK TO TOP */
/* ========================================= */

#topBtn{

    position:fixed;

    right:25px;

    bottom:105px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#EB0A1E;

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:998;

    font-size:22px;

    box-shadow:var(--shadow);

    transition:.35s;

}

#topBtn:hover{

    background:#b90017;

}

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

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:#EB0A1E;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b90017;

}

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

@media(max-width:992px){

.hero-content h1{

font-size:42px;

}

.section-title h2{

font-size:34px;

}

.cta h2{

font-size:36px;

}

}

@media(max-width:768px){

.hero{

height:90vh;

}

.hero-content{

padding:0 20px;

}

.hero-content h1{

font-size:32px;

}

.hero-content p{

font-size:16px;

}

.hero-button{

flex-direction:column;

}

.btn-primary,

.btn-secondary,

.btn-card{

width:100%;

}

.about-list{

grid-template-columns:1fr;

}

.floating-wa{

width:58px;

height:58px;

font-size:26px;

}

#topBtn{

width:48px;

height:48px;

bottom:95px;

}

}

@media(max-width:480px){

.section-title h2{

font-size:28px;

}

.stat-box h2{

font-size:32px;

}

.price-box h4{

font-size:24px;

}

.cta h2{

font-size:28px;

}

footer{

text-align:center;

}

.footer-grid{

grid-template-columns:1fr;

}

}
