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

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    overflow-x:hidden;
}

/* NAVBAR */

header{
    position:sticky;
    top:0;
    z-index:2000;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.navbar{
    width:90%;
    max-width:1300px;
    margin:auto;
    height:80px;

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

.logo a{
    text-decoration:none;
    font-size:1.8rem;
    font-weight:700;
    color:#111;
}

.logo span{
    color:#F4600A;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#F4600A;
    transition:.3s;
}

.nav-links a:hover{
    color:#F4600A;
}

.nav-links a:hover::after{
    width:100%;
}

.nav-links a.active{
    color:#F4600A;
}

.nav-links a.active::after{
    width:100%;
}

.whatsapp-btn{
    text-decoration:none;
    background:#25D366;
    color:white;
    padding:12px 24px;
    border-radius:50px;
    font-weight:600;

    display:flex;
    align-items:center;
    gap:10px;

    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(37,211,102,.35);
}

/* Hamburger toggle button (hidden on desktop) */

.nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    cursor:pointer;
    z-index:1100;
    order:5;
}

.nav-toggle span{
    display:block;
    width:24px;
    height:2px;
    background:#111;
    border-radius:2px;
    transition:.3s;
}

.nav-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
    opacity:0;
}

.nav-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* Overlay behind the mobile menu */

.nav-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1049;
    opacity:0;
    transition:opacity .3s;
}

.nav-overlay.active{
    display:block;
    opacity:1;
}

/* Responsive */

@media(max-width:950px){

    .navbar{
        flex-wrap:wrap;
        height:auto;
        min-height:70px;
        padding:12px 0;
        row-gap:10px;
    }

    .nav-toggle{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:0;
        height:100vh;
        width:min(320px,80%);
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:100px 30px 30px;
        box-shadow:-10px 0 30px rgba(0,0,0,.15);
        z-index:1050;
        transform:translateX(100%);
        transition:transform .35s ease;
        overflow-y:auto;
    }

    .nav-links.active{
        transform:translateX(0);
    }

    .nav-links li{
        width:100%;
        border-bottom:1px solid #f0f0f0;
    }

    .nav-links a::after{
        bottom:0;
    }

    .nav-links a{
        display:block;
        padding:16px 0;
        font-size:1.05rem;
    }

    .whatsapp-btn{
        padding:10px 18px;
        font-size:.9rem;
        order:6;
    }

    .logo a{
        font-size:1.5rem;
    }

}

@media(max-width:400px){

    .whatsapp-btn span.wa-text{
        display:none;
    }

    .whatsapp-btn{
        padding:10px 14px;
    }

}

* {box-sizing:border-box}

.hero{

    width:100%;
    height:85vh;
}

.heroSwiper{

    width:100%;
    height:100%;
}

.swiper-slide{

    position:relative;
}

.swiper-slide img{

    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1);
    transform-origin:center center;
}

.swiper-slide-active img,
.swiper-slide-duplicate-active img{

    animation:heroKenBurns 5.8s ease-out forwards;
}

@keyframes heroKenBurns{

    from{ transform:scale(1); }
    to{ transform:scale(1.08); }
}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(0,0,0,.75),
        rgba(0,0,0,.30),
        rgba(0,0,0,.15)
    );
}

.hero-content{

    position:absolute;

    top:50%;
    left:8%;

    transform:translateY(-50%);

    color:white;

    max-width:600px;

    z-index:10;
}

.badge{

    background:#F4600A;
    color:#111;

    padding:8px 18px;

    border-radius:25px;

    font-weight:600;
}

.hero-content h1,
.hero-content h2{

    margin:20px 0;

    font-size:72px;

    line-height:1.1;
}

.hero-content p{

    font-size:22px;

    margin-bottom:35px;

    color:#eee;
}

.hero-btn{

    display:inline-block;

    padding:16px 35px;

    background:#25D366;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.hero-btn:hover{

    transform:translateY(-3px);

    background:#1ebe5d;
}

@media(max-width:768px){

    .hero-content{
        left:6%;
        max-width:90%;
    }

    .hero-content h1,
    .hero-content h2{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
        margin-bottom:22px;
    }

    .hero-btn{
        padding:12px 26px;
    }

}

/* Navigation Arrows */

.swiper-button-next,
.swiper-button-prev{

  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#F4600A;
    border-color:#F4600A;
    color:#111;
    transform:scale(1.08);
}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:20px;
    font-weight:900;
}

@media(max-width:600px){

    .swiper-button-next,
    .swiper-button-prev{
        width:38px;
        height:38px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:15px;
    }

}

/* Pagination */

.swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:white;

    opacity:.6;
}

.swiper-pagination-bullet-active{

    background:#F4600A;

    opacity:1;
}

.section-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#111;
    margin-bottom:40px;
}

.section-title.light{
    color:#fff;
}

section{
    padding:80px 6%;
}

.hero{
    padding:0;
}

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

.why-choose{
    background:#f8f9fa;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1300px;
    margin:auto;
}

.why-card{
    background:#fff;
    border-radius:14px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.why-icon{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#111;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.why-card h3{
    font-size:18px;
    margin-bottom:8px;
    color:#111;
}

.why-card p{
    font-size:14px;
    color:#777;
    line-height:1.5;
}

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

.featured-cars{
    background:#fff;
}

.section-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    max-width:1300px;
    margin:0 auto 30px;
}

.section-header .section-title{
    margin-bottom:0;
}

.view-all{
    text-decoration:none;
    color:#111;
    font-weight:600;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.view-all:hover{
    color:#F4600A;
}

/* Filter Bar */

.filter-bar{
    max-width:1300px;
    margin:0 auto 50px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    border:1px solid #eee;
    padding:25px 30px;

    display:flex;
    align-items:flex-end;
    gap:20px;
    flex-wrap:wrap;
}

.filter-field{
    flex:1;
    min-width:150px;
    display:flex;
    flex-direction:column;
    gap:8px;
}

.filter-field label{
    font-size:13px;
    font-weight:600;
    color:#555;
}

.filter-field select{
    padding:12px 14px;
    border-radius:8px;
    border:1px solid #ddd;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    color:#111;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}

.filter-field select:focus{
    outline:none;
    border-color:#F4600A;
}

.filter-btn{
    background:#F4600A;
    color:#111;
    border:none;
    padding:14px 32px;
    border-radius:8px;
    font-weight:700;
    font-family:'Poppins',sans-serif;
    font-size:14px;
    cursor:pointer;
    transition:.3s;
    white-space:nowrap;
}

.filter-btn:hover{
    background:#FF8A3D;
    transform:translateY(-2px);
}

/* Cars Grid */

.cars-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1300px;
    margin:auto;
}

.car-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #eee;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.car-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.car-card img{
    width:100%;
    height:160px;
    object-fit:cover;
}

.car-info{
    padding:18px;
}

.car-info h3{
    font-size:17px;
    color:#111;
    margin-bottom:4px;
}

.car-specs{
    font-size:13px;
    color:#888;
    margin-bottom:12px;
}

.car-price{
    font-size:22px;
    font-weight:700;
    color:#F4600A;
    margin-bottom:14px;
}

.car-price span{
    font-size:11px;
    font-weight:500;
    color:#999;
    line-height:1.2;
}

.car-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:10px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.car-whatsapp:hover{
    background:#1ebe5d;
}

/* ============ HOW IT WORKS ============ */

/* ============ HOW IT WORKS ============ */

.how-it-works{
    background:#111;
    padding:80px 5%;
}

.steps{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr auto 1fr auto 1fr;
    align-items:center;
    gap:35px;
}

.step{
    background:#181818;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
}

.step-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    border:2px solid #F4600A;
    color:#F4600A;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.step h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
}

.step p{
    color:#bdbdbd;
    font-size:17px;
    line-height:1.7;
}

.step-arrow{
    color:#F4600A;
    font-size:34px;
}

/* ============ TESTIMONIALS ============ */

.testimonialSwiper{
    max-width:1300px;
    margin:auto;
    padding-bottom:40px;
}

.testimonialSwiper .swiper-slide{
    height:auto;
}

.testimonial-card{
    background:#fff;
    border-radius:14px;
    padding:30px 25px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    height:100%;
}

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

.cta-banner{
    position:relative;
    padding:90px 6%;
    overflow:hidden;
}

.cta-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55) 60%, rgba(0,0,0,.2));
    z-index:1;
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:600px;
}

.cta-content h2{
    color:#fff;
    font-size:42px;
    margin-bottom:12px;
}

.cta-content p{
    color:#ddd;
    font-size:18px;
    margin-bottom:28px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    background:#1ebe5d;
    transform:translateY(-3px);
}

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

.site-footer{
    background:#0c0c0c;
    color:#bbb;
    padding:70px 6% 0;
    position:relative;
}

.footer-grid{
    max-width:1300px;
    margin:0 auto 50px;
    display:grid;
    grid-template-columns:1.6fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    color:#fff;
    font-size:1.5rem;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
}

.footer-logo i{
    color:#F4600A;
}

.footer-logo span{
    color:#F4600A;
}

.footer-col p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:18px;
}

.footer-col h4{
    color:#fff;
    font-size:16px;
    margin-bottom:18px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#bbb;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#F4600A;
}

.footer-contact li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
}

.footer-contact i{
    color:#F4600A;
    width:16px;
}

.footer-socials{
    display:flex;
    gap:12px;
}

.footer-socials a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#1c1c1c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.footer-socials a:hover{
    background:#F4600A;
    color:#111;
}

.footer-bottom{
    border-top:1px solid #222;
    text-align:center;
    padding:22px 0;
    font-size:13px;
    color:#777;
}

.float-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(37,211,102,.4);
    z-index:999;
    transition:.3s;
}

.float-whatsapp:hover{
    transform:scale(1.1);
}


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

@media(max-width:1100px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cars-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .steps{
        grid-template-columns:1fr;
        justify-items:center;
    }

    .step-arrow{
        transform:rotate(90deg);
        margin-top:0;
    }

}

@media(max-width:700px){

    section{
        padding:60px 6%;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .cars-grid{
        grid-template-columns:1fr;
    }

    .filter-bar{
        flex-direction:column;
        align-items:stretch;
    }

    .filter-btn{
        width:100%;
    }

    .steps{
        grid-template-columns:1fr;
        justify-items:center;
    }

    .step-arrow{
        transform:rotate(90deg);
        margin-top:0;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-content h2{
        font-size:30px;
    }

}
