/* --- Base Reset & Typography --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    line-height: 1.7;
    color: #333;
    background: #f4f6f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --- Header & Navigation --- */
header {
    background: #111;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 32px;
    cursor: pointer;
    color: #d4af37; /* Changed to match branding gold */
    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;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

/* --- Hero Section --- */
.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;
    padding: 0 15px;
}

.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;
    transition: background 0.3s;
}

.btn h2 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.btn:hover {
    background: #bfa030;
}

/* --- Core Layouts --- */
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;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
    border-radius: 8px;
}

/* --- Fleet Showcase --- */
.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;
}

.fleet-card {
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.05);
    overflow: hidden;
    border-radius: 10px;
}

.fleet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fleet-card-content {
    padding: 20px;
}

/* --- Booking Form --- */
.booking {
    background: #f8f8f8;
}

.booking .container {
    max-width: 750px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.booking form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    font-weight: 500;
}

.booking input, 
.booking textarea, 
.booking select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    background: #fff;
}

.booking input:focus, 
.booking textarea:focus, 
.booking select:focus {
    border-color: #d4af37;
    outline: none;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.row {
    display: flex;
    gap: 15px;
}

.row .form-group {
    flex: 1;
}

.booking button {
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.booking button:hover {
    background: #bfa030;
}

/* --- Contact & Footer --- */
.contact {
    text-align: center;
}

footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.whatsapp img {
    width: 60px;
    height: auto;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show burger menu icon */
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #111;
        max-height: 0; /* Keeps it hidden smoothly */
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    /* When JS adds the active class, expand the menu */
    nav.active {
        max-height: 400px; 
        border-top: 1px solid #222;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 5%;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
    }

    nav ul li a {
        display: block;
        font-size: 18px;
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 18px;
    }

    .fleet-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .row {
        flex-direction: column;
        gap: 15px;
    }
}