/* ===================================
   EXCLUSIVE RIDES - BOOKINGS PAGE CSS
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#06294a;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================
   NAVIGATION
=================================== */

.sub-header{
    position:sticky;
    top:0;
    z-index:1000;
}

.nav{
    width:100%;
    background:#06294a;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}

.nav-inner{
    width:90%;
    max-width:1280px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 0;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:1.6rem;
    font-weight:700;
}

.nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.nav a:hover{
    color:#f28c28;
}

.nav a.active{
    color:#f28c28;
    font-weight:700;
    border-bottom:3px solid #f28c28;
    padding-bottom:6px;
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    font-size:2rem;
    color:#fff;
    cursor:pointer;
}

/* ===================================
   HERO
=================================== */

.hero{
    background:#f8f9fb;
    text-align:center;
    padding:90px 20px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.1rem;
    color:#555;
}

/* ===================================
   AVAILABILITY NOTICE
=================================== */

.availability-notice{
    padding:40px 20px 20px;
}

.notice-card{
    max-width:850px;
    margin:auto;
    background:#fff7ed;
    border:1px solid #f59e0b;
    border-radius:15px;
    padding:35px;
    text-align:center;
}

.notice-card h3{
    color:#b45309;
    margin-bottom:15px;
}

.notice-card p{
    color:#92400e;
    margin-bottom:25px;
}

.btn-secondary{
    display:inline-block;
    padding:12px 28px;
    border:2px solid #b45309;
    border-radius:30px;
    color:#b45309;
    text-decoration:none;
    transition:.3s;
}

.btn-secondary:hover{
    background:#b45309;
    color:#fff;
}

/* ===================================
   STEPS
=================================== */

.steps{
    padding:80px 0;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.step{
    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.step:hover{
    transform:translateY(-6px);
}

.number{
    width:55px;
    height:55px;
    background:#f28c28;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
    font-weight:bold;
}

/* ===================================
   BUTTONS
=================================== */

.btn{
    display:inline-block;
    margin-top:20px;
    background:#f28c28;
    color:#fff;
    padding:13px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#d97706;
}

.btn-outline{
    display:inline-block;
    margin-top:20px;
    border:2px solid #06294a;
    color:#06294a;
    padding:13px 28px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.btn-outline:hover{
    background:#06294a;
    color:#fff;
}

/* ===================================
   BOOKING CARD
=================================== */

.booking-option{
    padding:90px 20px;
    background:#f8f9fb;
}

.booking-card{
    max-width:850px;
    margin:auto;
    background:#fff;
    text-align:center;
    padding:60px 40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.booking-card:hover{
    transform:translateY(-5px);
}

.booking-card h2{
    font-size:2rem;
    margin-bottom:15px;
}

.booking-card p{
    color:#666;
    margin-bottom:30px;
}

.btn-primary{
    display:inline-block;
    background:#06294a;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#f28c28;
    color:#06294a;
}

/* ===================================
   WHY SECTION
=================================== */

.why{
    background:#f8f9fb;
    padding:90px 0;
}

.why h2{
    text-align:center;
    margin-bottom:40px;
}

.box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* ===================================
   COVERAGE
=================================== */

.coverage{
    background:#06294a;
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.coverage h2{
    font-size:2.5rem;
}

.coverage-intro{
    max-width:700px;
    margin:20px auto 40px;
}

.coverage-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.location{
    background:#f28c28;
    padding:12px 24px;
    border-radius:30px;
    font-weight:600;
}

/* ===================================
   FOOTER
=================================== */

footer{
    background:#041d35;
    color:#fff;
    padding:60px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.footer-grid h3,
.footer-grid h4{
    margin-bottom:15px;
}

.footer-grid a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-top:10px;
}

.footer-grid a:hover{
    color:#f28c28;
}

.copyright{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
}

/* ===================================
   WHATSAPP BUTTON
=================================== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    transition:.3s;
    z-index:999;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .nav-inner{
        width:100%;
        padding:15px 20px;
        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;
    }

    .hero h1{
        font-size:2.2rem;
    }

    .booking-card{
        padding:40px 25px;
    }

    .coverage h2{
        font-size:2rem;
    }

    .footer-grid{
        text-align:center;
    }
}