/* =========================================
   LUXURY RESERVATION PAGE (White Gold)
   ========================================= */

/* BACKGROUND WRAPPER */
.luxury-page-wrapper {
    background: #fdfbf7;
    /* Near white, warm cream tone */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 140px 20px 80px 20px;
    position: relative;
    z-index: 1;
    gap: 60px;
}

/* REMOVE DARK OVERLAY */
.luxury-page-wrapper::before {
    display: none;
}

/* MAIN CARD CONTAINER (Desktop) */
.luxury-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    border-radius: 12px;
    /* Radius 12 */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    width: 100%;
    max-width: 1100px;
    display: flex;
    overflow: hidden;
    color: #333;
    /* Dark text */
    position: relative;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* LEFT SIDE: INFO & TRUST */
.luxury-info-side {
    width: 40%;
    background: #fcfcfc;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
    /* Solid black or gradient */
    background: linear-gradient(90deg, #D4AF37, #B8860B, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}

.luxury-subtitle {
    color: #666;
    /* Darker gray */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    /* Slightly bolder */
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    /* Radius 12 */
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text h4 {
    color: #D4AF37;
    /* Gold headings */
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.trust-text p {
    color: #777;
    margin: 0;
    font-size: 0.85rem;
}

/* RIGHT SIDE: FORM */
.luxury-form-side {
    width: 60%;
    padding: 60px;
    background: #fff;
    /* White background */
}

.form-group-luxury {
    margin-bottom: 30px;
    position: relative;
}

.form-label-luxury {
    display: block;
    color: #222;
    /* Dark label */
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-input-luxury {
    width: 100%;
    background: #fdfdfd;
    /* Box background */
    border: 1px solid #e0e0e0;
    /* Boxed UI */
    padding: 18px 20px;
    color: #000;
    /* Black text input */
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 12px;
    /* Radius 12 */
}

.form-input-luxury:focus {
    outline: none;
    border-color: #D4AF37;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.05);
}

.form-input-luxury::placeholder {
    color: #ccc;
}

select.form-input-luxury option {
    background: #fff;
    color: #000;
}

/* CTA BUTTON */
.btn-luxury-gold {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, #222, #000);
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #D4AF37;
    border-radius: 12px;
    /* Radius 12 */
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-luxury-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: #fff;
}

/* LUXURY REVIEWS SECTION */
.luxury-section-title {
    text-align: center;
    color: #222;
    /* Dark Title */
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-shadow: none;
}

.luxury-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.luxury-review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    /* Radius 12 */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Light border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    transition: transform 0.3s;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    color: #222;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* =========================================
   MOBILE BOTTOM SHEET DESIGN (The "New Design")
   ========================================= */
@media (max-width: 900px) {
    .luxury-page-wrapper {
        padding: 0;
        display: block;
        min-height: auto;
        padding-bottom: 120px;
        /* Space for bottom nav */
    }

    /* 1. VISUAL TOP (Sticky Header Feel) */
    .luxury-info-side {
        width: 100%;
        padding: 40px 20px;
        background: transparent;
        border: none;
        text-align: center;
        height: auto;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .luxury-title {
        font-size: 2.5rem;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .luxury-subtitle {
        color: #eee;
        margin-bottom: 15px;
    }

    .luxury-trust-features {
        display: none;
    }

    /* Hide complex trust items on mobile header */

    /* 2. WHITE SHEET CONTENT */
    .luxury-card {
        background: transparent;
        border: none;
        box-shadow: none;
        flex-direction: column;
        margin: 0;
        width: 100%;
        border-radius: 0;
        overflow: visible;
    }

    .luxury-form-side {
        width: 100%;
        background: #fff;
        /* WHITE SHEET */
        border-radius: 20px 20px 0 0;
        /* Slightly more for overlap card */
        /* Rounded Top */
        padding: 40px 25px;
        margin-top: -30px;
        /* Overlap the visual */
        position: relative;
        z-index: 10;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    }

    /* 3. LIGHT THEME FORM ELEMENTS (LUXURY 2.0) */
    .luxury-form-side h2 {
        color: #000 !important;
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 40px !important;
        letter-spacing: 2px;
    }

    .luxury-form-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    /* FLOATING LABEL LOGIC (Boxed Version) */
    .floating-group {
        position: relative;
        margin-bottom: 25px;
        animation: fadeInSlideUp 0.6s ease-out both;
    }

    .floating-group:nth-child(1) {
        animation-delay: 0.1s;
    }

    .floating-group:nth-child(2) {
        animation-delay: 0.2s;
    }

    .floating-group:nth-child(3) {
        animation-delay: 0.3s;
    }

    .floating-group:nth-child(4) {
        animation-delay: 0.4s;
    }

    .floating-group:nth-child(5) {
        animation-delay: 0.5s;
    }

    @keyframes fadeInSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    .form-input-luxury {
        border: 1px solid #e0e0e0 !important;
        background: #f9f9f9 !important;
        color: #000 !important;
        font-size: 1.1rem !important;
        padding: 25px 15px 10px 15px !important;
        /* Internal spacing */
        border-radius: 12px !important;
        /* Radius 12 */
        height: 65px !important;
        display: block !important;
        box-sizing: border-box !important;
        transition: all 0.3s ease !important;
    }

    .form-label-luxury {
        position: absolute;
        top: 22px;
        left: 15px;
        color: #999;
        font-size: 1rem;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: none;
        letter-spacing: 0.5px;
        margin-bottom: 0px;
    }

    /* Floating State for Boxed UI */
    .form-input-luxury:focus~.form-label-luxury,
    .form-input-luxury:not(:placeholder-shown)~.form-label-luxury {
        top: 8px;
        font-size: 0.7rem;
        color: #D4AF37;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .form-input-luxury:focus {
        border-color: #D4AF37 !important;
        background: #fff !important;
        box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.05) !important;
    }

    input[type="date"].form-input-luxury,
    input[type="time"].form-input-luxury {
        -webkit-appearance: none !important;
        appearance: none !important;
        min-height: 65px !important;
    }

    /* BUTTON ENHANCEMENT */
    .btn-luxury-gold {
        border-radius: 12px;
        /* Radius 12 */
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #222, #000) !important;
        color: #D4AF37 !important;
        border: 1px solid #D4AF37 !important;
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        font-size: 1rem;
        margin-top: 30px;
    }

    .ripple-effect {
        position: relative;
        overflow: hidden;
    }

    .form-footer-note {
        text-align: center;
        color: #888;
        font-size: 0.75rem;
        margin-top: 20px;
        letter-spacing: 1px;
    }

    /* 4. REVIEWS & HOOKS (On White Background) */
    .luxury-reviews-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        margin-top: 0;
    }

    .luxury-section-title {
        color: #000;
        text-shadow: none;
        font-size: 2rem;
        margin: 40px 0 20px;
        font-family: 'Playfair Display', serif;
    }

    .luxury-review-card {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        border-radius: 12px;
        /* Radius 12 */
        padding: 30px;
        margin-bottom: 20px;
    }

    .review-text {
        color: #444;
        font-size: 1rem;
    }

    .review-author {
        color: #000;
        justify-content: center;
        font-family: 'Playfair Display', serif;
    }
}