.booking-page-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    flex-direction: column;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Ambient Background Orbs */
.booking-page-wrapper::before,
.booking-page-wrapper::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    animation: floatOrb 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-page-wrapper::before {
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -10%;
    left: -10%;
}

.booking-page-wrapper::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
    animation-direction: alternate-reverse;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 80px) scale(1.1); }
    100% { transform: translate(-30px, -50px) scale(0.9); }
}

.booking-header-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.booking-header-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    width: 100%;
    margin-top: 4rem;
}

.booking-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    text-align: left;
    display: flex;
    flex-direction: column;
}

@keyframes gentleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.booking-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-15px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation-play-state: paused;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(197, 160, 89, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.booking-card:hover::before {
    opacity: 1;
}

.booking-card > * {
    position: relative;
    z-index: 1;
}


.booking-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    color: var(--accent-gold);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    100% { box-shadow: 0 0 20px 5px rgba(197, 160, 89, 0.1); }
}

.booking-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.booking-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.booking-card-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    transition: gap 0.3s ease;
}

.booking-card:hover .booking-card-action {
    gap: 1rem;
}

.badge-discount {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-theme);
    color: #fff;
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
    overflow: hidden;
}

.badge-discount::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Group Form */
#group-form-section {
    display: none;
    max-width: 850px;
    width: 100%;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.form-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header-row h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.btn-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    cursor: pointer;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 99px;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.4);
}

.people-counter {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.people-counter span.counter-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    flex-grow: 1;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-btn:hover {
    background: var(--accent-gold);
    color: #000;
    transform: scale(1.05);
}

#people-count-display {
    font-size: 1.5rem;
    font-weight: 800;
    width: 40px;
    text-align: center;
    color: var(--accent-gold);
}

.person-fields {
    background: rgba(0, 0, 0, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, opacity 0.4s ease;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.person-fields h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.person-fields h4::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.premium-input-group {
    margin-bottom: 1.5rem;
}

.premium-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.premium-input-group input {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.premium-input-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.premium-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-footer {
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.advance-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.advance-note svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.btn-proceed {
    background: var(--gradient-theme);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 99px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-proceed:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

/* Entrance Animations */
.booking-header-title,
.booking-header-subtitle {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.booking-header-title { animation-delay: 0.1s; }
.booking-header-subtitle { animation-delay: 0.2s; }

.booking-card {
    /* Combine Entrance and Desktop Continuous Animation */
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards, gentleFloat 6s 0.8s ease-in-out infinite alternate;
    opacity: 0;
    transform: translateY(30px);
}

.booking-card:nth-child(1) { animation-delay: 0.3s, 1.1s; }
.booking-card:nth-child(2) { animation-delay: 0.4s, -2.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .booking-page-wrapper {
        padding: 4rem 1.5rem;
    }
    .booking-header-title {
        font-size: 2.5rem;
    }
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    #group-form-section {
        padding: 2.5rem 1.5rem;
    }
    .form-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .people-counter {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }
    .counter-controls {
        justify-content: center;
    }
    .person-fields {
        padding: 1.5rem;
    }
    .premium-input-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .form-footer {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: stretch;
    }
    .btn-proceed {
        width: 100%;
        justify-content: center;
    }

    /* Mobile-Specific Continuous Animations */
    .booking-page-wrapper::before,
    .booking-page-wrapper::after {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    .booking-card {
        /* Combine Entrance, Mobile Float, and Mobile Glow */
        animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards, gentleFloatMobile 5s 0.8s ease-in-out infinite alternate, mobileGlowPulse 4s 0.8s ease-in-out infinite alternate;
    }
    
    .booking-card:nth-child(1) {
        animation-delay: 0.3s, 1.1s, 1.1s;
    }

    .booking-card:nth-child(2) {
        animation-delay: 0.4s, -1.5s, -1.2s;
    }

    @keyframes gentleFloatMobile {
        0% { transform: translateY(0); }
        100% { transform: translateY(-5px); }
    }

    @keyframes mobileGlowPulse {
        0% { border-color: rgba(255, 255, 255, 0.08); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
        100% { border-color: rgba(197, 160, 89, 0.3); box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15); }
    }
}
