*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#111;
}

html{
    scroll-behavior:smooth;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:80px 0;
}

/* NAVBAR */
.header{
    position:fixed;
    width:100%;
    top:0;
    background:white;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:20px;
}

.nav-links a{
    text-decoration:none;
    color:#111;
}
.logo{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #0056d2;
}

.logo img{
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo span{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
/* HERO */
.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url('images/hero-car.png') center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero h1{
    font-size:65px;
}

.hero h1 span{
    color:#ffd400;
}

.hero p{
    margin:20px 0;
    font-size:20px;
}

.primary-btn{
    background:#ffd400;
    color:black;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
}

.secondary-btn{
    border:2px solid white;
    padding:14px 30px;
    border-radius:30px;
    color:white;
    text-decoration:none;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.hero-stats{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:40px;
}

/* ABOUT */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.about img{
    width:100%;
    border-radius:20px;
}

.about-features{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.about-features span{
    background:#0056d2;
    color:white;
    padding:10px 20px;
    border-radius:30px;
}

/* PRODUCTS */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.product-card{
    background:white;
    padding:20px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.product-card button{
    width:100%;
    background:#ffd400;
    border:none;
    padding:14px;
    margin-top:15px;
    border-radius:10px;
    cursor:pointer;
}

/* WHY */
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.why-card{
    background:linear-gradient(135deg,#0056d2,#003b8e);
    color:white;
    text-align:center;
    padding:40px;
    border-radius:20px;
}

/* REVIEWS */
.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.review-card{
    background:white;
    padding:30px;
    text-align:center;
    border-radius:20px;
}

.review-card img{
    width:70px;
    height:70px;
    border-radius:50%;
}

/* CONTACT */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-form{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
}

.contact-form button{
    width:100%;
    background:#0056d2;
    color:white;
    padding:15px;
    border:none;
}

/* FOOTER */
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
}

/* WHATSAPP */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    font-size:28px;
    text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){

    .hero h1{
        font-size:40px;
    }

    .about-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }

    .hero-stats{
        flex-direction:column;
    }
}