.booking {
    /* margin: 80px 0; */
    position: relative;
    z-index: 10;
}

.booking-row {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-img {
    background: url('../image/Booking.jpeg') center/cover no-repeat;
    min-height: 300px;
}
.booking-form h4{
    color: #234781;

}
.booking-form {
    background: linear-gradient(135deg, rgba(23, 48, 150, 0.08) 0%, rgba(35, 71, 129, 0.07) 100%), #fff;
    padding: 40px !important;
}

.booking-input {
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    padding: 12px 15px;
    width: 100%;
    font-size: 0.95rem;
}

.booking-input:focus {
    border-color: #234781;
    box-shadow: 0 0 8px rgba(30, 247, 59, 0.3);
    outline: none;
}

.booking-btn {
    background-color: var(--primary-blue);
    border: none;
    color: white !important;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 14px;
    font-size: 1rem;
    width: 100%;
}

.booking-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  background-color: var(--primary-blue) !important;

}

.booking-btn:active{
       background-color: var(--primary-blue) !important;
}

.booking-col {
    margin-bottom: 20px;
}

/* Make sure form elements are visible */
.booking-form form {
    display: block !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-img {
        min-height: 300px;
    }

    .booking-form {
        padding: 30px !important;
    }
}

@media (max-width: 768px) {
    .booking {
        margin: 40px 0;
    }

    .booking-form {
        padding: 20px !important;
    }
}