/* ============================================================
     BOOKING POPUP STYLES
     ============================================================ */

.bookw {
    position: fixed !important;
    left: 5%;
    top: 5%;
    height: 90vh;
    background: rgba(0, 0, 0, 0.85);
    overflow: auto;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    width: 90%;
    z-index: 1050;
}

@media only screen and (max-width: 480px) {
    .bookw {
        position: fixed !important;
        left: 5%;
        height: 100%;
        top: 12px;
        background: rgba(0, 0, 0, 0.9);
        width: 90%;
    }
}

.modern-input {
    width: 90% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    font-size: 16px !important;
    color: #fff !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.2s ease !important;
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.modern-input:focus {
    outline: none !important;
    border-color: #6ec8ff !important;
    box-shadow: 0 0 0 3px rgba(110, 200, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.modern-select {
    width: 90% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    padding: 8px 35px 8px 14px !important;
    font-size: 16px !important;
    color: #fff !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.modern-select:focus {
    outline: none !important;
    border-color: #6ec8ff !important;
    box-shadow: 0 0 0 3px rgba(110, 200, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.modern-select option {
    background: #1a2340;
    color: #fff;
    padding: 10px;
}

.modern-date {
    width: 90% !important;
    display: block !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    font-size: 16px !important;
    color: #fff !important;
    color-scheme: dark;
    transition: all 0.2s ease !important;
}

.modern-date:focus {
    outline: none !important;
    border-color: #6ec8ff !important;
    box-shadow: 0 0 0 3px rgba(110, 200, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.modern-date::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.5);
    cursor: pointer;
    opacity: 0.8;
}

.modern-textarea {
    width: 90% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 16px !important;
    color: #fff !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    resize: vertical;
    min-height: 70px;
    font-family: inherit;
    transition: all 0.2s ease !important;
}

.modern-textarea::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.modern-textarea:focus {
    outline: none !important;
    border-color: #6ec8ff !important;
    box-shadow: 0 0 0 3px rgba(110, 200, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.booking-form__label.lablbooking {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
}

.blue-text.bold-text.lablbooking label {
    color: #fff !important;
    font-weight: 600 !important;
}

.modern-range {
    width: 100% !important;
    height: 8px !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background: linear-gradient(90deg, #4fc3f7, #0288d1) !important;
    border-radius: 10px !important;
    outline: none !important;
    cursor: pointer !important;
    margin: 8px 0 !important;
}

.modern-range::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.5), 0 2px 8px rgba(0,0,0,0.3) !important;
    border: 3px solid #4fc3f7 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.modern-range::-webkit-slider-thumb:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 0 25px rgba(79, 195, 247, 0.7), 0 4px 12px rgba(0,0,0,0.4) !important;
}

.modern-range::-moz-range-thumb {
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 0 15px rgba(79, 195, 247, 0.5) !important;
    border: 3px solid #4fc3f7 !important;
    cursor: pointer !important;
}

#Durn {
    white-space: nowrap;
    letter-spacing: 0.5px;
}

#datechange {
    white-space: nowrap;
    transition: all 0.2s ease;
}

#datechange:hover {
    background: rgba(79,195,247,0.25) !important;
    border-color: rgba(79,195,247,0.5) !important;
}

/* Fix for offcanvas backdrop and body scroll */
.offcanvas-backdrop {
    transition: opacity 0.3s ease !important;
    z-index: 1040 !important;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* Fix for body scroll when popup is open */
body.offcanvas-open {
    overflow: hidden !important;
}

#tophead {
    background: rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .modern-input,
    .modern-select,
    .modern-date,
    .modern-textarea {
        width: 100% !important;
    }
    .bookw {
        width: 95% !important;
        left: 2.5% !important;
        height: 95vh !important;
        top: 2.5% !important;
    }
}
/* Date Range Picker Input */
#dateRangePicker {
    cursor: pointer !important;
    width: 100% !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    font-size: 15px !important;
}

#dateRangePicker::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

#dateRangePicker:focus {
    outline: none !important;
    border-color: #6ec8ff !important;
    box-shadow: 0 0 0 3px rgba(110, 200, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}
/* Booking Nav Button */
.book-now-btn {
    background: linear-gradient(135deg, #c9a84c, #b8942e);
    color: #fff !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    text-decoration: none !important;
    display: inline-block;
    cursor: pointer;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.3);
    color: #fff !important;
}