/*==========================
BOOKING PAGE
==========================*/

.booking-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.booking-section .container {
    max-width: 700px;
    margin: auto;
}

.booking-section h2 {
    text-align: center;
    color: #0d2452;
    margin-bottom: 35px;
    font-size: 38px;
    font-weight: 700;
}

#bookingForm {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f5b301;
}

.book-btn {
    width: 100%;
    border: none;
    padding: 16px;
    border-radius: 10px;
    background: #f5b301;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.book-btn:hover {
    background: #e0a500;
}

@media(max-width:768px) {
    #bookingForm {
        padding: 25px;
    }
    .booking-section h2 {
        font-size: 30px;
    }
}