/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#050505;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ===================================
   VARIABLES
=================================== */

:root{
    --gold:#d4af37;
    --gold-light:#f5d76e;
    --black:#050505;
    --card:#111111;
    --card2:#171717;
    --white:#ffffff;
    --gray:#bdbdbd;
    --shadow:0 10px 40px rgba(0,0,0,.4);
}

/* ===================================
   GLOBAL
=================================== */

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:100px 0;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:.85rem;
}

.section-heading h2{
    font-family:'Cinzel',serif;
    font-size:3rem;
    margin-top:10px;
}

/* ===================================
   HERO
=================================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.85)),
    url('../img/wagoneer.png');
    background-size:cover;
    background-position:center;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    background:rgba(212,175,55,.15);
    border:1px solid rgba(212,175,55,.4);
    color:var(--gold);
    padding:12px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size:4rem;
    line-height:1.2;
}

.hero h1 span{
    display:block;
    color:var(--gold);
}

.hero h2{
    margin:20px 0;
    color:var(--gold-light);
    font-size:1.4rem;
}

.hero p{
    color:#d6d6d6;
    margin-bottom:30px;
}

.hero-vehicle img{
    border-radius:25px;
    box-shadow:var(--shadow);
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#25D366;
    color:white;
    padding:18px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

/* ===================================
   DRIVER
=================================== */

.driver-profile{
    background:#080808;
}

.driver-card{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    background:var(--card);
    border-radius:25px;
    padding:40px;
    box-shadow:var(--shadow);
}

.driver-photo img{
    border-radius:20px;
    width:100%;
    height:100%;
    object-fit:cover;
}

.driver-info h3{
    font-size:2.2rem;
    margin-bottom:10px;
}

.driver-info h4{
    color:var(--gold);
    margin-bottom:20px;
}

.driver-info p{
    color:var(--gray);
}

.contact-list{
    margin-top:30px;
}

.contact-list div{
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:15px;
}

.contact-list i{
    color:var(--gold);
}

/* ===================================
   SERVICES
=================================== */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.service-box{
    background:var(--card);
    padding:25px;
    text-align:center;
    border-radius:15px;
    border:1px solid rgba(212,175,55,.15);
    transition:.3s;
}

.service-box:hover{
    transform:translateY(-8px);
    border-color:var(--gold);
}

/* ===================================
   BONUS
=================================== */

.bonus-section{
    background:#090909;
}

.bonus-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.bonus-card{
    background:var(--card);
    padding:40px;
    text-align:center;
    border-radius:20px;
    border:1px solid rgba(212,175,55,.2);
}

.bonus-card h3{
    margin-bottom:15px;
}

.bonus-card h4{
    color:var(--gold);
    margin-bottom:15px;
}

/* ===================================
   PACKAGES
=================================== */

.packages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.package-card{
    background:var(--card);
    border-radius:25px;
    padding:40px;
    position:relative;
    box-shadow:var(--shadow);
    transition:.3s;
}

.package-card:hover{
    transform:translateY(-10px);
}

.featured{
    border:2px solid var(--gold);
}

.featured-badge{
    position:absolute;
    top:-15px;
    right:20px;
    background:var(--gold);
    color:black;
    padding:8px 18px;
    border-radius:50px;
    font-size:.8rem;
    font-weight:700;
}

.package-card h3{
    font-size:1.8rem;
}

.price{
    font-size:3rem;
    color:var(--gold);
    margin:25px 0;
}

.price span{
    font-size:1rem;
}

.package-card ul{
    margin-bottom:25px;
}

.package-card li{
    margin-bottom:12px;
    color:var(--gray);
}

.package-btn{
    display:block;
    background:#25D366;
    color:white;
    text-align:center;
    padding:16px;
    border-radius:50px;
    font-weight:600;
}

/* ===================================
   VEHICLE
=================================== */

.vehicle-showcase{
    background:#080808;
}

.vehicle-wrapper img{
    border-radius:25px;
    box-shadow:var(--shadow);
}

/* ===================================
   CTA
=================================== */

.cta{
    text-align:center;
    background:
    linear-gradient(
    rgba(0,0,0,.85),
    rgba(0,0,0,.85)),
    url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?q=80&w=1600');
    background-size:cover;
}

.cta span{
    color:var(--gold);
}

.cta h2{
    font-size:3rem;
    margin:20px 0;
}

.cta p{
    color:#d0d0d0;
    margin-bottom:30px;
}

.cta-button{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#25D366;
    color:white;
    padding:20px 40px;
    border-radius:50px;
    font-weight:700;
}

/* ===================================
   CONTACT
=================================== */

.contact-card{
    max-width:700px;
    margin:auto;
    text-align:center;
    background:var(--card);
    padding:50px;
    border-radius:25px;
}

.contact-card h2{
    color:var(--gold);
}

.contact-card h3{
    margin-top:10px;
}

.contact-item{
    margin-top:20px;
}

.contact-item i{
    color:var(--gold);
    margin-right:10px;
}

/* ===================================
   FOOTER
=================================== */

footer{
    background:#000;
    text-align:center;
    padding:50px 20px;
    border-top:1px solid rgba(212,175,55,.15);
}

footer h3{
    color:var(--gold);
    margin-bottom:10px;
}

footer p{
    color:#cfcfcf;
}

.developer{
    margin-top:20px;
    color:var(--gold);
    font-weight:600;
}

/* ===================================
   FLOATING WHATSAPP
=================================== */

.floating-whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#25D366;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:2rem;
    z-index:999;
    box-shadow:0 10px 30px rgba(0,0,0,.5);
    transition:.3s;
}

.floating-whatsapp:hover{
    transform:scale(1.1);
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

    .hero-content,
    .driver-card,
    .bonus-grid,
    .packages-grid{
        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .section-heading h2{
        font-size:2.2rem;
    }

    .driver-card{
        padding:25px;
    }

    .contact-card{
        padding:30px;
    }
}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .price{
        font-size:2.2rem;
    }

    .cta h2{
        font-size:2rem;
    }

    .floating-whatsapp{
        width:60px;
        height:60px;
        font-size:1.6rem;
    }
}
.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.scroll-progress{
    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0;
    background:#d4af37;
    z-index:9999;
}

.back-to-top{
    position:fixed;
    bottom:110px;
    right:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:#000;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

.back-to-top.active{
    opacity:1;
    visibility:visible;
}

.pulse{
    animation:pulse 1s ease;
}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }

}
a{
    text-decoration: none;
    color: #cfcfcf;
}