/* ============================================
   JOHNNY'S DOGGY HOTEL - MODERN STYLESHEET
   Ultra Professional & Modern Design
   ============================================ */

/* CSS Variables & Design Tokens */
:root {
    /* Primary Colors */
    --primary-brown: #3E2723;
    --primary-brown-light: #5D4037;
    --accent-orange: #C07838;
    --accent-gold: #D4AF37;
    
    /* Background Colors */
    --bg-cream: #FDFBF7;
    --bg-secondary: #EADBC8;
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --text-dark: #2C1E1A;
    --text-muted: #5D4D47;
    --text-light: #8B7355;
    
    /* Functional Colors */
    --whatsapp-green: #25D366;
    --success-green: #4CAF50;
    --error-red: #EF5350;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #C07838 0%, #D4AF37 50%, #C07838 100%);
    --gold-gradient-hover: linear-gradient(135deg, #D48948 0%, #E5C047 50%, #D48948 100%);
    --brown-gradient: linear-gradient(180deg, #3E2723 0%, #2C1E1A 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-bg-hover: rgba(255, 255, 255, 0.4);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    --glass-border-strong: 1px solid rgba(255, 255, 255, 0.6);
    --glass-highlight: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.2);
    --glass-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
    --blur-amount: 20px;
    
    /* Spacing & Sizing */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 35px;
    --radius-xl: 50px;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-premium: 0 10px 40px rgba(192, 120, 56, 0.25);
    --shadow-premium-hover: 0 20px 60px rgba(192, 120, 56, 0.35);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: radial-gradient(ellipse at top, #f8f6f3 0%, #ffffff 50%, #f5f3f0 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cinematic Grain Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, transparent 50%, rgba(62, 39, 35, 0.03) 100%),
        radial-gradient(circle at 80% 20%, transparent 50%, rgba(192, 120, 56, 0.02) 100%);
    pointer-events: none;
    z-index: 9999;
}

/* Selection Styling */
::selection {
    background: var(--accent-orange);
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-gold));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-brown);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    margin: 0;
}

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

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

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(192, 120, 56, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(192, 120, 56, 0); }
    100% { box-shadow: 0 0 0 0 rgba(192, 120, 56, 0); }
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 83, 80, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(239, 83, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 83, 80, 0); }
}

@keyframes dogWagPounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    30% { transform: translateY(-10px) rotate(-15deg); }
    60% { transform: translateY(-5px) rotate(15deg); }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Playful Shake Animation for Navbar */
@keyframes playfulShake {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    10% { transform: translateX(-50%) rotate(-2deg); }
    20% { transform: translateX(-50%) rotate(2deg); }
    30% { transform: translateX(-50%) rotate(-1deg); }
    40% { transform: translateX(-50%) rotate(1deg); }
    50% { transform: translateX(-50%) rotate(0deg); }
}

/* Ultra Modern Card Animations */
@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9) rotateX(10deg);
        filter: blur(10px);
    }
    50% {
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
}

@keyframes cardDisappear {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0.95) rotateX(-5deg);
        filter: blur(8px);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        clip-path: inset(100% 0 0 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes glowPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(192, 120, 56, 0.2),
                    0 0 40px rgba(192, 120, 56, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(192, 120, 56, 0.4),
                    0 0 60px rgba(192, 120, 56, 0.2);
    }
}

/* Logo Roll Animation - Roll in from left, settle in middle, then bounce */
@keyframes logoRollSettleBounce {
    0% { 
        transform: translateX(-100px) rotate(0deg); 
        left: 0;
    }
    40% { 
        transform: translateX(0) rotate(360deg); 
        left: calc(50% - 30px);
    }
    50% { 
        transform: translateX(0) rotate(360deg) translateY(0); 
        left: calc(50% - 30px);
    }
    60% { 
        transform: translateX(0) rotate(360deg) translateY(-15px); 
        left: calc(50% - 30px);
    }
    70% { 
        transform: translateX(0) rotate(360deg) translateY(0); 
        left: calc(50% - 30px);
    }
    80% { 
        transform: translateX(0) rotate(360deg) translateY(-10px); 
        left: calc(50% - 30px);
    }
    90% { 
        transform: translateX(0) rotate(360deg) translateY(0); 
        left: calc(50% - 30px);
    }
    100% { 
        transform: translateX(0) rotate(360deg) translateY(-5px); 
        left: calc(50% - 30px);
    }
}

/* Happy bounce animation after settling */
@keyframes happyBounce {
    0%, 100% { transform: translateX(0) rotate(360deg) translateY(0); }
    25% { transform: translateX(0) rotate(360deg) translateY(-8px); }
    50% { transform: translateX(0) rotate(360deg) translateY(0); }
    75% { transform: translateX(0) rotate(360deg) translateY(-5px); }
}

.rolling-logo.bouncing {
    left: calc(50% - 30px);
    animation: happyBounce 0.8s ease-in-out infinite;
}



/* Paw Print Animation */
@keyframes pawPrint {
    0% { 
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(10deg);
    }
}

/* Warm Cosy Overlay Animation */
@keyframes warmGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(40px);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ultra Modern Reveal Animation */
.reveal-modern {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(8px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-modern.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Staggered reveal for children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Card Animation Classes */
.card-animate {
    opacity: 0;
    animation: cardAppear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.text-animate {
    opacity: 0;
    animation: textReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ============================================
   LOADER
   ============================================ */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f3 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.bouncing-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-brown);
    background-image: url('johnnys-luxury-doggy-hotel-logo.jpg');
    background-size: cover;
    background-position: center;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loader-text {
    margin-top: 24px;
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 4px 24px rgba(31, 38, 135, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    transition: var(--transition-slow);
}

/* Navbar shake animation on scroll */
nav.shaking {
    animation: playfulShake 0.6s ease-in-out;
}

nav:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 8px 32px rgba(192, 120, 56, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.04);
}

nav.settled {
    top: 12px;
    width: 96%;
    backdrop-filter: blur(30px);
    padding: 10px 24px;
}

/* Logo */
.logo-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 14px;
}

.nav-dog {
    position: absolute;
    width: 32px;
    height: 32px;
    right: -22px;
    top: -8px;
    background: url('https://cdn-icons-png.flaticon.com/512/616/616408.png') no-repeat;
    background-size: contain;
    animation: dogWagPounce 3s infinite ease-in-out;
    z-index: 100;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img {
    height: 44px;
    width: 44px;
    border-radius: 50%;
    border: 2.5px solid var(--primary-brown);
    object-fit: cover;
    transition: var(--transition-base);
}

.logo-container:hover .logo-img {
    transform: scale(1.05);
    border-color: var(--accent-orange);
}

.logo-text-col {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary-brown);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.6rem;
    color: var(--accent-orange);
    letter-spacing: 3.5px;
    font-weight: 700;
    margin-top: 2px;
    text-transform: uppercase;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-base);
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: var(--transition-bounce);
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle - Interactive Paws */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    position: relative;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle .paw-icon {
    font-size: 1.4rem;
    color: var(--primary-brown);
    transition: var(--transition-base);
    opacity: 0.7;
}

.mobile-menu-toggle:hover .paw-icon {
    color: var(--accent-orange);
    opacity: 1;
    transform: scale(1.1);
}

.mobile-menu-toggle.active .paw-icon {
    color: var(--accent-orange);
    opacity: 1;
    animation: pawPrint 0.4s ease;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 92%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: var(--radius-lg);
    padding: 20px;
    z-index: 999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.mobile-nav-menu.active {
    transform: translateX(-50%) scaleY(1);
    opacity: 1;
}

.mobile-nav-menu a {
    display: block;
    padding: 14px 20px;
    color: var(--text-dark);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    margin-bottom: 8px;
}

.mobile-nav-menu a:hover {
    background: rgba(192, 120, 56, 0.1);
    color: var(--accent-orange);
}

.mobile-nav-menu .btn-premium {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
}

/* ============================================
   BOTTOM NAVBAR WITH ROLLING LOGO
   ============================================ */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 998;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.bottom-navbar-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.rolling-logo {
    position: absolute;
    left: -80px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-brown);
    background-image: url('johnnys-luxury-doggy-hotel-logo.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.rolling-logo.rolling {
    animation: logoRollSettleBounce 4s ease-out forwards;
}



.bottom-navbar-content {
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bottom-nav-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.bottom-nav-book {
    padding: 10px 24px;
    font-size: 0.8rem;
}

/* ============================================
   WARM COSY CINEMATIC OVERLAY
   ============================================ */
.cinematic-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}

.cinematic-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 200, 150, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 180, 120, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 220, 180, 0.04) 0%, transparent 70%);
    animation: warmGlow 8s ease-in-out infinite;
}

.cinematic-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(62, 39, 35, 0.08) 100%);
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 16px;
    color: rgba(192, 120, 56, 0.35);
    animation: floatParticle 15s ease-in-out infinite;
}

.particle.paw::before {
    content: '🐾';
}

.particle.dog::before {
    content: '🐕';
    font-size: 14px;
}

.particle.bone::before {
    content: '🦴';
    font-size: 12px;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-premium {
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    background: var(--gold-gradient);
    background-size: 200% auto;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-premium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    letter-spacing: 0.3px;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn-premium:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium-hover);
}

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

.btn-premium:active {
    transform: translateY(-1px);
}

.btn-ghost {
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.6);
    border: 1.5px solid rgba(62, 39, 35, 0.15);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-ghost:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    padding-bottom: 140px;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 48%;
    margin-left: 5%;
    padding: 50px;
    opacity: 0;
    animation: fadeUp 1.2s ease-out forwards 0.5s;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(192, 120, 56, 0.12);
    color: var(--accent-orange);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(192, 120, 56, 0.15);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 28px;
    background: linear-gradient(135deg, var(--primary-brown) 0%, #6D4C41 50%, var(--primary-brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shimmer-text {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Hero Slider */
.hero-slider-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    border-bottom-left-radius: 140px;
    overflow: hidden;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.1);
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) saturate(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.03);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 60%);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: var(--accent-orange);
}

/* ============================================
   GRID & CARDS
   ============================================ */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 0 5%;
    position: relative;
    z-index: 20;
}

/* Amenities section - negative margin only for hero overlap */
#amenities.grid-container {
    margin-top: -120px;
}

/* Pricing section - NO negative margin to prevent overlap */
#pricing .grid-container {
    margin-top: 40px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    -webkit-backdrop-filter: blur(var(--blur-amount));
    border: var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-left: 1px solid var(--glass-highlight);
    box-shadow: var(--glass-shadow);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--glass-shadow-hover);
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.8);
}

.glass-card:hover::after {
    left: 150%;
}

.icon-circle {
    width: 85px;
    height: 85px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.5));
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-orange);
    transition: var(--transition-slow);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.glass-card:hover .icon-circle {
    background: var(--gold-gradient);
    color: white;
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(192, 120, 56, 0.35);
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 100px;
}

.title-sub {
    font-size: 0.8rem;
    letter-spacing: 4.5px;
    color: var(--accent-orange);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
    opacity: 0.9;
}

.title-main {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    display: inline-block;
    padding-bottom: 24px;
}

.title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* ============================================
   SCROLLERS (Gallery & Reviews)
   ============================================ */
.scroller-wrap {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 25px 5%;
    cursor: grab;
}

.scroller-wrap::-webkit-scrollbar {
    display: none;
}

.scroller-wrap:active {
    cursor: grabbing;
}

.scroller-track {
    display: inline-flex;
    gap: 24px;
}

/* Gallery Items */
.gallery-item {
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.live-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #EF5350, #E53935);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    animation: pulse-red 2s infinite;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(239, 83, 80, 0.4);
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Review Cards */
.review-card {
    width: 420px;
    white-space: normal;
    flex-shrink: 0;
    padding: 45px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.review-card.revealed {
    opacity: 1;
    transform: translateY(0);
    animation: cardAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.review-avatar {
    width: 55px;
    height: 55px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(192, 120, 56, 0.3);
}

.review-avatar.alt {
    background: var(--primary-brown);
}

.review-avatar.alt2 {
    background: var(--accent-orange);
}

.review-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-top: 6px;
    letter-spacing: 2px;
}

.review-platform {
    font-size: 1.6rem;
    opacity: 0.2;
    transition: var(--transition-base);
}

.review-card:hover .review-platform {
    opacity: 0.4;
    color: #4285F4;
}

.review-text {
    font-style: italic;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.glass-card:hover .blog-card-img {
    transform: scale(1.02);
}

.blog-date {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 14px;
    color: var(--primary-brown);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--accent-orange);
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-brown);
}

/* Fireplace Section */
#fireplace-section {
    position: relative;
    overflow: hidden;
}

#fire-canvas {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 60px 5% 100px;
    position: relative;
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: var(--primary-brown);
    margin: 24px 0;
    letter-spacing: -2px;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.8);
    line-height: 1;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight-card {
    border: 2px solid rgba(192, 120, 56, 0.35);
    transform: scale(1.03);
    z-index: 5;
    background: rgba(255, 255, 255, 0.45);
}

.highlight-card:hover {
    transform: scale(1.05) translateY(-15px);
}

.highlight-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold-gradient);
    color: white;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(192, 120, 56, 0.35);
}

.pricing-features {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 35px 0;
    color: var(--text-muted);
}

.pricing-features li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.pricing-note {
    background: rgba(255, 255, 255, 0.5);
    padding: 18px;
    border-radius: var(--radius-md);
    margin: 24px 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.pricing-note-row {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pricing-note-row:last-child {
    margin-bottom: 0;
}

.pricing-note-small {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-frame {
    width: 90%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    border-radius: 45px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(62, 39, 35, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.05);
    border: 12px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--brown-gradient);
    color: white;
    padding: 100px 5% 140px;
    margin-top: 120px;
    border-radius: 50px 50px 0 0;
    position: relative;
}

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

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.footer-logo img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2.5px solid var(--accent-orange);
    transition: var(--transition-base);
}

.footer-logo:hover img {
    transform: scale(1.05);
    border-color: var(--accent-gold);
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 1rem;
    max-width: 360px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: var(--accent-orange);
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition-base);
}

.footer-links a:hover::before {
    width: 12px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition-base);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: var(--accent-orange);
    transform: translateY(-4px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(192, 120, 56, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 80px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   FLOATING WIDGETS
   ============================================ */
.widget-stack {
    position: fixed;
    bottom: 100px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 5000;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-base);
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.float-btn::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.float-btn:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.float-btn:hover::after {
    border-color: rgba(255, 255, 255, 0.3);
}

.wa-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse 3s infinite;
}

.call-btn {
    background: linear-gradient(135deg, var(--primary-brown), var(--primary-brown-light));
}

/* Tooltip for float buttons */
.float-btn::before {
    content: attr(aria-label);
    position: absolute;
    right: 75px;
    background: var(--primary-brown);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-base);
}

.float-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
    position: fixed;
    bottom: 90px;
    left: 25px;
    right: 25px;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: var(--radius-lg);
    z-index: 9998;
    box-shadow: var(--shadow-lg);
    display: none;
    transform: translateY(120px);
    transition: var(--transition-slow);
}

#cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-title {
    margin: 0 0 12px 0;
    color: var(--primary-brown);
    font-size: 1.2rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================
   MODAL / BOOKING FORM
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 30, 26, 0.65);
    z-index: 6000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(12px);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-box {
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 45px;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #888;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
    z-index: 50;
    background: rgba(0, 0, 0, 0.03);
    border: none;
}

.modal-close:hover {
    color: var(--primary-brown);
    background: rgba(0, 0, 0, 0.06);
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 28px;
    color: var(--primary-brown);
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-brown);
    margin-bottom: 8px;
    display: block;
    margin-left: 5px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-base);
    color: var(--text-dark);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-input:focus {
    border-color: var(--accent-orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(192, 120, 56, 0.1);
}

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

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.price-display {
    background: var(--gold-gradient);
    color: white;
    padding: 18px;
    border-radius: var(--radius-md);
    text-align: center;
    margin: 20px 0;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(192, 120, 56, 0.25);
}

.success-message {
    display: none;
    text-align: center;
    color: var(--success-green);
    font-weight: 700;
    margin-top: 24px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: var(--radius-md);
    animation: fadeIn 0.5s ease;
}

.success-message.show {
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 80px;
    }
    
    .hero-slider-wrap {
        position: relative;
        width: 100%;
        height: 450px;
        border-radius: 0 0 70px 70px;
        order: -1;
        box-shadow: none;
        margin-bottom: 50px;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .hero-content {
        width: 100%;
        padding: 30px;
        text-align: center;
        margin: 0;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        margin-top: 0;
        gap: 24px;
    }
    
    #amenities.grid-container {
        margin-top: 0;
    }
    
    .glass-card:hover {
        transform: translateY(-8px);
    }
    
    .pricing-section {
        padding: 60px 5%;
    }
    
    .highlight-card {
        transform: scale(1);
    }
    
    .highlight-card:hover {
        transform: scale(1.02) translateY(-8px);
    }
    
    .map-frame {
        height: 350px;
        border-radius: 30px;
    }
    
    footer {
        border-radius: 30px 30px 0 0;
        padding-bottom: 120px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .widget-stack {
        bottom: 90px;
        right: 20px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    #cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 160px;
        padding: 24px;
    }
    
    nav {
        width: 95%;
        top: 12px;
        padding: 10px 20px;
    }
    
    .modal-box {
        padding: 30px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .bottom-navbar {
        height: 60px;
    }
    
    .bottom-navbar-content {
        right: 15px;
    }
    
    .bottom-nav-text {
        display: none;
    }
    
    .bottom-nav-book {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .hero-slider-wrap {
        height: 350px;
        border-radius: 0 0 50px 50px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .section-header {
        padding-top: 60px;
        margin-bottom: 40px;
    }
    
    .gallery-item {
        width: 280px;
        height: 280px;
    }
    
    .review-card {
        width: 320px;
        padding: 30px;
    }
    
    .price-tag {
        font-size: 3rem;
    }
    
    .map-frame {
        height: 280px;
        width: 95%;
        border-width: 8px;
    }
    
    .modal-box {
        max-height: 85vh;
        padding: 25px 20px;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.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;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* 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;
    }
}
