/*
Theme Name: Sõru Puhkemaja
Theme URI: https://serro.ee
Author: HiCare
Author URI: https://hicare.ee
Description: Professionaalne ja moderne WordPress teema Sõru Puhkemajale - majutusteenust pakkuv ettevõte Hiiumaal. Täisekraani hero video, sticky header, mobiilne toolbar ja optimeeritud UX/UI.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soru-puhkemaja
Tags: custom-menu, custom-logo, featured-images, full-width-template, translation-ready, accommodation, booking

Sõru Puhkemaja - Hiiumaa lõunatipus peidetud pärl
*/

/* ==========================================================================
   CSS Variables / Root
   ========================================================================== */
:root {
    /* Primary Colors */
    --color-primary: #4a4a4a;
    --color-accent: #dca54a;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light-gray: #f5f5f5;
    --color-dark-gray: #333333;
    
    /* Glass Effect */
    --glass-bg: rgba(0, 0, 0, 0.6);
    --glass-bg-light: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 20px;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Header */
    --header-height: 80px;
    --header-height-scrolled: 70px;
    
    /* Mobile Toolbar */
    --mobile-toolbar-height: 70px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;
}

/* ==========================================================================
   Browser Compatibility - Chrome & Safari (all devices)
   ========================================================================== */

/* Webkit (Chrome, Safari, Edge Chromium) */
@supports (-webkit-appearance: none) {
    /* Smooth scrolling for all webkit browsers */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure backdrop-filter works in Safari */
    .site-header::before,
    .mobile-nav,
    .glass-card {
        -webkit-backdrop-filter: blur(var(--glass-blur));
        backdrop-filter: blur(var(--glass-blur));
    }
}

/* Safari-specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for Safari iOS viewport height */
    .hero,
    .page-hero {
        min-height: -webkit-fill-available;
    }
    
    /* Prevent text size adjustment on orientation change */
    html {
        -webkit-text-size-adjust: 100%;
    }
    
    /* Safe area insets for notched devices */
    .site-header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Chrome-specific optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
    /* High-performance animations for Chrome */
    .btn,
    .room-card {
        will-change: transform;
        contain: layout style paint;
    }
}

/* Firefox fallback (included for completeness) */
@-moz-document url-prefix() {
    /* Firefox-specific fixes if needed */
    .site-header::before {
        background: rgba(0, 0, 0, 0.7);
    }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 51, 51, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity 0.8s ease, visibility 0.8s ease, backdrop-filter 0.8s ease, -webkit-backdrop-filter 0.8s ease;
}

.preloader-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.preloader-logo {
    animation: preloaderZoomIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: scale(0.5);
}

@keyframes preloaderZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-logo-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(220, 165, 74, 0.3));
}

/* Spinner */
.preloader-spinner {
    animation: fadeIn 0.5s ease 0.8s forwards;
    opacity: 0;
}

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

.spinner-ring {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: spinnerRotate 1s linear infinite;
}

@keyframes spinnerRotate {
    to {
        transform: rotate(360deg);
    }
}

/* Loaded state - blur fades out */
.site-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.site-preloader.loaded .preloader-logo {
    animation: preloaderFadeOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes preloaderFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.site-preloader.loaded .preloader-spinner {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Content is visible but blurred by preloader overlay */
body:not(.preloader-done) .site-header,
body:not(.preloader-done) .site-main,
body:not(.preloader-done) .site-footer {
    opacity: 1;
}

body.preloader-done .site-header,
body.preloader-done .site-main,
body.preloader-done .site-footer {
    opacity: 1;
}

/* Fix: Remove transform after animation to allow position:fixed children */
body.preloader-done .site-main {
    animation-fill-mode: forwards;
}

/* After animation, ensure no transform remains */
@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Responsive preloader */
@media (max-width: 768px) {
    .preloader-logo-img {
        width: 150px;
    }
    
    .spinner-ring {
        width: 40px;
        height: 40px;
    }
}

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

html {
    /* Removed scroll-behavior: smooth - causes flickering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-primary);
    background-color: var(--color-white);
    overflow-x: hidden;
    /* Smooth scrolling for iOS */
    -webkit-overflow-scrolling: touch;
}

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 {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-dark-gray);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-accent {
    color: var(--color-accent);
}

/* ==========================================================================
   Container
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 900px;
}

.container-wide {
    max-width: 1600px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover,
.btn-primary:focus {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 165, 74, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

/* Outline button for light backgrounds */
.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    color: var(--color-white);
    border: 1px solid var(--glass-border);
}

.btn-glass:hover,
.btn-glass:focus {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* Booking Button - Premium Style */
.btn-booking {
    background: linear-gradient(135deg, var(--color-accent) 0%, #c4923f 100%);
    color: var(--color-white);
    border: none;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(220, 165, 74, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-booking::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.5s ease;
}

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

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 165, 74, 0.5);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    /* Smooth hide/show animation */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s ease,
                opacity 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    opacity: 1;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: background var(--transition-medium), backdrop-filter var(--transition-medium);
    z-index: -1;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.site-header.scrolled {
    padding: var(--spacing-xs) 0;
}

.site-header.scrolled::before {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
}

/* Header hide on scroll down, show on scroll up */
.site-header.header-hidden {
    transform: translate3d(0, -100%, 0) !important;
    -webkit-transform: translate3d(0, -100%, 0) !important;
    pointer-events: none;
    opacity: 0;
}

/* Ensure header is visible when not hidden */
.site-header:not(.header-hidden) {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    position: relative;
}

/* Logo */
.site-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 2;
}

.site-logo img,
.site-logo-img {
    height: calc(var(--header-height) - 10px);
    width: auto;
    transition: height var(--transition-medium), filter var(--transition-medium), transform var(--transition-medium);
    filter: brightness(1) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
}

.site-logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.site-logo-link:hover img,
.site-logo-link:hover .site-logo-img {
    filter: brightness(1.15) drop-shadow(0 2px 15px rgba(220, 165, 74, 0.5));
    transform: scale(1.03);
}

.site-header.scrolled .site-logo img,
.site-header.scrolled .site-logo-img {
    height: calc(var(--header-height-scrolled) - 10px);
}

/* Responsive logo */
@media (max-width: 991px) {
    .site-logo img,
    .site-logo-img {
        height: calc(var(--header-height) - 15px);
    }
    
    .site-header.scrolled .site-logo img,
    .site-header.scrolled .site-logo-img {
        height: calc(var(--header-height-scrolled) - 15px);
    }
}

@media (max-width: 576px) {
    .site-logo img,
    .site-logo-img {
        height: calc(var(--header-height) - 20px);
    }
    
    .site-header.scrolled .site-logo img,
    .site-header.scrolled .site-logo-img {
        height: calc(var(--header-height-scrolled) - 20px);
    }
}

.site-logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

/* Navigation - Centered with Flex */
.main-nav {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 0 var(--spacing-lg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(var(--spacing-md), 3vw, var(--spacing-xl));
    flex-wrap: nowrap;
}

.nav-menu a {
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-xs);
    position: relative;
    white-space: nowrap;
    transition: color var(--transition-medium), transform var(--transition-fast);
}

.nav-menu a:hover {
    transform: translateY(-1px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

/* Header Right Side */
.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, var(--spacing-md));
    z-index: 2;
    margin-left: auto;
}

/* Header Language Switcher */
.header-language {
    display: none;
}

@media (min-width: 1024px) {
    .header-language {
        display: flex;
        align-items: center;
    }
}

/* Header Award Badge */
.header-award {
    display: none;
}

@media (min-width: 1024px) {
    .header-award {
        display: flex;
        align-items: center;
    }
}

.header-award-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 53, 128, 0.15);
    border: 1px solid rgba(0, 53, 128, 0.3);
    border-radius: var(--radius-full);
    transition: all var(--transition-medium);
}

.header-award-link:hover {
    background: rgba(0, 53, 128, 0.25);
    border-color: rgba(0, 53, 128, 0.5);
    transform: translateY(-1px);
}

/* Header Rating Badge - Booking.com Style */
.header-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-rating-score {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #003580 0%, #00224f 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px 6px 6px 0;
    box-shadow: 0 2px 6px rgba(0, 53, 128, 0.3);
}

.site-header.scrolled .header-rating-score {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

/* Header Rating Info Text */
.header-rating-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.header-rating-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    white-space: nowrap;
}

.site-header.scrolled .header-rating-label {
    font-size: 10px;
}

.site-header.scrolled .header-award-link {
    padding: 6px 12px;
}

/* Header Booking Button */
.header-booking {
    display: none;
}

@media (min-width: 1024px) {
    .header-booking {
        display: block;
    }
}

/* Header-specific button sizing */
.header-booking .btn-booking {
    padding: 10px 20px;
    font-size: 13px;
}

.site-header.scrolled .header-booking .btn-booking {
    padding: 8px 18px;
    font-size: 12px;
}

/* ==========================================================================
   Header Desktop Responsive Styles
   ========================================================================== */

/* Ultra-Wide Desktop (2560px+) */
@media (min-width: 2560px) {
    .site-header {
        padding: 18px 0;
    }
    
    .header-inner {
        gap: var(--spacing-xl);
    }
    
    .site-logo img,
    .site-logo-img {
        height: 75px;
    }
    
    .main-nav {
        padding: 0 var(--spacing-xl);
    }
    
    .nav-menu {
        gap: var(--spacing-xl);
    }
    
    .nav-menu a {
        font-size: 16px;
        letter-spacing: 0.16em;
    }
    
    .header-right {
        gap: var(--spacing-lg);
    }
    
    .header-booking .btn-booking {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .header-rating-score {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .header-award-link {
        padding: 10px 18px;
        gap: 8px;
    }
    
    .header-award-img {
        height: 32px;
    }
}

/* Wide Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .site-header {
        padding: 16px 0;
    }
    
    .header-inner {
        gap: var(--spacing-lg);
    }
    
    .site-logo img,
    .site-logo-img {
        height: 68px;
    }
    
    .main-nav {
        padding: 0 var(--spacing-lg);
    }
    
    .nav-menu {
        gap: var(--spacing-lg);
    }
    
    .nav-menu a {
        font-size: 15px;
        letter-spacing: 0.14em;
    }
    
    .header-right {
        gap: var(--spacing-md);
    }
    
    .header-booking .btn-booking {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .header-rating-score {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .header-award-link {
        padding: 8px 16px;
        gap: 6px;
    }
    
    .header-award-img {
        height: 28px;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .site-header {
        padding: 12px 0;
    }
    
    .header-inner {
        gap: var(--spacing-md);
    }
    
    .site-logo img,
    .site-logo-img {
        height: 58px;
    }
    
    .main-nav {
        padding: 0 var(--spacing-md);
    }
    
    .nav-menu {
        gap: var(--spacing-lg);
    }
    
    .nav-menu a {
        font-size: 13px;
        letter-spacing: 0.12em;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .header-booking .btn-booking {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .header-rating-score {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .header-award-link {
        padding: 7px 12px;
        gap: 5px;
    }
    
    .header-award-img {
        height: 24px;
    }
}

/* Small Desktop / Large Laptop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .site-header {
        padding: 10px 0;
    }
    
    .header-inner {
        gap: var(--spacing-sm);
    }
    
    .site-logo img,
    .site-logo-img {
        height: 50px;
    }
    
    .main-nav {
        padding: 0 var(--spacing-sm);
    }
    
    .nav-menu {
        gap: var(--spacing-md);
    }
    
    .nav-menu a {
        font-size: 12px;
        letter-spacing: 0.1em;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .header-booking .btn-booking {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .header-rating-score {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .header-award-link {
        padding: 6px 10px;
        gap: 4px;
    }
    
    .header-award-img {
        height: 22px;
    }
}

/* Laptop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .site-header {
        padding: 8px 0;
    }
    
    .header-inner {
        gap: var(--spacing-xs);
    }
    
    .site-logo img,
    .site-logo-img {
        height: 44px;
    }
    
    .main-nav {
        padding: 0 var(--spacing-xs);
    }
    
    .nav-menu {
        gap: var(--spacing-sm);
    }
    
    .nav-menu a {
        font-size: 11px;
        letter-spacing: 0.08em;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .header-booking .btn-booking {
        padding: 7px 14px;
        font-size: 10px;
    }
    
    .header-rating-score {
        width: 24px;
        height: 24px;
        font-size: 10px;
        border-radius: 5px 5px 5px 0;
    }
    
    .header-award-link {
        padding: 5px 8px;
        gap: 3px;
    }
    
    .header-award-img {
        height: 20px;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 20px 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-medium), visibility var(--transition-medium);
    z-index: 999;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: opacity, visibility;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

/* Background logo with zoom effect */
.mobile-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    max-width: 400px;
    aspect-ratio: 1;
    background: url('assets/images/logo-preloader.png') center center no-repeat;
    background-size: contain;
    opacity: 0.06;
    transform: translate(-50%, -50%) scale(0.8);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.mobile-nav.active::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.08;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-white);
    padding: 12px 20px;
    transition: color var(--transition-fast), transform var(--transition-fast);
    text-align: center;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--color-accent);
    transform: scale(1.05);
}

.mobile-nav .btn {
    margin-top: 16px;
    padding: 14px 32px;
    font-size: 0.9rem;
}

/* Mobile Language Switcher in Nav */
.mobile-language-switcher {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-language-switcher .lang-switcher {
    justify-content: center;
}

/* Smaller screens - more compact */
@media (max-width: 480px) {
    .mobile-nav {
        gap: 12px;
        padding: 70px 16px 90px;
    }
    
    .mobile-nav a {
        font-size: 1rem;
        padding: 10px 16px;
        letter-spacing: 0.1em;
    }
    
    .mobile-nav .btn {
        margin-top: 12px;
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    
    .mobile-language-switcher {
        margin-top: 16px;
        padding-top: 16px;
    }
}

@media (max-width: 359px) {
    .mobile-nav {
        gap: 10px;
        padding: 60px 12px 80px;
    }
    
    .mobile-nav a {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    
    .mobile-nav .btn {
        padding: 10px 24px;
        font-size: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
    
    .main-nav {
        display: flex;
    }
}

@media (max-width: 1023px) {
    .main-nav {
        display: none;
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* GPU acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    /* GPU acceleration for video container */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ken Burns effect - slow zoom */
    animation: kenBurns 30s ease-in-out infinite alternate;
    transform-origin: center center;
    /* GPU acceleration for smooth animation */
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    
    /* Video quality enhancement filters */
    /* Subtle blur masks compression artifacts */
    filter: 
        blur(0.5px)           /* Masks compression blocks/artifacts */
        contrast(1.08)        /* Slightly increases contrast */
        saturate(1.15)        /* Enhances color richness */
        brightness(1.02);     /* Slight brightness boost */
    
    /* Smoother rendering */
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Reduce motion for those who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
    }
}

/* Mobile performance - less filters for better performance */
@media (max-width: 768px) {
    .hero-video {
        filter: 
            blur(0.3px)
            contrast(1.05)
            saturate(1.1);
        /* Slower animation for mobile performance */
        animation-duration: 40s;
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1.02) translateZ(0);
    }
    100% {
        transform: scale(1.12) translateZ(0);
    }
}

/* ============================================
   Mobile Hero Slideshow Styles
   ============================================ */

.hero-mobile-slideshow {
    display: none; /* Hidden by default, shown on mobile */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Mobile caption (displayed in hero-content, synced with active slide) */
.hero-mobile-caption {
    display: none; /* Hidden by default, shown on mobile */
    text-align: center;
    color: var(--color-white);
    padding: 24px 28px 32px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 20px;
    max-width: 340px;
    margin: 0 auto var(--spacing-md);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle wave decoration at bottom of caption */
.hero-mobile-caption::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 22px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 20 Q150 0 300 20 T600 20 T900 20 T1200 20 V40 H0 Z' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 600px 22px;
    animation: captionWave 8s linear infinite;
    pointer-events: none;
}

.hero-mobile-caption::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 18px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 24 Q150 8 300 24 T600 24 T900 24 T1200 24 V40 H0 Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat-x bottom;
    background-size: 500px 18px;
    animation: captionWave 6s linear infinite reverse;
    pointer-events: none;
}

@keyframes captionWave {
    0% { background-position-x: 0; }
    100% { background-position-x: 600px; }
}

/* Gold accent line at top */
.hero-mobile-caption .hero-slide-title::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 auto 12px;
    border-radius: 2px;
    opacity: 0.8;
}

.hero-mobile-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-mobile-caption .hero-slide-title {
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: var(--color-white) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    font-style: italic;
}

.hero-mobile-caption .hero-slide-desc {
    font-size: 0.8125rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    font-weight: 400;
    letter-spacing: 0.03em;
}

/* Slide indicators */
.hero-slide-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    pointer-events: auto;
}

.slide-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slide-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.slide-indicator.active {
    width: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.95);
}

/* Mobile breakpoint - show slideshow, hide video and amenities */
@media (max-width: 768px) {
    /* Hide video background on mobile */
    .hero-desktop-bg {
        display: none !important;
    }
    
    /* Show mobile slideshow */
    .hero-mobile-slideshow {
        display: block;
    }
    
    /* Show mobile caption (replaces amenities) */
    .hero-mobile-caption {
        display: block !important;
    }
    
    /* Hide amenities grid on mobile (replaced by slideshow captions) */
    .hero-amenities {
        display: none !important;
    }
}

/* Multiple overlay layers for better text visibility */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Main gradient - lighter for brighter hero with slight color tint */
    background: 
        /* Subtle cool color wash for cinematic feel */
        linear-gradient(
            135deg,
            rgba(20, 40, 80, 0.08) 0%,
            transparent 50%,
            rgba(80, 60, 40, 0.06) 100%
        ),
        /* Vignette effect */
        radial-gradient(
            ellipse at center,
            transparent 0%,
            rgba(0, 0, 0, 0.12) 50%,
            rgba(0, 0, 0, 0.35) 100%
        ),
        /* Vertical gradient */
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0.5) 100%
        );
}

/* Subtle film grain texture overlay for cinematic feel */
.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Subtle noise texture using CSS gradient */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    mix-blend-mode: overlay;
}

/* Additional text backdrop for extra contrast */
.hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--color-white);
    padding: var(--spacing-md);
    max-width: 900px;
}

/* Staggered fade-in animations */
.hero-content .hero-badge {
    animation: heroFadeInUp 1s ease-out 0.3s both;
}

.hero-content .hero-logo {
    animation: heroFadeInUp 1s ease-out 0.5s both;
}

.hero-content .hero-amenities {
    animation: heroFadeInUp 1s ease-out 0.7s both;
}

.hero-content .hero-description {
    animation: heroDescriptionReveal 1.2s ease-out 1s both;
}

.hero-content .hero-cta {
    animation: heroFadeInUp 1s ease-out 1.3s both;
}

@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroDescriptionReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(4px);
    }
    50% {
        filter: blur(2px);
    }
    100% {
        opacity: 0.92;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-logo {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    max-width: 400px;
    width: 80%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
}

.hero-description {
    font-size: clamp(0.9rem, 1.6vw, 1.1rem);
    line-height: 1.75;
    margin: var(--spacing-md) auto var(--spacing-lg);
    max-width: 720px;
    opacity: 0.95;
    text-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.7),
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.015em;
}

/* Hero Amenities - Key Features */
.hero-amenities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    margin: var(--spacing-md) 0;
    padding: 0 var(--spacing-sm);
}

.hero-amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 12px 14px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    flex: 0 0 110px;
    width: 110px;
    height: 95px;
    transition: all var(--transition-medium);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-amenity:hover {
    background: rgba(220, 165, 74, 0.3);
    border-color: rgba(220, 165, 74, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(220, 165, 74, 0.25);
}

.hero-amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    color: var(--color-accent);
}

.hero-amenity-icon svg {
    width: 100%;
    height: 100%;
}

.hero-amenity-label {
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    max-width: 100px;
    opacity: 0.95;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-white);
    opacity: 0;
    animation: heroScrollFadeIn 1s ease-out 1.5s forwards, bounce 2s ease-in-out 2.5s infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero scroll - small mobile adjustment */
@media (max-width: 450px) {
    .hero-scroll {
        bottom: 30px;
    }
}

@keyframes heroScrollFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
}

.hero-scroll span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==========================================================================
   Hero Responsive Styles - Aligned with Layout Breakpoints
   ========================================================================== */

/* Ultra-Wide Desktop (2560px+) */
@media (min-width: 2560px) {
    .hero-content {
        max-width: 1200px;
        padding: var(--spacing-lg);
    }
    
    .hero-logo {
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-logo-img {
        max-width: 480px;
    }
    
    .hero-description {
        font-size: 1.2rem;
        line-height: 1.8;
        max-width: 850px;
        margin: var(--spacing-lg) auto;
    }
    
    .hero-amenities {
        gap: 16px;
        margin: var(--spacing-lg) 0;
    }
    
    .hero-amenity {
        flex: 0 0 130px;
        width: 130px;
        height: 110px;
        padding: 18px 14px 16px;
        gap: 10px;
        border-radius: 16px;
    }
    
    .hero-amenity-icon {
        width: 46px;
        height: 46px;
    }
    
    .hero-amenity-label {
        font-size: 9px;
        max-width: 118px;
    }
    
    .hero-cta {
        gap: var(--spacing-md);
        margin-top: var(--spacing-lg);
    }
    
    .hero-cta .btn {
        padding: 16px 38px;
        font-size: 15px;
    }
    
    .hero-scroll {
        bottom: 100px;
    }
    
    .hero-scroll span {
        font-size: 13px;
    }
    
    .hero-scroll svg {
        width: 26px;
        height: 26px;
    }
}

/* Wide Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .hero-content {
        max-width: 1100px;
        padding: var(--spacing-md);
    }
    
    .hero-logo {
        margin-bottom: var(--spacing-md);
    }
    
    .hero-logo-img {
        max-width: 330px; /* 25% smaller: was 440px */
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.75;
        max-width: 780px;
        margin: var(--spacing-md) auto;
    }
    
    .hero-amenities {
        gap: 14px;
        margin: var(--spacing-md) 0;
    }
    
    .hero-amenity {
        flex: 0 0 120px;
        width: 120px;
        height: 102px;
        padding: 16px 12px 14px;
        gap: 8px;
        border-radius: 14px;
    }
    
    .hero-amenity-icon {
        width: 42px;
        height: 42px;
    }
    
    .hero-amenity-label {
        font-size: 8px;
        max-width: 108px;
    }
    
    .hero-cta {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
    }
    
    .hero-cta .btn {
        padding: 15px 34px;
        font-size: 14px;
    }
    
    .hero-scroll {
        bottom: 70px; /* 20px lower: was 90px */
    }
    
    .hero-scroll span {
        font-size: 12px;
    }
    
    .hero-scroll svg {
        width: 24px;
        height: 24px;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-content {
        max-width: 900px;
        padding: 10px;
        padding-bottom: 60px;
    }
    
    .hero-logo {
        margin-bottom: 10px;
    }
    
    .hero-logo-img {
        max-width: 220px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.55;
        max-width: 620px;
        margin: 10px auto 12px;
    }
    
    .hero-amenities {
        gap: 10px;
        margin: 10px 0;
    }
    
    .hero-amenity {
        flex: 0 0 100px;
        width: 100px;
        height: 84px;
        padding: 12px 8px 10px;
        gap: 6px;
        border-radius: 10px;
    }
    
    .hero-amenity-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-amenity-label {
        font-size: 8px;
        max-width: 90px;
    }
    
    .hero-cta {
        gap: 10px;
        margin-top: 12px;
    }
    
    .hero-cta .btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .hero-scroll {
        bottom: 15px;
    }
    
    .hero-scroll span {
        font-size: 9px;
    }
    
    .hero-scroll svg {
        width: 16px;
        height: 16px;
    }
}

/* Small Desktop / Large Laptop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .hero-content {
        max-width: 820px;
        padding: 8px;
        padding-bottom: 50px;
    }
    
    .hero-logo {
        margin-bottom: 8px;
    }
    
    .hero-logo-img {
        max-width: 180px;
    }
    
    .hero-description {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 560px;
        margin: 8px auto 10px;
    }
    
    .hero-amenities {
        gap: 8px;
        margin: 8px 0;
    }
    
    .hero-amenity {
        flex: 0 0 92px;
        width: 92px;
        height: 76px;
        padding: 10px 6px 8px;
        gap: 5px;
        border-radius: 8px;
    }
    
    .hero-amenity-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-amenity-label {
        font-size: 7.5px;
        max-width: 82px;
    }
    
    .hero-cta {
        gap: 8px;
        margin-top: 10px;
    }
    
    .hero-cta .btn {
        padding: 9px 18px;
        font-size: 10px;
    }
    
    .hero-scroll {
        bottom: 12px;
    }
    
    .hero-scroll span {
        font-size: 8px;
    }
    
    .hero-scroll svg {
        width: 14px;
        height: 14px;
    }
}

/* Laptop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-content {
        max-width: 740px;
        padding: 6px;
        padding-bottom: 45px;
    }
    
    .hero-logo {
        margin-bottom: 8px;
    }
    
    .hero-logo-img {
        max-width: 188px;
    }
    
    .hero-description {
        font-size: 0.75rem;
        line-height: 1.45;
        max-width: 500px;
        margin: 6px auto 8px;
    }
    
    .hero-amenities {
        gap: 8px;
        margin: 8px 0;
    }
    
    .hero-amenity {
        flex: 0 0 102px;
        width: 102px;
        height: 85px;
        padding: 10px 6px 8px;
        gap: 5px;
        border-radius: 8px;
    }
    
    .hero-amenity-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-amenity-label {
        font-size: 8px;
        max-width: 92px;
    }
    
    .hero-cta {
        gap: 6px;
        margin-top: 8px;
    }
    
    .hero-cta .btn {
        padding: 8px 16px;
        font-size: 9px;
    }
    
    .hero-scroll {
        bottom: 10px;
    }
    
    .hero-scroll span {
        font-size: 7px;
    }
    
    .hero-scroll svg {
        width: 12px;
        height: 12px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 680px;
        padding: var(--spacing-xs);
        padding-bottom: 90px;
    }
    
    .hero-logo {
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-logo-img {
        max-width: 240px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.55;
        max-width: 520px;
        margin: var(--spacing-xs) auto var(--spacing-sm);
    }
    
    .hero-amenities {
        gap: 6px;
        margin: var(--spacing-xs) 0;
    }
    
    .hero-amenity {
        flex: 0 0 78px;
        width: 78px;
        height: 68px;
        padding: 8px 5px 6px;
        gap: 4px;
        border-radius: 6px;
    }
    
    .hero-amenity-icon {
        width: 24px;
        height: 24px;
    }
    
    .hero-amenity-label {
        font-size: 6px;
        max-width: 70px;
    }
    
    .hero-cta {
        gap: 8px;
        margin-top: var(--spacing-xs);
    }
    
    .hero-cta .btn {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .hero-scroll {
        bottom: 30px;
    }
    
    .hero-scroll span {
        font-size: 8px;
    }
    
    .hero-scroll svg {
        width: 16px;
        height: 16px;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        max-width: 92%;
        padding: var(--spacing-sm);
    }
    
    .hero-logo-img {
        max-width: 240px;
    }
    
    .hero-logo {
        margin-bottom: 12px;
    }
    
    .hero-amenities {
        gap: 8px;
        margin: 10px 0;
    }
    
    .hero-amenity {
        flex: 0 0 95px;
        width: 95px;
        height: 82px;
        padding: 12px 8px 10px;
        border-radius: var(--radius-md);
    }
    
    .hero-amenity-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-amenity-label {
        font-size: 6px;
        letter-spacing: 0.02em;
        max-width: 85px;
    }
    
    .hero-description {
        font-size: 0.82rem;
        line-height: 1.6;
        max-width: 500px;
        margin: 8px auto 12px;
    }
    
    .hero-cta {
        gap: 10px;
        margin-top: 10px;
    }
    
    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .hero-scroll {
        bottom: calc(var(--mobile-toolbar-height) + 20px);
    }
}

/* Large Mobile (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        max-width: 95%;
        padding: 12px;
    }
    
    .hero-logo-img {
        max-width: 200px;
    }
    
    .hero-logo {
        margin-bottom: 10px;
    }
    
    .hero-amenities {
        gap: 6px;
        margin: 8px 0;
    }
    
    .hero-amenity {
        flex: 0 0 82px;
        width: 82px;
        height: 72px;
        padding: 10px 6px 8px;
        border-radius: 10px;
    }
    
    .hero-amenity-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-amenity-label {
        font-size: 5.5px;
        letter-spacing: 0.02em;
        max-width: 74px;
    }
    
    .hero-description {
        font-size: 0.75rem;
        line-height: 1.55;
        max-width: 420px;
        margin: 6px auto 10px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 260px;
        padding: 12px 18px;
        font-size: 12px;
    }
    
    .hero-scroll {
        bottom: calc(var(--mobile-toolbar-height) + 15px);
    }
    
    .hero-scroll span {
        font-size: 9px;
    }
    
    .hero-scroll svg {
        width: 18px;
        height: 18px;
    }
}

/* Small Mobile (max-width: 479px) */
@media (max-width: 479px) {
    .hero {
        min-height: 100svh;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 10px;
    }
    
    .hero-logo-img {
        max-width: 180px;
        width: 65%;
    }
    
    .hero-logo {
        margin-bottom: 8px;
    }
    
    .hero-amenities {
        gap: 5px;
        margin: 6px 0;
        padding: 0;
    }
    
    .hero-amenity {
        flex: 0 0 58px;
        width: 58px;
        height: 56px;
        padding: 8px 4px 6px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-amenity-icon {
        width: 22px;
        height: 22px;
    }
    
    .hero-amenity-label {
        font-size: 5px;
        letter-spacing: 0.01em;
        line-height: 1.25;
        max-width: 52px;
    }
    
    .hero-description {
        font-size: 0.7rem;
        line-height: 1.5;
        max-width: 100%;
        margin: 5px auto 8px;
        padding: 0 4px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin-top: 6px;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .hero-scroll {
        bottom: calc(var(--mobile-toolbar-height) + 8px);
    }
    
    .hero-scroll span {
        font-size: 8px;
        letter-spacing: 0.08em;
    }
    
    .hero-scroll svg {
        width: 16px;
        height: 16px;
    }
}

/* Around 450px screens - larger amenities */
@media (min-width: 420px) and (max-width: 479px) {
    .hero-amenities {
        gap: 9px;
    }
    
    .hero-amenity {
        flex: 0 0 80px;
        width: 80px;
        height: 78px;
        padding: 11px 7px 9px;
        border-radius: 11px;
    }
    
    .hero-amenity-icon {
        width: 31px;
        height: 31px;
    }
    
    .hero-amenity-label {
        font-size: 7px;
        max-width: 72px;
    }
    
    .hero-scroll {
        bottom: 20px !important;
        top: auto !important;
    }
}

/* Extra Small Mobile (max-width: 359px) */
@media (max-width: 359px) {
    .hero-logo-img {
        max-width: 140px;
    }
    
    .hero-amenities {
        gap: 4px;
    }
    
    .hero-amenity {
        flex: 0 0 52px;
        width: 52px;
        height: 50px;
        padding: 6px 4px 5px;
    }
    
    .hero-amenity-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-amenity-label {
        font-size: 4.5px;
        max-width: 46px;
    }
    
    .hero-description {
        font-size: 0.65rem;
        line-height: 1.45;
    }
    
    .hero-cta .btn {
        padding: 9px 12px;
        font-size: 10px;
    }
}

/* Short Viewport Height (landscape phones, etc.) */
@media (max-height: 600px) {
    .hero {
        min-height: 100svh;
        padding: 60px 0 70px;
    }
    
    .hero-content {
        padding: 8px;
    }
    
    .hero-logo-img {
        max-width: 160px;
    }
    
    .hero-logo {
        margin-bottom: 6px;
    }
    
    .hero-amenities {
        gap: 6px;
        margin: 5px 0;
    }
    
    .hero-amenity {
        flex: 0 0 78px;
        width: 78px;
        height: 68px;
        padding: 10px 6px 8px;
    }
    
    .hero-amenity-icon {
        width: 26px;
        height: 26px;
    }
    
    .hero-amenity-label {
        font-size: 5.5px;
        max-width: 70px;
    }
    
    .hero-description {
        font-size: 0.72rem;
        line-height: 1.45;
        margin: 4px auto 8px;
    }
    
    .hero-cta {
        margin-top: 6px;
        gap: 6px;
    }
    
    .hero-cta .btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .hero-scroll {
        display: none;
    }
}

/* Very Short Viewport (landscape small phones) */
@media (max-height: 480px) {
    .hero {
        padding: 50px 0 55px;
    }
    
    .hero-logo-img {
        max-width: 130px;
    }
    
    .hero-amenities {
        margin: 4px 0;
        gap: 5px;
    }
    
    .hero-amenity {
        flex: 0 0 68px;
        width: 68px;
        height: 58px;
        padding: 8px 5px 6px;
    }
    
    .hero-amenity-icon {
        width: 24px;
        height: 24px;
    }
    
    .hero-amenity-label {
        font-size: 5px;
        max-width: 60px;
    }
    
    .hero-description {
        font-size: 0.68rem;
        line-height: 1.4;
        margin: 3px auto 6px;
    }
    
    .hero-cta {
        margin-top: 5px;
        gap: 5px;
    }
    
    .hero-cta .btn {
        padding: 8px 14px;
        font-size: 10px;
    }
}

/* ==========================================================================
   MOBILE UX OPTIMIZATION - Hero Professional Enhancement
   Desktop unchanged / Mobiil-only improvements for conversion
   ========================================================================== */

/* Desktop: Hide mobile-only elements */
@media (min-width: 769px) {
    .hero-tagline,
    .hero-price-tag,
    .hero-cta-stack {
        display: none !important;
    }
}

/* Mobile Hero Optimizations - Tablet & Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Hide original CTA buttons and long description on mobile */
    .hero-cta,
    .hero-description {
        display: none;
    }
    
    /* Tagline under logo */
    .hero-tagline {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        margin-top: 8px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        letter-spacing: 0.05em;
    }
    
    /* Hide tagline on desktop (doesn't exist in markup, but safety) */
    @media (min-width: 769px) {
        .hero-tagline {
            display: none;
        }
    }
    
    /* Optimize amenities - Show only 4 key features in 2x2 grid */
    .hero-amenities {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 280px;
        margin: 0 auto 20px;
        padding: 0;
    }
    
    /* Hide amenities 5-8 on mobile (show only 4 most important) */
    .hero-amenity:nth-child(5),
    .hero-amenity:nth-child(6),
    .hero-amenity:nth-child(7),
    .hero-amenity:nth-child(8) {
        display: none;
    }
    
    /* Larger, more touch-friendly amenity cards */
    .hero-amenity {
        flex: none;
        width: auto;
        min-height: 90px;
        padding: 14px 12px;
        gap: 8px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-amenity-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-amenity-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.02em;
        max-width: 100%;
    }
    
    /* HERO PRICE TAG - NEW ELEMENT! */
    .hero-price-tag {
        display: inline-flex;
        align-items: baseline;
        gap: 4px;
        background: var(--color-accent);
        color: white;
        padding: 12px 24px;
        border-radius: 30px;
        margin: 20px 0 16px;
        box-shadow: 0 4px 20px rgba(220, 165, 74, 0.4);
        font-weight: 700;
        animation: pricePulse 3s ease-in-out infinite;
    }
    
    @keyframes pricePulse {
        0%, 100% { 
            box-shadow: 0 4px 20px rgba(220, 165, 74, 0.4);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 6px 28px rgba(220, 165, 74, 0.6);
            transform: scale(1.02);
        }
    }
    
    .hero-price-tag .price-from {
        font-size: 12px;
        opacity: 0.9;
        font-weight: 500;
    }
    
    .hero-price-tag .price-amount {
        font-size: 32px;
        line-height: 1;
        font-weight: 800;
    }
    
    .hero-price-tag .price-per {
        font-size: 14px;
        opacity: 0.9;
        font-weight: 500;
    }
    

    
    /* CTA Stack - Vertical with prominence */
    .hero-cta-stack {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Primary CTA - Large & Prominent */
    .hero-cta-stack .btn-primary-large {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 56px;
        font-size: 16px;
        font-weight: 700;
        background: var(--color-accent);
        color: white;
        border: none;
        border-radius: 14px;
        margin-bottom: 12px;
        box-shadow: 0 6px 24px rgba(220, 165, 74, 0.35);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-cta-stack .btn-primary-large:active {
        transform: scale(0.98);
        box-shadow: 0 4px 16px rgba(220, 165, 74, 0.4);
    }
    
    /* Icon inside primary button */
    .hero-cta-stack .btn-primary-large .icon {
        font-size: 20px;
        flex-shrink: 0;
    }
    
    /* Secondary Quick Actions - Grid */
    .hero-quick-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .hero-quick-actions .btn-secondary {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 48px;
        font-size: 14px;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
        transition: all 0.3s ease;
        padding: 0 12px;
        text-align: center;
    }
    
    .hero-quick-actions .btn-secondary:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0.97);
    }
    
    .hero-quick-actions .btn-secondary .icon {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    /* Hide scroll indicator on very small screens */
    .hero-scroll {
        display: none;
    }
}

/* Show scroll indicator on larger mobile/tablet */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-scroll {
        display: flex;
    }
}

/* Extra compact on very small mobile (<400px) */
@media (max-width: 400px) {
    .hero-price-tag {
        padding: 10px 20px;
        margin: 16px 0 12px;
    }
    
    .hero-price-tag .price-amount {
        font-size: 28px;
    }
    
    .hero-amenities {
        gap: 10px;
        max-width: 260px;
    }
    
    .hero-amenity {
        min-height: 80px;
        padding: 12px 10px;
    }
    
    .hero-amenity-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-amenity-label {
        font-size: 10px;
    }
    
    .hero-cta-stack {
        max-width: 280px;
    }
    
    .hero-cta-stack .btn-primary-large {
        min-height: 52px;
        font-size: 15px;
    }
    
}

/* ==========================================================================
   MOBILE UX OPTIMIZATION - Quick Info Bar
   Trust builders / Quick access information
   ========================================================================== */

/* Hide on desktop */
@media (min-width: 769px) {
    .quick-info-bar {
        display: none !important;
    }
}

/* Quick Info Bar - Mobile Only */
@media (max-width: 768px) {
    .quick-info-bar {
        background: transparent;
        padding: 0;
        height: 70px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 90;
        transform: translate3d(0, -100%, 0);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
        will-change: transform;
    }
    
    /* Glass effect background layer */
    .quick-info-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        z-index: -1;
        transform: translateZ(0);
    }
    
    /* Show when scrolling down */
    .quick-info-bar.visible {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Account for WP admin bar */
    body.admin-bar .quick-info-bar.visible {
        top: 46px;
    }
    
    .quick-info-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 600px;
        margin: 0 auto;
        padding: 10px 16px;
        height: 100%;
        align-items: center;
    }
    
    .quick-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 16px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
        height: 50px;
    }
    
    /* Primary CTA - Booking */
    .quick-cta-primary {
        background: linear-gradient(135deg, var(--color-accent) 0%, #c9964a 100%);
        color: white;
    }
    
    .quick-cta-primary:active {
        transform: scale(0.97);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }
    
    /* Secondary CTA - Navigation */
    .quick-cta-secondary {
        background: white;
        color: var(--color-primary);
        border: 2px solid #e8e8e8;
    }
    
    .quick-cta-secondary:active {
        transform: scale(0.97);
        background: #f8f8f8;
    }
    
    .quick-cta-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .quick-cta-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .quick-cta-text {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.01em;
    }
}

/* Smaller screens optimization */
@media (max-width: 400px) {
    .quick-info-actions {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .quick-cta {
        padding: 10px 12px;
        font-size: 13px;
        height: 46px;
    }
    
    .quick-cta-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .quick-cta-text {
        font-size: 13px;
    }
}

/* ==========================================================================
   MOBILE UX OPTIMIZATION - Sticky FAB (Floating Action Button)
   WhatsApp-style persistent call button
   ========================================================================== */

/* Hide on desktop */
@media (min-width: 769px) {
    .sticky-fab-container {
        display: none !important;
    }
}

/* Sticky FAB - Mobile Only */
@media (max-width: 768px) {
    .sticky-fab-container {
        position: fixed;
        bottom: calc(var(--mobile-toolbar-height, 60px) + 16px);
        right: 16px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .fab {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--color-accent);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(220, 165, 74, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
        border: none;
        text-decoration: none;
    }
    
    .fab:active {
        transform: scale(0.95);
        box-shadow: 0 2px 12px rgba(220, 165, 74, 0.5);
    }
    
    .fab svg {
        width: 24px;
        height: 24px;
        stroke: white;
        flex-shrink: 0;
    }
    
    /* Label tooltip */
    .fab-label {
        position: absolute;
        right: 64px;
        background: var(--color-accent);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transform: translateX(10px);
        transition: all 0.3s ease;
        box-shadow: 0 2px 12px rgba(220, 165, 74, 0.3);
    }
    
    /* Show label on first 3 seconds (via JS) */
    .fab.first-time .fab-label {
        opacity: 1;
        transform: translateX(0);
        animation: fabPulse 0.6s ease-in-out;
    }
    
    @keyframes fabPulse {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(-5px); }
    }
    
    /* Pulsing ripple effect for attention */
    .fab::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: var(--color-accent);
        opacity: 0.5;
        animation: fabRipple 2s infinite;
        z-index: -1;
    }
    
    @keyframes fabRipple {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
    
    /* Hide when footer is visible */
    body.footer-visible .sticky-fab-container {
        opacity: 0;
        pointer-events: none;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
}

/* Smaller FAB on very small screens */
@media (max-width: 400px) {
    .sticky-fab-container {
        bottom: calc(var(--mobile-toolbar-height, 60px) + 12px);
        right: 12px;
    }
    
    .fab {
        width: 52px;
        height: 52px;
    }
    
    .fab svg {
        width: 22px;
        height: 22px;
    }
    
    .fab-label {
        font-size: 12px;
        padding: 7px 14px;
        right: 60px;
    }
}

/* ==========================================================================
   MOBILE UX OPTIMIZATION - Service Cards Grid
   Optimized layout for touch interaction
   ========================================================================== */

/* Tablet & Large Mobile: 2x2 Grid (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-card {
        min-height: 200px;
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 13px;
    }
}

/* Small Mobile: 1 Column (max-width: 576px) */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 20px;
        min-height: auto;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 14px;
    }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-sm);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-primary);
    opacity: 0.8;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background: var(--color-light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--color-accent);
    opacity: 0.2;
    pointer-events: none;
    z-index: 2;
}

/* About Slideshow */
.about-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.about-slide.active {
    opacity: 1;
    z-index: 1;
}

.about-slide.previous {
    opacity: 0;
    z-index: 0;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* ========== Motion Effects for Each Slide ========== */

/* 1. Zoom In - starts normal, zooms in slowly */
.about-slide--zoom-in img {
    transform: scale(1);
}
.about-slide--zoom-in.active img {
    animation: motionZoomIn 6s ease-out forwards;
}
@keyframes motionZoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* 2. Pan Left - moves from right to left */
.about-slide--pan-left img {
    transform: scale(1.2) translateX(8%);
}
.about-slide--pan-left.active img {
    animation: motionPanLeft 6s ease-out forwards;
}
@keyframes motionPanLeft {
    0% { transform: scale(1.2) translateX(8%); }
    100% { transform: scale(1.2) translateX(-8%); }
}

/* 3. Zoom Out - starts zoomed, zooms out */
.about-slide--zoom-out img {
    transform: scale(1.2);
}
.about-slide--zoom-out.active img {
    animation: motionZoomOut 6s ease-out forwards;
}
@keyframes motionZoomOut {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* 4. Pan Right - moves from left to right */
.about-slide--pan-right img {
    transform: scale(1.2) translateX(-8%);
}
.about-slide--pan-right.active img {
    animation: motionPanRight 6s ease-out forwards;
}
@keyframes motionPanRight {
    0% { transform: scale(1.2) translateX(-8%); }
    100% { transform: scale(1.2) translateX(8%); }
}

/* 5. Pan Up - moves from bottom to top */
.about-slide--pan-up img {
    transform: scale(1.2) translateY(8%);
}
.about-slide--pan-up.active img {
    animation: motionPanUp 6s ease-out forwards;
}
@keyframes motionPanUp {
    0% { transform: scale(1.2) translateY(8%); }
    100% { transform: scale(1.2) translateY(-8%); }
}

/* 6. Zoom In Left - zooms while panning left */
.about-slide--zoom-in-left img {
    transform: scale(1) translateX(5%);
}
.about-slide--zoom-in-left.active img {
    animation: motionZoomInLeft 6s ease-out forwards;
}
@keyframes motionZoomInLeft {
    0% { transform: scale(1) translateX(5%); }
    100% { transform: scale(1.15) translateX(-5%); }
}

/* 7. Pan Down - moves from top to bottom */
.about-slide--pan-down img {
    transform: scale(1.2) translateY(-8%);
}
.about-slide--pan-down.active img {
    animation: motionPanDown 6s ease-out forwards;
}
@keyframes motionPanDown {
    0% { transform: scale(1.2) translateY(-8%); }
    100% { transform: scale(1.2) translateY(8%); }
}

/* 8. Zoom In Right - zooms while panning right */
.about-slide--zoom-in-right img {
    transform: scale(1) translateX(-5%);
}
.about-slide--zoom-in-right.active img {
    animation: motionZoomInRight 6s ease-out forwards;
}
@keyframes motionZoomInRight {
    0% { transform: scale(1) translateX(-5%); }
    100% { transform: scale(1.15) translateX(5%); }
}

/* 9. Drift - diagonal slow drift */
.about-slide--drift img {
    transform: scale(1.15) translate(-3%, -3%);
}
.about-slide--drift.active img {
    animation: motionDrift 6s ease-out forwards;
}
@keyframes motionDrift {
    0% { transform: scale(1.15) translate(-3%, -3%); }
    100% { transform: scale(1.15) translate(3%, 3%); }
}

/* 10. Zoom Out with subtle rotation */
.about-slide--zoom-out-rotate img {
    transform: scale(1.2) rotate(1deg);
}
.about-slide--zoom-out-rotate.active img {
    animation: motionZoomOutRotate 6s ease-out forwards;
}
@keyframes motionZoomOutRotate {
    0% { transform: scale(1.2) rotate(1deg); }
    100% { transform: scale(1) rotate(-1deg); }
}

/* Slideshow Progress Bar */
.about-slideshow-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.about-slideshow-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-accent), #f0c674);
    transition: width 0.1s linear;
}

.about-content h2 {
    margin-bottom: var(--spacing-md);
}

.about-content p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.about-feature svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   Activities Section
   ========================================================================== */
.activities-section {
    position: relative;
    overflow: hidden;
}

.activities-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.activities-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.activities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.activities-section > .container {
    position: relative;
    z-index: 2;
}

/* Activities Section Text Styles */
.activities-section .section-badge {
    color: var(--color-accent);
}

.activities-section .section-title {
    color: var(--color-white);
}

.activities-section .section-description {
    color: var(--color-white);
    opacity: 0.9;
}

/* Activities Section Cards - Transparent */
.activities-section .service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.activities-section .service-card::before,
.activities-section .service-card::after {
    display: none;
}

.activities-section .service-card:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.activities-section .service-card h3,
.activities-section .service-card p {
    color: var(--color-white);
}

.activities-section .service-card .service-icon {
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.9) 0%, rgba(196, 146, 63, 0.9) 100%);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Service Card Background Images */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: transform 0.6s ease;
    z-index: -2;
    transform: scale(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: scale(1.05);
}

.service-card:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

/* Individual card background images */
.service-card-rooms::before {
    background-image: url('assets/images/rooms/family/558803766.jpg');
}

.service-card-sauna::before {
    background-image: url('assets/images/IMG_6479-rotated.jpg');
}

.service-card-terrace::before {
    background-image: url('assets/images/cafe/240530_11-1.jpg');
}

.service-card-billiards::before {
    background-image: url('assets/images/IMG_6486.jpg');
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-accent) 0%, #c4923f 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.service-card h3 {
    margin-bottom: var(--spacing-xs);
    color: var(--color-white);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--color-white);
    font-size: 15px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   Location Section
   ========================================================================== */
.location-section {
    background: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.svg') repeat;
    opacity: 0.05;
}

.location-section .section-badge {
    color: var(--color-accent);
}

.location-section .section-title {
    color: var(--color-white);
}

.location-section .section-description {
    color: var(--color-white);
    opacity: 0.8;
}

.location-content {
    position: relative;
    z-index: 1;
}

.location-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.location-stat {
    text-align: center;
}

.location-stat-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.location-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-top: var(--spacing-xs);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
/* ==========================================================================
   Reviews Section - Compact Slider with Award Frame
   ========================================================================== */
.reviews-section-compact {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 500px;
}

.reviews-compact-layout {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

/* Left: Award Frame with Photo - Desktop */
.reviews-award-frame {
    flex: 0 0 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: var(--spacing-xl);
}

.award-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
}

.award-frame-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 10px 40px rgba(0, 53, 128, 0.35));
}

.award-photo-img {
    position: absolute;
    top: 3.8%;
    left: 4.8%;
    width: 90.4%;
    height: 74.5%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    z-index: 1;
}

/* Right: Review Slider */
.reviews-slider-container {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
    padding: var(--spacing-xl);
}

.reviews-slider {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.review-slide.prev {
    transform: translateX(-30px);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.review-author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

.review-author-says {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.review-author-flag {
    font-size: 16px;
    margin-left: 4px;
}

.review-quote-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-white);
    margin: 0 0 var(--spacing-md);
    font-style: italic;
    font-weight: 300;
    padding-left: var(--spacing-sm);
    border-left: 3px solid var(--color-accent);
}

.review-slide > .review-author-score {
    display: inline-block;
    background: linear-gradient(135deg, #003580 0%, #0071c2 100%);
    color: var(--color-white);
    font-weight: 700;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 53, 128, 0.4);
}

/* Slider Controls - Arrows Only */
.reviews-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.slider-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Reviews Section Compact Responsive */
@media (max-width: 991px) {
    .reviews-section-compact {
        min-height: auto;
        padding: var(--spacing-xl) var(--spacing-md);
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    }
    
    /* Mobile: Make layout the blue frame container */
    .reviews-compact-layout {
        flex-direction: column;
        min-height: auto;
        max-width: 500px;
        margin: 0 auto;
        background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
        border-radius: var(--radius-xl);
        overflow: hidden;
        position: relative;
        padding-bottom: 50px; /* Space for booking badge */
    }
    
    .reviews-compact-layout::before {
        content: '';
        position: absolute;
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 58px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: calc(var(--radius-xl) - 4px);
        z-index: 1;
        pointer-events: none;
    }
    
    /* Booking badge at bottom of frame */
    .reviews-compact-layout::after {
        content: 'Booking.com \2022  9.0';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 14px;
        background: linear-gradient(135deg, #003580 0%, #00224f 100%);
        color: var(--color-white);
        font-size: 13px;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.05em;
        z-index: 3;
    }
    
    /* Hide desktop award frame on mobile */
    .reviews-award-frame {
        display: none;
    }
    
    .reviews-slider-container {
        position: relative;
        z-index: 2;
        background: transparent;
        padding: var(--spacing-lg);
    }
    
    .review-slide {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .review-quote-text {
        font-size: 16px;
    }
    
    .reviews-slider-controls {
        margin-top: var(--spacing-sm);
    }
}

@media (max-width: 576px) {
    .reviews-section-compact {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .reviews-compact-layout {
        border-radius: var(--radius-lg);
        padding-bottom: 44px;
    }
    
    .reviews-compact-layout::before {
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 50px;
        border-radius: calc(var(--radius-lg) - 2px);
    }
    
    .reviews-compact-layout::after {
        padding: 12px;
        font-size: 12px;
    }
    
    .reviews-slider-container {
        padding: var(--spacing-md);
    }
    
    .review-slide {
        padding: var(--spacing-sm);
    }
    
    .review-quote-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .review-author {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .reviews-slider-controls {
        gap: var(--spacing-md);
    }
}

/* Old reviews-section styles kept for backward compatibility */
.reviews-section {
    background: linear-gradient(180deg, #f8f6f3 0%, var(--color-white) 100%);
    overflow: hidden;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-top: var(--spacing-lg);
}

/* Award Frame Container */
.reviews-award-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.award-frame-container {
    position: relative;
    width: 100%;
    max-width: 340px;
    aspect-ratio: 3/4;
}

.award-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 10px 40px rgba(0, 53, 128, 0.25));
}

.award-photo {
    position: absolute;
    top: 3.8%;
    left: 4.8%;
    width: 90.4%;
    height: 74.5%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    z-index: 1;
}

/* Reviews Testimonials Grid */
.reviews-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-medium);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
    min-width: 0;
}

.review-name {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 15px;
}

.review-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.review-location::before {
    content: '\1F1EA\1F1EA';
    font-size: 11px;
}

.review-score {
    background: linear-gradient(135deg, #003580 0%, #0057b8 100%);
    color: var(--color-white);
    font-weight: 700;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 8px 8px 8px 0;
    flex-shrink: 0;
}

.review-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
    line-height: 1.35;
}

.review-text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Rating Categories */
.reviews-ratings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rating-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-label {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 500;
}

.rating-bar {
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #003580 0%, #0071c2 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.rating-value {
    font-size: 16px;
    font-weight: 700;
    color: #003580;
}

/* Reviews Section Responsive */
@media (max-width: 1199px) {
    .reviews-content {
        grid-template-columns: 1fr 1.3fr;
        gap: var(--spacing-lg);
    }
    
    .award-frame-container {
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .reviews-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .reviews-award-showcase {
        order: -1;
    }
    
    .award-frame-container {
        max-width: 280px;
    }
    
    .reviews-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-ratings {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .reviews-testimonials {
        grid-template-columns: 1fr;
    }
    
    .award-frame-container {
        max-width: 260px;
    }
    
    .review-card {
        padding: var(--spacing-sm);
    }
    
    .review-avatar {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .review-title {
        font-size: 13px;
    }
    
    .review-text {
        font-size: 12px;
    }
}

@media (max-width: 479px) {
    .reviews-ratings {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .award-frame-container {
        max-width: 220px;
    }
    
    .rating-label {
        font-size: 12px;
    }
    
    .rating-value {
        font-size: 14px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--color-dark-gray);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-lg) var(--spacing-md);
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .footer-main {
        grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr 1fr;
        gap: var(--spacing-md);
    }
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo img,
.footer-logo-img {
    height: 100px;
    width: auto;
    transition: filter var(--transition-medium), transform var(--transition-medium);
    filter: brightness(1) drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.footer-logo-link {
    display: inline-block;
}

.footer-logo-link:hover img,
.footer-logo-link:hover .footer-logo-img {
    filter: brightness(1.2) drop-shadow(0 4px 20px rgba(220, 165, 74, 0.5));
    transform: scale(1.03);
}

/* Responsive footer logo */
@media (max-width: 991px) {
    .footer-logo img,
    .footer-logo-img {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .footer-logo img,
    .footer-logo-img {
        height: 70px;
    }
}

.footer-logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--color-white);
    transition: all var(--transition-medium);
}

.footer-social a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Footer Recognition/Awards Section */
.footer-recognition {
    text-align: center;
}

/* Footer Newsletter Section */
.footer-newsletter {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-newsletter {
        text-align: left;
    }
}

.newsletter-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin-bottom: var(--spacing-md);
}

.newsletter-form {
    position: relative;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-medium);
}

.newsletter-input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(220, 165, 74, 0.15);
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 14px;
    color: var(--color-white);
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: var(--color-accent);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.newsletter-btn svg {
    width: 18px;
    height: 18px;
    color: var(--color-white);
    transition: transform var(--transition-medium);
}

.newsletter-btn:hover {
    background: #c4923f;
}

.newsletter-btn:hover svg {
    transform: translateX(2px) translateY(-2px);
}

.newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 10px;
    font-size: 13px;
    text-align: left;
    min-height: 20px;
}

.newsletter-message.success {
    color: #4ade80;
}

.newsletter-message.error {
    color: #f87171;
}

.newsletter-privacy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 12px;
    line-height: 1.45;
}

/* Newsletter Responsive */
@media (max-width: 991px) {
    .footer-newsletter {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .footer-newsletter {
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .newsletter-message {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .footer-recognition {
        text-align: left;
    }
}

.footer-award-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-medium);
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .footer-award-link {
        align-items: flex-start;
    }
}

.footer-award-link:hover {
    transform: translateY(-4px);
}

/* Footer Rating Badge - Booking.com Style */
.footer-rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-rating-score {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #003580 0%, #00224f 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px 10px 10px 0;
    box-shadow: 0 4px 15px rgba(0, 53, 128, 0.4);
    transition: all var(--transition-medium);
}

.footer-award-link:hover .footer-rating-score {
    background: linear-gradient(135deg, #004aad 0%, #003580 100%);
    box-shadow: 0 6px 20px rgba(0, 53, 128, 0.5);
}

.footer-rating-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-rating-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.footer-rating-reviews {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.footer-award-img {
    max-width: 160px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    transition: all var(--transition-medium);
}

.footer-award-link:hover .footer-award-img {
    filter: drop-shadow(0 8px 25px rgba(0, 79, 158, 0.3));
}

.footer-award-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-top: var(--spacing-xs);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-copyright a {
    color: var(--color-accent);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   Footer Desktop Responsive Styles
   ========================================================================== */

/* Ultra-Wide Desktop (2560px+) */
@media (min-width: 2560px) {
    .site-footer {
        padding: 80px 0 40px;
    }
    
    .footer-main {
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 120px;
    }
    
    .footer-brand p {
        font-size: 17px;
        line-height: 1.8;
    }
    
    .footer-social a {
        width: 52px;
        height: 52px;
    }
    
    .footer-social svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .footer-links a,
    .footer-contact-item {
        font-size: 16px;
    }
    
    .footer-contact-item svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-rating-score {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .footer-rating-label {
        font-size: 17px;
    }
    
    .footer-copyright,
    .footer-legal a {
        font-size: 15px;
    }
}

/* Wide Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .site-footer {
        padding: 60px 0 35px;
    }
    
    .footer-main {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 100px;
    }
    
    .footer-brand p {
        font-size: 15px;
    }
    
    .footer-social a {
        width: 46px;
        height: 46px;
    }
    
    .footer-social svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .footer-links a,
    .footer-contact-item {
        font-size: 15px;
    }
    
    .footer-rating-score {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .footer-rating-label {
        font-size: 16px;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .site-footer {
        padding: 50px 0 30px;
    }
    
    .footer-main {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 85px;
    }
    
    .footer-brand p {
        font-size: 14px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .footer-links a,
    .footer-contact-item {
        font-size: 14px;
    }
    
    .footer-contact-item svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-rating-score {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .footer-rating-label {
        font-size: 14px;
    }
    
    .footer-copyright,
    .footer-legal a {
        font-size: 13px;
    }
}

/* Small Desktop / Large Laptop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .site-footer {
        padding: 40px 0 24px;
    }
    
    .footer-main {
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 72px;
    }
    
    .footer-brand p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    .footer-social svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 14px;
    }
    
    .footer-links a,
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-contact-item svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-rating-score {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-rating-label {
        font-size: 13px;
    }
    
    .footer-copyright,
    .footer-legal a {
        font-size: 12px;
    }
}

/* Laptop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .site-footer {
        padding: 32px 0 20px;
    }
    
    .footer-main {
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 60px;
    }
    
    .footer-brand p {
        font-size: 12px;
        line-height: 1.55;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
    
    .footer-social svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .footer-links a,
    .footer-contact-item {
        font-size: 12px;
    }
    
    .footer-contact-item svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-rating-score {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-rating-label {
        font-size: 12px;
    }
    
    .footer-copyright,
    .footer-legal a {
        font-size: 11px;
    }
}

/* ==========================================================================
   Mobile Sticky Toolbar - DISABLED
   Removed from mobile view for better content readability
   ========================================================================== */
.mobile-toolbar {
    display: none !important;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(220, 165, 74, 0.4);
}

.scroll-to-top:hover {
    background: #c4923f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 165, 74, 0.5);
}

.scroll-to-top:active {
    transform: translateY(0);
}

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

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    
    .scroll-to-top svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 479px) {
    .scroll-to-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}

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

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

.hidden { display: none !important; }
.visible { display: block !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--spacing-xs) !important; }
.mt-2 { margin-top: var(--spacing-sm) !important; }
.mt-3 { margin-top: var(--spacing-md) !important; }
.mt-4 { margin-top: var(--spacing-lg) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--spacing-xs) !important; }
.mb-2 { margin-bottom: var(--spacing-sm) !important; }
.mb-3 { margin-bottom: var(--spacing-md) !important; }
.mb-4 { margin-bottom: var(--spacing-lg) !important; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==========================================================================
   Page Templates
   ========================================================================== */
.page-header {
    padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xl);
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
}

.page-content {
    padding: var(--spacing-xl) 0;
}

/* ==========================================================================
   WordPress Specific
   ========================================================================== */
.wp-block-image {
    margin-bottom: var(--spacing-md);
}

.wp-block-image img {
    border-radius: var(--radius-md);
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: var(--spacing-md);
}

.alignright {
    float: right;
    margin-left: var(--spacing-md);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Flags Style */
.language-flags {
    display: flex;
    gap: 6px;
}

.language-flags .lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    border: 2px solid transparent;
}

.language-flags .lang-link:hover,
.language-flags .lang-link:focus {
    opacity: 1;
    transform: scale(1.1);
}

.language-flags .lang-link.active {
    opacity: 1;
    border-color: var(--color-accent);
}

.language-flags .lang-link svg {
    width: 100%;
    height: 100%;
}

/* Dropdown Style */
.language-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

.lang-dropdown-toggle:hover,
.lang-dropdown-toggle:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-accent);
}

.lang-dropdown-toggle .flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-dropdown-toggle .dropdown-arrow {
    transition: transform var(--transition-fast);
}

.language-dropdown:hover .dropdown-arrow,
.language-dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(74, 74, 74, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.language-dropdown:hover .lang-dropdown-menu,
.language-dropdown:focus-within .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--color-white);
    text-decoration: none;
    transition: background var(--transition-fast);
}

.lang-option:hover,
.lang-option:focus {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background: rgba(220, 165, 74, 0.2);
}

.lang-option .flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
}

.mobile-language-switcher .language-flags {
    gap: 16px;
}

.mobile-language-switcher .language-flags .lang-link {
    width: 48px;
    height: 36px;
}

/* Scrolled header adjustments */
.site-header.scrolled .lang-dropdown-toggle {
    background: rgba(74, 74, 74, 0.3);
}

/* ==========================================================================
   Majutus (Accommodation) Page Styles
   ========================================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.majutus-hero {
    min-height: 80vh;
}

/* Majutus Hero Slider */
.majutus-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.majutus-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.majutus-hero-slide.active {
    opacity: 1;
}

.majutus-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroKenBurns 8s ease-in-out infinite alternate;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-style: preserve-3d;
    image-rendering: auto;
}

@keyframes heroKenBurns {
    0% {
        transform: scale(1.02) translateX(0);
    }
    100% {
        transform: scale(1.06) translateX(-0.5%);
    }
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 25s ease-in-out infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--spacing-xl) var(--spacing-md);
}

.page-hero-content h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    opacity: 0.9;
    line-height: 1.7;
}

/* Hero Quick Navigation - larger style for majutus page */
.hero-quick-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
    margin: var(--spacing-md) 0;
    padding: 0 var(--spacing-sm);
}

.hero-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 18px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    text-decoration: none;
    flex: 0 0 165px;
    width: 165px;
    height: 142px;
    transition: all var(--transition-medium);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero-quick-link:hover {
    background: rgba(220, 165, 74, 0.3);
    border-color: rgba(220, 165, 74, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(220, 165, 74, 0.25);
    color: var(--color-white);
}

.hero-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    color: var(--color-accent);
}

.hero-quick-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
}

.hero-quick-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    max-width: 145px;
    opacity: 0.95;
}

.page-hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero-cta .btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.page-hero-cta .btn-booking svg {
    width: 20px;
    height: 20px;
}

.page-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    opacity: 0.8;
    animation: bounce 2s ease-in-out infinite;
}

.page-hero-scroll span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-hero-scroll svg {
    width: 24px;
    height: 24px;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

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

/* ==========================================================================
   Page Hero Responsive Styles - Desktop Breakpoints
   ========================================================================== */

/* Ultra-Wide Desktop (2560px+) */
@media (min-width: 2560px) {
    .page-hero {
        min-height: 70vh;
    }
    
    .page-hero-content {
        max-width: 900px;
        padding: 50px 30px;
    }
    
    .page-hero-content h1 {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }
    
    .page-hero-description {
        font-size: 1.15rem;
        line-height: 1.75;
        max-width: 700px;
        margin-bottom: 24px;
    }
    
    .hero-quick-nav {
        gap: 16px;
        margin: 20px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 150px;
        width: 150px;
        height: 126px;
        padding: 22px 16px 18px;
        gap: 12px;
        border-radius: 14px;
    }
    
    .hero-quick-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-quick-text {
        font-size: 9px;
        max-width: 135px;
    }
    
    .page-hero-cta {
        gap: 14px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .page-hero-scroll {
        bottom: 40px;
    }
    
    .page-hero-scroll span {
        font-size: 12px;
    }
    
    .page-hero-scroll svg {
        width: 24px;
        height: 24px;
    }
}

/* Wide Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .page-hero {
        min-height: 65vh;
    }
    
    .page-hero-content {
        max-width: 800px;
        padding: 40px 25px;
    }
    
    .page-hero-content h1 {
        font-size: 2.6rem;
        margin-bottom: 16px;
    }
    
    .page-hero-description {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 620px;
        margin-bottom: 20px;
    }
    
    .hero-quick-nav {
        gap: 14px;
        margin: 16px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 130px;
        width: 130px;
        height: 110px;
        padding: 18px 14px 15px;
        gap: 10px;
        border-radius: 12px;
    }
    
    .hero-quick-icon {
        width: 42px;
        height: 42px;
    }
    
    .hero-quick-text {
        font-size: 8px;
        max-width: 115px;
    }
    
    .page-hero-cta {
        gap: 12px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .page-hero-scroll {
        bottom: 30px;
    }
    
    .page-hero-scroll span {
        font-size: 11px;
    }
    
    .page-hero-scroll svg {
        width: 22px;
        height: 22px;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .page-hero {
        min-height: 60vh;
    }
    
    .page-hero-content {
        max-width: 700px;
        padding: 30px 20px;
    }
    
    .page-hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .page-hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 550px;
        margin-bottom: 16px;
    }
    
    .hero-quick-nav {
        gap: 10px;
        margin: 12px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 105px;
        width: 105px;
        height: 90px;
        padding: 14px 10px 12px;
        gap: 8px;
        border-radius: 10px;
    }
    
    .hero-quick-icon {
        width: 34px;
        height: 34px;
    }
    
    .hero-quick-text {
        font-size: 7px;
        max-width: 95px;
    }
    
    .page-hero-cta {
        gap: 10px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .page-hero-scroll {
        bottom: 20px;
    }
    
    .page-hero-scroll span {
        font-size: 9px;
    }
    
    .page-hero-scroll svg {
        width: 18px;
        height: 18px;
    }
}

/* Small Desktop / Large Laptop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .page-hero {
        min-height: 55vh;
    }
    
    .page-hero-content {
        max-width: 650px;
        padding: 24px 16px;
    }
    
    .page-hero-content h1 {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }
    
    .page-hero-description {
        font-size: 0.85rem;
        line-height: 1.55;
        max-width: 500px;
        margin-bottom: 14px;
    }
    
    .hero-quick-nav {
        gap: 8px;
        margin: 10px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 95px;
        width: 95px;
        height: 80px;
        padding: 12px 8px 10px;
        gap: 6px;
        border-radius: 8px;
    }
    
    .hero-quick-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-quick-text {
        font-size: 6.5px;
        max-width: 85px;
    }
    
    .page-hero-cta {
        gap: 8px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        padding: 9px 18px;
        font-size: 10px;
    }
    
    .page-hero-scroll {
        bottom: 15px;
    }
    
    .page-hero-scroll span {
        font-size: 8px;
    }
    
    .page-hero-scroll svg {
        width: 16px;
        height: 16px;
    }
}

/* Laptop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .page-hero {
        min-height: 50vh;
    }
    
    .page-hero-content {
        max-width: 600px;
        padding: 20px 14px;
    }
    
    .page-hero-content h1 {
        font-size: 1.7rem;
        margin-bottom: 8px;
    }
    
    .page-hero-description {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 460px;
        margin-bottom: 12px;
    }
    
    .hero-quick-nav {
        gap: 6px;
        margin: 8px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 85px;
        width: 85px;
        height: 72px;
        padding: 10px 6px 8px;
        gap: 5px;
        border-radius: 6px;
    }
    
    .hero-quick-icon {
        width: 26px;
        height: 26px;
    }
    
    .hero-quick-text {
        font-size: 6px;
        max-width: 76px;
    }
    
    .page-hero-cta {
        gap: 6px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        padding: 8px 16px;
        font-size: 9px;
    }
    
    .page-hero-scroll {
        bottom: 12px;
    }
    
    .page-hero-scroll span {
        font-size: 7px;
    }
    
    .page-hero-scroll svg {
        width: 14px;
        height: 14px;
    }
}

/* Rooms Section */
.rooms-section {
    background: var(--color-light-gray);
}

/* Room Filters */
.room-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.room-filter-btn {
    padding: 10px 24px;
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.room-filter-btn:hover {
    border-color: var(--color-accent);
}

.room-filter-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* Room Cards Grid */
.room-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

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

/* Room Card */
.room-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.room-card.hidden {
    display: none;
}

/* Room Card Image */
.room-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Room Badge */
.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.room-badge--popular {
    background: var(--color-accent);
    color: var(--color-white);
}

.room-badge--best-value {
    background: #2ecc71;
    color: var(--color-white);
}

.room-badge--spacious {
    background: #3498db;
    color: var(--color-white);
}

/* Room Quick View Button */
.room-quick-view {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-fast);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.room-quick-view svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.room-card:hover .room-quick-view {
    opacity: 1;
    transform: scale(1);
}

.room-quick-view:hover {
    background: var(--color-accent);
}

.room-quick-view:hover svg {
    color: var(--color-white);
}

/* Room Card Content */
.room-card-content {
    padding: var(--spacing-md);
}

.room-card-title {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--color-primary);
}

.room-card-title-en {
    font-size: 13px;
    color: var(--color-primary);
    opacity: 0.6;
    margin-bottom: var(--spacing-sm);
}

/* Room Quick Info */
.room-quick-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.room-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-primary);
    opacity: 0.8;
}

.room-info-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

/* Room Amenities */
.room-amenities {
    display: flex;
    gap: 8px;
    margin-bottom: var(--spacing-md);
}

.room-amenity {
    width: 36px;
    height: 36px;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-amenity svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.room-amenity-more {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Room Card Footer */
.room-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-card-footer .btn {
    width: 100%;
}

.room-card-footer .btn-outline {
    order: 1;
}

.room-card-footer .btn-primary {
    order: 2;
}

.btn-sm {
    padding: 10px 16px;
    font-size: 13px;
}

/* Rooms CTA */
.rooms-cta {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.rooms-cta p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    opacity: 0.8;
}

.rooms-cta .btn-booking {
    color: var(--color-white) !important;
}

/* Mobile rooms-cta */
@media (max-width: 767px) {
    .rooms-cta {
        padding: var(--spacing-md);
        margin: 0 var(--spacing-sm);
    }
    
    .rooms-cta p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .rooms-cta .btn-booking {
        display: block;
        width: 100%;
        padding: 16px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .rooms-cta {
        padding: var(--spacing-sm) var(--spacing-xs);
    }
    
    .rooms-cta p {
        font-size: 13px;
    }
    
    .rooms-cta .btn-booking {
        padding: 14px 20px;
        font-size: 13px;
    }
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* btn-lg mobile responsive */
@media (max-width: 767px) {
    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
        width: auto;
        max-width: 280px;
    }
    
    .page-hero-cta .btn-lg {
        width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 12px 24px;
        font-size: 13px;
        max-width: 240px;
    }
}

/* Amenities Section */
/* ============================================
   COMPREHENSIVE AMENITIES SECTION
   Premium UX/UI Design with Booking.com Rating
============================================ */
.amenities-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: var(--spacing-xxl) 0;
}

/* Amenities Header with Rating */
.amenities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.amenities-header-text {
    flex: 1;
    min-width: 280px;
}

.amenities-header-text .section-badge {
    margin-bottom: var(--spacing-xs);
}

.amenities-header-text .section-title {
    margin-bottom: var(--spacing-xs);
}

.amenities-header-text .section-description {
    color: var(--color-primary);
    opacity: 0.75;
    font-size: 1.05rem;
    max-width: 500px;
}

.amenities-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, #003580 0%, #00224f 100%);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 53, 128, 0.25);
    min-width: 180px;
}

.amenities-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenities-rating .rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.amenities-rating .rating-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* Popular Amenities */
.amenities-popular {
    background: linear-gradient(135deg, rgba(220, 165, 74, 0.1) 0%, rgba(220, 165, 74, 0.05) 100%);
    border: 2px solid rgba(220, 165, 74, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.amenities-popular-title {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.amenities-popular-title svg {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
    fill: var(--color-accent);
}

.amenities-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
}

.amenity-popular-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-medium);
}

.amenity-popular-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.amenity-popular-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.amenity-popular-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
}

/* Amenities Categories Grid */
.amenities-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.amenity-category {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-medium);
}

.amenity-category:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.amenity-category--note {
    background: #fff9e6;
    border-color: rgba(220, 165, 74, 0.3);
}

.amenity-category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.amenity-category-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c4923f 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.amenity-category-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

.amenity-category-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.amenity-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-category-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--color-primary);
    line-height: 1.5;
}

.amenity-category-list--inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.amenity-category-list--inline li {
    padding: 6px 12px;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
    gap: 6px;
}

.amenity-check {
    color: #28a745;
    font-weight: 700;
    flex-shrink: 0;
    width: 18px;
}

.amenity-check--highlight {
    color: var(--color-accent);
}

.amenity-extra {
    font-size: 0.8rem;
    color: #6c757d;
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    margin-left: 4px;
}

.amenity-note {
    font-size: 0.8rem;
    color: #6c757d;
    padding-left: 26px !important;
    font-style: italic;
}

.amenity-note-item {
    color: #856404;
    font-size: 0.9rem;
}

.amenity-lang {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Amenities CTA */
.amenities-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Responsive Amenities */
@media (max-width: 768px) {
    .amenities-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .amenities-rating {
        flex-direction: row;
        justify-content: space-between;
        padding: var(--spacing-md);
    }
    
    .amenities-rating-score {
        flex-direction: row;
        align-items: baseline;
        gap: 8px;
    }
    
    .amenities-rating .rating-number {
        font-size: 2rem;
    }
    
    .amenities-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenities-categories {
        grid-template-columns: 1fr;
    }
    
    .amenity-popular-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: var(--spacing-sm);
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .amenities-popular-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .amenity-popular-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: var(--spacing-sm);
        font-size: 0.85rem;
        min-height: 90px;
    }
    
    .amenity-popular-item svg {
        width: 24px;
        height: 24px;
        margin-bottom: var(--spacing-xs);
    }
    
    .amenity-popular-item span {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* House Rental Section */
.house-rental-section {
    background: var(--color-primary);
    color: var(--color-white);
}

.house-rental-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* House Rental Video/Media */
.house-rental-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.house-rental-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.house-rental-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
    display: block;
}

.house-rental-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 74, 74, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Legacy Image Support */
.house-rental-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.house-rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* House Rental Badge - Fixed & Responsive */
.house-rental-badge {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c4923f 100%);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(220, 165, 74, 0.4);
    z-index: 10;
    animation: badgePulse 3s ease-in-out infinite;
}

.house-rental-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    stroke: none;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.house-rental-content .section-badge {
    color: var(--color-accent);
}

.house-rental-content h2 {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--spacing-sm);
}

.house-rental-description {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.house-rental-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
}

.house-rental-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
}

.house-rental-features li:last-child {
    border-bottom: none;
}

.house-rental-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Café Section */
.cafe-section {
    background: linear-gradient(180deg, var(--color-light-gray) 0%, var(--color-white) 100%);
}

.cafe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.cafe-content .section-badge {
    display: inline-block;
    margin-bottom: var(--spacing-xs);
}

.cafe-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: var(--spacing-sm);
}

.cafe-description {
    font-size: 1.05rem;
    color: var(--color-primary);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.cafe-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.cafe-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cafe-info-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cafe-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

.cafe-info-text {
    display: flex;
    flex-direction: column;
}

.cafe-info-text strong {
    font-size: 14px;
    color: var(--color-primary);
}

.cafe-info-text span {
    font-size: 12px;
    color: var(--color-primary);
    opacity: 0.7;
}

.cafe-catering {
    padding: var(--spacing-sm);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
    margin-bottom: var(--spacing-md);
}

.cafe-catering h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.cafe-catering p {
    font-size: 14px;
    color: var(--color-primary);
    opacity: 0.8;
    margin: 0;
}

.cafe-contact {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cafe-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.cafe-contact-link:hover {
    color: var(--color-accent);
}

.cafe-contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.cafe-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cafe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

/* Café Slideshow */
.cafe-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cafe-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
}

.cafe-slide.active {
    opacity: 1;
    z-index: 1;
}

.cafe-slide.previous {
    opacity: 0;
    z-index: 0;
}

.cafe-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* Café Slideshow Motion Effects */
.cafe-slide--zoom-in img {
    transform: scale(1);
}
.cafe-slide--zoom-in.active img {
    animation: cafeZoomIn 6s ease-out forwards;
}
@keyframes cafeZoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.cafe-slide--pan-left img {
    transform: scale(1.2) translateX(8%);
}
.cafe-slide--pan-left.active img {
    animation: cafePanLeft 6s ease-out forwards;
}
@keyframes cafePanLeft {
    0% { transform: scale(1.2) translateX(8%); }
    100% { transform: scale(1.2) translateX(-8%); }
}

.cafe-slide--zoom-out img {
    transform: scale(1.2);
}
.cafe-slide--zoom-out.active img {
    animation: cafeZoomOut 6s ease-out forwards;
}
@keyframes cafeZoomOut {
    0% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.cafe-slide--pan-right img {
    transform: scale(1.2) translateX(-8%);
}
.cafe-slide--pan-right.active img {
    animation: cafePanRight 6s ease-out forwards;
}
@keyframes cafePanRight {
    0% { transform: scale(1.2) translateX(-8%); }
    100% { transform: scale(1.2) translateX(8%); }
}

.cafe-slide--pan-up img {
    transform: scale(1.2) translateY(6%);
}
.cafe-slide--pan-up.active img {
    animation: cafePanUp 6s ease-out forwards;
}
@keyframes cafePanUp {
    0% { transform: scale(1.2) translateY(6%); }
    100% { transform: scale(1.2) translateY(-6%); }
}

.cafe-slide--zoom-in-right img {
    transform: scale(1) translateX(-3%);
}
.cafe-slide--zoom-in-right.active img {
    animation: cafeZoomInRight 6s ease-out forwards;
}
@keyframes cafeZoomInRight {
    0% { transform: scale(1) translateX(-3%); }
    100% { transform: scale(1.15) translateX(3%); }
}

.cafe-slide--drift img {
    transform: scale(1.1) translate(-2%, -2%);
}
.cafe-slide--drift.active img {
    animation: cafeDrift 6s ease-out forwards;
}
@keyframes cafeDrift {
    0% { transform: scale(1.1) translate(-2%, -2%); }
    100% { transform: scale(1.1) translate(2%, 2%); }
}

/* Café Progress Bar */
.cafe-slideshow-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.cafe-slideshow-progress-bar {
    height: 100%;
    background: var(--color-accent);
    width: 0%;
    transition: width 0.05s linear;
}

/* ==========================================================================
   Booking Rating Section (Compact)
   ========================================================================== */
.booking-rating-section {
    background: linear-gradient(135deg, #003580 0%, #00224f 100%);
    padding: var(--spacing-lg) 0;
}

.booking-rating-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.booking-rating-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    min-width: 280px;
}

.booking-rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.booking-rating-badge svg {
    width: 18px;
    height: 18px;
    color: #febb02;
    fill: #febb02;
}

.booking-rating-text {
    color: var(--color-white);
}

.booking-rating-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-white);
}

.booking-rating-text p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
    max-width: 400px;
}

.booking-rating-score-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.booking-rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.booking-rating-score .score-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.booking-rating-score .score-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-rating-section .btn-booking {
    background: #febb02;
    color: #003580;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.booking-rating-section .btn-booking:hover {
    background: #ffcc33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.booking-rating-section .btn-booking svg {
    width: 20px;
    height: 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .booking-rating-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-rating-content {
        flex-direction: column;
        text-align: center;
    }
    
    .booking-rating-text p {
        max-width: none;
    }
    
    .booking-rating-score-box {
        flex-direction: column;
        width: 100%;
    }
    
    .booking-rating-section .btn-booking {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Compact Amenities Section
   ========================================================================== */
.amenities-section--compact {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg-light);
}

.amenities-popular-compact {
    margin-bottom: var(--spacing-md);
}

.amenities-section--compact .amenities-popular-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-sm);
}

.amenities-section--compact .amenity-popular-item {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.amenities-section--compact .amenity-popular-item svg {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.amenities-section--compact .amenity-popular-item span {
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Amenities Accordion */
.amenities-accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: var(--spacing-md);
}

.amenities-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-medium);
}

.amenities-accordion-toggle:hover {
    background: var(--color-bg-light);
    border-color: var(--color-accent);
}

.amenities-accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.amenities-accordion-toggle.is-open .amenities-accordion-icon {
    transform: rotate(180deg);
}

.amenities-accordion-content {
    padding-top: var(--spacing-lg);
}

.amenities-accordion-content[hidden] {
    display: none;
}

.amenities-categories--compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.amenities-categories--compact .amenity-category {
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.amenities-categories--compact .amenity-category-header {
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.amenities-categories--compact .amenity-category h4 {
    font-size: 0.9rem;
}

.amenities-categories--compact .amenity-category-list {
    font-size: 0.85rem;
}

.amenities-categories--compact .amenity-category-list li {
    padding: 3px 0;
}

/* Compact Amenities Responsive */
@media (max-width: 1200px) {
    .amenities-categories--compact {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .amenities-section--compact .amenities-popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenities-categories--compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .amenities-section--compact .amenities-popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenities-categories--compact {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--color-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    padding-right: var(--spacing-sm);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-answer-inner {
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    color: var(--color-primary);
    opacity: 0.85;
    line-height: 1.7;
    margin: 0;
}

.faq-contact {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-primary) 0%, #333 100%);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
}

.faq-contact p {
    margin-bottom: var(--spacing-md);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white);
}

.faq-contact .btn-outline {
    color: var(--color-white);
    border-color: var(--color-white);
    background: transparent;
}

.faq-contact .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* FAQ Contact Responsive */
@media (max-width: 768px) {
    .faq-contact {
        padding: var(--spacing-md) var(--spacing-md);
    }
    
    .faq-contact p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-contact {
        padding: var(--spacing-sm) var(--spacing-sm);
        border-radius: var(--radius-md);
    }
    
    .faq-contact p {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .faq-contact .btn-outline {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

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

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

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

/* ==========================================================================
   Majutus Page Responsive Styles
   ========================================================================== */

@media (max-width: 991px) {
    .page-hero {
        min-height: 60vh;
    }
    
    .page-hero-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    /* Hero Quick Nav Tablet - larger style */
    .hero-quick-nav {
        gap: 14px;
        margin: var(--spacing-xs) 0;
    }
    
    .hero-quick-link {
        flex: 0 0 150px;
        width: 150px;
        height: 130px;
        padding: 20px 14px 16px;
    }
    
    .hero-quick-icon {
        width: 50px;
        height: 50px;
    }
    
    .hero-quick-text {
        font-size: 9px;
        letter-spacing: 0.03em;
        max-width: 130px;
    }
    
    .room-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .house-rental-grid,
    .cafe-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .house-rental-image {
        order: -1;
    }
    
    .cafe-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .cafe-info-item {
        padding: var(--spacing-xs) 0;
    }
}

@media (max-width: 767px) {
    .majutus-hero {
        min-height: 70vh;
    }
    
    .page-hero-scroll {
        bottom: calc(var(--mobile-toolbar-height) + 20px);
    }
    
    /* Hero Quick Nav Mobile - larger style */
    .hero-quick-nav {
        gap: 10px;
        margin: 10px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 140px;
        width: 140px;
        height: 118px;
        padding: 16px 12px 14px;
        border-radius: var(--radius-md);
    }
    
    .hero-quick-icon {
        width: 46px;
        height: 46px;
    }
    
    .hero-quick-icon svg {
        width: 100%;
        height: 100%;
    }
    
    .hero-quick-text {
        font-size: 8px;
        letter-spacing: 0.02em;
        max-width: 120px;
    }
    
    .page-hero-cta .btn-booking {
        font-size: 0.95rem;
        padding: 12px 24px;
        width: auto;
        max-width: 280px;
    }
    
    .room-filters {
        gap: 6px;
    }
    
    .room-filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .room-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .room-card-image {
        height: 200px;
    }
    
    .room-quick-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .room-card-footer {
        flex-direction: column;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .house-rental-image img,
    .cafe-image img {
        min-height: 280px;
    }
    
    .cafe-slideshow {
        aspect-ratio: 3/4;
    }
    
    .cafe-contact {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Tablet Portrait (600px - 767px) - Majutus Hero */
@media (min-width: 600px) and (max-width: 767px) {
    .page-hero {
        min-height: 65vh;
    }
    
    .page-hero-content {
        max-width: 95%;
        padding: 16px 12px;
    }
    
    .page-hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .page-hero-description {
        font-size: 0.82rem;
        line-height: 1.55;
        max-width: 480px;
        margin-bottom: 12px;
    }
    
    .hero-quick-nav {
        gap: 8px;
        margin: 10px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 95px;
        width: 95px;
        height: 82px;
        padding: 12px 8px 10px;
        gap: 6px;
        border-radius: 10px;
    }
    
    .hero-quick-icon {
        width: 30px;
        height: 30px;
    }
    
    .hero-quick-text {
        font-size: 6.5px;
        max-width: 85px;
    }
    
    .page-hero-cta {
        gap: 10px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .page-hero-scroll {
        bottom: calc(var(--mobile-toolbar-height) + 15px);
    }
    
    .page-hero-scroll span {
        font-size: 9px;
    }
    
    .page-hero-scroll svg {
        width: 18px;
        height: 18px;
    }
}

/* Large Mobile (480px - 599px) - Majutus Hero */
@media (min-width: 480px) and (max-width: 599px) {
    .page-hero {
        min-height: 60vh;
    }
    
    .page-hero-content {
        max-width: 95%;
        padding: 12px 10px;
    }
    
    .page-hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .page-hero-description {
        font-size: 0.75rem;
        line-height: 1.5;
        max-width: 400px;
        margin-bottom: 10px;
    }
    
    .hero-quick-nav {
        gap: 6px;
        margin: 8px 0;
    }
    
    .hero-quick-link {
        flex: 0 0 82px;
        width: 82px;
        height: 72px;
        padding: 10px 6px 8px;
        gap: 5px;
        border-radius: 8px;
    }
    
    .hero-quick-icon {
        width: 26px;
        height: 26px;
    }
    
    .hero-quick-text {
        font-size: 5.5px;
        max-width: 74px;
    }
    
    .page-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        width: 100%;
        max-width: 260px;
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .page-hero-scroll {
        bottom: calc(var(--mobile-toolbar-height) + 12px);
    }
    
    .page-hero-scroll span {
        font-size: 8px;
    }
    
    .page-hero-scroll svg {
        width: 16px;
        height: 16px;
    }
}

/* Small Mobile (max-width: 479px) - Majutus Hero */
@media (max-width: 479px) {
    .page-hero {
        min-height: 55vh;
    }
    
    .page-hero-content {
        max-width: 100%;
        padding: 10px 8px;
    }
    
    .page-hero-content h1 {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }
    
    .page-hero-description {
        font-size: 0.7rem;
        line-height: 1.45;
        max-width: 100%;
        margin-bottom: 8px;
        padding: 0 4px;
    }
    
    .hero-quick-nav {
        gap: 5px;
        margin: 6px 0;
        padding: 0;
    }
    
    .hero-quick-link {
        flex: 0 0 58px;
        width: 58px;
        height: 56px;
        padding: 8px 4px 6px;
        gap: 4px;
        border-radius: 6px;
    }
    
    .hero-quick-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-quick-text {
        font-size: 5px;
        line-height: 1.2;
        max-width: 52px;
    }
    
    .page-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        width: 100%;
        max-width: 240px;
        padding: 10px 16px;
        font-size: 10px;
    }
    
    .page-hero-scroll {
        bottom: calc(var(--mobile-toolbar-height) + 8px);
    }
    
    .page-hero-scroll span {
        font-size: 7px;
    }
    
    .page-hero-scroll svg {
        width: 14px;
        height: 14px;
    }
}

/* Extra Small Mobile (max-width: 359px) - Majutus Hero */
@media (max-width: 359px) {
    .page-hero-content h1 {
        font-size: 1.1rem;
    }
    
    .page-hero-description {
        font-size: 0.65rem;
    }
    
    .hero-quick-nav {
        gap: 4px;
    }
    
    .hero-quick-link {
        flex: 0 0 52px;
        width: 52px;
        height: 50px;
        padding: 6px 3px 5px;
    }
    
    .hero-quick-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-quick-text {
        font-size: 4.5px;
        max-width: 46px;
    }
    
    .page-hero-cta .btn,
    .page-hero-cta .btn-booking {
        max-width: 200px;
        padding: 8px 14px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .page-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .page-hero-cta .btn {
        width: auto;
        min-width: 200px;
        max-width: 280px;
    }
    
    .room-amenities {
        flex-wrap: wrap;
    }
}

/* ============================================
   HOUSE RENTAL INQUIRY MODAL
   Premium Multi-Step Form
============================================ */

/* Modal Base */
.rental-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.rental-modal.active {
    opacity: 1;
    visibility: visible;
}

.rental-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rental-modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
}

.rental-modal.active .rental-modal-container {
    transform: translateY(0) scale(1);
}

.rental-modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Modal Header */
.rental-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
}

.rental-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
}

.rental-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.rental-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.rental-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--color-white);
}

/* Progress Steps */
.rental-modal-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-light-gray);
    gap: var(--spacing-xs);
}

.rental-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.5;
    transition: all var(--transition-medium);
}

.rental-step.active,
.rental-step.completed {
    opacity: 1;
}

.rental-step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    color: #999;
    transition: all var(--transition-medium);
}

.rental-step.active .rental-step-number {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(220, 165, 74, 0.4);
}

.rental-step.completed .rental-step-number {
    background: #28a745;
    border-color: #28a745;
    color: var(--color-white);
}

.rental-step span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-primary);
    white-space: nowrap;
}

.rental-step-line {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    max-width: 60px;
    border-radius: 2px;
    transition: background var(--transition-medium);
}

.rental-step.completed + .rental-step-line {
    background: #28a745;
}

/* Form Styles */
.rental-modal-form {
    padding: var(--spacing-lg);
}

.rental-form-step {
    display: none;
    animation: fadeInStep 0.3s ease;
}

.rental-form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rental-form-step h4 {
    font-size: 1.25rem;
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--color-primary);
}

.rental-form-step-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.rental-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.rental-form-group {
    margin-bottom: var(--spacing-sm);
}

.rental-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.rental-form-group label .required {
    color: #dc3545;
}

.rental-form-group input,
.rental-form-group textarea,
.rental-form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: all var(--transition-fast);
}

.rental-form-group input:focus,
.rental-form-group textarea:focus,
.rental-form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(220, 165, 74, 0.15);
}

.rental-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox Styles */
.rental-form-checkbox-group {
    margin-bottom: var(--spacing-md);
}

.rental-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.rental-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.rental-checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.rental-checkbox-label input:checked + .rental-checkbox-custom {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.rental-checkbox-label input:checked + .rental-checkbox-custom::after {
    content: "\2713";
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
}

.rental-checkbox-label:hover .rental-checkbox-custom {
    border-color: var(--color-accent);
}

/* Services Grid */
.rental-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-top: 8px;
}

.rental-service-option {
    padding: var(--spacing-sm);
    background: var(--color-light-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.rental-service-option:hover {
    background: rgba(220, 165, 74, 0.1);
}

.rental-service-option input:checked ~ .rental-service-content {
    color: var(--color-accent);
}

.rental-service-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.rental-service-content svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

/* Company Fields */
.rental-company-fields {
    padding: var(--spacing-md);
    background: var(--color-light-gray);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
    animation: fadeInStep 0.3s ease;
}

.rental-skip-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    padding: var(--spacing-sm);
    background: rgba(220, 165, 74, 0.1);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.rental-skip-note svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Form Actions */
.rental-modal-actions {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    margin-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rental-modal-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.rental-modal-actions .btn svg {
    width: 18px;
    height: 18px;
}

.rental-btn-prev {
    margin-right: auto;
}

.rental-btn-skip {
    margin-left: auto;
    margin-right: var(--spacing-sm);
}

.rental-btn-next,
.rental-btn-submit {
    margin-left: auto;
}

/* Success State */
.rental-modal-success {
    padding: var(--spacing-xl);
    text-align: center;
}

.rental-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, #28a745 0%, #20903c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.5s ease;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.rental-success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-white);
}

.rental-modal-success h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.rental-modal-success p {
    color: #666;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .rental-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .rental-modal-container {
        max-width: 100%;
        max-height: 95vh;
        transform: translateY(100%);
    }
    
    .rental-modal.active .rental-modal-container {
        transform: translateY(0);
    }
    
    .rental-modal-content {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
    
    .rental-modal-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .rental-step span {
        font-size: 0.65rem;
    }
    
    .rental-step-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .rental-modal-form {
        padding: var(--spacing-md);
    }
    
    .rental-form-row {
        grid-template-columns: 1fr;
    }
    
    .rental-services-grid {
        grid-template-columns: 1fr;
    }
    
    .rental-modal-actions {
        flex-wrap: wrap;
    }
    
    .rental-modal-actions .btn {
        flex: 1;
        min-width: auto;
    }
    
    .rental-btn-skip {
        order: -1;
        flex-basis: 100%;
        margin: 0 0 var(--spacing-sm) 0;
    }
}

@media (max-width: 480px) {
    .rental-modal-header {
        padding: var(--spacing-md);
    }
    
    .rental-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .rental-step span {
        display: none;
    }
    
    .rental-step-line {
        max-width: 40px;
    }
    
    .house-rental-badge {
        top: var(--spacing-sm);
        left: var(--spacing-sm);
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .house-rental-badge svg {
        width: 14px;
        height: 14px;
    }
}

/* House Rental Responsive */
@media (max-width: 992px) {
    .house-rental-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .house-rental-video-wrapper {
        min-height: 350px;
    }
    
    .house-rental-video {
        min-height: 350px;
    }
}

/* ============================================
   ROOM DETAIL MODAL
   Premium Room Information Display
============================================ */

/* Room Feature Tags in Cards */
.room-features-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: var(--spacing-sm);
}

.room-feature-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--color-primary);
    white-space: nowrap;
}

.room-feature-more {
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
}

/* Room Card Footer Updated */
.room-card-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.room-card-footer .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.room-card-footer .btn-outline {
    order: 1;
}

.room-card-footer .btn-primary {
    order: 2;
}

/* Fix outline button visibility on light room cards */
.room-card-footer .btn-outline,
.room-card-footer .btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.room-card-footer .btn-outline:hover,
.room-card-footer .btn-outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.room-card-footer .btn svg {
    width: 14px;
    height: 14px;
}

/* Modal Base */
.room-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.room-detail-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Prevent body scroll when modal open */
body.room-modal-open {
    overflow: hidden !important;
}

.room-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.room-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: calc(100% - 40px);
    max-width: 1000px;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.room-detail-modal.active .room-modal-container {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.room-modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 40px);
    max-height: calc(100dvh - 40px);
}

/* Modal Header */
.room-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.95) 0%, rgba(74, 74, 74, 0.92) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    flex-shrink: 0;
}

.room-modal-header-logo {
    flex-shrink: 0;
}

.room-modal-logo-img {
    height: 40px;
    width: auto;
}

.room-modal-header-info {
    flex: 1;
    text-align: center;
}

.room-modal-header-info h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.room-modal-subtitle {
    margin: 4px 0 0 0;
    font-size: 0.85rem;
    opacity: 0.75;
}

.room-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.room-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.room-modal-close svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

/* Modal Body */
.room-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Image Gallery */
.room-modal-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.room-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-light-gray);
    aspect-ratio: 4/3;
}

.room-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.room-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-fast);
    z-index: 5;
}

.room-gallery-nav:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
}

.room-gallery-nav svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.room-gallery-prev {
    left: var(--spacing-sm);
}

.room-gallery-next {
    right: var(--spacing-sm);
}

.room-gallery-counter {
    position: absolute;
    bottom: var(--spacing-sm);
    right: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.room-gallery-thumbs {
    display: flex;
    gap: 8px;
}

.room-gallery-thumb {
    flex: 1;
    aspect-ratio: 4/3;
    border: 3px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: none;
    padding: 0;
    transition: all var(--transition-fast);
}

.room-gallery-thumb:hover,
.room-gallery-thumb.active {
    border-color: var(--color-accent);
}

.room-gallery-thumb.active {
    box-shadow: 0 4px 15px rgba(220, 165, 74, 0.4);
}

.room-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Room Info Section */
.room-modal-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Stats Row */
.room-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.room-stat {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: var(--spacing-sm);
    background: var(--color-light-gray);
    border-radius: var(--radius-md);
}

.room-stat svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.room-stat-rating svg {
    fill: var(--color-accent);
}

.room-stat-content {
    display: flex;
    flex-direction: column;
}

.room-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.room-stat-label {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

/* Description */
.room-modal-description {
    padding: var(--spacing-sm);
    background: rgba(220, 165, 74, 0.08);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent);
}

.room-modal-description p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-primary);
}

/* Sections */
.room-modal-section {
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.room-modal-section:last-of-type {
    border-bottom: none;
}

.room-modal-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 var(--spacing-xs) 0;
}

.room-modal-section h4 svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

/* Tags */
.room-modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.room-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-primary);
}

.room-tag--view {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
}

/* Amenities List */
.room-modal-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.room-modal-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.room-amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: var(--color-light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--color-primary);
}

.room-amenity-item svg {
    width: 14px;
    height: 14px;
    color: #28a745;
    flex-shrink: 0;
}

/* Notice */
.room-modal-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: var(--spacing-sm);
    background: #fff3cd;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    color: #856404;
}

.room-modal-notice svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Modal Footer */
.room-modal-footer {
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-light-gray);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.room-modal-footer .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.room-modal-footer .btn-booking {
    flex: 1;
}

.room-modal-footer .btn-share {
    background: var(--color-white);
    color: var(--color-dark-gray);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.room-modal-footer .btn-share:hover {
    background: var(--color-dark-gray);
    color: var(--color-white);
    border-color: var(--color-dark-gray);
}

.room-modal-footer .btn-share.copied {
    background: #28a745;
    color: var(--color-white);
    border-color: #28a745;
}

.room-modal-footer .btn svg {
    width: 20px;
    height: 20px;
}

/* Room Modal Responsive */
@media (max-width: 992px) {
    .room-modal-body {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .room-modal-stats {
        grid-template-columns: 1fr;
    }
    
    .room-modal-amenities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .room-modal-container {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        max-height: 95vh;
        max-height: 95dvh;
        transform: translate(0, 100%);
        opacity: 1;
    }
    
    .room-detail-modal.active .room-modal-container {
        transform: translate(0, 0);
    }
    
    .room-modal-content {
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        max-height: 95vh;
        max-height: 95dvh;
    }
    
    .room-modal-header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .room-modal-header-logo {
        display: none;
    }
    
    .room-modal-header-info {
        text-align: left;
    }
    
    .room-modal-header-info h3 {
        font-size: 1.2rem;
    }
    
    .room-modal-body {
        padding: var(--spacing-md);
        flex: 1;
        overflow-y: auto;
    }
    
    .room-gallery-main {
        aspect-ratio: 16/10;
    }
    
    .room-gallery-thumbs {
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    
    .room-gallery-thumb {
        flex: 0 0 80px;
    }
    
    .room-modal-footer {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .room-modal-footer .btn {
        font-size: 0.9rem;
        padding: 10px 14px;
        gap: 6px;
    }
    
    .room-modal-footer .btn svg {
        width: 16px;
        height: 16px;
    }
    
    .room-modal-footer .btn-share {
        font-size: 0.85rem;
        padding: 10px 12px;
    }
    
    .room-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (max-width: 480px) {
    .room-modal-header-info h3 {
        font-size: 1.1rem;
    }
    
    .room-modal-subtitle {
        font-size: 0.8rem;
    }
    
    .room-gallery-nav {
        width: 36px;
        height: 36px;
    }
    
    .room-gallery-nav svg {
        width: 16px;
        height: 16px;
    }
    
    .room-modal-stats {
        gap: 6px;
    }
    
    .room-stat {
        padding: 8px;
    }
    
    .room-modal-footer .btn {
        font-size: 0.8rem;
        padding: 8px 10px;
        gap: 5px;
    }
    
    .room-modal-footer .btn svg {
        width: 14px;
        height: 14px;
    }
    
    .room-modal-footer .btn-share {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
    
    .room-stat-value {
        font-size: 0.9rem;
    }
    
    .room-amenity-item {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .room-card-footer {
        flex-direction: column;
    }
    
    .room-card-footer .btn {
        width: 100%;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: contactHeroReveal 1.2s ease-out forwards;
    transform: translateY(30px) scale(1.05);
    opacity: 0;
}

@keyframes contactHeroReveal {
    0% {
        transform: translateY(30px) scale(1.05);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    animation: contactContentReveal 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    color: #fff;
}

.contact-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0;
    font-weight: 400;
    animation: contactSubtitleReveal 0.8s ease-out 0.6s forwards;
    transform: translateY(20px);
}

@keyframes contactContentReveal {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes contactSubtitleReveal {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: var(--color-light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    margin-bottom: 32px;
}

.contact-form-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--color-dark-gray);
}

.contact-form-header p {
    color: var(--color-medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-bottom: 8px;
}

.contact-form label .required {
    color: #e53e3e;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    color: var(--color-dark-gray);
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(74, 74, 74, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0aec0;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a4a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 44px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Checkbox consent */
.form-consent {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.consent-text {
    color: var(--color-medium-gray);
}

.consent-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.consent-text a:hover {
    text-decoration: none;
}

/* Form Submit */
.form-submit {
    margin-top: 28px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.05rem;
}

.form-submit .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit .spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message.success {
    background: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.form-message.error {
    background: #fed7d7;
    color: #742a2a;
    border: 1px solid #feb2b2;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-dark-gray);
    font-weight: 600;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--color-light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info-label {
    font-size: 0.8rem;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

/* Opening Hours */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-light-gray);
}

.hours-day {
    font-weight: 500;
    color: var(--color-dark-gray);
}

.hours-time {
    color: var(--color-primary);
    font-weight: 600;
}

.hours-note {
    font-size: 0.9rem;
    color: var(--color-medium-gray);
    line-height: 1.6;
    margin-top: 8px;
}

/* Social Links Large */
.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--color-light-gray);
    border-radius: 10px;
    color: var(--color-dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: var(--color-primary);
    color: #fff;
}

.social-link-large svg {
    width: 24px;
    height: 24px;
}

/* CTA Card */
.contact-cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5a5a5a 100%);
    color: #fff;
}

.contact-cta-card h3 {
    color: #fff;
}

.contact-cta-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-cta-card .btn {
    background: #fff;
    color: var(--color-primary);
    border: none;
}

.contact-cta-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Map Section */
.contact-map-section {
    padding: 80px 0;
    background: #fff;
}

.map-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.map-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--color-dark-gray);
}

.map-header p {
    color: var(--color-medium-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
}

.map-directions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.direction-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.direction-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--color-light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.direction-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.direction-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--color-dark-gray);
}

.direction-content p {
    color: var(--color-medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .contact-cta-card {
        grid-column: span 2;
    }
    
    .map-directions {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 300px;
        max-height: 400px;
    }
    
    .contact-main {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 28px 24px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form .form-row .form-group {
        margin-bottom: 20px;
    }
    
    .contact-info-sidebar {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-card {
        grid-column: span 1;
    }
    
    .contact-map-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 24px 20px;
    }
    
    .contact-card {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */

/* Gallery Hero */
.gallery-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.gallery-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: galleryHeroReveal 1.2s ease-out forwards;
    transform: translateY(30px) scale(1.05);
    opacity: 0;
}

@keyframes galleryHeroReveal {
    0% {
        transform: translateY(30px) scale(1.05);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 2;
}

.gallery-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.gallery-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #fff;
    animation: galleryContentReveal 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.gallery-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0;
    font-weight: 400;
    animation: gallerySubtitleReveal 0.8s ease-out 0.6s forwards;
    transform: translateY(20px);
}

@keyframes galleryContentReveal {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes gallerySubtitleReveal {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }
}

/* Gallery Main Section */
.gallery-main {
    padding: 60px 0 80px;
    background: var(--color-light-gray);
}

/* Gallery Hero Stats */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.gallery-stat strong {
    font-size: 1.25rem;
    color: var(--color-white);
}

.gallery-stat-divider {
    opacity: 0.5;
}

/* Gallery Filters - Enhanced */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--color-medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gallery-filter-btn .filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-filter-btn .filter-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.gallery-filter-btn .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--color-light-gray);
    border-radius: 12px;
    color: var(--color-medium-gray);
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover {
    color: var(--color-dark-gray);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.gallery-filter-btn:hover .filter-icon svg {
    transform: scale(1.1);
}

.gallery-filter-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(74, 74, 74, 0.35);
}

.gallery-filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Gallery Grid - Masonry */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease;
}

/* Staggered entrance animations based on position */
.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Different entrance directions based on position */
.gallery-item:nth-child(4n+1) {
    transform: translateX(-40px) translateY(20px) scale(0.95);
}
.gallery-item:nth-child(4n+2) {
    transform: translateY(-30px) scale(0.95);
}
.gallery-item:nth-child(4n+3) {
    transform: translateY(40px) scale(0.95);
}
.gallery-item:nth-child(4n+4) {
    transform: translateX(40px) translateY(20px) scale(0.95);
}

.gallery-item.animate-in:nth-child(4n+1),
.gallery-item.animate-in:nth-child(4n+2),
.gallery-item.animate-in:nth-child(4n+3),
.gallery-item.animate-in:nth-child(4n+4) {
    transform: translateX(0) translateY(0) scale(1);
}

/* Staggered delay based on position */
.gallery-item:nth-child(1) { transition-delay: 0.05s; }
.gallery-item:nth-child(2) { transition-delay: 0.1s; }
.gallery-item:nth-child(3) { transition-delay: 0.15s; }
.gallery-item:nth-child(4) { transition-delay: 0.2s; }
.gallery-item:nth-child(5) { transition-delay: 0.25s; }
.gallery-item:nth-child(6) { transition-delay: 0.3s; }
.gallery-item:nth-child(7) { transition-delay: 0.35s; }
.gallery-item:nth-child(8) { transition-delay: 0.4s; }
.gallery-item:nth-child(9) { transition-delay: 0.45s; }
.gallery-item:nth-child(10) { transition-delay: 0.5s; }
.gallery-item:nth-child(11) { transition-delay: 0.55s; }
.gallery-item:nth-child(12) { transition-delay: 0.6s; }
.gallery-item:nth-child(n+13) { transition-delay: 0.65s; }

/* Hover lift effect */
.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Size variations for masonry effect */
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.gallery-item-large .gallery-item-inner {
    min-height: 420px;
}

.gallery-item-medium .gallery-item-inner {
    min-height: 200px;
}

.gallery-item-small .gallery-item-inner {
    min-height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* 3D tilt effect on hover */
.gallery-item-inner {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.15s ease-out;
}

/* Gallery Item Overlay */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-item-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease;
}

.gallery-lightbox.active .lightbox-image {
    opacity: 1;
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 16px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.gallery-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.gallery-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-dark-gray);
}

.gallery-cta p {
    color: var(--color-medium-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.gallery-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Page Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item-large .gallery-item-inner {
        min-height: 300px;
    }
    
    .gallery-item-medium {
        grid-column: span 1;
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    
    .lightbox-prev {
        left: 12px;
    }
    
    .lightbox-next {
        right: 12px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        min-height: 300px;
        max-height: 400px;
    }
    
    .gallery-stats {
        gap: var(--spacing-sm);
        font-size: 0.9rem;
    }
    
    .gallery-stats strong {
        font-size: 1.1rem;
    }
    
    .gallery-main {
        padding: 40px 0 60px;
    }
    
    .gallery-filters {
        gap: 8px;
        margin-bottom: 28px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .gallery-filters::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        flex-shrink: 0;
        gap: 6px;
    }
    
    .gallery-filter-btn .filter-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .gallery-filter-btn .filter-count {
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item-large,
    .gallery-item-medium {
        grid-column: span 1;
    }
    
    .gallery-item-inner,
    .gallery-item-large .gallery-item-inner,
    .gallery-item-medium .gallery-item-inner {
        min-height: 160px;
    }
    
    .gallery-cta {
        padding: 60px 0;
    }
    
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gallery-filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .gallery-item-inner,
    .gallery-item-large .gallery-item-inner,
    .gallery-item-medium .gallery-item-inner {
        min-height: 140px;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .lightbox-content {
        max-width: 95vw;
    }
}


/* ==========================================================================
   DESKTOP RESPONSIVE BREAKPOINTS
   Consistent layouts across different desktop screen sizes
   ========================================================================== */

/* --------------------------------------------------------------------------
   Ultra-Wide Screens (2K, 4K) - 2560px and above
   -------------------------------------------------------------------------- */
@media (min-width: 2560px) {
    :root {
        --spacing-xs: 0.625rem;
        --spacing-sm: 1.25rem;
        --spacing-md: 2.5rem;
        --spacing-lg: 4rem;
        --spacing-xl: 6.5rem;
    }
    
    .container {
        max-width: 1560px;
    }
    
    .container-wide {
        max-width: 1800px;
    }
    
    .container-narrow {
        max-width: 1000px;
    }
    
    /* Typography scaling */
    body {
        font-size: 18px;
    }
    
    h1, .h1 {
        font-size: 4.5rem;
    }
    
    h2, .h2 {
        font-size: 3rem;
    }
    
    h3, .h3 {
        font-size: 2rem;
    }
    
    /* Section headers */
    .section-title {
        font-size: 3rem;
    }
    
    .section-description {
        font-size: 1.2rem;
        max-width: 900px;
    }
    
    /* Buttons */
    .btn {
        padding: 18px 40px;
        font-size: 15px;
    }
    
    /* Cards */
    .service-card {
        padding: var(--spacing-lg);
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    /* Grids */
    .services-grid {
        gap: var(--spacing-lg);
    }
    
    /* Gallery */
    .gallery-grid {
        gap: 20px;
    }
    
    .gallery-item-inner {
        min-height: 350px;
    }
    
    .gallery-item-large .gallery-item-inner {
        min-height: 550px;
    }
    
    /* Contact cards */
    .contact-card {
        padding: var(--spacing-md);
    }
    
    /* Footer */
    .footer-grid {
        gap: var(--spacing-lg);
    }
}

/* --------------------------------------------------------------------------
   Wide Desktop (1920px - 2559px) - Full HD and larger
   -------------------------------------------------------------------------- */
@media (min-width: 1920px) and (max-width: 2559px) {
    :root {
        --spacing-xl: 5.5rem;
    }
    
    .container {
        max-width: 1440px;
    }
    
    .container-wide {
        max-width: 1680px;
    }
    
    /* Typography */
    body {
        font-size: 17px;
    }
    
    h1, .h1 {
        font-size: 4rem;
    }
    
    h2, .h2 {
        font-size: 2.75rem;
    }
    
    /* Section */
    .section-title {
        font-size: 2.75rem;
    }
    
    .section-description {
        font-size: 1.125rem;
        max-width: 800px;
    }
    
    /* Cards */
    .service-card {
        padding: var(--spacing-md);
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    /* Gallery */
    .gallery-item-inner {
        min-height: 300px;
    }
    
    .gallery-item-large .gallery-item-inner {
        min-height: 480px;
    }
}

/* --------------------------------------------------------------------------
   Standard Desktop (1440px - 1919px)
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1320px;
    }
    
    .container-wide {
        max-width: 1520px;
    }
    
    /* Typography */
    body {
        font-size: 16px;
    }
    
    h1, .h1 {
        font-size: 3.5rem;
    }
    
    h2, .h2 {
        font-size: 2.5rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        max-width: 750px;
    }
    
    /* Gallery */
    .gallery-item-inner {
        min-height: 280px;
    }
    
    .gallery-item-large .gallery-item-inner {
        min-height: 450px;
    }
}

/* --------------------------------------------------------------------------
   Small Desktop / Large Laptop (1280px - 1439px)
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 var(--spacing-md);
    }
    
    .container-wide {
        max-width: 1400px;
    }
    
    /* Typography */
    body {
        font-size: 15px;
    }
    
    h1, .h1 {
        font-size: 3rem;
    }
    
    h2, .h2 {
        font-size: 2.25rem;
    }
    
    h3, .h3 {
        font-size: 1.375rem;
    }
    
    /* Sections */
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1rem;
        max-width: 650px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    /* Cards */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    /* Grids */
    .services-grid {
        gap: 1.25rem;
    }
    
    /* Gallery */
    .gallery-item-inner {
        min-height: 240px;
    }
    
    .gallery-item-large .gallery-item-inner {
        min-height: 400px;
    }
    
    /* Header */
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    /* Footer */
    .footer-grid {
        gap: 2rem;
    }
    
    /* Contact page */
    .contact-grid {
        gap: 2rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Laptop (1024px - 1279px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        max-width: 980px;
        padding: 0 1.5rem;
    }
    
    .container-wide {
        max-width: 1200px;
    }
    
    /* Typography */
    body {
        font-size: 15px;
    }
    
    h1, .h1 {
        font-size: 2.75rem;
    }
    
    h2, .h2 {
        font-size: 2rem;
    }
    
    h3, .h3 {
        font-size: 1.25rem;
    }
    
    /* Sections */
    .section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        max-width: 600px;
    }
    
    /* Buttons */
    .btn {
        padding: 11px 24px;
        font-size: 12px;
        letter-spacing: 0.12em;
    }
    
    /* Cards */
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.125rem;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.75rem;
    }
    
    .service-icon svg {
        width: 26px;
        height: 26px;
    }
    
    /* Grids */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }
    
    /* About */
    .about-grid {
        gap: 2rem;
    }
    
    /* Gallery */
    .gallery-grid {
        gap: 12px;
    }
    
    .gallery-item-inner {
        min-height: 200px;
    }
    
    .gallery-item-large .gallery-item-inner {
        min-height: 350px;
    }
    
    .gallery-filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Header */
    .header-inner {
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 12px;
        letter-spacing: 0.1em;
    }
    
    .header-booking .btn {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .header-rating-score {
        font-size: 14px;
    }
    
    /* Footer */
    .footer-grid {
        gap: 1.5rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    /* Contact */
    .contact-grid {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-card h3 {
        font-size: 1.125rem;
    }
    
    /* Location section */
    .location-grid {
        gap: 2rem;
    }
}

/* --------------------------------------------------------------------------
   General Desktop Optimizations (all sizes above tablet)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
    /* Smooth scrolling offset for header */
    html {
        scroll-padding-top: calc(var(--header-height) + 20px);
    }
    
    /* Better text rendering on larger screens */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Ensure grids don't become too wide */
    .services-grid {
        max-width: 100%;
    }
    
    /* Hover effects only on desktop */
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }
    
    .btn:hover {
        transform: translateY(-2px);
    }
    
    .gallery-item:hover .gallery-item-overlay {
        opacity: 1;
    }
    
    .gallery-item:hover .gallery-item-image {
        transform: scale(1.05);
    }
    
    /* Footer columns layout */
    .footer-grid {
        display: grid;
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Aspect Ratio Preservation for Images
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
    .about-image img,
    .hero-slideshow img,
    .about-slideshow img {
        object-fit: cover;
    }
    
    /* Prevent image distortion */
    .gallery-item-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .site-header,
    .mobile-toolbar,
    .site-preloader,
    .hero,
    .gallery-filters,
    .btn,
    footer {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ==========================================================================
   MOBILE UI ENHANCEMENT - iPhone & Mobile Devices
   ========================================================================== */

/* Front Page Hero Amenities - Hidden on mobile (slideshow captions replace them) */
@media (max-width: 500px) {
    .hero-amenities {
        display: none !important;
    }
    
    .hero-amenity {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        min-height: 72px;
        max-height: 80px;
        padding: 10px 6px 8px;
        border-radius: 12px;
    }
    
    .hero-amenity-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-amenity-label {
        font-size: 6px;
        letter-spacing: 0.02em;
        max-width: 100%;
        line-height: 1.2;
    }
}

/* Front Page Hero Amenities - Larger for bigger phones */
@media (min-width: 380px) and (max-width: 500px) {
    .hero-amenities {
        max-width: 360px;
        gap: 10px;
    }
    
    .hero-amenity {
        min-height: 78px;
        max-height: 85px;
        padding: 12px 8px 10px;
    }
    
    .hero-amenity-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-amenity-label {
        font-size: 6.5px;
    }
}

/* Majutus Page Quick Links - Match Front Page Style */
@media (max-width: 500px) {
    .hero-quick-nav {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin: 12px auto;
        padding: 0 8px;
    }
    
    .hero-quick-link {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 85px;
        padding: 14px 8px 12px;
        border-radius: 12px;
        gap: 8px;
    }
    
    .hero-quick-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-quick-text {
        font-size: 7px;
        max-width: 100%;
        letter-spacing: 0.02em;
    }
}

/* Majutus Page Quick Links - Larger for bigger phones */
@media (min-width: 380px) and (max-width: 500px) {
    .hero-quick-nav {
        max-width: 340px;
        gap: 12px;
    }
    
    .hero-quick-link {
        min-height: 95px;
        padding: 16px 10px 14px;
    }
    
    .hero-quick-icon {
        width: 36px;
        height: 36px;
    }
    
    .hero-quick-text {
        font-size: 8px;
    }
}

/* Rooms CTA Button - Fix Cut-off Text */
@media (max-width: 500px) {
    .rooms-cta {
        padding: var(--spacing-md);
    }
    
    .rooms-cta p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    .rooms-cta .btn-booking,
    .rooms-cta .btn-lg {
        max-width: none !important;
        width: auto;
        padding: 14px 24px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    /* General btn-lg fix */
    .btn-lg {
        max-width: none;
        width: auto;
        white-space: nowrap;
    }
}

/* Room Cards - Better Mobile Layout */
@media (max-width: 480px) {
    .room-card-footer {
        gap: 10px;
    }
    
    .room-card-footer .btn {
        padding: 12px 16px;
        font-size: 12px;
        flex: 1;
    }
    
    .room-card-footer .btn-outline {
        min-width: 130px;
    }
    
    .room-card-footer .btn-primary {
        min-width: 100px;
    }
}

/* ========================================
   Instagram RA-2026 Site Sticker
   ======================================== */
.site-sticker {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(33px) rotate(90deg);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.site-sticker img {
    height: 45px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.site-sticker:hover {
    opacity: 1;
    transform: translateY(-50%) translateX(27px) rotate(90deg);
}

.site-sticker:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Desktop: larger screens */
@media (min-width: 1200px) {
    .site-sticker img {
        height: 50px;
    }
}

/* Tablet landscape */
@media (max-width: 1199px) and (min-width: 992px) {
    .site-sticker img {
        height: 42px;
    }
}

/* Tablet portrait */
@media (max-width: 991px) and (min-width: 768px) {
    .site-sticker img {
        height: 38px;
    }
}

/* Mobile: keep vertical at right edge */
@media (max-width: 767px) {
    .site-sticker img {
        height: 32px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .site-sticker img {
        height: 28px;
    }
}

/* Hide sticker when lightbox is open */
.lightbox-open .site-sticker {
    opacity: 0;
    pointer-events: none;
}

/* Ensure sticker doesn't overlap with mobile menu */
.mobile-menu-open .site-sticker {
    opacity: 0;
    pointer-events: none;
}

/* ==========================================================================
   CROSS-BROWSER RESPONSIVE STYLES — 2025/2026
   Android Chrome, iOS Safari, desktop Chrome/Firefox/Safari
   Modern features with progressive enhancement & fallbacks
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VIEWPORT & SAFE AREA — Dynamic Viewport Units (dvh/svh/lvh)
   iOS Safari address bar, Android Chrome URL bar, Dynamic Island
   -------------------------------------------------------------------------- */
:root {
    /* Fallback for older browsers */
    --vh-fallback: 1vh;
    /* Modern: dvh reacts to toolbar show/hide */
    --vh-dynamic: 1dvh;
    /* Animate height: auto support */
    interpolate-size: allow-keywords;
}

/* iOS Safari & Android: use dvh for hero to avoid 100vh jump */
@supports (height: 100dvh) {
    .hero {
        height: 100dvh;
        min-height: 100dvh;
    }
    .page-hero {
        min-height: 50dvh;
    }
}

/* iOS Safari notch + Dynamic Island: full safe area coverage */
@supports (padding: env(safe-area-inset-top)) {
    .site-header {
        padding-top: env(safe-area-inset-top);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    /* Bottom safe area for home indicator */
    .site-footer {
        padding-bottom: calc(var(--spacing-lg) + env(safe-area-inset-bottom));
    }
    
    /* Mobile sticky elements respect safe areas */
    .quick-info-bar {
        padding-top: env(safe-area-inset-top);
    }
    
    /* Modals & fullscreen overlays */
    .room-detail-modal,
    .house-rental-modal,
    .lightbox-overlay {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* --------------------------------------------------------------------------
   2. TOUCH INTERACTIONS — Haptic-feel micro-animations
   Optimized for both iOS and Android touch feedback
   -------------------------------------------------------------------------- */

/* Active state press effect — instant tactile feedback */
@media (pointer: coarse) {
    .btn,
    .room-card,
    .service-card,
    .amenity-card,
    .hero-amenity,
    .gallery-item,
    .faq-question {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Press-down micro-scale on touch */
    .btn:active,
    .room-card:active,
    .service-card:active {
        transform: scale(0.97);
        transition: transform 0.1s ease-out;
    }
    
    .gallery-item:active {
        transform: scale(0.98);
        transition: transform 0.08s ease-out;
    }
    
    /* Disable hover effects on touch — prevent sticky hover on iOS */
    @media (hover: none) {
        .btn:hover {
            transform: none;
            box-shadow: none;
        }
        
        .room-card:hover {
            transform: none;
        }
        
        .service-card:hover {
            transform: none;
        }
        
        .gallery-item:hover {
            transform: none;
        }
    }
}

/* Smooth momentum scrolling — iOS & Android */
@media (max-width: 768px) {
    .rooms-grid,
    .gallery-grid,
    .services-grid {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
}

/* --------------------------------------------------------------------------
   3. SCROLL-DRIVEN ANIMATIONS — Progressive reveal on scroll
   Chrome 115+, Safari 26+, fallback for Firefox
   -------------------------------------------------------------------------- */

/* Register custom properties for smooth gradient animation */
@property --reveal-progress {
    syntax: '<number>';
    inherits: false;
    initial-value: 0;
}

@property --parallax-offset {
    syntax: '<length>';
    inherits: false;
    initial-value: 0px;
}

/* Section reveal on scroll — fade up + slide */
@supports (animation-timeline: view()) {
    .section-title,
    .section-subtitle,
    .room-card,
    .service-card,
    .amenity-card,
    .about-text,
    .contact-card,
    .review-card {
        animation: scrollRevealUp linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 35%;
    }
    
    @keyframes scrollRevealUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Stagger cards within grids */
    .room-card:nth-child(2),
    .service-card:nth-child(2),
    .amenity-card:nth-child(2) {
        animation-range: entry 5% entry 40%;
    }
    
    .room-card:nth-child(3),
    .service-card:nth-child(3),
    .amenity-card:nth-child(3) {
        animation-range: entry 10% entry 45%;
    }
    
    /* Gallery items — scale reveal */
    .gallery-item {
        animation: scrollScaleIn linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
    
    @keyframes scrollScaleIn {
        from {
            opacity: 0;
            transform: scale(0.92);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    /* Hero scroll indicator — fade out as user scrolls */
    .hero-scroll-indicator {
        animation: scrollFadeOut linear both;
        animation-timeline: scroll(nearest);
        animation-range: 0px 200px;
    }
    
    @keyframes scrollFadeOut {
        from { opacity: 1; }
        to { opacity: 0; transform: translateY(-20px); }
    }
}

/* Fallback for browsers without scroll-driven animations (Firefox) */
@supports not (animation-timeline: view()) {
    .section-title,
    .section-subtitle,
    .room-card,
    .service-card,
    .amenity-card,
    .about-text,
    .contact-card,
    .review-card,
    .gallery-item {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   4. GLASS MORPHISM ENHANCED — iOS Safari & Android Chrome
   Optimized blur performance with fallbacks
   -------------------------------------------------------------------------- */

/* Safari backdrop-filter needs -webkit- prefix */
@supports (-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px)) {
    /* Enhanced glass on mobile header */
    @media (max-width: 768px) {
        .site-header.scrolled {
            background: rgba(51, 51, 51, 0.85);
            -webkit-backdrop-filter: blur(20px) saturate(1.8);
            backdrop-filter: blur(20px) saturate(1.8);
        }
    }
    
    /* Glass cards for FAQ on mobile */
    @media (max-width: 768px) {
        .faq-item {
            background: rgba(255, 255, 255, 0.7);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-lg);
        }
    }
}

/* Fallback: solid backgrounds when backdrop-filter not supported */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    @media (max-width: 768px) {
        .site-header.scrolled {
            background: rgba(51, 51, 51, 0.97);
        }
        
        .faq-item {
            background: rgba(245, 245, 245, 0.97);
        }
    }
}

/* --------------------------------------------------------------------------
   5. iOS SAFARI SPECIFIC FIXES
   Bounce scroll, orientation, rubber-banding, 100vh issue
   -------------------------------------------------------------------------- */

@supports (-webkit-touch-callout: none) {
    /* Fix rubber-banding at page edges */
    html {
        overscroll-behavior-y: none;
    }
    
    /* Fix iOS form zoom — inputs < 16px trigger zoom */
    @media (max-width: 768px) {
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="number"],
        input[type="url"],
        input[type="search"],
        select,
        textarea {
            font-size: 16px;
        }
    }
    
    /* Fix iOS Safari position:fixed inside scrollable container */
    .quick-info-bar,
    .sticky-fab {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Smooth momentum on scrollable containers */
    .mobile-nav,
    .room-detail-modal .modal-content,
    .gallery-lightbox {
        -webkit-overflow-scrolling: touch;
    }
}

/* --------------------------------------------------------------------------
   6. ANDROID CHROME SPECIFIC
   Overscroll glow, status bar, font rendering
   -------------------------------------------------------------------------- */

/* Android: tame overscroll glow effect */
@media (pointer: coarse) and (hover: none) {
    html {
        overscroll-behavior-y: contain;
    }
    
    /* Horizontal scroll containers — prevent accidental back-navigation */
    .rooms-grid,
    .gallery-filters {
        overscroll-behavior-x: contain;
    }
}

/* Android Chrome: optimized rendering for lower-end devices */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    /* GPU-accelerated layers for animated elements */
    .hero-content,
    .hero-overlay,
    .hero-mobile-slideshow .slide {
        will-change: transform, opacity;
        contain: layout style paint;
    }
}

/* --------------------------------------------------------------------------
   7. REDUCED MOTION — Accessibility & battery saving
   Respects user preference on iOS & Android system settings
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-video {
        animation: none !important;
        filter: none !important;
    }
    
    .hero-scroll-indicator {
        animation: none !important;
    }
    
    .hero-mobile-slideshow .slide {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* --------------------------------------------------------------------------
   8. HIGH DPI / RETINA SCREENS — Sharper UI on all devices
   iPhone Retina, Samsung AMOLED, Pixel displays
   -------------------------------------------------------------------------- */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Crisper borders on high-DPI */
    .room-card,
    .service-card,
    .btn-outline {
        border-width: 0.5px;
    }
    
    /* Sharper thin lines */
    .hero-amenity {
        border-width: 0.5px;
    }
    
    /* Crisper dividers */
    hr,
    .section-divider {
        height: 0.5px;
    }
}

/* --------------------------------------------------------------------------
   9. MODERN CONTAINER QUERIES — Component-level responsive
   Chrome 105+, Safari 16+, Firefox 110+
   -------------------------------------------------------------------------- */

@supports (container-type: inline-size) {
    /* Room cards adapt to their container, not viewport */
    .rooms-grid {
        container-type: inline-size;
        container-name: rooms;
    }
    
    @container rooms (max-width: 600px) {
        .room-card {
            flex-direction: column;
        }
        
        .room-card-image {
            aspect-ratio: 16 / 10;
            width: 100%;
        }
    }
    
    @container rooms (max-width: 380px) {
        .room-card {
            border-radius: var(--radius-md);
        }
        
        .room-card-content {
            padding: var(--spacing-sm);
        }
    }
    
    /* Services grid */
    .services-grid {
        container-type: inline-size;
        container-name: services;
    }
    
    @container services (max-width: 500px) {
        .service-card {
            min-height: 200px;
        }
    }
}

/* --------------------------------------------------------------------------
   10. LANDSCAPE PHONE — Special handling for horizontal phone use
   Common on Android & iPhone when watching video or browsing in bed
   -------------------------------------------------------------------------- */

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100dvh;
        min-height: 100svh;
    }
    
    .hero-content {
        padding: 8px;
        gap: 4px;
    }
    
    .hero-logo img {
        max-height: 80px;
    }
    
    .hero-description {
        display: none;
    }
    
    .hero-tagline {
        font-size: 10px;
    }
    
    .hero-price-tag {
        padding: 6px 16px;
        margin: 4px 0;
    }
    
    .hero-price-tag .price-amount {
        font-size: 22px;
    }
    
    .hero-cta-stack {
        flex-direction: row;
        max-width: 100%;
        gap: 8px;
    }
    
    .hero-cta-stack .btn-primary-large,
    .hero-cta-stack .btn-secondary-outline {
        min-height: 40px;
        font-size: 13px;
        flex: 1;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Compact header in landscape */
    .site-header {
        --header-height: 50px;
        --header-height-scrolled: 45px;
    }
}

/* --------------------------------------------------------------------------
   11. DARK / LIGHT MODE PREPARATION
   Uses prefers-color-scheme; currently light-only but ready for dark
   -------------------------------------------------------------------------- */

@media (prefers-color-scheme: dark) {
    /* Currently intentionally empty — site is dark-themed by design.
       Ready for future light-mode sections that may need dark overrides. */
    .faq-item {
        border-color: rgba(255, 255, 255, 0.08);
    }
}

/* --------------------------------------------------------------------------
   12. FONT SMOOTHING — Consistent text rendering across browsers
   -------------------------------------------------------------------------- */

/* WebKit (Chrome, Safari, Edge) */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Android Chrome: prevent FOUT (Flash of Unstyled Text) */
@media (max-width: 768px) {
    body {
        font-display: swap;
    }
}

/* --------------------------------------------------------------------------
   13. SCROLLBAR STYLING — Modern thin scrollbar for all browsers
   Chrome 121+, Firefox, Safari partial
   -------------------------------------------------------------------------- */

/* Standard scrollbar properties */
@media (pointer: fine) {
    html {
        scrollbar-width: thin;
        scrollbar-color: rgba(220, 165, 74, 0.4) transparent;
    }
    
    /* WebKit scrollbar (Chrome, Safari, Edge) */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(220, 165, 74, 0.4);
        border-radius: 3px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(220, 165, 74, 0.7);
    }
}

/* Hide scrollbar on mobile — use native momentum scroll */
@media (pointer: coarse) {
    html {
        scrollbar-width: none;
    }
    
    html::-webkit-scrollbar {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   14. PERFORMANCE — Contain & will-change for 60fps on mobile
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
    /* Content containment for major sections — improves paint performance */
    .section,
    .about-section,
    .rooms-section,
    .services-section,
    .reviews-section,
    .faq-section,
    .contact-section {
        contain: layout style;
    }
    
    /* Isolate fixed elements to their own compositor layer */
    .site-header,
    .quick-info-bar,
    .sticky-fab,
    .scroll-to-top {
        will-change: transform;
        contain: layout style paint;
    }
}
