/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    overflow-y: auto;
}

.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 999999;
}

.booking-modal-content {
    position: relative;
    margin: 50px auto;
    width: 90%;
    max-width: 550px;
    z-index: 1000000;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.booking-modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #b19777;
    color: #fff;
    border: 3px solid #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 1000001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.booking-modal-close:hover {
    background: #8b7555;
    transform: rotate(90deg);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.booking-modal .booking-box {
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 100% !important;
    width: 100% !important;
}

.booking-modal .booking-inner {
    padding: 30px 25px;
    max-width: 100% !important;
}

/* Error messages */
.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
    min-height: 18px;
}

.input-error {
    border-color: #e74c3c !important;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-modal-content {
        width: 95%;
        margin: 30px auto;
    }
    
    .booking-modal-close {
        top: -12px;
        right: -12px;
        width: 40px;
        height: 40px;
        font-size: 24px;
        border-width: 2px;
    }
    
    .booking-modal .booking-inner {
        padding: 25px 20px;
    }
    
    .booking-modal .head-box h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .booking-modal-content {
        width: 96%;
        margin: 20px auto;
    }
    
    .booking-modal-close {
        top: -10px;
        right: -10px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
    
    .booking-modal .booking-inner {
        padding: 20px 15px;
    }
    
    .booking-modal .head-box {
        padding: 20px 15px;
    }
    
    .booking-modal .head-box h4 {
        font-size: 18px;
    }
    
    .booking-modal .head-box h6 {
        font-size: 11px;
    }
    
    .booking-modal .btn-form1-submit {
        font-size: 14px;
        padding: 12px 20px;
    }
}

@media (max-height: 700px) {
    .booking-modal-content {
        margin: 20px auto;
    }
}
