/* Booking Section */
.booking-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 40px;
}

.hero-booking-widget {
    background: rgba(26, 26, 26, 0.20);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 1px rgba(212, 175, 55, 0.1);
}

.hero-booking-widget h3 {

    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #d4af37;
}

/* Scoped CSS for hero booking widget labels to ensure white color */
.hero-booking-widget .form-group label {
    color: rgba(248, 246, 242, 0.8) !important;
}

.booking-form-vertical {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.booking-form-vertical .form-group:last-child {
    grid-column: 1 / -1;
}

.booking-form-vertical .booking-submit {
    grid-column: 2;
    grid-row: 3;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: rgba(248, 246, 242, 0.6);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(248, 246, 242, 0.05);
    border: 1px solid rgba(248, 246, 242, 0.1);
    border-radius: 4px;
    padding: 10px 14px;
    color: var(--ivory-white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--warm-gold);
    background: rgba(248, 246, 242, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: var(--ivory-white);
}

.form-group select option {
    background: var(--deep-charcoal);
    color: var(--ivory-white);
    padding: 10px;
}

.booking-submit {
    background: var(--warm-gold);
    border: none;
    color: var(--deep-charcoal);
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.booking-submit:hover {
    background: var(--champagne-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Booking Modal */
.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-modal-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 35px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(248, 246, 242, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--warm-gold);
    transform: rotate(90deg);
}

.booking-modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--ivory-white);
    padding-right: 40px;
}
