*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fff;
color:#06294a;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* NAV */
.sub-header{
background:#06294a;
padding:15px 0;
position:sticky;
top:0;
z-index:1000;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.nav ul{
display:flex;
gap:20px;
list-style:none;
}

.nav a{
color:white;
text-decoration:none;
font-weight:500;
}

.nav a.active{
    color:#f28c28;
    font-weight:700;
    border-bottom:3px solid #f28c28;
    padding-bottom:6px;
}
}
.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav ul{
    display:flex;
    list-style:none;
    gap:25px;
}

.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    color:white;
}

/* MOBILE */

@media (max-width:768px){

    .nav{
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    .nav ul{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        margin-top:20px;
        gap:15px;
    }

    .nav ul.active{
        display:flex;
    }

    .logo{
        font-size:1.5rem;
    }
}
@media (max-width:768px){

    .sub-header .container{
        width:100%;
        padding:0 15px;
    }

}  
}
/* HERO */
.fleet-hero{
padding:80px 0;
text-align:center;
background:#f8f9fb;
}

.fleet-hero h1{
font-size:3rem;
margin-bottom:10px;
}

/* FILTER */
.fleet-filter{
padding:60px 0;
}

.buttons{
text-align:center;
margin-bottom:40px;
}

.buttons button{
background:#eee;
border:none;
padding:10px 18px;
margin:5px;
border-radius:25px;
cursor:pointer;
font-weight:500;
}

.buttons button.active{
background:#f28c28;
color:white;
}

/* GRID */
.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
position:relative;
}

.card:hover{
transform:translateY(-5px);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

/* BADGE */
.badge{
position:absolute;
top:10px;
left:10px;
background:#06294a;
color:white;
padding:5px 12px;
font-size:12px;
border-radius:20px;
}

.badge.safari{background:#2e7d32;}
.badge.group{background:#f28c28;}
.badge.events{background:#8e24aa;}
.badge.special{background:#455a64;}

/* CONTENT */
.card h3{
padding:15px;
}

.card p{
padding:0 15px 15px;
font-size:14px;
}

.card a{
display:block;
text-align:center;
background:#f28c28;
color:white;
padding:10px;
text-decoration:none;
font-weight:600;
}

.card a:hover{
    background:#f28c28;
}

/* CTA */
.cta{
text-align:center;
padding:80px 20px;
background:#06294a;
color:white;
}

.cta a{
display:inline-block;
margin-top:15px;
background:#f28c28;
color:white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
font-weight:600;
}
/* FOOTER */

footer{
    background:#041d35;
    color:white;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.footer-grid a{
    display:block;
    color:white;
    text-decoration:none;
    margin-top:10px;
    transition:0.3s;
}

.footer-grid a:hover{
    color:#f28c28;
}

.footer-grid h3,
.footer-grid h4{
    margin-bottom:15px;
}

.copyright{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.15);
}