/* =============================================
   Wild Olive — PREMIUM DESIGN UPGRADE v9.0
   Elevated Glassmorphism · Rich Ambient Motion
   Luxury Polish · Atmospheric Depth
   ============================================= */

/* =============================================
   1. REFINED DESIGN TOKEN OVERRIDES
   ============================================= */
:root {
    /* Refined Glass System — More Intentional, More Premium */
    --glass-bg:            rgba(255, 255, 255, 0.042);
    --glass-bg-light:      rgba(255, 255, 255, 0.072);
    --glass-bg-medium:     rgba(255, 255, 255, 0.112);
    --glass-bg-warm:       rgba(253, 248, 242, 0.08);

    --glass-border:        rgba(255, 255, 255, 0.095);
    --glass-border-light:  rgba(255, 255, 255, 0.17);
    --glass-border-warm:   rgba(255, 251, 244, 0.12);
    --glass-border-gold:   rgba(201, 169, 98, 0.18);
    --glass-border-gold-bright: rgba(201, 169, 98, 0.38);
    --glass-border-olive:  rgba(61, 90, 61, 0.22);

    --glass-blur:          26px;
    --glass-blur-heavy:    54px;
    --glass-blur-light:    14px;

    /* Dark Glass */
    --glass-dark-bg:        rgba(5, 5, 5, 0.78);
    --glass-dark-bg-medium: rgba(12, 12, 12, 0.62);

    /* Inset Shine Effects */
    --glass-inset:      inset 0 1px 0 rgba(255, 255, 255, 0.09), inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    --glass-inset-gold: inset 0 1px 0 rgba(201, 169, 98, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.05);

    /* Elevated Glow Shadows */
    --shadow-glow-olive: 0 0 50px rgba(61, 90, 61, 0.38), 0 0 100px rgba(61, 90, 61, 0.14);
    --shadow-glow-gold:  0 0 50px rgba(201, 169, 98, 0.28), 0 0 90px rgba(201, 169, 98, 0.12);
    --shadow-glow-wine:  0 0 40px rgba(107, 45, 58, 0.28);

    /* Layered depth shadows */
    --depth-1: 0 2px 6px rgba(0,0,0,0.04), 0 4px 14px rgba(0,0,0,0.04);
    --depth-2: 0 4px 14px rgba(0,0,0,0.06), 0 10px 28px rgba(0,0,0,0.05);
    --depth-3: 0 8px 28px rgba(0,0,0,0.08), 0 20px 44px rgba(0,0,0,0.07);
    --depth-4: 0 16px 44px rgba(0,0,0,0.10), 0 36px 72px rgba(0,0,0,0.09);
}

/* =============================================
   2. ELEVATED BODY AMBIENT BACKGROUND
   ============================================= */
body {
    background-image:
        radial-gradient(ellipse 140% 100% at 0% 0%,    rgba(61, 90, 61, 0.14) 0%, transparent 56%),
        radial-gradient(ellipse 120% 110% at 100% 100%, rgba(201, 169, 98, 0.11) 0%, transparent 56%),
        radial-gradient(ellipse 90%  85%  at 50% 50%,  rgba(107, 45, 58, 0.07) 0%, transparent 62%),
        radial-gradient(ellipse 75%  70%  at 82% 14%,  rgba(61, 90, 61, 0.08) 0%, transparent 52%),
        radial-gradient(ellipse 80%  75%  at 18% 88%,  rgba(201, 169, 98, 0.06) 0%, transparent 52%);
    background-attachment: fixed;
    animation: bodyAmbientShift 30s ease-in-out infinite;
}

@keyframes bodyAmbientShift {
    0%   { background-position: 0% 0%,   100% 100%, 50% 50%, 82% 14%, 18% 88%; }
    20%  { background-position: 13% 9%,  87% 91%,  52% 44%, 73% 21%, 27% 79%; }
    40%  { background-position: 6% 19%,  94% 81%,  46% 58%, 79% 11%, 21% 89%; }
    60%  { background-position: 16% 11%, 84% 89%,  55% 52%, 69% 24%, 31% 76%; }
    80%  { background-position: 9%  4%,  91% 96%,  48% 47%, 76% 19%, 24% 81%; }
    100% { background-position: 0% 0%,   100% 100%, 50% 50%, 82% 14%, 18% 88%; }
}

/* Premium Grain Texture Overlay — Adds Depth & Material Quality */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    opacity: 0.016;
    pointer-events: none;
    z-index: 0;
}

/* Premium Scrollbar */
::-webkit-scrollbar       { width: 5px; background: transparent; }
::-webkit-scrollbar-track { background: rgba(232, 224, 213, 0.5); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgba(61,90,61,0.55), rgba(201,169,98,0.55));
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--color-olive), var(--color-gold));
}

/* =============================================
   3. HERO FLOATING ORBS — ELEVATED ORGANIC MOTION
   ============================================= */
.floating-element {
    filter: blur(52px);
    animation: premiumOrbFloat 14s ease-in-out infinite;
    opacity: 0.82;
}

.floating-element:nth-child(1) {
    animation-duration: 16s;
    animation-delay: 0s;
    filter: blur(58px);
    opacity: 0.78;
}

.floating-element:nth-child(2) {
    animation-duration: 19s;
    animation-delay: -6s;
    filter: blur(50px);
    opacity: 0.75;
}

.floating-element:nth-child(3) {
    animation-duration: 17s;
    animation-delay: -11s;
    filter: blur(54px);
    opacity: 0.72;
}

@keyframes premiumOrbFloat {
    0%,  100% { transform: translate(0,     0)     scale(1);    opacity: 0.72; }
    16%        { transform: translate(52px, -65px)  scale(1.16); opacity: 0.90; }
    32%        { transform: translate(-32px, 42px)  scale(0.88); opacity: 0.62; }
    50%        { transform: translate(68px,  28px)  scale(1.10); opacity: 0.82; }
    67%        { transform: translate(-46px,-35px)  scale(0.93); opacity: 0.68; }
    84%        { transform: translate(28px,  55px)  scale(1.05); opacity: 0.85; }
}

/* =============================================
   4. HERO NOISE — SOFTER, MORE PREMIUM
   ============================================= */
.hero::before {
    animation: noiseDrift 1.8s steps(5) infinite;
    opacity: 0.022;
}

@keyframes noiseDrift {
    0%   { transform: translate(0,   0); }
    100% { transform: translate(5px, 5px); }
}

/* =============================================
   5. HEADER — REFINED GLASS ON SCROLL
   ============================================= */
.header.scrolled {
    background: rgba(250, 248, 245, 0.91);
    backdrop-filter: blur(32px) saturate(210%) brightness(1.02);
    -webkit-backdrop-filter: blur(32px) saturate(210%) brightness(1.02);
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    box-shadow:
        0 1px 0 rgba(201, 169, 98, 0.1),
        0 4px 28px rgba(0, 0, 0, 0.055);
}

/* Animated gold shimmer on sub-border */
.header.scrolled::after {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201, 169, 98, 0.45) 30%,
        rgba(201, 169, 98, 0.45) 70%,
        transparent 100%);
    animation: headerGoldShimmer 5s ease-in-out infinite;
    height: 1px;
}

@keyframes headerGoldShimmer {
    0%,  100% { opacity: 0.4; }
    50%        { opacity: 0.9; }
}

/* =============================================
   6. SERVICE CARDS — ELEVATED DEPTH & PRESENCE
   ============================================= */
.service-card {
    border: 1px solid rgba(0, 0, 0, 0.038);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.03),
        0 6px 18px rgba(0, 0, 0, 0.05),
        0 18px 36px rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-16px) rotateX(1.2deg);
    border-color: rgba(201, 169, 98, 0.1);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 20px 44px rgba(0, 0, 0, 0.1),
        0 44px 88px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(201, 169, 98, 0.08);
}

.service-icon {
    box-shadow:
        0 8px 20px rgba(61, 90, 61, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* =============================================
   7. ROOM CARDS (DARK GLASS) — PREMIUM REFINEMENT
   ============================================= */
.room-card {
    background: rgba(255, 255, 255, 0.048);
    border: 1px solid rgba(255, 255, 255, 0.082);
    box-shadow:
        var(--glass-inset),
        0 4px 18px rgba(0, 0, 0, 0.28),
        0 14px 36px rgba(0, 0, 0, 0.22);
}

.room-card:hover {
    background: rgba(255, 255, 255, 0.072);
    border-color: rgba(201, 169, 98, 0.26);
    transform: translateY(-16px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 28px 56px rgba(0, 0, 0, 0.48),
        0 0 80px rgba(201, 169, 98, 0.1),
        0 0 0 1px rgba(201, 169, 98, 0.14);
}

.room-card.featured {
    background: rgba(255, 255, 255, 0.062);
    border-color: rgba(201, 169, 98, 0.28);
    box-shadow:
        var(--glass-inset-gold),
        0 4px 18px rgba(0, 0, 0, 0.3),
        0 14px 36px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(201, 169, 98, 0.08);
}

/* Room price pill — refined glass */
.room-price {
    background: rgba(7, 7, 7, 0.74);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(201, 169, 98, 0.22);
    box-shadow: inset 0 1px 0 rgba(201, 169, 98, 0.1);
}

/* =============================================
   8. ROOMS PREVIEW — RICHER DARK BG ANIMATION
   ============================================= */
.rooms-bg {
    background:
        radial-gradient(ellipse at 15% 50%, rgba(61, 90, 61, 0.24) 0%, transparent 52%),
        radial-gradient(ellipse at 85% 50%, rgba(107, 45, 58, 0.18) 0%, transparent 52%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, 0.14) 0%, transparent 52%),
        radial-gradient(ellipse at 50% 0%, rgba(61, 90, 61, 0.09) 0%, transparent 40%);
    animation: roomsBgShift 22s ease-in-out infinite alternate;
}

@keyframes roomsBgShift {
    0%   { transform: scale(1)    translate(0,     0);    opacity: 0.78; }
    40%  { transform: scale(1.07) translate(-12px, -6px); opacity: 1;    }
    70%  { transform: scale(1.04) translate(8px, 4px);    opacity: 0.88; }
    100% { transform: scale(1.06) translate(-6px, 3px);   opacity: 0.92; }
}

/* =============================================
   9. TESTIMONIALS — ATMOSPHERIC DEPTH
   ============================================= */
.testimonial-card {
    border: 1px solid rgba(0, 0, 0, 0.036);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.036),
        0 4px 10px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: var(--color-white);
    border-color: rgba(201, 169, 98, 0.12);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.08),
        0 20px 44px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(201, 169, 98, 0.1);
}

/* =============================================
   10. SECTION AMBIENT DEPTH ELEMENTS
   Large soft orbs breathe life into each section
   ============================================= */

/* Services */
.services {
    background-image:
        radial-gradient(ellipse 55% 35% at 98% 2%,  rgba(61, 90, 61, 0.05) 0%, transparent 100%),
        radial-gradient(ellipse 55% 35% at 2%  98%, rgba(201, 169, 98, 0.04) 0%, transparent 100%);
}

.services::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(61, 90, 61, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sectionGlowBreath 24s ease-in-out infinite;
    z-index: 0;
}

/* About */
.about {
    background-image:
        radial-gradient(ellipse 65% 45% at 98% 50%, rgba(201, 169, 98, 0.04) 0%, transparent 100%);
}

/* Menu Highlights */
.menu-highlights {
    background-image:
        radial-gradient(ellipse 60% 40% at 2% 50%,  rgba(61, 90, 61, 0.04) 0%, transparent 100%),
        radial-gradient(ellipse 55% 35% at 98% 98%, rgba(107, 45, 58, 0.035) 0%, transparent 100%);
}

/* Testimonials */
.testimonials {
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.065) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sectionGlowBreath 20s ease-in-out infinite 4s;
    z-index: 0;
}

@keyframes sectionGlowBreath {
    0%,  100% { transform: scale(1)    translate(0,     0);    opacity: 0.55; }
    33%        { transform: scale(1.14) translate(28px, -18px); opacity: 1;    }
    66%        { transform: scale(0.92) translate(-18px, 12px); opacity: 0.65; }
}

/* =============================================
   11. FOOTER — ANIMATED AURORA
   ============================================= */
.footer::before {
    background:
        radial-gradient(ellipse 85% 65% at 80% 100%, rgba(201, 169, 98, 0.15) 0%, transparent 62%),
        radial-gradient(ellipse 70% 55% at 20% 80%,  rgba(61, 90, 61, 0.09) 0%, transparent 52%),
        radial-gradient(ellipse 60% 50% at 50% 90%,  rgba(107, 45, 58, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse 40% 35% at 8%  18%,  rgba(201, 169, 98, 0.05) 0%, transparent 40%);
    animation: footerAurora 28s ease-in-out infinite alternate;
}

@keyframes footerAurora {
    0%   { transform: scale(1)    translate(0,     0);    opacity: 0.78; }
    50%  { transform: scale(1.12) translate(-8px, -4px);  opacity: 1;    }
    100% { transform: scale(1.06) translate(4px,  -6px);  opacity: 0.85; }
}

/* Footer glass phone items */
.phone-item {
    background: rgba(255, 255, 255, 0.042);
    border: 1px solid rgba(255, 255, 255, 0.068);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.4s var(--ease-luxury), border-color 0.4s var(--ease-luxury);
}

.phone-item:hover {
    background: rgba(255, 255, 255, 0.078);
    border-color: rgba(255, 255, 255, 0.112);
}

/* =============================================
   12. SECTION HEADER — MORE ELEGANT DECORATION
   ============================================= */
.section-subtitle {
    letter-spacing: 5px;
    font-size: 0.7rem;
}

.section-subtitle::after {
    width: 34px;
    background: linear-gradient(90deg, var(--color-gold), rgba(201, 169, 98, 0.28));
    margin-top: 10px;
    height: 1px;
}

.text-center .section-subtitle::after {
    width: 48px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    line-height: 1.14;
    letter-spacing: -0.015em;
}

/* =============================================
   13. MENU ITEM CARDS — REFINED HOVER & DEPTH
   ============================================= */
.menu-highlights .menu-item {
    border: 1px solid rgba(0, 0, 0, 0.038);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.036),
        0 4px 10px rgba(0, 0, 0, 0.04);
}

.menu-highlights .menu-item:hover {
    transform: translateY(-16px) scale(1.012);
    border-color: rgba(61, 90, 61, 0.1);
    box-shadow:
        0 20px 44px rgba(61, 90, 61, 0.16),
        0 44px 88px rgba(61, 90, 61, 0.09);
}

/* =============================================
   14. PARTNER CARDS — ELEVATED GLASS
   ============================================= */
.partner-card {
    border: 1px solid rgba(201, 169, 98, 0.11);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.036),
        0 4px 10px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s var(--ease-luxury), border-color 0.5s var(--ease-luxury);
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.22);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.08),
        0 20px 44px rgba(0, 0, 0, 0.06),
        0 0 44px rgba(201, 169, 98, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* =============================================
   15. FAQ ITEMS — PREMIUM REFINEMENT
   ============================================= */
.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.038);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.028);
    transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.055),
        0 0 0 1px rgba(61, 90, 61, 0.055);
}

.faq-item.active {
    border-color: rgba(61, 90, 61, 0.14);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(61, 90, 61, 0.08);
}

/* =============================================
   16. BUTTONS — REFINED TRANSITIONS & PRESENCE
   ============================================= */
.btn {
    transition:
        transform 0.42s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.42s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.32s ease,
        border-color 0.32s ease,
        color 0.32s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    box-shadow:
        0 2px 8px rgba(61, 90, 61, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-olive-light) 0%, var(--color-olive) 100%);
    transform: translateY(-3px);
    box-shadow:
        0 8px 22px rgba(61, 90, 61, 0.38),
        0 0 44px rgba(61, 90, 61, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary {
    box-shadow:
        0 2px 8px rgba(201, 169, 98, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 22px rgba(201, 169, 98, 0.42),
        0 0 44px rgba(201, 169, 98, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(61, 90, 61, 0.2);
}

.btn-outline-white:hover {
    transform: translateY(-2px);
}

.btn-glass {
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.22),
        var(--glass-inset);
}

.btn-glass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.28),
        var(--glass-inset);
}

/* =============================================
   17. HERO BADGE — REFINED GLASS
   ============================================= */
.hero-badge {
    background: rgba(255, 255, 255, 0.068);
    border: 1px solid rgba(255, 255, 255, 0.135);
    backdrop-filter: blur(26px) saturate(180%);
    -webkit-backdrop-filter: blur(26px) saturate(180%);
    box-shadow:
        var(--glass-inset),
        0 4px 18px rgba(0, 0, 0, 0.18);
    letter-spacing: 3px;
    font-weight: 500;
}

/* =============================================
   18. ABOUT BADGE — FLOATING GOLD CIRCLE
   ============================================= */
.about-badge {
    position: absolute;
    top: -22px;
    left: -22px;
    width: 112px;
    height: 112px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 28px rgba(201, 169, 98, 0.44),
        0 0 60px rgba(201, 169, 98, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    animation: badgeFloat 4.5s ease-in-out infinite;
    z-index: 4;
    color: var(--color-black);
}

/* =============================================
   19. RESERVATION FORM — PREMIUM GLASS
   ============================================= */
.reservation-form {
    background: rgba(245, 240, 232, 0.62);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(201, 169, 98, 0.12);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 8px 28px rgba(0, 0, 0, 0.07),
        0 18px 44px rgba(0, 0, 0, 0.06);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(61, 90, 61, 0.55);
    box-shadow:
        0 0 0 3px rgba(61, 90, 61, 0.08),
        0 2px 8px rgba(61, 90, 61, 0.1);
}

/* =============================================
   20. BOOK DIRECT STRIP — LIVING ANIMATED GRADIENT
   ============================================= */
.book-direct-strip {
    background: linear-gradient(135deg,
        rgba(61, 90, 61, 0.96) 0%,
        rgba(77, 122, 77, 0.98) 35%,
        rgba(42, 74, 42, 0.97) 65%,
        rgba(61, 90, 61, 0.96) 100%);
    background-size: 250% auto;
    animation: stripGradientShift 7s linear infinite;
    position: relative;
    overflow: hidden;
}

.book-direct-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    animation: stripSweep 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes stripGradientShift {
    0%   { background-position: 0%   center; }
    100% { background-position: 250% center; }
}

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

/* =============================================
   21. LOCATION MAP — ENHANCED FRAME
   ============================================= */
.location-map {
    border: 1px solid rgba(0, 0, 0, 0.055);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.06),
        0 18px 38px rgba(0, 0, 0, 0.08);
}

.location-map:hover {
    transform: scale(1.012);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.1),
        0 28px 56px rgba(0, 0, 0, 0.1);
}

/* =============================================
   22. BACK TO TOP — PREMIUM GLASS BUTTON
   ============================================= */
.back-to-top {
    background: rgba(250, 248, 245, 0.92) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(201, 169, 98, 0.18) !important;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.back-to-top:hover {
    background: rgba(255, 255, 255, 0.96) !important;
    transform: translateY(-5px) !important;
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.12),
        0 0 28px rgba(201, 169, 98, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* =============================================
   23. PAGE HEADER (sub-pages) — RICHER ATMOSPHERE
   ============================================= */
.page-header {
    position: relative;
}

/* Extra ambient orb layer for page headers */
.page-header .hero-floating .floating-element:nth-child(1) {
    animation-duration: 18s;
    filter: blur(62px);
}

.page-header .hero-floating .floating-element:nth-child(2) {
    animation-duration: 22s;
    animation-delay: -7s;
    filter: blur(56px);
}

/* =============================================
   24. SOCIAL LINKS — GLASS TOUCH
   ============================================= */
.footer-social a {
    background: rgba(255, 255, 255, 0.048);
    border: 1px solid rgba(255, 255, 255, 0.068);
    border-radius: var(--radius-lg);
    color: rgba(255, 255, 255, 0.62);
    transition: all 0.4s var(--ease-luxury);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--color-cream);
    transform: translateY(-3px);
}

/* =============================================
   25. UTILITY — PREMIUM GLASS CLASSES
   ============================================= */
/* Light glass — for elements on dark backgrounds */
.glass {
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-inset), 0 8px 28px rgba(0, 0, 0, 0.16);
}

/* Gold-tinted glass */
.glass-gold {
    background: rgba(201, 169, 98, 0.055);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border-gold);
    box-shadow: var(--glass-inset-gold);
}

/* =============================================
   26. SCROLL PROGRESS — 2px THINNER, MORE PREMIUM
   ============================================= */
.scroll-progress {
    height: 2px !important;
    background: linear-gradient(90deg,
        var(--color-olive),
        var(--color-gold),
        var(--color-olive)) !important;
    background-size: 200% auto !important;
    animation: scrollProgressGlow 2s linear infinite !important;
    transform-origin: left !important;
}

@keyframes scrollProgressGlow {
    0%   { background-position: 0%   center; }
    100% { background-position: 200% center; }
}

/* =============================================
   27. WHATSAPP FLOAT — ELEVATED GLOW
   ============================================= */
.whatsapp-float {
    box-shadow:
        0 4px 18px rgba(37, 211, 102, 0.42),
        0 0 50px rgba(37, 211, 102, 0.14) !important;
}

.whatsapp-float:hover {
    box-shadow:
        0 8px 28px rgba(37, 211, 102, 0.55),
        0 0 70px rgba(37, 211, 102, 0.2) !important;
}

/* =============================================
   28. NAV LINK — MORE REFINED HOVER
   ============================================= */
.nav-link {
    transition: color 0.4s var(--ease-luxury), text-shadow 0.4s var(--ease-luxury);
}

.nav-link:hover {
    text-shadow: 0 0 24px rgba(201, 169, 98, 0.55);
}

.header.scrolled .nav-link:hover {
    text-shadow: none;
    color: var(--color-olive);
}

/* =============================================
   29. SPACING & ALIGNMENT FIXES
   ============================================= */

/* --- Language selector dropdown: consistent on all pages --- */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Toggle button */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: var(--radius-lg);
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    color: inherit;
    transition: background 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.lang-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
}

.lang-selector.open .lang-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel — JS overrides position to fixed when open */
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    min-width: 180px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.97);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 9999;
    pointer-events: none;
}

.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-dropdown-header {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    padding: 4px 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 6px;
}

.lang-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

/* Language option buttons inside dropdown */
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    font-size: 0.71rem;
    font-weight: 600;
    border-radius: 8px;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    width: 100%;
    text-align: left;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
}

.lang-btn.active {
    background: rgba(61, 90, 61, 0.3);
    border-color: rgba(61, 90, 61, 0.5);
    color: #fff;
}

.lang-flag {
    font-size: 1em;
}

/* ≤1024px: vertically centre lang-selector to match the hamburger button */
@media (max-width: 1024px) {
    .lang-selector {
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
}

/* ≤768px: compact toggle */
@media (max-width: 768px) {
    .lang-toggle {
        padding: 6px 10px !important;
        font-size: 0.68rem !important;
    }
}

/* --- Flex containers missing align-items: audit fixes --- */
.about-buttons {
    align-items: center;
    flex-wrap: wrap;
}

.cta-buttons {
    align-items: center;
    flex-wrap: wrap;
}

.gallery-filters {
    align-items: center;
    flex-wrap: wrap;
}

/* Uniform button height for white/outline-white variants */
.btn-white,
.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    box-sizing: border-box;
}

/* --- About badge: reposition inside container bounds, fix text fit --- */
.about-badge {
    top: 16px !important;
    left: 16px !important;
    width: 108px !important;
    height: 108px !important;
    font-size: 0;           /* reset inherited font size */
    padding: 10px 6px;
    text-align: center;
}

.about-badge .badge-number {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-black);
    letter-spacing: -0.02em;
}

.about-badge .badge-text {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.75);
    margin-top: 2px;
    max-width: 80px;
    word-break: break-word;
    hyphens: none;
}

/* Parent must not clip the badge */
.about-images {
    overflow: visible !important;
}

/* --- About action buttons: equal height, vertically centered --- */
.about-content .btn,
.about-content .btn-primary,
.about-content .btn-outline {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 14px;
    padding-bottom: 14px;
    vertical-align: middle;
    box-sizing: border-box;
}

/* Container: align children to center baseline */
.about-content .about-cta,
.about-content .flex,
.about-content [class*="btn-group"],
.about-content > div:last-child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* --- Hero buttons: preserve original sizing, just center properly --- */
.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

/* hero-scroll: center via flexbox (not transform) so JS parallax doesn't break alignment */
.hero-scroll {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 20 !important;
    /* transform-based centering removed — JS overwrites it with translateY */
}

/* Ensure hero-content leaves room for the scroll indicator below */
.hero-content {
    padding-bottom: 100px;
}

/* --- Room price badge: keep inside card image, no overflow --- */
.room-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    margin: 0;
    z-index: 2;
}

/* =============================================
   30. MOBILE — DISABLE HEAVY EFFECTS
   ============================================= */
@media (max-width: 768px) {
    body::before {
        display: none;
    }

    .services::after,
    .testimonials::after {
        display: none;
    }

    body {
        animation: none;
        background-image:
            radial-gradient(ellipse 160% 110% at 0% 0%,   rgba(61, 90, 61, 0.11) 0%, transparent 60%),
            radial-gradient(ellipse 160% 110% at 100% 100%, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
    }

    .floating-element {
        filter: blur(40px) !important;
    }
}

/* =============================================
   30. REDUCED MOTION — ACCESSIBILITY FIRST
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    body {
        animation: none !important;
        background-image:
            radial-gradient(ellipse 140% 100% at 0% 0%,    rgba(61, 90, 61, 0.1) 0%, transparent 55%),
            radial-gradient(ellipse 120% 110% at 100% 100%, rgba(201, 169, 98, 0.08) 0%, transparent 55%);
    }

    .floating-element,
    .rooms-bg,
    .footer::before {
        animation: none !important;
    }

    body::before {
        display: none;
    }
}
