*{margin:0;padding:0;box-sizing:border-box;}
body{font-family:'Inter',sans-serif;background:#f5f6f8;color:#111;}

/* HEADER */
header{
    position:fixed;
    top:0;
    width:100%;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
    z-index:1000;
}

.logo{font-weight:800;font-size:20px;}

.btn-whats{
    background:#25D366;
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

/* HERO */
.hero{
    height:100vh;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('../uploads/hero-banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    margin-top:70px;
    color:#fff;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
    font-weight:800;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
    opacity:0.9;
}

.btn{
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    margin:10px;
    display:inline-block;
    font-weight:600;
}

.btn-primary{background:#85845d;color:#fff;}
.btn-dark{background:#000;color:#fff;}
.btn-outline{border:2px solid #fff;color:#fff;}

/* SECTIONS */
.section{padding:80px 40px;}
.section h2{text-align:center;font-size:32px;margin-bottom:15px;}
.section p.subtitle{text-align:center;margin-bottom:40px;color:#555;}

/* CARDS */
.cars{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{transform:translateY(-5px);}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-content{padding:20px;}

.tag{
    background:#000;
    color:#fff;
    font-size:12px;
    padding:5px 10px;
    display:inline-block;
    margin-bottom:10px;
    border-radius:4px;
}

.price{
    font-size:24px;
    font-weight:800;
    margin:10px 0;
}

.parcel{
    color:#85845d;
    font-weight:600;
    margin-bottom:15px;
}

.card a{
    display:block;
    text-align:center;
    padding:12px;
    background:#85845d;
    color:#fff;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.feature{
    background:#fff;
    padding:30px;
    border-radius:10px;
    text-align:center;
}

/* FINANCE */
.finance{
    background:#000;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.finance h2{margin-bottom:20px;}
.finance p{margin-bottom:30px;}

/* TESTIMONIALS */
.testimonials{
    display:grid;
    gap:20px;
}

.testimonial{
    background:#fff;
    padding:20px;
    border-radius:10px;
}

/* CTA */
.cta{
    background:#85845d;
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta h2{margin-bottom:20px;}

/* WHATS FLOAT */
.whats-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    padding:14px 18px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

/* FOOTER */
footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:40px 20px;
}

@media(max-width:768px){
    .hero h1{font-size:30px;}
}
