/* =============================================
   Wild Olive Trattoria & Guest House
   ULTRA PREMIUM DESIGN SYSTEM v7.9.0
   Inspired by Active Theory, Locomotive, Resn

   v7.9.0 - Complete orthographic optimization (35+ Spanish accents fixed)
   v7.8.0 - Added floating orbs to all pages (page-header), consistent design
   v7.7.0 - Enhanced floating orbs (faster, more visible), fixed activity/tip/policy cards design
   v7.6.0 - Restored WhatsApp button animation with movement
   v7.5.0 - Fixed section header layout with !important (subtitle above title)
   v7.4.0 - Fixed section header layout (subtitle above title)
   v7.3.0 - Professional animations (shadow-only, no layout shift)
   ============================================= */

/* =============================================
   1. CSS Variables & Design Tokens
   ============================================= */
:root {
    /* Premium Color Palette - Negro Ébano Base */
    --color-black: #0a0a0a;
    --color-ebony: #121212;
    --color-charcoal: #1a1a1a;
    --color-graphite: #2a2a2a;
    --color-dark-gray: #333333;

    /* Crema Texturizado */
    --color-cream: #f5f0e8;
    --color-cream-light: #faf8f5;
    --color-cream-dark: #e8e0d5;
    --color-cream-muted: rgba(245, 240, 232, 0.8);

    /* Verde Oliva Profundo */
    --color-olive: #3d5a3d;
    --color-olive-deep: #2a4a2a;
    --color-olive-light: #4d7a4d;
    --color-olive-glow: rgba(61, 90, 61, 0.4);

    /* Vino Tinto */
    --color-wine: #6b2d3a;
    --color-wine-light: #8b3d4a;
    --color-wine-dark: #5a1d2a;
    --color-wine-glow: rgba(107, 45, 58, 0.4);

    /* Dorado Accent */
    --color-gold: #c9a962;
    --color-gold-light: #e0c78a;
    --color-gold-dark: #a08942;
    --color-gold-glow: rgba(201, 169, 98, 0.4);

    /* Legacy Colors */
    --color-primary: var(--color-olive);
    --color-primary-dark: var(--color-olive-deep);
    --color-primary-light: var(--color-olive-light);
    --color-primary-rgb: 61, 90, 61;
    --color-secondary: var(--color-gold);
    --color-accent: #e07b54;
    --color-terracotta: #c4703f;

    /* Neutrals */
    --color-white: #ffffff;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;

    /* Social Colors */
    --color-whatsapp: #25d366;
    --color-facebook: #1877f2;
    --color-instagram: #e4405f;
    --color-tiktok: #000000;
    --color-tripadvisor: #34e0a1;
    --color-google: #ea4335;

    /* Premium Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Fluid Font Sizes */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
    --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --text-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-xl: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
    --text-2xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-3xl: clamp(1.5rem, 1.25rem + 1.25vw, 1.875rem);
    --text-4xl: clamp(1.75rem, 1.5rem + 1.5vw, 2.25rem);
    --text-5xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-6xl: clamp(2.5rem, 2rem + 3vw, 4rem);
    --text-7xl: clamp(3rem, 2.5rem + 4vw, 5rem);
    --text-8xl: clamp(4rem, 3rem + 5vw, 7rem);

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;

    /* Premium Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-glow-olive: 0 0 40px rgba(61, 90, 61, 0.4);
    --shadow-glow-gold: 0 0 40px rgba(201, 169, 98, 0.3);
    --shadow-glow-wine: 0 0 40px rgba(107, 45, 58, 0.3);

    /* ========== PREMIUM EASING CURVES ========== */
    /* Active Theory Style - Ultra Smooth */
    --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --ease-expo-out: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-circ-out: cubic-bezier(0.075, 0.82, 0.165, 1);
    --ease-back-out: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Transitions */
    --transition-fast: 150ms var(--ease-smooth);
    --transition-base: 300ms var(--ease-smooth);
    --transition-slow: 500ms var(--ease-luxury);
    --transition-slower: 700ms var(--ease-luxury);
    --transition-slowest: 1000ms var(--ease-expo-out);

    /* ========== GLASSMORPHISM PRO ========== */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-bg-light: rgba(255, 255, 255, 0.05);
    --glass-bg-medium: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-light: rgba(255, 255, 255, 0.1);
    --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    --glass-blur: 20px;
    --glass-blur-heavy: 40px;

    /* Dark Glass */
    --glass-dark-bg: rgba(10, 10, 10, 0.7);
    --glass-dark-border: rgba(255, 255, 255, 0.05);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    --z-max: 9999;
}

/* =============================================
   2. Reset & Base Styles
   ============================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-gray-700);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Living animated background */
    background-image:
        radial-gradient(ellipse 100% 100% at 0% 0%, rgba(61, 90, 61, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 100% 100% at 100% 100%, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(107, 45, 58, 0.04) 0%, transparent 60%);
    background-attachment: fixed;
    animation: bodyBgAnimate 20s ease-in-out infinite;
}

@keyframes bodyBgAnimate {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    25% {
        background-position: 10% 10%, 90% 90%, 60% 40%;
    }
    50% {
        background-position: 5% 15%, 95% 85%, 40% 60%;
    }
    75% {
        background-position: 15% 5%, 85% 95%, 55% 45%;
    }
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

:focus-visible {
    outline: 2px solid var(--color-olive);
    outline-offset: 2px;
}

::selection {
    background-color: var(--color-olive);
    color: var(--color-white);
}

/* =============================================
   3. Utilities
   ============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-sm { max-width: 800px; }
.container-lg { max-width: 1400px; }
.container-xl { max-width: 1600px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--color-white); }
.text-cream { color: var(--color-cream); }
.text-primary { color: var(--color-olive); }
.text-secondary { color: var(--color-gold); }

.bg-white { background-color: var(--color-white); }
.bg-cream { background-color: var(--color-cream); }
.bg-primary { background-color: var(--color-olive); }
.bg-dark { background-color: var(--color-black); }

.mt-2 { margin-top: var(--space-4); }
.mt-3 { margin-top: var(--space-6); }
.mt-4 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-4); }
.mb-3 { margin-bottom: var(--space-6); }
.mb-4 { margin-bottom: var(--space-8); }

.font-serif { font-family: var(--font-heading); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================
   4. Premium Preloader with Morphing Animation
   ============================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-max);
    transition: opacity 0.8s var(--ease-expo-out), visibility 0.8s var(--ease-expo-out);
}

#preloader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: preloaderGlow 2s var(--ease-luxury) infinite;
}

@keyframes preloaderGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loader-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: loaderFloat 2s var(--ease-luxury) infinite;
}

@keyframes loaderFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(201, 169, 98, 0.3));
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(201, 169, 98, 0.6));
    }
}

/* =============================================
   5. Premium Buttons with Magnetic Effect
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    transition: all 0.5s var(--ease-luxury);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Shine Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s var(--ease-luxury);
}

.btn:hover::before {
    left: 100%;
}

/* Glow Effect */
.btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s var(--ease-luxury);
}

.btn:hover::after {
    opacity: 0.4;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    color: var(--color-white);
    border-color: var(--color-olive);
    box-shadow: 0 4px 15px rgba(61, 90, 61, 0.3);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-olive);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-glow-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-olive);
    border-color: var(--color-olive);
}

.btn-outline:hover {
    background-color: var(--color-olive);
    color: var(--color-white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-olive);
    border-color: var(--color-white);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-olive);
    border-color: var(--color-white);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background-color: var(--color-cream);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #1da851 100%);
    color: var(--color-white);
    border-color: var(--color-whatsapp);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--color-white);
    border: none;
}

.btn-instagram:hover {
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.btn-google {
    background: linear-gradient(135deg, var(--color-google) 0%, #c5392f 100%);
    color: var(--color-white);
    border-color: var(--color-google);
}

.btn-google:hover {
    box-shadow: 0 8px 30px rgba(234, 67, 53, 0.4);
}

.btn-tripadvisor {
    background: linear-gradient(135deg, var(--color-tripadvisor) 0%, #2dc78f 100%);
    color: var(--color-black);
    border-color: var(--color-tripadvisor);
}

.btn-tripadvisor:hover {
    box-shadow: 0 8px 30px rgba(52, 224, 161, 0.4);
}

/* =============================================
   6. Premium Header with Glassmorphism
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all 0.5s var(--ease-luxury);
    padding: var(--space-4) 0;
}

/* Gradient overlay for non-scrolled state */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        transparent 100%);
    opacity: 1;
    transition: opacity 0.5s var(--ease-luxury);
    pointer-events: none;
    z-index: -1;
}

.header.scrolled::before {
    opacity: 0;
}

/* Glassmorphism on scroll */
.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: var(--space-2) 0;
}

/* Sub-pixel border effect */
.header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(201, 169, 98, 0.3),
        transparent);
}

.header.scrolled .nav-link {
    color: var(--color-gray-700);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-olive);
}

.header.scrolled .logo img {
    filter: none;
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::before,
.header.scrolled .hamburger::after {
    background-color: var(--color-gray-700);
}

.header.scrolled .lang-btn {
    color: var(--color-gray-700);
    border-color: var(--color-gray-300);
}

.header.scrolled .lang-btn.active,
.header.scrolled .lang-btn:hover {
    background-color: var(--color-olive);
    color: var(--color-white);
    border-color: var(--color-olive);
}

.navbar {
    padding: var(--space-1) 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    position: relative;
}

.logo img {
    height: 55px;
    width: auto;
    transition: all 0.5s var(--ease-luxury);
    filter: brightness(0) invert(1);
}

.header.scrolled .logo img {
    height: 45px;
    filter: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    color: var(--color-white);
    font-weight: 500;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: var(--space-2) var(--space-3);
    position: relative;
    transition: all 0.4s var(--ease-luxury);
}

/* Underline animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: all 0.4s var(--ease-luxury);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Glow effect on hover */
.nav-link:hover {
    text-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.nav-cta {
    margin-left: var(--space-4);
}

.nav-cta .btn {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-xs);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: var(--space-2);
    z-index: 10000;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background: transparent;
    border: none;
    position: relative;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.4s var(--ease-luxury);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.4s var(--ease-luxury);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: var(--space-1);
    margin-left: var(--space-4);
}

.lang-btn {
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-luxury);
    background: transparent;
    cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--color-white);
    color: var(--color-olive);
    border-color: var(--color-white);
    transform: scale(1.05);
}

/* =============================================
   7. PREMIUM HERO - Active Theory Style
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-black);
    padding-top: 80px;
}

/* Multi-layer Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Radial color overlays */
        radial-gradient(ellipse at 20% 30%, rgba(61, 90, 61, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(107, 45, 58, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 169, 98, 0.15) 0%, transparent 60%),
        /* Base gradient */
        linear-gradient(135deg, rgba(10, 10, 10, 0.97) 0%, rgba(26, 26, 26, 0.95) 100%);
    background-size: cover;
}

/* Animated Noise Texture */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
    animation: noiseMove 0.5s steps(10) infinite;
}

@keyframes noiseMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

/* Animated Grid Lines */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    pointer-events: none;
    animation: gridPulse 4s var(--ease-luxury) infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Floating Orbs - Active Theory Style - ULTRA VISIBLE & FASTER */
.hero-floating {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.floating-element {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(20px);
    animation: floatOrb 4s ease-in-out infinite;
    will-change: transform;
    opacity: 1;
}

.floating-element:nth-child(1) {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(61, 90, 61, 1) 0%, rgba(61, 90, 61, 0.7) 20%, rgba(61, 90, 61, 0.4) 40%, transparent 60%);
    top: -25%;
    left: -25%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.floating-element:nth-child(2) {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201, 169, 98, 1) 0%, rgba(201, 169, 98, 0.7) 20%, rgba(201, 169, 98, 0.4) 40%, transparent 60%);
    top: 15%;
    right: -20%;
    animation-delay: -1s;
    animation-duration: 6s;
}

.floating-element:nth-child(3) {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(107, 45, 58, 1) 0%, rgba(107, 45, 58, 0.65) 20%, rgba(107, 45, 58, 0.35) 40%, transparent 60%);
    bottom: -20%;
    left: 0%;
    animation-delay: -2s;
    animation-duration: 5.5s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.95;
    }
    25% {
        transform: translate(180px, -120px) scale(1.4);
        opacity: 1;
    }
    50% {
        transform: translate(-120px, 150px) scale(0.7);
        opacity: 0.8;
    }
    75% {
        transform: translate(120px, 80px) scale(1.3);
        opacity: 1;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-cream);
    padding: var(--space-4);
    padding-top: 80px;
    max-width: 1000px;
}

/* Badge with Glassmorphism */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    margin-bottom: var(--space-6);
    border: 1px solid var(--glass-border-light);
    animation: badgeReveal 1s var(--ease-expo-out) forwards;
    opacity: 0;
    transform: translateY(-20px);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--color-gold);
    animation: starPulse 2s var(--ease-luxury) infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero-subtitle {
    display: block;
    font-size: var(--text-base);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    color: rgba(245, 240, 232, 0.5);
    animation: textReveal 1s var(--ease-expo-out) forwards 0.1s;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-8xl);
    font-weight: 400;
    margin-bottom: var(--space-4);
    line-height: 0.95;
    letter-spacing: -0.03em;
    animation: titleReveal 1.2s var(--ease-expo-out) forwards 0.2s;
    opacity: 0;
    transform: translateY(40px);
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-gold-light) 50%, var(--color-cream) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1.2s var(--ease-expo-out) forwards 0.2s, shimmer 3s linear infinite 1.5s;
}

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

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

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

.hero-tagline {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
    animation: textReveal 1s var(--ease-expo-out) forwards 0.4s;
    opacity: 0;
    transform: translateY(20px);
}

.hero-description {
    font-size: var(--text-lg);
    font-weight: 300;
    margin-bottom: var(--space-8);
    animation: textReveal 1s var(--ease-expo-out) forwards 0.5s;
    opacity: 0;
    transform: translateY(20px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    animation: textReveal 1s var(--ease-expo-out) forwards 0.6s;
    opacity: 0;
    transform: translateY(20px);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1s var(--ease-expo-out) forwards 1.2s;
    opacity: 0;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(245, 240, 232, 0.4);
    font-size: var(--text-xs);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.5s var(--ease-luxury);
    gap: var(--space-3);
}

.hero-scroll a:hover {
    color: var(--color-gold);
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll .scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: scrollLine 2s var(--ease-luxury) infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    100% { top: 100%; }
}

.hero-scroll i {
    font-size: 1rem;
    animation: scrollBounce 2s var(--ease-luxury) infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

@keyframes fadeInUp {
    to { opacity: 1; }
}

/* =============================================
   8. Section Styles
   ============================================= */
.section {
    padding: var(--space-20) 0;
    position: relative;
}

.section-header {
    margin-bottom: var(--space-12);
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
}

.section-header.text-center {
    align-items: center !important;
    text-align: center;
}

.section-subtitle {
    display: block !important;
    width: auto;
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
    position: relative;
}

/* Decorative line after subtitle */
.section-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    margin-top: var(--space-2);
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.text-white .section-title,
.text-cream .section-title {
    color: var(--color-cream);
}

/* =============================================
   9. Services Section with 3D Cards
   ============================================= */
.services {
    padding: var(--space-24) 0;
    background: var(--color-cream);
    position: relative;
}

/* Subtle pattern overlay */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 1px 1px, rgba(61, 90, 61, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.6s var(--ease-luxury);
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-luxury);
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

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

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-6);
    opacity: 0;
    transition: opacity 0.5s var(--ease-luxury);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: var(--space-6);
    position: relative;
    z-index: 2;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    font-size: 1.75rem;
    margin-bottom: var(--space-4);
    margin-top: calc(-1 * var(--space-12));
    position: relative;
    z-index: 3;
    box-shadow: var(--shadow-glow-olive);
    transition: all 0.5s var(--ease-luxury);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
}

.service-content p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    transition: all 0.3s var(--ease-luxury);
}

.service-features li:hover {
    color: var(--color-olive);
    transform: translateX(4px);
}

.service-features i {
    color: var(--color-gold);
    font-size: 0.75rem;
}

/* =============================================
   10. About Section with Parallax Feel
   ============================================= */
.about {
    padding: var(--space-24) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Decorative element */
.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s var(--ease-luxury);
}

.about-img-main:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--color-white);
    transform: perspective(1000px) rotateY(5deg);
    transition: transform 0.6s var(--ease-luxury);
}

.about-img-secondary:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.about-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-glow-gold);
    animation: badgeFloat 3s var(--ease-luxury) infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(201, 169, 98, 0.5), 0 0 20px rgba(201, 169, 98, 0.3);
    }
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content .section-subtitle {
    display: block;
    margin-bottom: var(--space-4);
}

.about-content .section-title {
    margin-bottom: var(--space-6);
}

.about-text {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.9;
}

.about-text strong {
    color: var(--color-olive);
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin: var(--space-8) 0;
    padding: var(--space-6) 0;
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.stat {
    text-align: center;
    transition: all 0.4s var(--ease-luxury);
}

.stat:hover {
    transform: scale(1.05);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-olive);
    line-height: 1;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* =============================================
   11. Menu Highlights with Hover Cards
   ============================================= */
.menu-highlights {
    padding: var(--space-24) 0;
    background: var(--color-cream);
    position: relative;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.menu-highlights .menu-item {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: all 0.6s var(--ease-luxury);
    cursor: pointer;
}

.menu-highlights .menu-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.9) 0%, rgba(42, 74, 42, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-luxury);
    z-index: 2;
}

.menu-highlights .menu-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-glow-olive);
}

.menu-highlights .menu-item:hover::before {
    opacity: 1;
}

.menu-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.menu-highlights .menu-item:hover .menu-image img {
    transform: scale(1.15);
}

.menu-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: var(--color-wine);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    z-index: 3;
}

.menu-badge.new {
    background: var(--color-gold);
    color: var(--color-black);
}

.menu-info {
    padding: var(--space-5);
    text-align: center;
    position: relative;
    z-index: 3;
    transition: all 0.5s var(--ease-luxury);
}

.menu-highlights .menu-item:hover .menu-info {
    color: var(--color-cream);
}

.menu-info h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-2);
    transition: color 0.5s var(--ease-luxury);
}

.menu-highlights .menu-item:hover .menu-info h4 {
    color: var(--color-cream);
}

.menu-info p {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    transition: color 0.5s var(--ease-luxury);
}

.menu-highlights .menu-item:hover .menu-info p {
    color: rgba(245, 240, 232, 0.7);
}

/* =============================================
   12. Rooms Preview - Dark Glassmorphism
   ============================================= */
.rooms-preview {
    position: relative;
    padding: var(--space-24) 0;
    background: var(--color-black);
    overflow: hidden;
}

/* Animated Background */
.rooms-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(61, 90, 61, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 50%, rgba(107, 45, 58, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    animation: bgShift 15s var(--ease-luxury) infinite alternate;
}

@keyframes bgShift {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-20px, -10px); }
}

.rooms-preview .section-subtitle {
    color: var(--color-gold);
}

.rooms-preview .section-title {
    color: var(--color-cream);
}

.rooms-preview .section-header p {
    color: rgba(245, 240, 232, 0.5);
}

.rooms-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    position: relative;
    z-index: 2;
}

/* Glassmorphism Room Card */
.room-card {
    position: relative;
    background: var(--glass-bg-light);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.6s var(--ease-luxury);
}

/* Shine effect */
.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.8s var(--ease-luxury);
    z-index: 10;
    pointer-events: none;
}

.room-card:hover::before {
    left: 100%;
}

.room-card:hover {
    transform: translateY(-12px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(201, 169, 98, 0.15);
}

.room-card.featured {
    border-color: rgba(201, 169, 98, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.room-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    z-index: 3;
    box-shadow: var(--shadow-glow-gold);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    bottom: var(--space-3);
    right: var(--space-3);
    background: var(--glass-dark-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--glass-border);
}

.room-price .price {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-gold);
}

.room-price .per {
    font-size: var(--text-xs);
    color: rgba(245, 240, 232, 0.5);
}

.room-content {
    padding: var(--space-5);
}

.room-content h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-cream);
    margin-bottom: var(--space-2);
}

.room-content p {
    font-size: var(--text-sm);
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: var(--space-4);
}

.room-amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.room-amenities li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: rgba(245, 240, 232, 0.6);
    transition: all 0.3s var(--ease-luxury);
}

.room-amenities li:hover {
    color: var(--color-gold);
}

.room-amenities i {
    color: var(--color-gold);
    font-size: 0.875rem;
    width: 16px;
}

/* =============================================
   13. Testimonials Section
   ============================================= */
.testimonials {
    padding: var(--space-24) 0;
    background: var(--color-white);
    position: relative;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: var(--space-12);
    left: 10%;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(201, 169, 98, 0.05);
    line-height: 1;
    pointer-events: none;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--color-cream);
    padding: var(--space-6);
    border-radius: var(--radius-2xl);
    transition: all 0.5s var(--ease-luxury);
    border: 1px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--color-gold), var(--color-olive));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s var(--ease-luxury);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
}

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

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial-rating i {
    color: var(--color-gold);
    font-size: 0.875rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--color-gold);
}

.testimonial-author strong {
    display: block;
    color: var(--color-charcoal);
    font-size: var(--text-base);
}

.testimonial-author span {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.testimonial-source {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

.testimonial-source i {
    margin-right: var(--space-1);
}

.testimonials-cta {
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-gray-200);
    position: relative;
    z-index: 1;
}

.testimonials-cta p {
    margin-bottom: var(--space-4);
    color: var(--color-gray-600);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* =============================================
   14. Location Section
   ============================================= */
.location {
    padding: var(--space-24) 0;
    background: var(--color-cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-info .section-subtitle {
    display: block;
    margin-bottom: var(--space-4);
}

.location-info .section-title {
    margin-bottom: var(--space-6);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    transition: all 0.4s var(--ease-luxury);
}

.location-item:hover {
    transform: translateX(8px);
}

.location-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.1) 0%, rgba(107, 45, 58, 0.05) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-olive);
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: all 0.4s var(--ease-luxury);
}

.location-item:hover i {
    background: var(--color-olive);
    color: var(--color-white);
    transform: rotate(5deg);
}

.location-item strong {
    display: block;
    color: var(--color-charcoal);
    margin-bottom: var(--space-1);
}

.location-item p,
.location-item a {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
}

.location-item a:hover {
    color: var(--color-olive);
}

.location-map {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: all 0.5s var(--ease-luxury);
}

.location-map:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.location-map iframe {
    display: block;
}

/* =============================================
   15. Reservation Section
   ============================================= */
.reservation {
    padding: var(--space-24) 0;
    background: var(--color-white);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.reservation-info {
    display: flex;
    flex-direction: column;
}

.reservation-info .section-subtitle {
    display: block;
    margin-bottom: var(--space-4);
}

.reservation-info .section-title {
    margin-bottom: var(--space-4);
}

.reservation-info > p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-6);
}

.reservation-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.benefit {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-luxury);
}

.benefit:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.benefit i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: 1rem;
}

.benefit span {
    color: var(--color-gray-700);
    font-weight: 500;
}

.quick-contact {
    padding: var(--space-6);
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.05) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(61, 90, 61, 0.1);
}

.quick-contact > p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
}

.quick-contact-buttons {
    display: flex;
    gap: var(--space-3);
}

.quick-contact-buttons .btn {
    flex: 1;
}

/* Reservation Form */
.reservation-form {
    background: var(--color-cream);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--color-charcoal);
    transition: all 0.4s var(--ease-luxury);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-olive);
    box-shadow: 0 0 0 4px rgba(61, 90, 61, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.deposit-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-5);
}

.notice-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-content strong {
    display: block;
    color: var(--color-charcoal);
    margin-bottom: var(--space-1);
}

.notice-content p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.form-note {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin-top: var(--space-4);
}

.form-note i {
    color: var(--color-gold);
}

/* =============================================
   15.5. FAQ Section
   ============================================= */
.faq-section {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: var(--shadow-xl);
    border-color: var(--color-olive);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-6) var(--space-8);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-charcoal);
    transition: all 0.3s ease;
    gap: var(--space-4);
}

.faq-question:hover {
    background: var(--color-cream-light);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.faq-question span i:first-child {
    color: var(--color-olive);
    font-size: var(--text-xl);
    min-width: 28px;
}

.faq-icon {
    color: var(--color-gold);
    font-size: var(--text-base);
    transition: transform 0.4s var(--ease-luxury);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-olive);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-8);
    transition: max-height 0.5s ease, padding-top 0.5s ease, padding-bottom 0.5s ease;
    background: var(--color-cream-light);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: var(--space-6) var(--space-8);
}

.faq-answer p {
    color: var(--color-gray-700);
    font-size: var(--text-base);
    line-height: 1.8;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-answer strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

.faq-cta {
    margin-top: var(--space-12);
    padding: var(--space-8);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.faq-cta p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: var(--space-4) var(--space-5);
        font-size: var(--text-base);
    }

    .faq-question span i:first-child {
        font-size: var(--text-lg);
        min-width: 24px;
    }

    .faq-item.active .faq-answer {
        padding: var(--space-4) var(--space-5);
        padding-top: 0;
    }

    .faq-answer p {
        font-size: var(--text-sm);
    }
}

/* =============================================
   16. Social Section
   ============================================= */
.social-section {
    padding: var(--space-24) 0;
    background: var(--color-cream);
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    background: var(--color-white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-gold), var(--color-wine));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-luxury);
}

.social-card:hover::before {
    transform: scaleX(1);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.social-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    object-fit: contain;
    transition: transform 0.5s var(--ease-luxury);
}

.social-card:hover img {
    transform: scale(1.1);
}

.social-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-2);
}

.social-card .handle {
    color: var(--color-gray-500);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 1.125rem;
    transition: all 0.4s var(--ease-luxury);
}

.social-link.facebook { background: var(--color-facebook); }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.tiktok { background: var(--color-black); }

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* =============================================
   17. Footer
   ============================================= */
.footer {
    background: var(--color-charcoal);
    color: var(--color-cream);
    position: relative;
}

/* Decorative top border */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-gold), var(--color-wine), var(--color-gold), var(--color-olive));
}

.footer-top {
    padding: var(--space-16) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-8);
}

.footer-brand {
    padding-right: var(--space-8);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-4);
    filter: brightness(0) invert(1);
    transition: all 0.4s var(--ease-luxury);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand > p {
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.footer-phones {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.phone-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-luxury);
}

.phone-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 98, 0.2);
}

.phone-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    font-size: 1rem;
    flex-shrink: 0;
}

.phone-item.accommodation .phone-icon {
    background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-wine-dark) 100%);
}

.phone-label {
    display: block;
    font-size: var(--text-xs);
    color: rgba(245, 240, 232, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-1);
}

.phone-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-cream);
    margin-bottom: var(--space-1);
    transition: color 0.3s var(--ease-luxury);
}

.phone-number:hover {
    color: var(--color-gold);
}

.whatsapp-link {
    font-size: var(--text-sm);
    color: var(--color-whatsapp);
    transition: all 0.3s var(--ease-luxury);
}

.whatsapp-link:hover {
    text-decoration: underline;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-cream);
    margin-bottom: var(--space-5);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: rgba(245, 240, 232, 0.6);
    font-size: var(--text-sm);
    transition: all 0.3s var(--ease-luxury);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(245, 240, 232, 0.6);
}

.footer-contact li i {
    color: var(--color-gold);
    width: 16px;
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    color: var(--color-cream);
    transition: all 0.4s var(--ease-luxury);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-4px);
}

.footer-bottom {
    padding: var(--space-5) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: rgba(245, 240, 232, 0.5);
}

.footer-credits {
    margin-top: var(--space-2);
}

.footer-credits a {
    color: rgba(245, 240, 232, 0.5);
}

.footer-credits a:hover {
    color: var(--color-gold);
}

/* =============================================
   18. WhatsApp Floating Button
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, #1da851 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    z-index: var(--z-fixed);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.5s var(--ease-luxury);
    animation: whatsappPulse 3s var(--ease-luxury) infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 50px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: var(--shadow-lg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =============================================
   19. Back to Top Button
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: var(--space-6);
    left: var(--space-6);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.125rem;
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.5s var(--ease-luxury);
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-glow-olive);
}

/* =============================================
   20. Lightbox
   ============================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-luxury);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoom 0.5s var(--ease-expo-out);
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--glass-bg-medium);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--color-cream);
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.lightbox-close {
    top: var(--space-6);
    right: var(--space-6);
}

.lightbox-prev {
    left: var(--space-6);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: var(--space-6);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* =============================================
   21. Page Headers
   ============================================= */
.page-header {
    position: relative;
    padding: calc(var(--space-24) + 80px) 0 var(--space-16);
    background: var(--color-black);
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(61, 90, 61, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(107, 45, 58, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    animation: headerBgMove 20s var(--ease-luxury) infinite alternate;
}

@keyframes headerBgMove {
    0% { transform: scale(1); }
    100% { transform: scale(1.1) translateX(-20px); }
}

/* Animated grid */
.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(201, 169, 98, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 98, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-header-large {
    padding: calc(var(--space-24) + 80px) 0 var(--space-20);
}

/* Floating Orbs for Page Headers */
.page-floating {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.page-floating .floating-element {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(25px);
    animation: pageFloatOrb 6s ease-in-out infinite;
    will-change: transform;
}

.page-floating .floating-element:nth-child(1) {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61, 90, 61, 0.9) 0%, rgba(61, 90, 61, 0.5) 25%, rgba(61, 90, 61, 0.2) 50%, transparent 70%);
    top: -40%;
    left: -20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.page-floating .floating-element:nth-child(2) {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.85) 0%, rgba(201, 169, 98, 0.5) 25%, rgba(201, 169, 98, 0.2) 50%, transparent 70%);
    top: 0%;
    right: -25%;
    animation-delay: -1.5s;
    animation-duration: 8s;
}

.page-floating .floating-element:nth-child(3) {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(107, 45, 58, 0.8) 0%, rgba(107, 45, 58, 0.45) 25%, rgba(107, 45, 58, 0.15) 50%, transparent 70%);
    bottom: -30%;
    left: 20%;
    animation-delay: -3s;
    animation-duration: 7.5s;
}

@keyframes pageFloatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.9;
    }
    25% {
        transform: translate(120px, -80px) scale(1.3);
        opacity: 1;
    }
    50% {
        transform: translate(-80px, 100px) scale(0.75);
        opacity: 0.75;
    }
    75% {
        transform: translate(80px, 50px) scale(1.2);
        opacity: 0.95;
    }
}

.page-header .hero-badge {
    animation: none;
    opacity: 1;
    transform: none;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: var(--space-3);
    position: relative;
    animation: titleSlide 1s var(--ease-expo-out);
}

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

.page-header p {
    color: rgba(245, 240, 232, 0.6);
    font-size: var(--text-lg);
    position: relative;
    animation: titleSlide 1s var(--ease-expo-out) 0.1s both;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
    font-size: var(--text-sm);
    position: relative;
    animation: titleSlide 1s var(--ease-expo-out) 0.2s both;
}

.breadcrumb a {
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s var(--ease-luxury);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

.breadcrumb span {
    color: rgba(245, 240, 232, 0.4);
}

/* =============================================
   22. CTA Section
   ============================================= */
.cta-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 60%);
    animation: ctaGlow 10s var(--ease-luxury) infinite alternate;
}

@keyframes ctaGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(20deg); }
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--color-cream);
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: var(--space-6);
}

/* =============================================
   23. Specialty Cards
   ============================================= */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.specialty-card {
    display: flex;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.6s var(--ease-luxury);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.specialty-image {
    position: relative;
    width: 40%;
    min-height: 280px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.specialty-card:hover .specialty-image img {
    transform: scale(1.1);
}

.specialty-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: var(--color-wine);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.specialty-badge.new {
    background: var(--color-gold);
    color: var(--color-black);
}

.specialty-content {
    flex: 1;
    padding: var(--space-6);
}

.specialty-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
}

.specialty-content p {
    color: var(--color-gray-600);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.specialty-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.specialty-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.specialty-features i {
    color: var(--color-gold);
    font-size: 0.75rem;
}

/* =============================================
   24. Feature Cards
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.feature-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    transition: all 0.5s var(--ease-luxury);
    border: 1px solid transparent;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--color-gold), var(--color-olive));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s var(--ease-luxury);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--color-white);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.1) 0%, rgba(107, 45, 58, 0.05) 100%);
    border-radius: var(--radius-full);
    color: var(--color-olive);
    font-size: 1.75rem;
    transition: all 0.5s var(--ease-luxury);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    color: var(--color-white);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* =============================================
   24.5. Activity & Tip Cards - Premium Design
   ============================================= */
.activities-section,
.tips-section {
    padding: var(--space-24) 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.activity-card {
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    transition: all 0.5s var(--ease-luxury);
    border: 1px solid rgba(61, 90, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-gold));
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-luxury);
}

.activity-card:hover::before {
    transform: scaleX(1);
}

.activity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 90, 61, 0.15);
}

.activity-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, #ffffff 0%, rgba(201, 169, 98, 0.05) 100%);
}

.activity-card.featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, var(--color-gold), var(--color-olive), var(--color-gold));
}

.activity-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.activity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: 1.75rem;
    transition: all 0.5s var(--ease-luxury);
}

.activity-card:hover .activity-icon {
    transform: scale(1.1) rotate(5deg);
}

.activity-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
}

.activity-card > p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.activity-details {
    text-align: left;
    padding: var(--space-4);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    margin-top: auto;
}

.activity-details li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.activity-details li:last-child {
    border-bottom: none;
}

.activity-details i {
    color: var(--color-gold);
    width: 20px;
    text-align: center;
}

/* Tip Cards */
.tip-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    transition: all 0.5s var(--ease-luxury);
    border: 1px solid rgba(61, 90, 61, 0.08);
}

.tip-card:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 90, 61, 0.15);
}

.tip-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.1) 0%, rgba(201, 169, 98, 0.1) 100%);
    border-radius: var(--radius-full);
    color: var(--color-olive);
    font-size: 1.5rem;
    transition: all 0.5s var(--ease-luxury);
}

.tip-card:hover .tip-icon {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    color: var(--color-white);
    transform: scale(1.1);
}

.tip-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
}

.tip-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* Huacachina Facts */
.huacachina-facts {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-8);
    padding: var(--space-6) 0;
    border-top: 1px solid var(--color-gray-200);
}

.fact {
    text-align: center;
}

.fact-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-olive);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.fact-label {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Activity & Tip Cards */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .activities-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .huacachina-facts {
        flex-direction: column;
        align-items: center;
        gap: var(--space-4);
    }
}

/* Policy Cards - Hospedaje */
.policies-section {
    padding: var(--space-24) 0;
    background: var(--color-white);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.policy-card {
    text-align: center;
    padding: var(--space-6);
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    transition: all 0.5s var(--ease-luxury);
    border: 1px solid rgba(61, 90, 61, 0.08);
}

.policy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 90, 61, 0.15);
}

.policy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 90, 61, 0.1) 0%, rgba(201, 169, 98, 0.1) 100%);
    border-radius: var(--radius-full);
    color: var(--color-olive);
    font-size: 1.5rem;
    transition: all 0.5s var(--ease-luxury);
}

.policy-card:hover .policy-icon {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    color: var(--color-white);
    transform: scale(1.1);
}

.policy-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-charcoal);
    margin-bottom: var(--space-3);
}

.policy-card ul {
    text-align: left;
}

.policy-card ul li {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-card ul li:last-child {
    border-bottom: none;
}

.policy-card ul li strong {
    color: var(--color-charcoal);
}

@media (max-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .policies-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   25. Restaurant Section Styles
   ============================================= */
.restaurant-about {
    padding: var(--space-24) 0;
    background: var(--color-white);
}

.restaurant-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease-luxury);
}

.highlight:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.highlight i {
    color: var(--color-gold);
    font-size: 1.125rem;
}

.highlight span {
    font-size: var(--text-sm);
    color: var(--color-gray-700);
}

/* =============================================
   26. Gallery Styles
   ============================================= */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.filter-btn {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray-600);
    background: transparent;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-olive);
    color: var(--color-white);
    border-color: var(--color-olive);
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--ease-luxury);
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-luxury);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease-luxury);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--color-white);
    font-size: 1.75rem;
    transform: scale(0.5);
    transition: transform 0.5s var(--ease-luxury);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* =============================================
   27. Contact Page Styles
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    transition: all 0.4s var(--ease-luxury);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    transform: translateX(8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: var(--radius-xl);
    color: var(--color-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-charcoal);
    margin-bottom: var(--space-1);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
}

.contact-info-card a:hover {
    color: var(--color-olive);
}

/* =============================================
   28. Scroll Animations (AOS Alternative)
   ============================================= */
[data-aos] {
    opacity: 0;
    transition: all 0.8s var(--ease-expo-out);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-out"] {
    transform: scale(1.1);
}

[data-aos="flip-up"] {
    transform: perspective(2500px) rotateX(-100deg);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1) rotateX(0);
}

/* Animation Delays */
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }
[data-aos-delay="600"] { transition-delay: 0.6s; }

/* =============================================
   29. Responsive Styles
   ============================================= */

/* Large Desktop */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    /* Logo más pequeño en móvil */
    .logo img {
        height: 50px;
    }

    .header.scrolled .logo img {
        height: 45px;
    }

    .nav-toggle {
        display: flex;
    }

    /* ========================================
       MOBILE MENU - PREMIUM DESIGN
       Beautiful colorful buttons with icons
       ======================================== */

    /* Menu Container - Glassmorphism */
    #navMenu,
    .header #navMenu,
    .header.scrolled #navMenu,
    .nav-menu,
    ul.nav-menu,
    ul#navMenu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        left: auto !important;
        bottom: auto !important;
        width: 300px !important;
        max-width: 90vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        padding: 90px 16px 30px 16px !important;
        margin: 0 !important;
        list-style: none !important;
        transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2), 0 0 80px rgba(61, 90, 61, 0.1) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 9999 !important;
        -webkit-overflow-scrolling: touch !important;
        transform: none !important;
    }

    /* Menu Active State */
    #navMenu.active,
    .header #navMenu.active,
    .header.scrolled #navMenu.active,
    .nav-menu.active,
    ul.nav-menu.active,
    ul#navMenu.active {
        right: 0 !important;
    }

    /* List Items */
    #navMenu > li,
    .header #navMenu > li,
    .nav-menu > li,
    ul.nav-menu > li {
        display: block !important;
        width: 100% !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        list-style: none !important;
        transform: none !important;
        position: static !important;
        float: none !important;
        background: transparent !important;
    }

    /* NAV LINKS - Premium Colorful Design */
    #navMenu > li > a,
    #navMenu > li > a.nav-link,
    #navMenu .nav-link,
    .header #navMenu > li > a,
    .header #navMenu .nav-link,
    .header.scrolled #navMenu > li > a,
    .header.scrolled #navMenu .nav-link,
    .nav-menu > li > a,
    .nav-menu .nav-link,
    ul#navMenu li a,
    ul.nav-menu li a {
        color: #ffffff !important;
        background: linear-gradient(135deg, #3d5a3d 0%, #2a4a2a 100%) !important;
        padding: 18px 20px !important;
        border: none !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        border-radius: 14px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        text-decoration: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
        transform: none !important;
        position: relative !important;
        box-sizing: border-box !important;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
        -webkit-text-fill-color: #ffffff !important;
        background-clip: border-box !important;
        -webkit-background-clip: border-box !important;
        box-shadow: 0 4px 15px rgba(61, 90, 61, 0.3), 0 2px 4px rgba(0,0,0,0.1) !important;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
    }

    /* Different colors for each menu item */
    #navMenu > li:nth-child(1) > a {
        background: linear-gradient(135deg, #3d5a3d 0%, #2d4a2d 100%) !important;
        box-shadow: 0 4px 15px rgba(61, 90, 61, 0.4) !important;
    }
    #navMenu > li:nth-child(2) > a {
        background: linear-gradient(135deg, #c9a962 0%, #b8954d 100%) !important;
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4) !important;
    }
    #navMenu > li:nth-child(3) > a {
        background: linear-gradient(135deg, #6b2d3a 0%, #5a2531 100%) !important;
        box-shadow: 0 4px 15px rgba(107, 45, 58, 0.4) !important;
    }
    #navMenu > li:nth-child(4) > a {
        background: linear-gradient(135deg, #4a7c59 0%, #3d6b4a 100%) !important;
        box-shadow: 0 4px 15px rgba(74, 124, 89, 0.4) !important;
    }
    #navMenu > li:nth-child(5) > a {
        background: linear-gradient(135deg, #d4a574 0%, #c49660 100%) !important;
        box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4) !important;
    }
    #navMenu > li:nth-child(6) > a {
        background: linear-gradient(135deg, #5d7a8c 0%, #4d6a7c 100%) !important;
        box-shadow: 0 4px 15px rgba(93, 122, 140, 0.4) !important;
    }

    /* Hover/Active states */
    #navMenu > li > a:hover,
    #navMenu > li > a.active,
    #navMenu .nav-link:hover,
    #navMenu .nav-link.active,
    .header #navMenu .nav-link:hover,
    .header #navMenu .nav-link.active {
        transform: translateX(5px) scale(1.02) !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25), 0 3px 6px rgba(0,0,0,0.15) !important;
    }

    /* Active state indicator */
    #navMenu > li > a.active::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 4px !important;
        height: 60% !important;
        background: #ffffff !important;
        border-radius: 0 4px 4px 0 !important;
        display: block !important;
    }

    /* Remove pseudo-elements for underline */
    #navMenu .nav-link::after,
    .nav-menu .nav-link::after,
    .nav-link::after {
        display: none !important;
        content: none !important;
        width: 0 !important;
        height: 0 !important;
        background: none !important;
    }

    /* CTA button in menu - Special Gold Style */
    #navMenu > li.nav-cta,
    .nav-menu > li.nav-cta,
    .nav-cta {
        margin: 15px 0 0 0 !important;
        display: block !important;
        width: 100% !important;
    }

    #navMenu .nav-cta .btn,
    .nav-menu .nav-cta .btn,
    .nav-cta .btn,
    #navMenu > li.nav-cta > a {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 18px 20px !important;
        color: #1a1a1a !important;
        -webkit-text-fill-color: #1a1a1a !important;
        background: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%) !important;
        background-size: 200% 200% !important;
        animation: shimmerGold 3s ease-in-out infinite !important;
        border-radius: 14px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        box-shadow: 0 4px 20px rgba(201, 169, 98, 0.5), inset 0 1px 0 rgba(255,255,255,0.3) !important;
        text-shadow: none !important;
    }

    @keyframes shimmerGold {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }

    .lang-selector {
        position: absolute !important;
        top: 24px !important;
        right: 70px !important;
        z-index: 10001 !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .about-images {
        order: -1;
    }

    .about-img-secondary {
        right: 20px;
        bottom: -20px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-slider {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .reservation-wrapper {
        grid-template-columns: 1fr;
    }

    .social-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .specialty-card {
        flex-direction: column;
    }

    .specialty-image {
        width: 100%;
        min-height: 220px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-5xl);
    }

    .section-title {
        font-size: var(--text-4xl);
    }

    .page-header h1 {
        font-size: var(--text-5xl);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .stat {
        padding: var(--space-4);
        background: var(--color-cream);
        border-radius: var(--radius-xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurant-highlights {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: var(--space-4);
        right: var(--space-4);
        width: 60px;
        height: 60px;
    }

    .back-to-top {
        bottom: var(--space-4);
        left: var(--space-4);
        width: 46px;
        height: 46px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-2) var(--space-3);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 var(--space-4);
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-base);
    }

    /* Fix: Ambos botones del mismo tamaño en móvil */
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-outline {
        width: 100%;
        padding: 16px 24px;
        font-size: 0.95rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-buttons {
        flex-direction: column;
    }

    .about-buttons .btn {
        width: 100%;
    }

    .about-badge {
        left: 10px;
        padding: var(--space-3);
    }

    /* Fix: Hero scroll centrado en móvil */
    .hero-scroll {
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Mobile Form Fixes */
@media (max-width: 768px) {
    /* Fix: Input de fecha del mismo tamaño que los demás */
    .form-group input[type="date"],
    .form-group input[type="time"] {
        padding: var(--space-3) var(--space-4);
        height: auto;
        min-height: 48px;
        font-size: var(--text-base);
        -webkit-appearance: none;
        appearance: none;
    }

    /* Asegurar que todos los inputs tengan la misma altura */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        padding: var(--space-3) var(--space-4);
    }

    .form-group select {
        height: 48px;
    }

    /* Fix: Form row en móvil */
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .floating-element,
    .hero::before,
    .hero::after {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --glass-border: rgba(255, 255, 255, 0.4);
    }

    .btn {
        border-width: 2px;
    }

    .nav-link::after {
        height: 3px;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .lightbox,
    #preloader {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* =============================================
   30. PREMIUM EFFECTS (Integrated from premium-effects.css)
   ============================================= */

/* Mobile Overflow Prevention */
/* NOTE: header and nav elements are EXCLUDED to allow mobile menu to work */
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container,
.hero,
.section,
footer,
main,
.hero-content,
.services-grid,
.features-grid,
.specialties-grid,
.rooms-grid,
.gallery-grid,
.testimonials-slider,
.policies-grid,
.activities-grid,
.tips-grid {
    max-width: 100%;
    overflow-x: hidden;
}

/* Header needs overflow visible for mobile menu */
header,
.header,
.navbar,
.nav-container {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

/* Grid and slider overflow */
[class*="grid"]:not(.nav-container),
[class*="slider"]:not(.nav-menu) {
    max-width: 100%;
    overflow-x: hidden;
}

/* Enhanced Glassmorphism */
.glass-ultra {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.glass-deep {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(30px) saturate(150%);
    -webkit-backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.glass-float {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-float:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Living Animations - Shadow & Glow Only (No Movement) */
@keyframes breathe {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        opacity: 0.97;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 10px rgba(201, 169, 98, 0.05);
    }
}

.breathe {
    animation: breathe 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

.float-gentle {
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(61, 90, 61, 0.2), 0 0 40px rgba(61, 90, 61, 0.1); }
    50% { box-shadow: 0 0 30px rgba(61, 90, 61, 0.4), 0 0 60px rgba(61, 90, 61, 0.2); }
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Hero Breathing Effect - Opacity only, no movement */
.hero-bg-image {
    animation: heroBreathing 8s ease-in-out infinite;
}

@keyframes heroBreathing {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.97; }
}

.hero-content {
    /* No animation to prevent layout shift */
}

/* Hero badge shine effect */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: badgeShine 4s infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Scroll-Triggered Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delay */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: box-shadow 0.4s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(61, 90, 61, 0.3), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.img-zoom:hover img {
    transform: scale(1.1);
}

/* Text Effects */
.text-gradient {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-gold) 50%, var(--color-wine) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-shimmer {
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-cream-dark);
    border-top-color: var(--color-olive);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

/* Animated Backgrounds */
.particles-bg {
    position: relative;
    overflow: hidden;
}

.particles-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(61, 90, 61, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(107, 45, 58, 0.05) 0%, transparent 30%);
    animation: particleMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, -2%) rotate(1deg); }
    50% { transform: translate(-1%, 1%) rotate(-1deg); }
    75% { transform: translate(1%, 2%) rotate(0.5deg); }
}

.bg-gradient-animated {
    background: linear-gradient(-45deg, var(--color-cream), var(--color-cream-light), rgba(61, 90, 61, 0.05), rgba(201, 169, 98, 0.05));
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Aurora Background Effect */
.aurora-bg {
    position: relative;
    overflow: hidden;
}

.aurora-bg::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(61, 90, 61, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(107, 45, 58, 0.1) 0%, transparent 50%);
    animation: auroraMove 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auroraMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, -5%) scale(1.05); }
    66% { transform: translate(-5%, 5%) scale(0.95); }
}

/* Cursor Effects (Desktop only) */
@media (hover: hover) and (pointer: fine) {
    .cursor-glow {
        cursor: none;
    }

    .custom-cursor {
        position: fixed;
        width: 20px;
        height: 20px;
        border: 2px solid var(--color-olive);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: transform 0.15s ease, opacity 0.15s ease;
        mix-blend-mode: difference;
    }

    .custom-cursor.hover {
        transform: scale(2);
        background: rgba(61, 90, 61, 0.1);
    }
}

/* =============================================
   31. MOBILE RESPONSIVE PREMIUM EFFECTS
   ============================================= */
@media (max-width: 1024px) {
    .card-3d:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    /* Reduce animations on mobile for performance */
    .breathe,
    .float-gentle {
        animation: none;
    }

    .aurora-bg::before,
    .particles-bg::before {
        animation: none;
    }

    /* Keep hero breathing effect on mobile but slower */
    .hero-bg-image {
        animation: heroBreathing 12s ease-in-out infinite;
    }

    .hero-content {
        animation: breatheSubtle 12s ease-in-out infinite;
    }

    /* Simplified hover effects */
    .feature-card:hover,
    .specialty-card:hover,
    .room-detail-card:hover {
        transform: translateY(-5px);
    }

    /* Mobile overflow prevention */
    body.no-scroll {
        overflow: hidden;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }

    [data-aos] {
        overflow: hidden;
    }

    .hero-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .room-detail-card,
    .specialty-card,
    .feature-card,
    .policy-card,
    .activity-card,
    .tip-card,
    .testimonial-card {
        max-width: 100%;
        overflow: hidden;
    }
}

/* =============================================
   32. PREMIUM 3D EFFECTS & ADVANCED GLASSMORPHISM
   ============================================= */

/* 3D Card Transform on Hover */
.service-card,
.feature-card,
.specialty-card,
.room-card,
.testimonial-card,
.menu-item,
.social-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover,
.feature-card:hover,
.specialty-card:hover,
.room-card:hover,
.testimonial-card:hover,
.menu-item:hover,
.social-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-2deg);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Premium Service Cards with Glassmorphism */
.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-gold), var(--color-wine));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* Shine Effect on Cards */
.service-card::after,
.feature-card::after,
.specialty-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 20%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 80%
    );
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
}

.service-card:hover::after,
.feature-card:hover::after,
.specialty-card:hover::after {
    top: 100%;
    left: 100%;
}

/* Feature Cards with 3D Depth */
.feature-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid rgba(61, 90, 61, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.feature-card .feature-icon {
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotateY(10deg);
    box-shadow: 0 15px 35px rgba(61, 90, 61, 0.3);
}

/* Premium Room Cards - Dark Glassmorphism */
.room-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.room-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(201, 169, 98, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

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

/* Testimonial Cards with Floating Effect */
.testimonial-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5f0e8 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-family: var(--font-heading);
    color: rgba(201, 169, 98, 0.1);
    line-height: 1;
    pointer-events: none;
}

/* Menu Item Cards with 3D */
.menu-highlights .menu-item {
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.menu-highlights .menu-item:hover {
    transform: translateY(-12px) scale(1.02) rotateX(3deg);
}

/* Social Cards Premium */
.social-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--color-olive) 0%,
        var(--color-gold) 50%,
        var(--color-wine) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-card:hover::before {
    transform: scaleX(1);
}

/* Button 3D Effects */
.btn {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: inherit;
    transform: translateZ(-10px);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn:hover::before {
    opacity: 0.5;
}

.btn:hover {
    transform: translateY(-3px) translateZ(10px);
}

.btn:active {
    transform: translateY(0) translateZ(0);
}

/* Premium Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--color-olive) 0%, #2d4a2d 100%);
    box-shadow:
        0 4px 15px rgba(61, 90, 61, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4a6b4a 0%, var(--color-olive) 100%);
    box-shadow:
        0 8px 25px rgba(61, 90, 61, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Image Hover Effects */
.service-image,
.menu-image,
.room-image,
.specialty-image,
.gallery-item {
    overflow: hidden;
    position: relative;
}

.service-image img,
.menu-image img,
.room-image img,
.specialty-image img,
.gallery-item img {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-image img,
.menu-item:hover .menu-image img,
.room-card:hover .room-image img,
.specialty-card:hover .specialty-image img,
.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.05);
}

/* Section Dividers with Gradient */
.section {
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

/* Animated Underlines for Section Titles */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-olive), var(--color-gold));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-header:hover .section-title::after {
    width: 120px;
}

/* Glow Effects */
.glow-olive {
    box-shadow: 0 0 30px rgba(61, 90, 61, 0.3), 0 0 60px rgba(61, 90, 61, 0.1);
}

.glow-gold {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.3), 0 0 60px rgba(201, 169, 98, 0.1);
}

.glow-wine {
    box-shadow: 0 0 30px rgba(107, 45, 58, 0.3), 0 0 60px rgba(107, 45, 58, 0.1);
}

/* Floating Animation for Badges */
.hero-badge,
.menu-badge,
.room-badge,
.specialty-badge {
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), 0 0 8px rgba(201, 169, 98, 0.2);
    }
}

/* Parallax Layers */
.parallax-layer {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: textRevealUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes textRevealUp {
    to { transform: translateY(0); }
}

/* Staggered reveal for multiple elements */
.text-reveal span:nth-child(1) { animation-delay: 0.1s; }
.text-reveal span:nth-child(2) { animation-delay: 0.2s; }
.text-reveal span:nth-child(3) { animation-delay: 0.3s; }
.text-reveal span:nth-child(4) { animation-delay: 0.4s; }
.text-reveal span:nth-child(5) { animation-delay: 0.5s; }

/* Morphing Background */
.morph-bg {
    position: relative;
    overflow: hidden;
}

.morph-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(61, 90, 61, 0.1) 0%, transparent 50%);
    animation: morphBg 20s ease-in-out infinite;
}

@keyframes morphBg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10%, 10%) rotate(90deg); }
    50% { transform: translate(0, 20%) rotate(180deg); }
    75% { transform: translate(-10%, 10%) rotate(270deg); }
}

/* Premium Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: 5px;
    border: 2px solid var(--color-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

/* Selection Color */
::selection {
    background: rgba(201, 169, 98, 0.3);
    color: var(--color-charcoal);
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* Smooth Page Transitions */
.page-transition {
    animation: pageEnter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

/* =============================================
   33. LIVING BACKGROUNDS & BREATHING ANIMATIONS
   Premium v7.0.0 - Ultra Polish Edition
   ============================================= */

/* ========== LIVING BACKGROUND GRADIENTS ========== */

/* Living Background Container - Add to body */
body {
    position: relative;
}

/* Global Living Background Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(ellipse 80% 80% at 20% 30%, rgba(61, 90, 61, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 80% 70%, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 80% 80% at 50% 90%, rgba(107, 45, 58, 0.1) 0%, transparent 50%);
    animation: globalLivingBg 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes globalLivingBg {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(30px, -20px) scale(1.05);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
        opacity: 1;
    }
    75% {
        transform: translate(20px, 10px) scale(1.02);
        opacity: 0.9;
    }
}

/* Section-specific living effects using ::after to avoid conflicts */
.section.living-section::after,
.services .container::before,
.about .container::before,
.testimonials .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background:
        radial-gradient(circle 400px at 10% 20%, rgba(61, 90, 61, 0.2) 0%, transparent 70%),
        radial-gradient(circle 400px at 90% 80%, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
    animation: sectionLivingBg 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sectionLivingBg {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(5%) scale(1.05);
    }
}

/* Dark Section Living Background - More visible */
.rooms-preview,
.cta-section,
.hero {
    position: relative;
    overflow: hidden;
}

.rooms-preview > .living-orb,
.cta-section > .living-orb,
.hero > .living-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
    pointer-events: none;
}

/* Inject living orbs via CSS - visible animated blobs */
.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 10% !important;
    left: 5% !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(61, 90, 61, 0.4) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    filter: blur(60px) !important;
    animation: orbFloat 15s ease-in-out infinite !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, 20px) scale(1.1);
        opacity: 0.7;
    }
}

/* ========== PASSIVE BREATHING ANIMATIONS ========== */

/* Subtle breathing for cards - shadow pulse only, no movement */
.service-card,
.feature-card,
.specialty-card,
.room-card,
.room-detail-card,
.testimonial-card,
.policy-card,
.activity-card,
.tip-card,
.social-card {
    animation: cardBreathe 5s ease-in-out infinite;
}

/* Contact cards - no animation to avoid grey shadows */
.contact-card {
    animation: none;
}

/* Stagger delays for cards */
.service-card:nth-child(1), .feature-card:nth-child(1), .specialty-card:nth-child(1), .room-card:nth-child(1), .testimonial-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2), .feature-card:nth-child(2), .specialty-card:nth-child(2), .room-card:nth-child(2), .testimonial-card:nth-child(2) { animation-delay: 0.5s; }
.service-card:nth-child(3), .feature-card:nth-child(3), .specialty-card:nth-child(3), .room-card:nth-child(3), .testimonial-card:nth-child(3) { animation-delay: 1s; }
.service-card:nth-child(4), .feature-card:nth-child(4), .specialty-card:nth-child(4), .room-card:nth-child(4) { animation-delay: 1.5s; }

@keyframes cardBreathe {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
}

/* Icon breathing animation - subtle glow only */
.service-icon,
.feature-icon,
.activity-icon,
.tip-icon,
.policy-icon {
    animation: iconBreathe 4s ease-in-out infinite;
}

/* Contact card icons - no animation */
.contact-card-icon {
    animation: none;
    box-shadow: none;
}

@keyframes iconBreathe {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(61, 90, 61, 0.15);
    }
    50% {
        box-shadow: 0 6px 18px rgba(61, 90, 61, 0.25);
    }
}

/* Section titles - subtle glow only, no movement */
.section-title {
    animation: titleGlow 5s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: none;
    }
    50% {
        text-shadow: 0 0 30px rgba(201, 169, 98, 0.2);
    }
}

/* Section subtitle - no animation to prevent layout shift */
.section-subtitle {
    /* Removed animation that caused letter-spacing changes */
}

/* Button pulse - shadow only, no movement */
.btn-primary {
    animation: btnPulse 4s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(61, 90, 61, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(61, 90, 61, 0.45);
    }
}

.btn-whatsapp {
    animation: btnPulseWhatsapp 3s ease-in-out infinite;
}

@keyframes btnPulseWhatsapp {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Secondary button pulse - shadow only */
.btn-secondary {
    animation: btnPulseGold 4s ease-in-out infinite;
}

@keyframes btnPulseGold {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(201, 169, 98, 0.5);
    }
}

/* ========== ENHANCED HOVER EFFECTS ========== */

/* Card hover - smooth lift on interaction only */
.service-card:hover,
.feature-card:hover,
.specialty-card:hover,
.testimonial-card:hover,
.policy-card:hover,
.activity-card:hover,
.tip-card:hover {
    animation: none;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-luxury);
}

/* Icon hover - subtle scale */
.service-icon:hover,
.feature-icon:hover,
.activity-icon:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(61, 90, 61, 0.35);
}

/* Image zoom on card hover */
.service-card:hover img,
.specialty-card:hover img,
.room-card:hover img,
.room-detail-card:hover img,
.gallery-item:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* ========== FLOATING ELEMENTS ========== */

/* WhatsApp floating button - pulse with subtle movement */
.whatsapp-float {
    animation: whatsappFloat 3s ease-in-out infinite;
}

@keyframes whatsappFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.4);
    }
}

/* Back to top button - shadow pulse only */
.back-to-top.visible {
    animation: backToTopPulse 3s ease-in-out infinite;
}

@keyframes backToTopPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(61, 90, 61, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(61, 90, 61, 0.5);
    }
}

/* ========== SECTION SPACING OPTIMIZATIONS ========== */

/* Improved section padding */
.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    z-index: 1;
}

/* Better container padding on mobile */
@media (max-width: 768px) {
    .container {
        padding-left: clamp(1rem, 4vw, 1.5rem);
        padding-right: clamp(1rem, 4vw, 1.5rem);
    }

    .section {
        padding: clamp(3rem, 6vw, 5rem) 0;
    }
}

/* Section header spacing */
.section-header {
    margin-bottom: clamp(2rem, 5vw, 4rem);
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start;
}

.section-header.text-center {
    align-items: center !important;
    text-align: center;
}

/* Grid gaps optimization */
.services-grid,
.features-grid,
.specialties-grid,
.rooms-grid,
.testimonials-slider,
.activities-grid,
.tips-grid,
.policies-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* ========== HERO LIVING EFFECTS ========== */

/* Hero background living effect */
.hero-bg-image {
    animation: heroBgLive 20s ease-in-out infinite;
}

@keyframes heroBgLive {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.05);
    }
}

/* Hero floating orbs enhanced - FASTER AND MORE VISIBLE */
.floating-element {
    animation: floatOrbEnhanced 4s ease-in-out infinite;
}

.floating-element:nth-child(1) { animation-duration: 5s; animation-delay: 0s; }
.floating-element:nth-child(2) { animation-duration: 6s; animation-delay: -1s; }
.floating-element:nth-child(3) { animation-duration: 5.5s; animation-delay: -2s; }

@keyframes floatOrbEnhanced {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.95;
    }
    25% {
        transform: translate(180px, -120px) scale(1.4) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(-120px, 150px) scale(0.7) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translate(120px, 80px) scale(1.3) rotate(270deg);
        opacity: 1;
    }
}

/* ========== TESTIMONIAL SECTION ENHANCEMENTS ========== */

/* Testimonial cards staggered breathing */
.testimonial-card:nth-child(1) { animation-delay: 0s; }
.testimonial-card:nth-child(2) { animation-delay: 0.5s; }
.testimonial-card:nth-child(3) { animation-delay: 1s; }

/* Rating stars shimmer */
.testimonial-rating i {
    animation: starShimmer 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starShimmer {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ========== ROOM CARDS PREMIUM EFFECTS ========== */

/* Room price tag glow */
.room-price {
    animation: priceGlow 3s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(201, 169, 98, 0.4);
    }
}

/* Room featured badge pulse */
.room-badge,
.room-detail-card .room-badge {
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(201, 169, 98, 0.6);
    }
}

/* ========== FORM ELEMENTS POLISH ========== */

/* Input focus breathing glow */
input:focus,
textarea:focus,
select:focus {
    animation: inputFocusGlow 2s ease-in-out infinite;
}

@keyframes inputFocusGlow {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(61, 90, 61, 0.15);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(61, 90, 61, 0.25);
    }
}

/* Submit button enhanced pulse */
button[type="submit"],
.btn-block {
    position: relative;
    overflow: hidden;
}

button[type="submit"]::after,
.btn-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

button[type="submit"]:hover::after,
.btn-block:hover::after {
    width: 300px;
    height: 300px;
}

/* ========== SOCIAL LINKS ENHANCEMENT ========== */

/* Social links breathing */
.social-link,
.footer-social a {
    animation: socialBreathe 4s ease-in-out infinite;
}

.social-link:nth-child(1), .footer-social a:nth-child(1) { animation-delay: 0s; }
.social-link:nth-child(2), .footer-social a:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3), .footer-social a:nth-child(3) { animation-delay: 0.4s; }

@keyframes socialBreathe {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), 0 0 10px rgba(201, 169, 98, 0.15);
    }
}

/* Social link hover */
.social-link:hover,
.footer-social a:hover {
    animation: none;
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ========== NAVBAR LOGO BREATHING ========== */

.logo img {
    animation: logoBreathe 5s ease-in-out infinite;
}

@keyframes logoBreathe {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    50% {
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 8px rgba(201, 169, 98, 0.15));
    }
}

/* ========== GALLERY ITEMS ENHANCEMENT ========== */

.gallery-item {
    animation: galleryBreathe 4s ease-in-out infinite !important;
    transition: all 0.4s ease !important;
}

.gallery-item:nth-child(1) { animation-delay: 0s !important; }
.gallery-item:nth-child(2) { animation-delay: 0.3s !important; }
.gallery-item:nth-child(3) { animation-delay: 0.6s !important; }
.gallery-item:nth-child(4) { animation-delay: 0.9s !important; }
.gallery-item:nth-child(5) { animation-delay: 1.2s !important; }
.gallery-item:nth-child(6) { animation-delay: 1.5s !important; }

@keyframes galleryBreathe {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 0 15px rgba(201, 169, 98, 0.12);
    }
}

.gallery-item:hover {
    animation: none !important;
    transform: scale(1.08) rotate(1deg) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 30px rgba(201, 169, 98, 0.2) !important;
    z-index: 10 !important;
}

/* Gallery overlay animation */
.gallery-item .gallery-overlay {
    transition: all 0.4s ease !important;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(61, 90, 61, 0.8) !important;
}

/* ========== FOOTER POLISH ========== */

.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(61, 90, 61, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    animation: footerGradient 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes footerGradient {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.8;
    }
    50% {
        transform: translate(3%, -3%);
        opacity: 1;
    }
}

/* Footer logo breathing */
.footer-logo {
    animation: footerLogoBreathe 4s ease-in-out infinite;
}

@keyframes footerLogoBreathe {
    0%, 100% {
        opacity: 0.9;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    }
}

/* =============================================
   REVIEW BUTTONS SECTIONS
   ============================================= */

.testimonials-cta .review-section-label {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonials-cta .review-section-label.restaurant {
    color: var(--color-olive);
}

.testimonials-cta .review-section-label.accommodation {
    color: var(--color-wine);
}

.testimonials-cta .cta-buttons {
    margin-bottom: 20px;
}

.testimonials-cta .cta-buttons:last-child {
    margin-bottom: 0;
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */

/* Reduce animations on preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile: Reduce complexity while keeping subtle effects */
@media (max-width: 768px) {
    /* Simplify breathing animations on mobile */
    .service-card,
    .feature-card,
    .specialty-card,
    .testimonial-card,
    .policy-card,
    .activity-card,
    .tip-card {
        animation: cardBreatheMobile 8s ease-in-out infinite;
    }

    @keyframes cardBreatheMobile {
        0%, 100% {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }
        50% {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }
    }

    /* Disable complex background animations on mobile */
    .living-bg::before,
    .services::before,
    .about::before,
    .menu-highlights::before,
    .testimonials::before,
    .location::before {
        animation: none;
        opacity: 0.5;
    }

    /* Keep hero effects but simplified */
    .floating-element {
        animation-duration: 30s;
    }
}

/* =============================================
   MOBILE NAVIGATION - iOS Safari Compatible
   ============================================= */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 100px 24px 40px;
        gap: 0;
        transition: right 0.5s var(--ease-luxury);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-bottom: 8px;
    }

    .nav-menu > li > a,
    .nav-menu .nav-link {
        color: #ffffff;
        -webkit-text-fill-color: #ffffff;
        display: flex;
        align-items: center;
        padding: 18px 20px;
        margin-bottom: 0;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        opacity: 1;
        visibility: visible;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .nav-menu > li:nth-child(1) > a { background: linear-gradient(135deg, #3d5a3d 0%, #2d4a2d 100%); }
    .nav-menu > li:nth-child(2) > a { background: linear-gradient(135deg, #c9a962 0%, #b8954d 100%); }
    .nav-menu > li:nth-child(3) > a { background: linear-gradient(135deg, #6b2d3a 0%, #5a2531 100%); }
    .nav-menu > li:nth-child(4) > a { background: linear-gradient(135deg, #4a7c59 0%, #3d6b4a 100%); }
    .nav-menu > li:nth-child(5) > a { background: linear-gradient(135deg, #d4a574 0%, #c49660 100%); }
    .nav-menu > li:nth-child(6) > a { background: linear-gradient(135deg, #5d7a8c 0%, #4d6a7c 100%); }

    .nav-menu > li.nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }

    .nav-menu > li.nav-cta > a {
        background: linear-gradient(135deg, #c9a962 0%, #e8d5a3 50%, #c9a962 100%);
        color: #1a1a1a;
        -webkit-text-fill-color: #1a1a1a;
        text-shadow: none;
        justify-content: center;
    }

    .nav-link::after {
        display: none;
    }

    .lang-selector {
        margin-left: 0;
        position: absolute;
        top: 20px;
        right: 80px;
    }
}

/* =============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================= */

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-olive);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

/* Focus visible improvements */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--color-gold);
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --color-gray-600: #333333;
        --color-gray-500: #444444;
    }

    .btn-primary {
        border: 2px solid var(--color-white);
    }

    .nav-link {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

/* Screen reader only content */
.sr-only,
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus within for form groups */
.form-group:focus-within {
    background: rgba(61, 90, 61, 0.03);
    border-radius: var(--radius-md);
}

.form-group:focus-within label {
    color: var(--color-olive);
}

/* =============================================
   LOADING STATES
   ============================================= */

/* Button loading state */
.btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: buttonSpinner 0.8s linear infinite;
}

@keyframes buttonSpinner {
    to { transform: rotate(360deg); }
}

/* Form submission feedback */
.form-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid var(--color-whatsapp);
    color: #1b7340;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-success i {
    font-size: 1.5rem;
    color: var(--color-whatsapp);
}

.form-error {
    background: rgba(234, 67, 53, 0.1);
    border: 1px solid var(--color-google);
    color: #c5392f;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-error i {
    font-size: 1.5rem;
    color: var(--color-google);
}

/* Input validation states */
input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: var(--color-google);
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: var(--color-whatsapp);
}

/* Phone validation pattern */
input[type="tel"]:invalid:not(:placeholder-shown) {
    border-color: var(--color-google);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ea4335' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 4.995z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* =============================================
   IMAGE LOADING SKELETON
   ============================================= */

.img-skeleton {
    background: linear-gradient(
        90deg,
        var(--color-gray-200) 25%,
        var(--color-gray-100) 50%,
        var(--color-gray-200) 75%
    );
    background-size: 200% 100%;
    animation: shimmerSkeleton 1.5s infinite;
}

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

/* Image fade in on load */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
    opacity: 1;
}

/* Image placeholder for broken images */
img {
    min-height: 100px;
}

.room-gallery img,
.about-img-main img,
.about-img-secondary img,
.room-main-img,
.room-thumbnails img {
    background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-gray-100) 100%);
    display: block;
}

/* Broken image placeholder styling */
.room-gallery img:not([src]),
.room-gallery img[src=""],
.about-images img:not([src]),
.about-images img[src=""] {
    position: relative;
    background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc5 100%);
}

.room-gallery img::before,
.about-images img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    opacity: 0.1;
}

/* =============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================= */

/* Better touch targets */
@media (pointer: coarse) {
    .btn,
    .nav-link,
    .lang-btn,
    .filter-btn,
    .faq-question {
        min-height: 48px;
        min-width: 48px;
    }

    .social-link,
    .footer-social a {
        width: 48px;
        height: 48px;
    }
}

/* Disable hover effects on touch */
@media (hover: none) {
    .btn:hover,
    .service-card:hover,
    .feature-card:hover,
    .nav-link:hover {
        transform: none;
    }
}

/* =============================================
   LIGHTBOX TOUCH GESTURES
   ============================================= */

.lightbox {
    touch-action: none;
}

.lightbox-content {
    touch-action: pinch-zoom;
}

.lightbox-nav-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    display: none;
}

@media (pointer: coarse) {
    .lightbox-nav-hint {
        display: block;
    }

    .lightbox-prev,
    .lightbox-next {
        opacity: 0.5;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */

@media print {
    .header,
    .footer,
    .whatsapp-float,
    .back-to-top,
    .nav-toggle,
    .hero-scroll,
    .lightbox,
    #preloader {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    .btn {
        border: 1px solid #333 !important;
        background: white !important;
        color: #333 !important;
    }
}

/* =============================================
   HOSPEDAJE PAGE - BENEFITS BAR
   ============================================= */

.benefits-bar {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.benefits-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s var(--ease-luxury);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.benefit-item i {
    font-size: 1.25rem;
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .benefits-grid {
        gap: 15px;
    }

    .benefit-item {
        padding: 8px 15px;
        font-size: var(--text-xs);
    }
}

/* =============================================
   HOSPEDAJE PAGE - ROOM DETAIL CARDS
   ============================================= */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

.room-detail-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    border: 1px solid var(--color-gray-200);
}

.room-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.room-detail-card.featured {
    border: 2px solid var(--color-gold);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(201, 169, 98, 0.2);
}

.room-detail-card .room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
}

.room-gallery {
    position: relative;
    overflow: hidden;
}

.room-main-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

.room-detail-card:hover .room-main-img {
    transform: scale(1.05);
}

.room-thumbnails {
    display: flex;
    gap: 5px;
    padding: 5px;
    background: var(--color-gray-100);
}

.room-thumbnails img {
    width: calc(50% - 2.5px);
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.room-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.02);
}

.room-price-tag {
    position: absolute;
    bottom: 70px;
    right: 15px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.room-price-tag .price {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.room-price-tag .per {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-charcoal);
    margin-bottom: 10px;
}

.room-description {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-gray-200);
}

.room-specs .spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.room-specs .spec i {
    color: var(--color-olive);
    font-size: 1rem;
}

.room-info h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-amenities-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.room-amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--color-gray-600);
}

.room-amenities-list li i {
    color: var(--color-whatsapp);
    font-size: 0.875rem;
    width: 18px;
}

.room-info .btn-block {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* =============================================
   HOSPEDAJE PAGE - ABOUT SECTION
   ============================================= */

.accommodation-about {
    background: var(--color-white);
}

.accommodation-about .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .accommodation-about .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.accommodation-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.accommodation-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.accommodation-highlights .highlight:hover {
    transform: translateX(5px);
    background: rgba(61, 90, 61, 0.1);
}

.accommodation-highlights .highlight i {
    color: var(--color-olive);
    font-size: 1.25rem;
    width: 24px;
}

.accommodation-highlights .highlight span {
    font-size: var(--text-sm);
    color: var(--color-charcoal);
    font-weight: 500;
}

.checkin-info {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--color-gray-200);
}

.checkin-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.checkin-item i {
    font-size: 1.5rem;
    color: var(--color-olive);
    margin-top: 2px;
}

.checkin-item strong {
    display: block;
    color: var(--color-charcoal);
    font-size: var(--text-sm);
    margin-bottom: 4px;
}

.checkin-item small {
    color: var(--color-gray-500);
    font-size: var(--text-xs);
}

@media (max-width: 640px) {
    .checkin-info {
        flex-direction: column;
        gap: 15px;
    }

    .accommodation-highlights {
        grid-template-columns: 1fr;
    }
}

/* About Images */
.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-white);
}

.about-img-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    padding: 15px 20px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.about-badge .badge-text {
    font-size: var(--text-xs);
    color: var(--color-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================
   HOSPEDAJE PAGE - POLICIES SECTION
   ============================================= */

.policies-section {
    background: var(--color-white);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1024px) {
    .policies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .policies-grid {
        grid-template-columns: 1fr;
    }
}

.policy-card {
    background: var(--color-cream);
    padding: 30px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s var(--ease-luxury);
    border: 1px solid transparent;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.policy-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.policy-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.policy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.policy-card ul li {
    font-size: var(--text-sm);
    color: var(--color-gray-600);
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-gray-300);
}

.policy-card ul li:last-child {
    border-bottom: none;
}

/* =============================================
   CONTACT PAGE - CONTACT SECTION
   ============================================= */

.contact-section {
    padding: var(--space-16) 0;
    background: var(--color-white);
}

.contact-info {
    padding-right: 40px;
}

@media (max-width: 1024px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-luxury);
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateX(8px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.contact-card.restaurant .contact-card-icon {
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
}

.contact-card.accommodation .contact-card-icon {
    background: linear-gradient(135deg, var(--color-wine) 0%, #5a2531 100%);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.contact-card-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-charcoal);
    margin-bottom: 5px;
}

.contact-card-content p {
    color: var(--color-gray-500);
    font-size: var(--text-sm);
    margin-bottom: 12px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    color: var(--color-charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-200);
}

.contact-link:hover {
    background: var(--color-olive);
    color: var(--color-white);
    border-color: var(--color-olive);
}

.contact-link.whatsapp {
    background: var(--color-whatsapp);
    color: var(--color-white);
    border-color: var(--color-whatsapp);
}

.contact-link.whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
}

/* General Info */
.general-info {
    margin-bottom: 30px;
}

.general-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.general-info .info-item:last-child {
    border-bottom: none;
}

.general-info .info-item i {
    color: var(--color-olive);
    font-size: 1.25rem;
    width: 24px;
    margin-top: 2px;
}

.general-info .info-item strong {
    display: block;
    color: var(--color-charcoal);
    font-size: var(--text-sm);
    margin-bottom: 4px;
}

.general-info .info-item p,
.general-info .info-item a {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    margin: 0;
}

.general-info .info-item a {
    color: var(--color-olive);
    text-decoration: none;
}

.general-info .info-item a:hover {
    text-decoration: underline;
}

/* Contact Social */
.contact-social {
    padding-top: 20px;
    border-top: 1px solid var(--color-gray-200);
}

.contact-social h4 {
    font-size: var(--text-sm);
    color: var(--color-charcoal);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-social .social-links {
    display: flex;
    gap: 12px;
}

.contact-social .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-social .social-link.facebook {
    background: #1877f2;
}

.contact-social .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-social .social-link.tiktok {
    background: #000000;
}

.contact-social .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: var(--color-cream);
    padding: 40px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px;
    }
}

.contact-form-wrapper .section-title {
    margin-bottom: 25px;
    font-size: var(--text-2xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Map Section */
.map-section {
    padding: var(--space-16) 0;
    background: var(--color-cream);
}

.map-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.map-wrapper iframe {
    display: block;
}

.directions-btn {
    margin-top: 25px;
}

/* =============================================
   CTA SECTION (HOSPEDAJE)
   ============================================= */

.cta-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--color-olive) 0%, var(--color-olive-deep) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-lg);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--color-white);
    color: var(--color-olive);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--color-cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--color-white);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-olive);
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .cta-content h2 {
        font-size: var(--text-2xl);
    }

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

    .btn-white,
    .btn-outline-white {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* =============================================
   ENHANCED INTERACTIVE STATES
   ============================================= */

/* Global transitions for all interactive elements */
a, button, .btn, input, textarea, select {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Enhanced card transitions */
.service-card,
.feature-card,
.specialty-card,
.room-card,
.room-detail-card,
.testimonial-card,
.policy-card,
.activity-card,
.tip-card,
.contact-card {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Consistent hover lift effect */
.service-card:hover,
.feature-card:hover,
.specialty-card:hover,
.room-card:hover,
.testimonial-card:hover,
.activity-card:hover,
.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Policy card hover */
.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

/* Gallery item enhanced hover */
.gallery-item {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 2;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* Button shine effect on hover */
.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 100%;
}

/* WhatsApp float enhanced */
.whatsapp-float {
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6),
                    0 0 0 8px rgba(37, 211, 102, 0.15);
    }
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* Back to top enhanced */
.back-to-top {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(61, 90, 61, 0.4);
}

/* Form input focus enhancement */
input:focus,
textarea:focus,
select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 90, 61, 0.15);
}

/* Navigation link hover effect */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Social link enhanced hover */
.social-link,
.footer-social a {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-link:hover,
.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Filter button active state */
.filter-btn {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.filter-btn.active {
    box-shadow: 0 4px 15px rgba(61, 90, 61, 0.3);
}

/* Testimonial card quote animation */
.testimonial-card::before {
    transition: all 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scale(1.1);
    opacity: 0.15;
}

/* Room price tag animation */
.room-price-tag {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.room-detail-card:hover .room-price-tag {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Badge pulse animation */
.room-badge,
.about-badge {
    animation: badgePulseEnhanced 3s ease-in-out infinite;
}

@keyframes badgePulseEnhanced {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(201, 169, 98, 0.6),
                    0 0 0 6px rgba(201, 169, 98, 0.1);
    }
}

/* Amenity list item hover */
.room-amenities-list li {
    transition: all 0.2s ease;
    padding: 8px 0;
    border-radius: var(--radius-md);
}

.room-amenities-list li:hover {
    padding-left: 10px;
    background: rgba(61, 90, 61, 0.05);
}

.room-amenities-list li i {
    transition: transform 0.3s ease;
}

.room-amenities-list li:hover i {
    transform: scale(1.2);
}

/* Highlight item hover */
.accommodation-highlights .highlight {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.accommodation-highlights .highlight:hover {
    transform: translateX(8px);
    background: rgba(61, 90, 61, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accommodation-highlights .highlight:hover i {
    transform: scale(1.2) rotate(5deg);
    transition: transform 0.3s ease;
}

/* Benefit item enhanced */
.benefit-item {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.benefit-item:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
}

.benefit-item:hover i {
    animation: iconBounceSmall 0.5s ease;
}

@keyframes iconBounceSmall {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Contact link hover */
.contact-link {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* General info item hover */
.general-info .info-item {
    transition: all 0.3s ease;
    padding: 15px 10px;
    margin: 0 -10px;
    border-radius: var(--radius-md);
}

.general-info .info-item:hover {
    background: rgba(61, 90, 61, 0.05);
}

.general-info .info-item:hover i {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}

/* Page header floating elements */
.page-floating .floating-element {
    animation: floatOrb 8s ease-in-out infinite;
}

.page-floating .floating-element:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 7s;
}

.page-floating .floating-element:nth-child(2) {
    animation-delay: -2s;
    animation-duration: 9s;
}

.page-floating .floating-element:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 8s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
        opacity: 0.5;
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
        opacity: 0.7;
    }
}

/* Section title glow on scroll */
.section-title {
    transition: text-shadow 0.3s ease;
}

.section-title:hover {
    text-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
}

/* CTA section buttons enhanced */
.cta-section .btn-white,
.cta-section .btn-outline-white {
    position: relative;
    overflow: hidden;
}

.cta-section .btn-white::before,
.cta-section .btn-outline-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-section .btn-white:hover::before,
.cta-section .btn-outline-white:hover::before {
    width: 300px;
    height: 300px;
}

/* Scroll progress bar already in premium-effects.js */

/* Hero scroll indicator animation - Solo animar el icono, no el contenedor */
.hero-scroll i {
    animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.6;
    }
}

/* Footer link hover */
.footer-links a {
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    transform: translateX(5px);
    color: var(--color-gold);
}

/* Footer phone item hover */
.phone-item {
    transition: all 0.3s ease;
    padding: 10px;
    margin: -10px;
    border-radius: var(--radius-lg);
}

.phone-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

/* Map wrapper shadow */
.map-wrapper {
    transition: box-shadow 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Language selector enhanced */
.lang-btn {
    transition: all 0.3s ease;
}

.lang-btn:hover {
    transform: scale(1.1);
}

.lang-btn.active {
    box-shadow: 0 2px 10px rgba(201, 169, 98, 0.4);
}

/* FAQ enhanced animations */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-olive);
}

.faq-item.active .faq-question {
    color: var(--color-olive);
}

/* Image placeholder styling when broken */
img[alt]::after {
    content: attr(alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc5 100%);
    font-size: var(--text-sm);
    color: var(--color-gray-500);
}

/* ========== VERSION MARKER ========== */
/* Wild Olive Premium CSS v8.3.0 - Mobile Fixes (Form, Buttons, Menu) */
