*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
line-height:1.7;
color:#333;
background:#f4f6f9;
}

header{
background:#111;
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}



.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#0056b3;
    font-weight:bold;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:500;
}

.hero{
height:700px;
background:url('images/airportlimo.jpg') center center/cover;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
}

.hero::before{
content:'';
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
}

.hero-content{
position:relative;
z-index:1;
color:#fff;
}

.hero h1{
font-size:55px;
margin-bottom:15px;
}

.hero p{
font-size:24px;
margin-bottom:30px;
}

.btn{
background:#d4af37;
padding:15px 35px;
color:#fff;
text-decoration:none;
border-radius:5px;
display:inline-block;
font-size:20px;
font-weight:600;
}

.booking button{
width:100%;
}

.booking input,
.booking textarea,
.booking select{
width:100%;
}

section{
padding:80px 0;
}

.section-title{
text-align:center;
margin-bottom:40px;
}

.section-title h2{
font-size:40px;
color:#111;
}

.about p{
max-width:900px;
margin:auto;
text-align:center;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.feature{
padding:30px;
text-align:center;
box-shadow:0 0 15px rgba(0,0,0,.1);
}

.fleet-gallery{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

.gallery-item img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

.fleet-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

/* Mobile *//* ==========================
   MOBILE MENU
========================== */

.menu-toggle{
    display:none;
    font-size:32px;
    color:#d4af37;
    cursor:pointer;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#111;

        max-height:0;
        overflow:hidden;

        transition:.4s;
    }

    nav.active{
        max-height:500px;
    }

    nav ul{
        display:flex;
        flex-direction:column;
        padding:15px 0;
    }

    nav ul li{
        margin:0;
        border-bottom:1px solid #222;
    }

    nav ul li:last-child{
        border-bottom:none;
    }

    nav ul li a{
        display:block;
        padding:15px;
        text-align:center;
    }

}