/* ==========================
   BASE RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background:#f4f6f9;
    line-height:1.5;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#0b2d52;
    color:white;
}

.logo{
    font-size:22px;
    font-weight:bold;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:20px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#FDBB2D;
}

/* ==========================
   BOOKING SECTION
========================== */

.booking-section{
    padding:60px 20px;
    display:flex;
    justify-content:center;
}

.booking-container{
    width:100%;
    max-width:900px;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.booking-container h1{
    text-align:center;
    color:#0b2d52;
    margin-bottom:10px;
    font-size:2.2rem;
}

.booking-container p{
    text-align:center;
    margin-bottom:30px;
    color:#555;
}

/* ==========================
   FORM LAYOUT
========================== */

.booking-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
    flex:1;
}

.form-row{
    display:flex;
    gap:20px;
}

.form-group.full{
    width:100%;
}

label{
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

input,
select,
textarea{
    padding:14px;
    border:1px solid #ccc;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:0.3s;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#FDBB2D;
    box-shadow:0 0 6px rgba(253,187,45,.4);
}

textarea{
    resize:vertical;
    min-height:120px;
}

/* ==========================
   WHATSAPP BUTTON
========================== */

.whatsapp-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#25D366;
    color:white;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
    margin-top:10px;
}

.whatsapp-btn:hover{
    background:#128C7E;
    transform:translateY(-2px);
}

.whatsapp-btn:active{
    transform:scale(0.98);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:768px){

    .navbar{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    .form-row{
        flex-direction:column;
    }

    .booking-container{
        padding:25px;
    }

    .booking-container h1{
        font-size:1.8rem;
    }
}