/* Booking Form Styles */
.booking-form {
    background-color: #f9f9f983;
  
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     
}

.booking-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.booking-form-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
    text-align: center;
}

.booking-form-header p {
    font-size: 14px;
    color: #707070;
    margin-bottom: 20px;
    text-align: center;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555555;
    margin-bottom: 5px;
}

.booking-form .form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #333333;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff; 
    transition: border-color 0.3s ease;
}

.booking-form .form-control:focus {
    border-color: #254a93;
    outline: none;
    box-shadow: 0 0 5px rgba(37, 74, 147, 0.5);
}

.booking-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('../images/select-arrow.png') no-repeat right 10px center;
    background-color: #ffffff;
    background-size: 12px;
}

.booking-form button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #254a93;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form button[type="submit"]:hover {
    background-color: #1e3d73;
}

.booking-form .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(50%);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .booking-form {
        padding: 20px;
    }

    .booking-form h2 {
        font-size: 24px;
    }

    .booking-form-header h3 {
        font-size: 16px;
    }

    .booking-form .form-control {
        font-size: 13px;
    }

    .booking-form button[type="submit"] {
        font-size: 14px;
    }
}