:root {
            --primary-blue: #1e3a5f;
            --primary-blue-dark: #0f1f33;
            --primary-blue-light: #2a5280;
            --accent-blue: #3b82f6;
            --sky-blue: #60a5fa;
            --ice-blue: #93c5fd;
            --white: #ffffff;
            --off-white: #f8fafc;
            --font-brand: 'Montserrat', system-ui, sans-serif;

            /* Lodgify-style refined glassmorphism */
            --glass-white: rgba(255, 255, 255, 0.45);
            --glass-white-hover: rgba(255, 255, 255, 0.65);
            --glass-white-strong: rgba(255, 255, 255, 0.72);
            --glass-white-solid: rgba(255, 255, 255, 0.88);
            --glass-blue: rgba(30, 58, 95, 0.08);
            --glass-blue-hover: rgba(30, 58, 95, 0.15);
            --glass-blue-strong: rgba(30, 58, 95, 0.18);
            --glass-blue-dark: rgba(15, 31, 51, 0.35);

            /* Subtle border system */
            --border-light: rgba(255, 255, 255, 0.45);
            --border-light-hover: rgba(255, 255, 255, 0.65);
            --border-blue: rgba(30, 58, 95, 0.08);
            --border-blue-hover: rgba(30, 58, 95, 0.15);
            --border-accent: rgba(59, 130, 246, 0.25);

            /* Softer, more ambient shadows */
            --shadow-soft: 0 1px 3px rgba(30, 58, 95, 0.04), 0 8px 24px rgba(30, 58, 95, 0.06);
            --shadow-medium: 0 2px 8px rgba(30, 58, 95, 0.05), 0 16px 48px rgba(30, 58, 95, 0.08);
            --shadow-strong: 0 4px 16px rgba(30, 58, 95, 0.06), 0 24px 64px rgba(30, 58, 95, 0.12);
            --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);

            /* Blur scale - more refined */
            --blur-sm: 8px;
            --blur-md: 20px;
            --blur-lg: 32px;
            --blur-xl: 48px;

            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-xl: 40px;
        }

        /* Brand wordmark — Montserrat (from Montserrat.zip) */
        @font-face {
            font-family: 'Montserrat';
            src: url('../fonts/montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
            font-weight: 100 900;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Montserrat';
            src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Montserrat';
            src: url('../fonts/montserrat/Montserrat-SemiBold.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 30%, #f8fafc 60%, #e0f2fe 100%);
            color: var(--primary-blue);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* Animated soft background blobs */
        .bg-blobs {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            animation: blobFloat 20s ease-in-out infinite;
        }
        .blob-1 {
            width: 600px; height: 600px;
            background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
            top: -10%; left: -10%;
            animation-delay: 0s;
        }
        .blob-2 {
            width: 500px; height: 500px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            top: 40%; right: -15%;
            animation-delay: -7s;
        }
        .blob-3 {
            width: 400px; height: 400px;
            background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
            bottom: -10%; left: 30%;
            animation-delay: -14s;
        }
        @keyframes blobFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -40px) scale(1.05); }
            66% { transform: translate(-20px, 30px) scale(0.95); }
        }

        /* Glassmorphism Utilities - Lodgify Style */
        .glass {
            background: var(--glass-white);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-soft);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass:hover {
            background: var(--glass-white-hover);
            border-color: var(--border-light-hover);
            box-shadow: var(--shadow-medium);
            transform: translateY(-2px);
        }
        .glass-strong {
            background: var(--glass-white-strong);
            backdrop-filter: blur(var(--blur-lg)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(160%);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-medium);
        }
        .glass-solid {
            background: var(--glass-white-solid);
            backdrop-filter: blur(var(--blur-xl)) saturate(180%);
            -webkit-backdrop-filter: blur(var(--blur-xl)) saturate(180%);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-strong);
        }
        .glass-blue {
            background: var(--glass-blue);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid var(--border-blue);
            box-shadow: var(--shadow-soft);
        }
        .glass-blue:hover {
            background: var(--glass-blue-hover);
            border-color: var(--border-blue-hover);
            box-shadow: var(--shadow-medium);
        }
        .glass-nav {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
            border-radius: 0;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.22) 0%,
                rgba(255, 255, 255, 0.12) 100%
            );
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.28);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                0 2px 20px rgba(30, 58, 95, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-nav::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                115deg,
                rgba(255, 255, 255, 0.18) 0%,
                transparent 45%,
                rgba(147, 197, 253, 0.06) 100%
            );
            pointer-events: none;
        }
        .glass-nav::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4) 25%,
                rgba(255, 255, 255, 0.4) 75%,
                transparent
            );
            pointer-events: none;
        }
        .glass-nav.scrolled {
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.45) 0%,
                rgba(255, 255, 255, 0.32) 100%
            );
            border-bottom-color: rgba(255, 255, 255, 0.38);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.45),
                0 6px 28px rgba(30, 58, 95, 0.07);
        }
        /* New: Glass overlay for images/hero */
        .glass-overlay {
            background: linear-gradient(180deg, transparent 0%, var(--glass-blue-dark) 100%);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
        }
        /* New: Glass badge/pill */
        .glass-pill {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 0;
            transition: all 0.3s ease;
            isolation: isolate;
            overflow: visible;
        }
        .navbar-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 1.5rem;
            padding: 0.6rem 2rem;
            max-width: 1320px;
            margin: 0 auto;
            width: 100%;
            overflow: visible;
        }
        .logo--nav {
            grid-column: 1;
            justify-self: start;
            flex-shrink: 0;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 0;
            min-width: max-content;
        }
        .nav-center-glass {
            grid-column: 2;
            justify-self: center;
            display: flex;
            align-items: center;
            max-width: 100%;
            min-width: 0;
            padding: 0.35rem 0.6rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(16px) saturate(170%);
            -webkit-backdrop-filter: blur(16px) saturate(170%);
            border: 1px solid rgba(255, 255, 255, 0.32);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                0 2px 16px rgba(30, 58, 95, 0.04);
            transition: all 0.35s ease;
        }
        .nav-center-glass .nav-links {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-center-glass .nav-links li {
            margin: 0;
            padding: 0;
        }
        .nav-center-glass .nav-links a {
            padding: 0.45rem 0.95rem;
            font-size: 0.82rem;
        }
        .nav-center-glass .nav-links a::after {
            display: none;
        }
        .nav-end {
            grid-column: 3;
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 0.85rem;
            flex-shrink: 0;
            overflow: visible;
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            overflow: visible;
        }
        .navbar .glass-dropdown {
            position: relative;
            z-index: 20;
            overflow: visible;
        }
        .navbar .glass-dropdown.active {
            z-index: 1300;
        }
        .navbar .glass-dropdown-toggle {
            display: inline-flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 0.45rem;
            padding: 0.45rem 0.95rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            color: var(--primary-blue);
            cursor: pointer;
            white-space: nowrap;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(12px) saturate(170%);
            -webkit-backdrop-filter: blur(12px) saturate(170%);
            border: 1px solid rgba(255, 255, 255, 0.32) !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 2px 12px rgba(30, 58, 95, 0.04);
            transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .navbar .glass-dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.26);
            border-color: rgba(255, 255, 255, 0.42) !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 4px 16px rgba(30, 58, 95, 0.07);
            transform: none;
        }
        .page-nav-glass .navbar .glass-dropdown-toggle:hover {
            transform: none;
        }
        .navbar .glass-dropdown-menu {
            min-width: 220px;
            right: 0;
            left: auto;
            top: calc(100% + 0.55rem);
            z-index: 1200;
            padding: 0.45rem;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.55);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.65),
                0 14px 40px rgba(30, 58, 95, 0.14);
        }
        .navbar .glass-dropdown-item {
            padding: 0.65rem 0.9rem;
            gap: 0.65rem;
        }
        .navbar .glass-dropdown-item-label {
            font-weight: 500;
            font-size: 0.88rem;
            line-height: 1.3;
            white-space: nowrap;
        }
        .logo--nav img {
            width: 38px;
            height: 38px;
            object-fit: contain;
            border-radius: 10px;
            box-shadow:
                0 2px 10px rgba(30, 58, 95, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
        }
        .logo-row {
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            align-items: center;
            gap: 0.6rem;
            white-space: nowrap;
        }
        .logo--nav .logo-name {
            font-family: var(--font-brand);
            font-size: 1.22rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            white-space: nowrap;
            line-height: 1;
            text-transform: uppercase;
        }
        .navbar .glass-dropdown-toggle i.fa-building {
            color: var(--accent-blue);
            font-size: 0.85rem;
        }
        .navbar .glass-dropdown-toggle i.fa-chevron-down {
            font-size: 0.65rem;
            opacity: 0.6;
            transition: transform 0.3s ease;
        }
        .glass-dropdown.active .glass-dropdown-toggle i.fa-chevron-down {
            transform: rotate(180deg);
        }
        .logo {
            font-family: var(--font-brand);
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            letter-spacing: -0.02em;
        }
        .logo-name {
            font-family: var(--font-brand);
            font-weight: 700;
            letter-spacing: -0.02em;
            text-transform: uppercase;
        }
        .footer-brand .logo .logo-name {
            text-transform: uppercase;
        }
        .logo-icon {
            width: 42px; height: 42px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            box-shadow: 0 4px 15px rgba(30, 58, 95, 0.25);
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            opacity: 0.8;
        }
        .nav-links a:hover {
            color: var(--accent-blue);
            opacity: 1;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 2px;
            background: var(--accent-blue);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .nav-links a:hover::after { width: 100%; }

        /* Lodgify-style glass nav links */
        .nav-glass-link {
            position: relative;
            overflow: hidden;
            display: block;
            padding: 0.45rem 0.95rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.25;
            white-space: nowrap;
            color: var(--primary-blue);
            text-decoration: none;
            opacity: 0.85;
            border: 1px solid transparent;
            box-sizing: border-box;
            transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
        }
        .nav-glass-link::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(59, 130, 246, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.25s ease;
            z-index: -1;
        }
        .nav-glass-link:hover::before,
        .nav-glass-link.active::before {
            opacity: 1;
        }
        .nav-glass-link:hover,
        .nav-glass-link.active {
            color: var(--accent-blue) !important;
            opacity: 1 !important;
        }
        .nav-glass-link.active {
            background: rgba(255, 255, 255, 0.16);
            border-color: rgba(255, 255, 255, 0.28);
        }
        .nav-glass-link::after {
            display: none !important;
        }

        .nav-glass-link--tip {
            position: relative;
            overflow: visible !important;
        }
        .nav-center-glass .nav-links li:has(.nav-glass-link--tip) {
            overflow: visible;
            position: relative;
            z-index: 5;
        }
        .nav-link-tip {
            position: absolute;
            top: calc(100% + 0.7rem);
            left: 50%;
            z-index: 1400;
            transform: translateX(-50%) translateY(-6px);
            padding: 0.55rem 0.95rem;
            border-radius: 12px;
            background: rgba(30, 58, 95, 0.42);
            backdrop-filter: blur(22px) saturate(180%);
            -webkit-backdrop-filter: blur(22px) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.28),
                0 12px 32px rgba(15, 31, 51, 0.18);
            color: #fff;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        }
        .nav-link-tip::before {
            content: '';
            position: absolute;
            top: -5px;
            left: 50%;
            width: 10px;
            height: 10px;
            transform: translateX(-50%) rotate(45deg);
            background: rgba(30, 58, 95, 0.42);
            border-left: 1px solid rgba(255, 255, 255, 0.35);
            border-top: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.2);
        }
        .nav-glass-link--tip:hover .nav-link-tip,
        .nav-glass-link--tip:focus-visible .nav-link-tip {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Shared navbar — home + property (dark text, blue active, glassmorphic) */
        .page-nav-glass .navbar .logo-name,
        .page-nav-glass .navbar .nav-glass-link,
        .page-nav-glass .navbar .glass-dropdown-toggle,
        .page-nav-glass .navbar .mobile-menu-btn {
            color: var(--primary-blue);
        }

        .page-nav-glass .navbar .nav-glass-link::before {
            display: none;
        }

        .page-nav-glass .navbar .nav-glass-link:hover,
        .page-nav-glass .navbar .nav-glass-link.active {
            color: var(--accent-blue) !important;
            opacity: 1 !important;
            background: rgba(59, 130, 246, 0.12);
            border-color: rgba(59, 130, 246, 0.25);
        }

        .page-nav-glass .navbar .nav-cta,
        .page-nav-glass .navbar .nav-cta:hover {
            color: #fff !important;
        }

        .page-nav-glass .navbar .glass-dropdown-toggle i.fa-building {
            color: var(--accent-blue);
        }

        .page-nav-glass .navbar .nav-center-glass,
        .page-nav-glass .navbar .glass-dropdown-toggle {
            background: rgba(255, 255, 255, 0.42);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-color: rgba(255, 255, 255, 0.48) !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.55),
                0 4px 20px rgba(30, 58, 95, 0.08);
        }

        .page-nav-glass .navbar .glass-dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.52);
            border-color: rgba(255, 255, 255, 0.58) !important;
        }

        .page-nav-glass .glass-nav.scrolled {
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.45) 0%,
                rgba(255, 255, 255, 0.32) 100%
            );
            border-bottom-color: rgba(255, 255, 255, 0.38);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.45),
                0 6px 28px rgba(30, 58, 95, 0.07);
        }

        /* Property dropdown active state */
        .glass-dropdown.active .glass-dropdown-toggle i.fa-chevron-down {
            transform: rotate(180deg);
        }

        /* Scrolled navbar enhancements */
        .glass-nav.scrolled .nav-center-glass {
            background: rgba(255, 255, 255, 0.28) !important;
            border-color: rgba(255, 255, 255, 0.38) !important;
        }
        .glass-nav.scrolled .glass-dropdown-toggle {
            background: rgba(255, 255, 255, 0.28) !important;
            border-color: rgba(255, 255, 255, 0.38) !important;
        }
        .page-nav-glass .glass-nav.scrolled .nav-center-glass,
        .page-nav-glass .glass-nav.scrolled .glass-dropdown-toggle {
            background: rgba(255, 255, 255, 0.55) !important;
            border-color: rgba(255, 255, 255, 0.55) !important;
        }
        .nav-cta {
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.88) 0%, rgba(59, 130, 246, 0.92) 100%);
            color: white;
            font-weight: 600;
            font-size: 0.82rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: box-shadow 0.25s ease, filter 0.25s ease;
            box-shadow: 0 4px 16px rgba(30, 58, 95, 0.22);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }
        .nav-cta:hover {
            box-shadow: 0 8px 25px rgba(30, 58, 95, 0.35);
            filter: brightness(1.05);
        }
        .mobile-menu-btn {
            display: none;
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            min-width: 44px;
            min-height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(12px) saturate(170%);
            -webkit-backdrop-filter: blur(12px) saturate(170%);
            border: 1px solid rgba(255, 255, 255, 0.32);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
            color: var(--primary-blue);
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.26);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 3rem 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero-inner {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.45);
            color: var(--accent-blue);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
            box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
        }
        .hero-badge i { animation: pulse 2s infinite; }
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4.2rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.2rem;
            color: var(--primary-blue);
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        .hero h1 .accent {
            color: var(--accent-blue);
            position: relative;
        }
        .hero-subtitle {
            font-size: 1.15rem;
            color: var(--primary-blue-light);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        .hero-cta-group {
            display: flex;
            gap: 1rem;
            animation: fadeInUp 0.8s ease 0.6s both;
        }
        .hero-btn-primary {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 58, 95, 0.4);
        }
        .hero-btn-secondary {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            background: transparent;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 1rem;
            border: 2px solid rgba(30, 58, 95, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
        }
        .hero-btn-secondary:hover {
            background: var(--primary-blue);
            color: white;
            border-color: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Hero Image/Card */
        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s ease 0.5s both;
        }
        .hero-image-card {
            border-radius: var(--radius-xl);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-strong);
            max-height: 520px;
        }
        .hero-image-card img {
            width: 100%;
            height: clamp(220px, 42vw, 520px);
            max-height: 520px;
            object-fit: cover;
            display: block;
        }
        .hero-image-overlay {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(15, 31, 51, 0.75) 0%, rgba(15, 31, 51, 0.2) 50%, transparent 100%);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        .hero-image-overlay h3 {
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        .hero-image-overlay p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Floating info cards on hero image */
        .floating-card {
            position: absolute;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: floatCard 6s ease-in-out infinite;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: 0 4px 24px rgba(30, 58, 95, 0.08), 0 1px 3px rgba(30, 58, 95, 0.05);
        }
        .floating-card-1 {
            top: -20px; left: -30px;
            animation-delay: 0s;
        }
        .floating-card-2 {
            bottom: 80px; right: -20px;
            animation-delay: -3s;
        }
        .floating-card-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--sky-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .floating-card-text { line-height: 1.4; }
        .floating-card-label {
            font-size: 0.75rem;
            color: var(--primary-blue-light);
            font-weight: 500;
        }
        .floating-card-value {
            font-size: 1rem;
            font-weight: 700;
            color: var(--primary-blue);
        }
        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Section Styles */
        .section {
            padding: 5rem 3rem;
            position: relative;
        }
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3.5rem;
        }
        .section-tag {
            display: inline-block;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: var(--accent-blue);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 12px rgba(30, 58, 95, 0.04);
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }
        .section-subtitle {
            color: var(--primary-blue-light);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Property Overview */
        .overview-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 1.15rem;
            margin-bottom: 1.5rem;
        }
        .overview-card {
            padding: 1.35rem 1rem 1.4rem;
            border-radius: var(--radius-lg);
            text-align: center;
            transition: all 0.4s ease;
            min-width: 0;
        }
        .overview-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
        }
        .overview-icon {
            width: 48px; height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.85rem;
            color: white;
            font-size: 1.15rem;
            box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
        }
        .overview-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.65rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.25rem;
            line-height: 1.2;
        }
        .overview-value--text {
            font-size: clamp(0.95rem, 1.4vw, 1.15rem);
            letter-spacing: -0.01em;
        }
        .overview-label {
            font-size: 0.84rem;
            color: var(--primary-blue-light);
            font-weight: 500;
            line-height: 1.35;
        }
        .overview-quick-features {
            display: grid;
            grid-template-columns: repeat(6, minmax(0, 1fr));
            gap: 0.75rem;
            list-style: none;
            margin: 0.35rem auto 0;
            padding: 0;
            max-width: 1100px;
        }
        .overview-quick-features li {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            min-height: 5.5rem;
            padding: 0.95rem 0.65rem;
            text-align: center;
            border-radius: 18px;
            background:
                linear-gradient(165deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.42) 100%);
            border: 1px solid rgba(255, 255, 255, 0.72);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.7),
                0 8px 22px rgba(30, 58, 95, 0.06);
            backdrop-filter: blur(14px) saturate(155%);
            -webkit-backdrop-filter: blur(14px) saturate(155%);
            color: var(--primary-blue);
            font-size: 0.82rem;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: 0.01em;
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
        }
        .overview-quick-features li:hover {
            transform: translateY(-3px);
            border-color: rgba(59, 130, 246, 0.28);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 12px 28px rgba(30, 58, 95, 0.1);
        }
        .overview-quick-icon {
            width: 2.15rem;
            height: 2.15rem;
            border-radius: 11px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.08), rgba(59, 130, 246, 0.14));
            color: var(--accent-blue);
            font-size: 0.85rem;
            flex-shrink: 0;
        }
        .overview-quick-features li > span:last-child {
            display: block;
            max-width: 9.5rem;
        }
        @media (max-width: 1100px) {
            .overview-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .overview-quick-features {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (max-width: 700px) {
            .overview-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.85rem;
            }
            .overview-card {
                padding: 1.15rem 0.8rem 1.2rem;
            }
            .overview-quick-features {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.65rem;
            }
            .overview-quick-features li {
                min-height: 5.1rem;
                padding: 0.85rem 0.55rem;
                font-size: 0.78rem;
            }
        }
        @media (max-width: 420px) {
            .overview-grid {
                grid-template-columns: 1fr;
            }
            .overview-quick-features {
                grid-template-columns: 1fr;
            }
            .overview-quick-features li {
                flex-direction: row;
                justify-content: flex-start;
                text-align: left;
                min-height: 0;
                padding: 0.85rem 1rem;
                gap: 0.75rem;
            }
            .overview-quick-features li > span:last-child {
                max-width: none;
            }
        }

        /* Floor Plan Section */
        .floor-plan-section { padding: 3rem 0; }
        .floor-plan-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .floor-plan-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        .floor-badge {
            padding: 0.4rem 1rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .floor-plan-image {
            margin-bottom: 2rem;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-soft);
        }
        .floor-plan-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
            gap: 1.5rem;
        }
        .room-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }
        .room-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-strong);
        }
        .room-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .room-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .room-card:hover .room-image img { transform: scale(1.08); }
        .room-image::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(15, 31, 51, 0.6) 0%, rgba(15, 31, 51, 0.1) 60%, transparent 100%);
            backdrop-filter: blur(1px);
            -webkit-backdrop-filter: blur(1px);
        }
        .room-number {
            position: absolute;
            top: 1rem; left: 1rem;
            z-index: 2;
            width: 36px; height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
        }
        .room-floor-tag {
            position: absolute;
            top: 1rem; right: 1rem;
            z-index: 2;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: var(--primary-blue);
            font-size: 0.75rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(30, 58, 95, 0.06);
        }
        .room-info { padding: 1.5rem; }
        .room-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            line-height: 1.35;
        }
        .room-features {
            display: flex;
            gap: 0.55rem 0.85rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .room-feature {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            font-size: 0.8rem;
            color: var(--primary-blue-light);
            padding: 0.28rem 0.55rem;
            border-radius: 999px;
            background: rgba(59, 130, 246, 0.06);
            border: 1px solid rgba(59, 130, 246, 0.1);
        }
        .room-feature i {
            color: var(--accent-blue);
            font-size: 0.78rem;
        }
        .room-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid rgba(30, 58, 95, 0.08);
        }
        .room-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--accent-blue);
        }
        .room-price span {
            font-size: 0.85rem;
            color: var(--primary-blue-light);
            font-weight: 400;
        }
        .room-book-btn {
            padding: 0.6rem 1.4rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
            position: relative;
            overflow: hidden;
        }
        .room-book-btn:hover {
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 8px 28px rgba(59, 130, 246, 0.35);
        }
        .room-book-btn:active {
            transform: scale(0.98);
        }

        /* Per-room price comparison (property page) */
        .room-compare {
            margin: 1rem 0;
            padding: 0.85rem 1rem;
            border-radius: var(--radius-sm);
            background: rgba(30, 58, 95, 0.04);
            border: 1px solid rgba(30, 58, 95, 0.08);
        }
        .room-compare-header {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: var(--primary-blue-light);
            margin-bottom: 0.6rem;
        }
        .room-compare-header i {
            color: var(--accent-blue);
            font-size: 0.7rem;
        }
        .room-compare-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.82rem;
            padding: 0.25rem 0;
            color: var(--primary-blue-light);
        }
        .room-compare-row a {
            color: var(--primary-blue-light);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .room-compare-row a:hover {
            color: var(--accent-blue);
        }
        .room-compare-row.direct {
            font-weight: 600;
            color: var(--primary-blue);
            border-bottom: 1px solid rgba(30, 58, 95, 0.08);
            padding-bottom: 0.45rem;
            margin-bottom: 0.35rem;
        }
        .room-compare-row.direct .room-compare-price {
            color: var(--accent-blue);
            font-weight: 700;
        }
        .room-compare-price.ota {
            text-decoration: line-through;
            opacity: 0.75;
        }
        .room-compare-save {
            margin-top: 0.55rem;
            padding-top: 0.55rem;
            border-top: 1px dashed rgba(59, 130, 246, 0.25);
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--accent-blue);
            display: flex;
            align-items: center;
            gap: 0.35rem;
        }
        .property-compare {
            margin: 1.25rem 0 1.5rem;
            padding: 1rem 1.25rem;
            border-radius: var(--radius-md);
            background: rgba(59, 130, 246, 0.06);
            border: 1px solid rgba(59, 130, 246, 0.15);
            text-align: left;
        }
        .property-compare .room-compare-row {
            font-size: 0.88rem;
        }

        /* Entire property — wide carousel + booking */
        .entire-property-wrap {
            width: 100%;
            max-width: 1400px;
            margin: 3rem auto 0;
            padding: 0 0.5rem;
        }
        .entire-property-wide {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-strong);
        }
        .room-carousel {
            position: relative;
            min-height: 420px;
            background: var(--primary-blue-dark);
        }
        .room-carousel-track {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 420px;
        }
        .room-carousel-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s;
        }
        .room-carousel-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }
        .room-carousel-slide img {
            width: 100%;
            height: 100%;
            min-height: 420px;
            object-fit: cover;
            display: block;
        }
        .room-carousel-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(15, 31, 51, 0.05) 0%, rgba(15, 31, 51, 0.15) 45%, rgba(15, 31, 51, 0.75) 100%);
            z-index: 2;
            pointer-events: none;
        }
        .room-carousel-caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 3;
            padding: 1.5rem 1.75rem 5.5rem;
            color: white;
        }
        .room-carousel-badge {
            display: inline-block;
            padding: 0.35rem 0.85rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.35);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            margin-bottom: 0.65rem;
        }
        .room-carousel-caption h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.35;
            margin-bottom: 0.35rem;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }
        .room-carousel-caption p {
            font-size: 0.9rem;
            opacity: 0.92;
        }
        .room-carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 4;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .room-carousel-btn:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.06);
        }
        .room-carousel-btn.prev { left: 1rem; }
        .room-carousel-btn.next { right: 1rem; }
        .room-carousel-dots {
            position: absolute;
            bottom: 1.25rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        .room-carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            padding: 0;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .room-carousel-dot.active {
            width: 28px;
            border-radius: 50px;
            background: white;
        }
        .room-carousel-thumbs {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            z-index: 4;
            display: flex;
            gap: 0.45rem;
        }
        .room-carousel-thumb {
            width: 52px;
            height: 38px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid transparent;
            padding: 0;
            cursor: pointer;
            opacity: 0.65;
            transition: all 0.3s ease;
            background: none;
        }
        .room-carousel-thumb.active {
            border-color: white;
            opacity: 1;
            transform: scale(1.05);
        }
        .room-carousel-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 0;
        }
        .entire-property-content {
            padding: 2.25rem 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--glass-white-strong);
            backdrop-filter: blur(var(--blur-lg)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(160%);
        }
        .entire-property-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.35rem, 2.2vw, 1.65rem);
            color: var(--primary-blue);
            line-height: 1.35;
            margin-bottom: 0.5rem;
        }
        .entire-property-content .entire-property-lead {
            color: var(--primary-blue-light);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .entire-property-stats {
            display: flex;
            gap: 1.75rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }
        .entire-property-stat {
            text-align: center;
            min-width: 64px;
        }
        .entire-property-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--accent-blue);
        }
        .entire-property-stat-label {
            font-size: 0.8rem;
            color: var(--primary-blue-light);
        }
        .entire-property-price {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.75rem;
        }
        .entire-property-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--primary-blue-light);
        }
        .entire-property-book-btn {
            width: 100%;
            padding: 1rem 2rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-weight: 700;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
            transition: all 0.3s ease;
            margin-top: 1rem;
        }
        .entire-property-book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
        }

        @media (max-width: 960px) {
            .entire-property-wide {
                grid-template-columns: 1fr;
            }
            .room-carousel,
            .room-carousel-track,
            .room-carousel-slide img {
                min-height: 320px;
            }
            .room-carousel-thumbs {
                display: none;
            }
            .entire-property-content {
                padding: 1.75rem 1.5rem;
            }
        }

        /* Price Comparison Section (reserved for future home page) */
        .comparison-section {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.03) 0%, transparent 50%);
        }
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .comparison-layout {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        .comparison-group {
            display: flex;
            align-items: stretch;
            gap: 0.85rem;
            flex: 1 1 0;
            min-width: 0;
        }
        .comparison-group--left {
            justify-content: flex-end;
        }
        .comparison-group--right {
            justify-content: flex-start;
        }
        .comparison-group--center {
            flex: 0 0 auto;
            align-self: center;
            padding-top: 0.65rem;
        }
        .comparison-group .comparison-card-link {
            flex: 0 0 auto;
            width: 172px;
            max-width: 172px;
            display: flex;
            height: auto;
        }
        .comparison-group--center .comparison-card-link {
            width: 228px;
            max-width: 228px;
        }
        .comparison-logo--direct {
            background: transparent;
            border: none;
            box-shadow: none;
        }
        .comparison-price--best {
            color: var(--accent-blue);
        }
        .comparison-savings--best {
            color: var(--accent-blue);
            white-space: normal;
            flex-wrap: wrap;
        }
        @media (max-width: 1100px) {
            .comparison-layout {
                flex-wrap: wrap;
                gap: 1rem;
            }
            .comparison-group {
                flex: 1 1 100%;
                justify-content: center;
            }
            .comparison-group--center {
                order: -1;
            }
            .comparison-group .comparison-card-link {
                width: 168px;
                max-width: 168px;
            }
            .comparison-group--center .comparison-card-link {
                width: min(260px, 100%);
                max-width: 260px;
            }
        }
        @media (max-width: 640px) {
            .comparison-group {
                flex-wrap: wrap;
                justify-content: center;
            }
            .comparison-group .comparison-card-link {
                flex: 1 1 100%;
                width: 100%;
                max-width: 100%;
                min-width: 0;
            }
            .comparison-group--center .comparison-card-link {
                flex: 1 1 100%;
                max-width: 100%;
                width: 100%;
            }
        }
        a.comparison-card-link {
            text-decoration: none;
            color: inherit;
        }
        .comparison-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            height: 100%;
            min-height: 268px;
            padding: 2rem 0.75rem 1.25rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }
        .comparison-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-medium);
        }
        .comparison-card.best {
            border: 2px solid var(--accent-blue);
            border-radius: 18px;
            min-height: 300px;
            padding: 2.15rem 0.95rem 1.45rem;
            transform: none;
            margin-top: 0;
            overflow: visible;
        }
        .comparison-card.best:hover {
            transform: translateY(-6px);
        }
        .comparison-card.best.glass-border-animated {
            border-radius: 18px;
        }
        .comparison-card.best.glass-border-animated::before {
            border-radius: 20px;
        }
        .comparison-card.best.glass-border-animated::after {
            border-radius: 18px;
            z-index: 0;
            overflow: hidden;
        }
        .comparison-card.best .best-badge {
            position: absolute;
            top: 0;
            left: 50%;
            right: auto;
            transform: translate(-50%, -50%);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.38rem 0.95rem;
            border-radius: 9999px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            white-space: nowrap;
            line-height: 1;
            border: 1px solid rgba(255, 255, 255, 0.35);
            box-shadow:
                0 2px 10px rgba(30, 58, 95, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
            z-index: 6;
        }
        .comparison-card.best .comparison-logo--direct {
            margin-top: 0.35rem;
        }
        .comparison-card.best .comparison-logo {
            width: 56px;
            height: 56px;
        }
        .comparison-card.best .comparison-price {
            font-size: clamp(1.55rem, 2.2vw, 1.9rem);
        }
        .comparison-logo {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin: 0 0 0.85rem;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .comparison-logo--img {
            background: rgba(255, 255, 255, 0.88);
            padding: 0;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 2px 10px rgba(30, 58, 95, 0.08);
        }
        .comparison-logo--img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            border-radius: 14px;
        }
        .logo-clickstay { background: #e11d48; color: white; }
        .logo-airbnb { background: #ff5a5f; color: white; }
        .logo-vrbo { background: #1a73e8; color: white; }
        .logo-booking { background: #003580; color: white; }
        .logo-google { background: #fff; color: #4285f4; border: 1px solid rgba(66, 133, 244, 0.25); box-shadow: inset 0 0 0 1px rgba(66, 133, 244, 0.08); }
        .logo-bluDoor { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%); color: white; }
        .logo-trip { background: #00af87; color: white; }
        .logo-agoda { background: #7b1fa2; color: white; }
        .comparison-name {
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
            min-height: 2.6em;
            line-height: 1.3;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            text-align: center;
        }
        .comparison-name--stacked {
            flex-direction: column;
            gap: 0.15rem;
            line-height: 1.25;
        }
        .comparison-name-main {
            display: block;
        }
        .comparison-name-sub {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--accent-blue);
        }
        .comparison-price {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.45rem, 2vw, 1.75rem);
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.35rem;
            line-height: 1;
            width: 100%;
            display: flex;
            align-items: baseline;
            justify-content: center;
            flex-wrap: nowrap;
            gap: 0.3rem;
            white-space: nowrap;
            font-variant-numeric: tabular-nums;
        }
        .comparison-price span {
            font-family: 'Inter', sans-serif;
            font-size: 0.76rem;
            color: var(--primary-blue-light);
            font-weight: 500;
            white-space: nowrap;
            line-height: 1;
        }
        .comparison-savings {
            font-size: 0.78rem;
            color: #16a34a;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3rem;
            width: 100%;
            min-height: 1.35em;
            margin-top: auto;
            padding-top: 0.65rem;
            line-height: 1.2;
            text-align: center;
        }
        .comparison-fee {
            font-size: 0.78rem;
            color: var(--primary-blue-light);
            min-height: 1.35em;
            line-height: 1.2;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            text-align: center;
            white-space: nowrap;
        }
        .comparison-note {
            text-align: center;
            margin-top: 2.5rem;
            padding: 1rem 2rem;
            border-radius: var(--radius-lg);
            display: inline-block;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 2px 16px rgba(30, 58, 95, 0.06);
        }
        .comparison-note-wrap {
            text-align: center;
            margin-top: 2rem;
        }
        .comparison-note p {
            color: var(--primary-blue-light);
            font-size: 0.95rem;
        }
        .comparison-note strong {
            color: var(--accent-blue);
        }

        /* Amenities Section */
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1rem;
            max-width: 960px;
            margin: 0 auto;
        }
        .amenity-item {
            padding: 1.35rem 0.9rem 1.25rem;
            border-radius: 18px;
            text-align: center;
            min-width: 0;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            background:
                linear-gradient(165deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.42) 100%);
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.75),
                0 8px 22px rgba(30, 58, 95, 0.06);
        }
        .amenity-item:hover {
            transform: translateY(-4px);
            border-color: rgba(59, 130, 246, 0.28);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.85),
                0 14px 32px rgba(30, 58, 95, 0.1);
        }
        .amenity-icon {
            width: 46px; height: 46px;
            border-radius: 13px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(30, 58, 95, 0.06) 100%);
            border: 1px solid rgba(59, 130, 246, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.7rem;
            color: var(--accent-blue);
            font-size: 1.1rem;
            transition: all 0.35s ease;
        }
        .amenity-item:hover .amenity-icon {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            border-color: transparent;
            transform: scale(1.08);
            box-shadow: 0 8px 18px rgba(59, 130, 246, 0.28);
        }
        .amenity-label {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--primary-blue);
            line-height: 1.3;
        }
        @media (max-width: 900px) {
            .amenities-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (max-width: 640px) {
            .amenities-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.75rem;
            }
            .amenity-item {
                padding: 1.15rem 0.7rem 1.05rem;
            }
            .amenity-label {
                font-size: 0.82rem;
            }
        }

/* Gallery — compact mosaic + full panel */
        .gallery-section {
            padding-top: 3.5rem;
            padding-bottom: 2.5rem;
        }
        .gallery-section .section-header {
            margin-bottom: 1.5rem;
        }
        .gallery-mosaic {
            display: grid;
            grid-template-columns: 1.55fr 1fr 1fr;
            grid-template-rows: 148px 148px;
            gap: 0.5rem;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-soft);
        }
        .gallery-mosaic-main,
        .gallery-mosaic-tile,
        .gallery-mosaic-all {
            position: relative;
            border: 0;
            padding: 0;
            margin: 0;
            overflow: hidden;
            cursor: pointer;
            background: rgba(30, 58, 95, 0.08);
        }
        .gallery-mosaic-main {
            grid-row: 1 / 3;
            grid-column: 1;
        }
        .gallery-mosaic-main img,
        .gallery-mosaic-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
        }
        .gallery-mosaic-main:hover img,
        .gallery-mosaic-tile:hover img {
            transform: scale(1.04);
        }
        .gallery-mosaic-caption {
            position: absolute;
            left: 0; right: 0; bottom: 0;
            padding: 1rem 0.85rem 0.75rem;
            background: linear-gradient(to top, rgba(15, 31, 51, 0.72), transparent);
            color: #fff;
            font-weight: 600;
            font-size: 0.88rem;
            text-align: left;
        }
        .gallery-mosaic-all {
            position: absolute;
            right: 0.85rem;
            bottom: 0.85rem;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.55rem 0.9rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.42);
            border: 1px solid rgba(255, 255, 255, 0.55);
            color: var(--primary-blue);
            font-family: inherit;
            font-size: 0.8rem;
            font-weight: 700;
            backdrop-filter: blur(14px) saturate(160%);
            -webkit-backdrop-filter: blur(14px) saturate(160%);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 8px 22px rgba(15, 31, 51, 0.12);
            transition: transform 0.2s ease, background 0.2s ease;
        }
        .gallery-mosaic-all:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.62);
        }

        /* Full gallery panel — frosted glass overlay */
        .gallery-panel {
            position: fixed;
            inset: 0;
            z-index: 1150;
            overflow: auto;
            padding: 1.5rem 1.25rem 2.75rem;
            background: rgba(255, 255, 255, 0.16);
            backdrop-filter: blur(32px) saturate(180%);
            -webkit-backdrop-filter: blur(32px) saturate(180%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }
        .gallery-panel::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 70% 45% at 12% 0%, rgba(255, 255, 255, 0.4), transparent 55%),
                radial-gradient(ellipse 55% 35% at 90% 10%, rgba(255, 255, 255, 0.18), transparent 50%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
            opacity: 1;
        }
        .gallery-panel[hidden] { display: none !important; }
        .gallery-panel-shell {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
            padding: 1.35rem 1.35rem 1.6rem;
            border-radius: 28px;
            background: rgba(255, 255, 255, 0.34);
            border: 1px solid rgba(255, 255, 255, 0.58);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.7) inset,
                0 24px 64px rgba(30, 58, 95, 0.1),
                0 8px 24px rgba(30, 58, 95, 0.05);
            backdrop-filter: blur(36px) saturate(185%);
            -webkit-backdrop-filter: blur(36px) saturate(185%);
            animation: galleryPanelIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }
        @keyframes galleryPanelIn {
            from { opacity: 0; transform: translateY(14px) scale(0.985); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .gallery-panel-top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.1rem;
            position: sticky;
            top: 0;
            z-index: 2;
            padding: 0.5rem 0.35rem 0.95rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 55%, rgba(255, 255, 255, 0));
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .gallery-panel-kicker {
            margin: 0 0 0.25rem;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent-blue);
        }
        .gallery-panel-title {
            margin: 0;
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            color: var(--primary-blue);
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
        }
        .gallery-panel-title span {
            font-family: inherit;
            font-size: 0.7em;
            color: var(--primary-blue-light);
            font-weight: 500;
        }
        .gallery-panel-close {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.65);
            background: rgba(255, 255, 255, 0.45);
            color: var(--primary-blue);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.08);
            backdrop-filter: blur(16px) saturate(160%);
            -webkit-backdrop-filter: blur(16px) saturate(160%);
            transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }
        .gallery-panel-close:hover {
            background: rgba(255, 255, 255, 0.75);
            transform: scale(1.05);
            box-shadow: 0 10px 28px rgba(30, 58, 95, 0.12);
        }
        .gallery-panel-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.2rem;
            position: sticky;
            top: 4.4rem;
            z-index: 2;
            padding: 0.55rem;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.32);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 10px 28px rgba(30, 58, 95, 0.06);
            backdrop-filter: blur(20px) saturate(170%);
            -webkit-backdrop-filter: blur(20px) saturate(170%);
        }
        .gallery-panel-tab {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.5rem 0.85rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.28);
            color: var(--primary-blue);
            font-family: inherit;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.22s ease;
        }
        .gallery-panel-tab span {
            font-size: 0.72rem;
            opacity: 0.7;
            padding: 0.08rem 0.35rem;
            border-radius: 8px;
            background: rgba(30, 58, 95, 0.08);
        }
        .gallery-panel-tab:hover {
            border-color: rgba(59, 130, 246, 0.35);
            background: rgba(255, 255, 255, 0.55);
            transform: translateY(-1px);
        }
        .gallery-panel-tab.is-active {
            background: linear-gradient(135deg, rgba(30, 58, 95, 0.92), rgba(59, 130, 246, 0.88));
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
            box-shadow: 0 8px 22px rgba(30, 58, 95, 0.22);
        }
        .gallery-panel-tab.is-active span {
            opacity: 0.95;
            background: rgba(255, 255, 255, 0.18);
        }
        .gallery-panel-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.7rem;
        }
        .gallery-panel-shot {
            position: relative;
            aspect-ratio: 4 / 3;
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 0;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.22);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.45) inset,
                0 10px 28px rgba(30, 58, 95, 0.08);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .gallery-panel-shot[hidden] { display: none !important; }
        .gallery-panel-shot img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.45s ease;
        }
        .gallery-panel-shot-label {
            position: absolute;
            left: 0.45rem; right: 0.45rem; bottom: 0.45rem;
            padding: 0.55rem 0.65rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.28);
            border: 1px solid rgba(255, 255, 255, 0.45);
            color: var(--primary-blue-dark);
            font-size: 0.76rem;
            font-weight: 600;
            text-align: left;
            line-height: 1.25;
            backdrop-filter: blur(14px) saturate(160%);
            -webkit-backdrop-filter: blur(14px) saturate(160%);
            box-shadow: 0 6px 16px rgba(15, 31, 51, 0.1);
        }
        .gallery-panel-shot-label em {
            display: block;
            font-style: normal;
            font-size: 0.62rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--accent-blue);
            margin-bottom: 0.08rem;
        }
        .gallery-panel-shot:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.75);
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.55) inset,
                0 16px 36px rgba(30, 58, 95, 0.14);
        }
        .gallery-panel-shot:hover img { transform: scale(1.05); }
        body.gallery-panel-open,
        body.gallery-lightbox-open { overflow: hidden; }

        /* Single-photo lightbox */
        .gallery-lightbox {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem;
        }
        .gallery-lightbox[hidden] { display: none !important; }
        .gallery-lightbox-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(28px) saturate(175%);
            -webkit-backdrop-filter: blur(28px) saturate(175%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
        .gallery-lightbox-stage {
            position: relative;
            z-index: 1;
            max-width: min(1100px, 92vw);
            max-height: 88vh;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
            animation: galleryLightboxIn 0.28s ease;
        }
        @keyframes galleryLightboxIn {
            from { opacity: 0; transform: scale(0.97) translateY(8px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }
        .gallery-lightbox-stage img {
            display: block;
            max-width: 100%;
            max-height: calc(88vh - 3.5rem);
            width: auto;
            height: auto;
            margin: 0 auto;
            border-radius: var(--radius-md);
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
        }
        .gallery-lightbox-stage figcaption {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            gap: 1rem;
            color: white;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0 0.25rem;
        }
        #galleryLightboxCounter {
            opacity: 0.7;
            white-space: nowrap;
            font-size: 0.85rem;
        }
        .gallery-lightbox-close,
        .gallery-lightbox-nav {
            position: absolute;
            z-index: 2;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.12);
            color: white;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease, transform 0.2s ease;
        }
        .gallery-lightbox-close:hover,
        .gallery-lightbox-nav:hover {
            background: rgba(255, 255, 255, 0.22);
            transform: scale(1.04);
        }
        .gallery-lightbox-close { top: 1.25rem; right: 1.25rem; }
        .gallery-lightbox-prev { left: 1rem; }
        .gallery-lightbox-next { right: 1rem; }

        /* Location */
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .location-map {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            height: 400px;
            background: linear-gradient(135deg, rgba(219, 234, 254, 0.6) 0%, rgba(191, 219, 254, 0.4) 100%);
            backdrop-filter: blur(var(--blur-md)) saturate(140%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
        }
        .location-map-embed {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }
        .location-map-link {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 0.9rem;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--primary-blue);
            text-decoration: none;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            z-index: 1;
        }
        .location-map-link:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(30, 58, 95, 0.16);
            color: var(--accent-blue);
        }
        .location-map-link i {
            font-size: 0.72rem;
        }
        .location-details h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        .location-details p {
            color: var(--primary-blue-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .location-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .location-highlight {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(var(--blur-sm)) saturate(140%);
            -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: 0 2px 8px rgba(30, 58, 95, 0.04);
            transition: all 0.3s ease;
        }
        .location-highlight:hover {
            background: rgba(255, 255, 255, 0.65);
            transform: translateX(4px);
            box-shadow: 0 4px 16px rgba(30, 58, 95, 0.08);
        }
        .location-highlight i {
            color: var(--accent-blue);
            font-size: 1rem;
        }
        .location-highlight span {
            font-size: 0.9rem;
            color: var(--primary-blue);
            font-weight: 500;
        }

        /* Reviews */
        .reviews-summary {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 0.75rem 1.5rem;
            margin: 0 auto 1.75rem;
            max-width: 640px;
            text-align: center;
        }
        .reviews-summary-score {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.55rem 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(255, 255, 255, 0.65);
            box-shadow: var(--shadow-soft);
            color: var(--primary-blue);
            font-size: 0.88rem;
            font-weight: 600;
        }
        .reviews-summary-stars {
            color: #d4a017;
            letter-spacing: 0.04em;
        }
        .reviews-summary-score strong {
            font-size: 1.05rem;
        }
        .reviews-summary-note {
            margin: 0;
            font-size: 0.86rem;
            color: var(--primary-blue-light);
        }

        .reviews-carousel {
            position: relative;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr) auto;
            align-items: center;
            gap: 0.65rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .reviews-viewport {
            min-width: 0;
            overflow: hidden;
        }
        .reviews-track {
            display: flex;
            gap: 1.15rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none;
            padding: 0.35rem 0.15rem 0.85rem;
            -webkit-overflow-scrolling: touch;
        }
        .reviews-track::-webkit-scrollbar {
            display: none;
        }
        .reviews-nav {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(30, 58, 95, 0.12);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.72);
            color: var(--primary-blue);
            box-shadow: var(--shadow-soft);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
            flex-shrink: 0;
        }
        .reviews-nav:hover {
            transform: scale(1.05);
            background: #fff;
        }
        .reviews-nav:disabled {
            opacity: 0.35;
            cursor: default;
            transform: none;
        }
        .review-card {
            flex: 0 0 calc((100% - 2.3rem) / 3);
            min-width: 260px;
            max-width: 100%;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            padding: 1.5rem 1.45rem 1.35rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.45);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            position: relative;
            min-height: 100%;
        }
        .review-card:hover {
            transform: translateY(-3px);
            border-color: rgba(59, 130, 246, 0.18);
            box-shadow: 0 14px 40px rgba(30, 58, 95, 0.1);
        }
        .review-quote {
            position: absolute;
            top: 0.55rem;
            right: 1rem;
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            line-height: 1;
            color: rgba(30, 58, 95, 0.1);
            pointer-events: none;
        }
        .review-rating {
            color: #d4a017;
            font-size: 0.78rem;
            letter-spacing: 0.06em;
            margin-bottom: 0.75rem;
        }
        .review-text {
            flex: 1;
            margin: 0 0 1.15rem;
            color: var(--primary-blue);
            line-height: 1.65;
            font-size: 0.92rem;
        }
        .review-footer {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(30, 58, 95, 0.08);
            margin-top: auto;
        }
        .review-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(59, 130, 246, 0.35);
            flex-shrink: 0;
        }
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .review-avatar-initial {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-weight: 700;
            font-size: 0.95rem;
        }
        .review-meta { flex: 1; min-width: 0; }
        .review-name {
            font-weight: 700;
            color: var(--primary-blue);
            font-size: 0.95rem;
        }
        .review-stay {
            font-size: 0.78rem;
            color: var(--primary-blue-light);
            margin-top: 0.1rem;
        }
        .review-room {
            font-size: 0.72rem;
            color: var(--accent-blue);
            margin-top: 0.15rem;
            font-weight: 600;
            line-height: 1.35;
        }
        .reviews-dots {
            display: flex;
            justify-content: center;
            gap: 0.4rem;
            margin-top: 0.35rem;
        }
        .reviews-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            border: 0;
            padding: 0;
            background: rgba(30, 58, 95, 0.18);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
        }
        .reviews-dot.is-active {
            background: var(--accent-blue);
            width: 18px;
            border-radius: 999px;
        }
        .reviews-cta {
            display: flex;
            justify-content: center;
            margin-top: 1.35rem;
        }
        .reviews-cta-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 1.15rem;
            border-radius: 999px;
            text-decoration: none;
            font-size: 0.86rem;
            font-weight: 700;
            color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(30, 58, 95, 0.1);
            box-shadow: var(--shadow-soft);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .reviews-cta-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(30, 58, 95, 0.1);
        }
        .reviews-cta-link img {
            width: 18px;
            height: 18px;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 6rem 3rem;
        }
        .cta-glass {
            max-width: 700px;
            margin: 0 auto;
            padding: 3.5rem;
            border-radius: var(--radius-xl);
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(var(--blur-xl)) saturate(180%);
            -webkit-backdrop-filter: blur(var(--blur-xl)) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.55);
            box-shadow: 0 8px 48px rgba(30, 58, 95, 0.1), 0 1px 3px rgba(30, 58, 95, 0.05);
        }
        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }
        .cta-section p {
            color: var(--primary-blue-light);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        .cta-btn {
            padding: 1rem 3rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
            text-decoration: none;
        }
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(30, 58, 95, 0.4);
            color: white;
        }
        .cta-btn > * {
            position: relative;
            z-index: 1;
        }

        /* Scroll controls — sit above Hostinger/accessibility widgets (~56px) */
        .scroll-to-top,
        .scroll-to-bottom {
            position: fixed;
            right: 1.75rem;
            z-index: 9990;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(16px) saturate(170%);
            -webkit-backdrop-filter: blur(16px) saturate(170%);
            border: 1px solid rgba(255, 255, 255, 0.32);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.35),
                0 4px 20px rgba(30, 58, 95, 0.1);
            color: var(--primary-blue);
            font-size: 1rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(14px);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .scroll-to-bottom {
            bottom: 5.75rem;
        }
        .scroll-to-top {
            bottom: calc(5.75rem + 3.35rem);
        }
        .scroll-to-top.visible,
        .scroll-to-bottom.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .scroll-to-top:hover,
        .scroll-to-bottom:hover {
            background: rgba(255, 255, 255, 0.28);
            border-color: rgba(255, 255, 255, 0.45);
            color: var(--accent-blue);
            transform: translateY(-3px);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.45),
                0 8px 28px rgba(30, 58, 95, 0.14);
        }

        /* Footer */
        .footer {
            padding: 4rem 3rem 2rem;
            border-top: 1px solid rgba(30, 58, 95, 0.08);
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.75fr) minmax(0, 0.9fr) minmax(0, 1.15fr);
            column-gap: 2rem;
            row-gap: 2.25rem;
            margin-bottom: 3rem;
            align-items: start;
        }
        .page-property .footer-grid,
        .footer-grid--property {
            grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
            column-gap: 1.75rem;
            row-gap: 1rem;
            margin-bottom: 0.85rem;
            padding: 1.05rem 1.25rem 1rem;
            border-radius: 18px;
            background:
                linear-gradient(165deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.38) 100%);
            border: 1px solid rgba(255, 255, 255, 0.72);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 12px 32px rgba(30, 58, 95, 0.07);
            backdrop-filter: blur(18px) saturate(155%);
            -webkit-backdrop-filter: blur(18px) saturate(155%);
            align-items: start;
        }
        .footer-side {
            display: contents;
        }
        .page-property .footer-brand-copy,
        .page-property .footer-trust,
        .footer-grid--property .footer-brand-copy,
        .footer-grid--property .footer-trust {
            max-width: none;
        }
        .footer-grid--property .footer-brand > .logo--footer {
            margin-bottom: 0.55rem;
        }
        .footer-grid--property .footer-brand .logo--footer img {
            width: 34px;
            height: 34px;
            border-radius: 8px;
        }
        .footer-grid--property .footer-brand .logo--footer .logo-name {
            font-size: 1.05rem;
        }
        .footer-grid--property .footer-column h4 {
            display: block;
            min-height: 0;
            margin: 0 0 0.55rem;
            padding: 0 0 0.4rem;
            border-bottom: 1px solid rgba(30, 58, 95, 0.08);
            font-size: 0.72rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--primary-blue);
        }
        .footer-grid--property .footer-brand-kicker {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.05rem, 1.5vw, 1.2rem);
            font-weight: 600;
            line-height: 1.25;
            color: var(--primary-blue);
            margin: 0 0 0.3rem;
        }
        .footer-grid--property .footer-brand-tagline {
            font-size: 0.8rem;
            line-height: 1.45;
            max-width: 28rem;
            margin: 0;
            color: var(--primary-blue-light);
        }
        .footer-brand-copy {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin: 0;
        }
        .footer-trust-line {
            margin: 0.65rem 0 0;
            padding: 0;
            font-size: 0.74rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            color: var(--primary-blue);
            line-height: 1.35;
        }
        .footer-links-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            column-gap: 0.75rem;
            row-gap: 0.35rem;
        }
        .footer-links-list a {
            display: inline-flex;
            align-items: center;
            font-size: 0.84rem;
            color: var(--primary-blue-light);
            text-decoration: none;
            padding: 0.1rem 0;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .footer-links-list a:hover {
            color: var(--accent-blue);
            transform: translateX(2px);
        }
        .footer-grid--property .footer-column--links .footer-links-list {
            grid-template-columns: 1fr 1fr 1fr;
            column-gap: 0.65rem;
            row-gap: 0.4rem;
            align-content: start;
        }
        .footer-contact-card,
        .footer-contact-card--premium,
        .footer-contact-card--compact {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            padding: 0.85rem 0.9rem;
            border-radius: 14px;
        }
        .footer-contact-card--glass,
        .footer-contact-card--compact {
            background: linear-gradient(
                155deg,
                rgba(255, 255, 255, 0.38) 0%,
                rgba(191, 219, 254, 0.22) 55%,
                rgba(147, 197, 253, 0.14) 100%
            ) !important;
            border: 1px solid rgba(255, 255, 255, 0.72) !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.85),
                inset 0 -1px 0 rgba(59, 130, 246, 0.06),
                0 8px 28px rgba(30, 58, 95, 0.08) !important;
            backdrop-filter: blur(22px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(22px) saturate(180%) !important;
        }
        .footer-contact-card--glass .footer-whatsapp-qr img,
        .footer-contact-card--compact .footer-whatsapp-qr img {
            background: rgba(255, 255, 255, 0.55) !important;
            border: 1px solid rgba(255, 255, 255, 0.7) !important;
            box-shadow: 0 4px 14px rgba(30, 58, 95, 0.08);
        }
        .footer-contact-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            flex: 1 1 auto;
            min-width: 0;
        }
        .footer-contact-list a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            line-height: 1.35;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .footer-contact-list a:hover {
            color: var(--accent-blue);
        }
        .footer-contact-list i {
            margin-top: 0;
            color: var(--accent-blue);
            width: 0.95rem;
            text-align: center;
            flex-shrink: 0;
            font-size: 0.78rem;
        }
        .footer-contact-card--compact .footer-contact-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.85rem;
            margin: 0;
            padding: 0;
            border: none;
        }
        .footer-contact-card--compact .footer-whatsapp-qr {
            flex: 0 0 auto;
            margin: 0;
            padding: 0;
            border: none;
            display: block;
            line-height: 0;
            transition: transform 0.22s ease;
        }
        .footer-contact-card--compact .footer-whatsapp-qr:hover {
            transform: translateY(-2px);
        }
        .footer-contact-card--compact .footer-whatsapp-qr img {
            width: 84px;
            height: 84px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.75);
            padding: 0.2rem;
            border: 1px solid rgba(255, 255, 255, 0.65);
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.06);
            display: block;
        }
        .footer-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            width: 100%;
            padding: 0.7rem 1rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: #fff;
            font-size: 0.84rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.22);
            transition: transform 0.22s ease, box-shadow 0.22s ease;
        }
        .footer-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 26px rgba(30, 58, 95, 0.28);
            color: #fff;
        }
        .footer-cta i {
            font-size: 0.72rem;
            transition: transform 0.22s ease;
        }
        .footer-cta:hover i {
            transform: translateX(3px);
        }
        .footer-grid--property .footer-social--bar {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-column: 1 / -1;
            width: 100%;
            gap: 0.5rem;
            margin-top: 0.35rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(30, 58, 95, 0.08);
            align-items: stretch;
        }
        .footer-grid--property .footer-social--bar .social-chip {
            width: 100%;
            justify-content: center;
            min-width: 0;
            padding: 0.4rem 0.55rem;
            box-shadow: none;
            box-sizing: border-box;
        }
        .footer-grid--property .footer-social--bar .social-chip:hover {
            transform: translateY(-2px);
            border-color: rgba(59, 130, 246, 0.35);
            box-shadow: 0 8px 18px rgba(30, 58, 95, 0.1);
        }
        .footer-grid--property .social-chip-text {
            font-size: 0.72rem;
        }
        .footer-grid--property .social-chip-icon {
            width: 1.3rem;
            height: 1.3rem;
            font-size: 0.65rem;
        }
        .footer-brand,
        .footer-column {
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: stretch;
        }
        .footer-brand-head,
        .footer-column h4 {
            display: flex;
            align-items: center;
            width: 100%;
            min-height: 2.35rem;
            margin: 0 0 0.7rem;
            padding: 0 0 0.55rem;
            box-sizing: border-box;
            border-bottom: 1px solid rgba(30, 58, 95, 0.1);
        }
        .footer-column h4 {
            font-weight: 700;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            color: var(--primary-blue);
        }
        .footer-brand .logo--footer {
            display: inline-flex;
            flex-direction: row;
            align-items: center;
            gap: 0.55rem;
            margin: 0;
            text-decoration: none;
            color: inherit;
            line-height: 1;
        }
        .footer-brand .logo--footer img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            border-radius: 10px;
            flex-shrink: 0;
            box-shadow: 0 2px 8px rgba(30, 58, 95, 0.12);
        }
        .footer-brand .logo--footer .logo-name {
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.15;
            color: var(--primary-blue);
        }
        .footer-brand-meta {
            display: block;
            margin: -0.55rem 0 1rem;
            padding-left: 3.05rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--primary-blue-light);
            line-height: 1.35;
        }
        .footer-brand-copy {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            margin: 0;
            max-width: 22rem;
        }
        .footer-brand-property {
            margin: 0;
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            color: var(--primary-blue);
            line-height: 1.25;
        }
        .footer-brand-kicker {
            margin: 0;
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 0.01em;
            color: var(--primary-blue);
            line-height: 1.3;
        }
        .footer-brand-tagline {
            margin: 0;
            font-size: 0.8rem;
            line-height: 1.45;
            color: var(--primary-blue-light);
            max-width: none;
        }
        .footer-brand-address {
            display: inline-flex;
            align-items: flex-start;
            gap: 0.4rem;
            margin: 0.1rem 0 0;
            font-size: 0.78rem;
            line-height: 1.4;
            color: var(--primary-blue);
            font-weight: 500;
            max-width: none;
        }
        .footer-brand-address i {
            color: var(--accent-blue);
            margin-top: 0.15em;
            flex-shrink: 0;
            font-size: 0.72rem;
        }
        .page-property .footer-brand-copy {
            max-width: 24rem;
        }
        .footer-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
            list-style: none;
            margin: 0.7rem 0 0;
            padding: 0;
            max-width: 24rem;
        }
        .footer-trust li {
            display: inline-flex;
            align-items: center;
            gap: 0.28rem;
            padding: 0.22rem 0.5rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 58, 95, 0.05));
            border: 1px solid rgba(59, 130, 246, 0.14);
            font-size: 0.68rem;
            font-weight: 600;
            color: var(--primary-blue);
            line-height: 1.15;
        }
        .footer-trust i {
            color: var(--accent-blue);
            font-size: 0.58rem;
        }
        .footer-brand .logo {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .footer-brand .logo--footer .logo-name {
            font-size: 1.1rem;
        }
        .footer-brand .logo--footer img {
            width: 36px;
            height: 36px;
        }
        .footer-brand p {
            color: var(--primary-blue-light);
            font-size: 0.84rem;
            line-height: 1.5;
            margin: 0;
            max-width: 28rem;
        }
        .footer-social {
            display: flex;
            gap: 0.55rem;
            margin-top: 0.75rem;
            margin-bottom: 0;
        }
        .footer-social--labeled {
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem;
            max-width: 100%;
        }
        .social-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.28rem 0.55rem 0.28rem 0.28rem;
            border-radius: 999px;
            text-decoration: none;
            color: var(--primary-blue);
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(30, 58, 95, 0.1);
            box-shadow: 0 1px 6px rgba(30, 58, 95, 0.04);
            transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }
        .social-chip:hover {
            transform: translateY(-3px);
            border-color: rgba(59, 130, 246, 0.35);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 10px 22px rgba(30, 58, 95, 0.12);
            color: var(--primary-blue);
        }
        .social-chip-icon {
            width: 1.45rem;
            height: 1.45rem;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            background: rgba(30, 58, 95, 0.06);
            color: var(--primary-blue);
            font-size: 0.7rem;
            transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
        }
        .social-chip:hover .social-chip-icon {
            transform: scale(1.08);
            background: rgba(59, 130, 246, 0.12);
        }
        .social-chip--google .social-chip-icon {
            background: #fff;
            border: 1px solid rgba(30, 58, 95, 0.08);
            padding: 0;
            overflow: hidden;
        }
        .social-chip--google .social-chip-icon img {
            width: 0.85rem;
            height: 0.85rem;
            display: block;
        }
        .social-chip-text {
            font-size: 0.72rem;
            font-weight: 600;
            line-height: 1.15;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            flex-wrap: nowrap;
            white-space: nowrap;
        }
        .social-chip-stars {
            color: #e6a700;
            font-size: 0.62rem;
            letter-spacing: 0.01em;
            font-weight: 700;
        }
        .footer-listings h4 {
            font-weight: 700;
            margin-bottom: 0.85rem;
            font-size: 0.95rem;
            color: var(--primary-blue);
        }
        .footer-listing-links {
            list-style: none;
            counter-reset: listing;
            padding: 0;
            margin: 0;
        }
        .footer-listing-links li {
            margin-bottom: 0.45rem;
            counter-increment: listing;
        }
        .footer-listing-links li::before {
            content: counter(listing) ". ";
            color: var(--accent-blue);
            font-weight: 600;
            font-size: 0.78rem;
        }
        .footer-listing-links--column li::before {
            content: none;
        }
        .footer-listing-links a {
            color: var(--primary-blue-light);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s ease;
        }
        .footer-listing-links a:hover {
            color: var(--accent-blue);
        }
        .footer-listing-links--column li {
            margin-bottom: 0.75rem;
        }

        /* Footer booking platforms — logo-only strip */
        .footer-booking-strip {
            margin-bottom: 1.75rem;
        }
        .page-property .footer-booking-strip,
        .footer-grid--property ~ .footer-booking-strip {
            margin-bottom: 0.85rem;
        }
        .footer-booking-strip-inner {
            padding: 1.15rem 1.35rem 1.05rem;
            border-radius: var(--radius-lg);
            text-align: center;
            background: rgba(255, 255, 255, 0.42);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.52);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.55),
                0 4px 24px rgba(30, 58, 95, 0.06);
        }
        .page-property .footer-booking-strip-inner,
        .footer-grid--property ~ .footer-booking-strip .footer-booking-strip-inner {
            padding: 0.75rem 1rem 0.7rem;
        }
        .footer-booking-strip-head h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin: 0 0 0.2rem;
            line-height: 1.25;
        }
        .page-property .footer-booking-strip-head h4,
        .footer-grid--property ~ .footer-booking-strip .footer-booking-strip-head h4 {
            font-size: 0.92rem;
            margin-bottom: 0.1rem;
        }
        .footer-booking-strip-head p {
            font-size: 0.78rem;
            color: var(--primary-blue-light);
            margin: 0 auto 0.85rem;
            max-width: 480px;
            line-height: 1.4;
        }
        .page-property .footer-booking-strip-head p,
        .footer-grid--property ~ .footer-booking-strip .footer-booking-strip-head p {
            font-size: 0.72rem;
            margin-bottom: 0.55rem;
        }
        .booking-logo-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.7rem 1rem;
        }
        .booking-logo-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            flex-wrap: wrap;
        }
        .booking-logo-group--left {
            justify-content: flex-end;
        }
        .booking-logo-group--right {
            justify-content: flex-start;
        }
        .booking-logo-divider {
            width: 1px;
            height: 34px;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(30, 58, 95, 0.14) 20%,
                rgba(30, 58, 95, 0.14) 80%,
                transparent 100%
            );
            flex-shrink: 0;
        }
        .booking-logo-tile {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 13px;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 2px 10px rgba(30, 58, 95, 0.07);
            text-decoration: none;
            transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease, border-color 0.28s ease;
            padding: 5px;
        }
        .booking-logo-tile:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.12);
            border-color: rgba(59, 130, 246, 0.4);
        }
        .booking-logo-tile--featured {
            width: 56px;
            height: 56px;
            border-radius: 15px;
            border: 2px solid rgba(59, 130, 246, 0.5);
            box-shadow:
                0 3px 16px rgba(59, 130, 246, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            padding: 6px;
            background: rgba(255, 255, 255, 0.85);
        }
        .booking-logo-tile--featured:hover {
            border-color: rgba(59, 130, 246, 0.75);
            box-shadow: 0 10px 24px rgba(59, 130, 246, 0.26);
        }
        .booking-logo-badge {
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.14rem 0.42rem;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-size: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
            z-index: 1;
            box-shadow: 0 2px 8px rgba(30, 58, 95, 0.2);
        }
        .booking-logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            border-radius: 8px;
        }
        .booking-logo-tile--featured .booking-logo-img {
            border-radius: 10px;
        }
        @media (max-width: 640px) {
            .booking-logo-grid {
                gap: 0.65rem;
            }
            .booking-logo-divider {
                display: none;
            }
            .booking-logo-group {
                width: 100%;
                justify-content: center !important;
            }
            .booking-logo-group--center {
                order: -1;
                margin-bottom: 0.15rem;
            }
        }
        @media (max-width: 480px) {
            .footer-booking-strip-inner {
                padding: 1rem 0.85rem 0.9rem;
            }
            .footer-booking-strip-head p {
                margin-bottom: 0.7rem;
            }
            .booking-logo-grid {
                gap: 0.5rem;
            }
            .booking-logo-tile {
                width: 40px;
                height: 40px;
                border-radius: 12px;
            }
            .booking-logo-tile--featured {
                width: 50px;
                height: 50px;
                border-radius: 14px;
            }
        }

        .social-link {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: rgba(30, 58, 95, 0.05);
            border: 1px solid rgba(30, 58, 95, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue-light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .social-link:hover {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            border-color: transparent;
            transform: translateY(-3px);
        }
        .social-link--google {
            background: #fff;
            border-color: rgba(30, 58, 95, 0.12);
            padding: 0;
            overflow: hidden;
        }
        .social-link--google img {
            width: 22px;
            height: 22px;
            display: block;
        }
        .social-link--google:hover {
            background: #fff;
            color: inherit;
            box-shadow: 0 6px 20px rgba(66, 133, 244, 0.25);
            transform: translateY(-3px);
        }
        .footer-column ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-column li {
            margin: 0 0 0.45rem;
        }
        .footer-column li:last-child {
            margin-bottom: 0;
        }
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 0.75rem;
            row-gap: 0.4rem;
        }
        .footer-links-grid li {
            margin: 0;
        }
        .footer-links-grid a {
            font-size: 0.82rem;
            padding: 0.15rem 0;
            transition: color 0.2s ease, transform 0.2s ease;
        }
        .footer-links-grid a:hover {
            transform: translateX(2px);
        }
        .footer-contact-row {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
        }
        .footer-contact-row > ul {
            flex: 1 1 auto;
            min-width: 0;
        }
        .footer-column a {
            display: inline-flex;
            align-items: flex-start;
            gap: 0.55rem;
            color: var(--primary-blue-light);
            text-decoration: none;
            font-size: 0.86rem;
            line-height: 1.4;
            transition: color 0.3s ease;
        }
        .footer-column a:hover { color: var(--accent-blue); }
        .footer-column a i {
            width: 1rem;
            flex-shrink: 0;
            text-align: center;
            color: var(--accent-blue);
            margin: 0.2em 0 0;
            line-height: 1;
        }
        .page-property .footer-column:last-child {
            max-width: none;
        }
        .footer-whatsapp-qr {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            flex: 0 0 auto;
            text-align: center;
        }
        .footer-column > .footer-whatsapp-qr {
            margin-top: 0.85rem;
            padding-top: 0.75rem;
            border-top: 1px solid rgba(30, 58, 95, 0.1);
            align-items: flex-start;
            text-align: left;
        }
        .footer-column > .footer-whatsapp-qr span {
            max-width: none;
        }
        .footer-whatsapp-qr img {
            width: 88px;
            height: 88px;
            border-radius: var(--radius-sm);
            background: #fff;
            padding: 0.28rem;
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: var(--shadow-soft);
        }
        .footer-whatsapp-qr span {
            font-size: 0.68rem;
            color: var(--primary-blue-light);
            line-height: 1.3;
            max-width: 5.5rem;
        }
        @media (max-width: 900px) {
            .page-property .footer-grid,
            .footer-grid--property {
                grid-template-columns: 1fr;
                padding: 1rem 0.95rem;
            }
            .footer-contact-card {
                align-items: stretch;
                height: auto;
            }
            .footer-grid--property .footer-column--links .footer-links-list,
            .footer-links-list {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (max-width: 700px) {
            .footer-grid--property .footer-column--links .footer-links-list,
            .footer-links-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                column-gap: 1rem;
                row-gap: 0.45rem;
            }
            .footer-contact-card--compact .footer-contact-row {
                flex-direction: row;
                align-items: center;
                gap: 0.75rem;
            }
            .footer-contact-list a span {
                min-width: 0;
                word-break: break-word;
            }
            .footer-bottom-line {
                font-size: 0.68rem;
                gap: 0.25rem 0.4rem;
            }
            .footer-grid--property .footer-social--bar,
            .footer-grid--property .footer-social--stretch {
                grid-template-columns: 1fr !important;
                gap: 0.4rem !important;
            }
            .footer-grid--property .footer-social--bar .social-chip-text,
            .footer-grid--property .social-chip-text {
                white-space: normal;
                text-align: center;
                font-size: 0.78rem;
                justify-content: center;
            }
            .footer-grid--property .footer-social--bar .social-chip {
                min-height: 44px;
                padding: 0.5rem 0.75rem !important;
            }
        }
        @media (max-width: 480px) {
            .footer-contact-card--compact .footer-contact-row {
                flex-direction: column;
                align-items: stretch;
                gap: 0.75rem;
            }
            .footer-contact-card--compact .footer-whatsapp-qr {
                align-self: center;
            }
            .footer-grid--property {
                padding: 0.9rem 0.8rem;
            }
            .footer-grid--property .footer-brand-kicker {
                font-size: 1.05rem;
            }
            .footer-trust-line {
                font-size: 0.7rem;
                line-height: 1.45;
            }
            .footer-bottom-line {
                font-size: 0.64rem;
                line-height: 1.55;
            }
        }
        .footer-bottom {
            text-align: center;
            padding-top: 1.25rem;
            border-top: 1px solid rgba(30, 58, 95, 0.06);
            color: var(--primary-blue-light);
            font-size: 0.85rem;
        }
        .footer-bottom--bar {
            margin-top: 0.35rem;
            padding: 0.85rem 0.5rem 0.15rem;
            border-top: 1px solid rgba(30, 58, 95, 0.1);
        }
        .footer-bottom-line {
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.35rem 0.55rem;
            font-size: 0.72rem;
            line-height: 1.45;
            color: var(--primary-blue-light);
            font-weight: 500;
        }
        .footer-bottom-line a {
            color: var(--primary-blue-light);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }
        .footer-bottom-line a:hover {
            color: var(--accent-blue);
        }
        .footer-bottom-sep {
            opacity: 0.4;
            font-weight: 400;
        }
        .footer-bottom-copy {
            margin: 0 0 0.2rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-blue);
        }
        .footer-bottom-note {
            margin: 0 0 0.5rem;
            font-size: 0.74rem;
            line-height: 1.4;
            color: var(--primary-blue-light);
        }
        .footer-legal-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 0.25rem 0.45rem;
            font-size: 0.74rem;
        }
        .footer-legal-links a {
            color: var(--primary-blue-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .footer-legal-links a:hover {
            color: var(--accent-blue);
        }
        .footer-legal-links span {
            opacity: 0.45;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
            .hero-visual { order: -1; }
            .hero-image-card img { height: 350px; }
            .location-content { grid-template-columns: 1fr; }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                column-gap: 2rem;
                row-gap: 2rem;
            }
            .page-property .footer-grid,
            .footer-grid--property {
                grid-template-columns: 1fr;
                column-gap: 1rem;
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
            .page-property .footer-grid .footer-brand,
            .footer-grid--property .footer-brand {
                grid-column: auto;
            }
            .gallery-mosaic {
                grid-template-rows: 130px 130px;
            }
            .gallery-panel-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 1320px) and (min-width: 1025px) {
            .nav-center-glass .nav-links {
                gap: 0.2rem;
            }
            .nav-center-glass .nav-links a,
            .nav-glass-link {
                padding: 0.42rem 0.8rem;
                font-size: 0.78rem;
            }
            .navbar-inner {
                gap: 1.15rem;
                padding: 0.6rem 1.5rem;
            }
        }
        @media (max-width: 1024px) {
            .nav-center-glass { display: none !important; }
            .mobile-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
            .navbar-inner {
                grid-template-columns: 1fr auto;
            }
            .nav-end {
                grid-column: 2;
            }
        }
        @media (max-width: 768px) {
            .scroll-to-top,
            .scroll-to-bottom {
                right: 1rem;
                width: 44px;
                height: 44px;
            }
            .scroll-to-bottom {
                bottom: 5.5rem;
            }
            .scroll-to-top {
                bottom: calc(5.5rem + 3.2rem);
            }
            .navbar-inner {
                padding: 0.7rem 1rem !important;
                grid-template-columns: 1fr auto;
                gap: 0.5rem;
            }
            .logo--nav .logo-name { font-size: 1.05rem; }
            .nav-actions .glass-dropdown-toggle span { display: none; }
            .nav-actions .glass-dropdown-toggle { padding: 0.55rem 0.7rem; }
            .nav-cta { padding: 0.55rem 0.95rem; font-size: 0.82rem; }
            .hero { padding: 6.5rem 1.15rem 2.5rem; }
            .section { padding: 3.25rem 1.15rem; }
            .hero-cta-group { flex-direction: column; }
            .hero-btn-primary, .hero-btn-secondary { width: 100%; justify-content: center; min-height: 48px; }
            .hero-image-card img { height: clamp(200px, 55vw, 320px); }
            .hero-image-overlay { padding: 1.15rem; }
            .hero-image-overlay h3 { font-size: 1.15rem; }
            .hero-badge { font-size: 0.78rem; padding: 0.45rem 0.9rem; max-width: 100%; white-space: normal; text-align: left; line-height: 1.35; }
            .floating-card { display: none; }
            .rooms-grid { grid-template-columns: 1fr; }
            .room-footer { flex-direction: column; align-items: stretch; gap: 0.75rem; }
            .room-book-btn { width: 100%; text-align: center; justify-content: center; min-height: 44px; }
            .reviews-carousel {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            .reviews-nav {
                display: none;
            }
            .review-card {
                flex: 0 0 85%;
                min-width: 85%;
            }
            .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
            .footer { padding: 3rem 1.15rem 1.5rem; }
            .cta-section { padding: 3.5rem 1.15rem; }
            .cta-glass { padding: 2rem 1.15rem; }
            .gallery-mosaic {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 180px 110px 110px auto;
            }
            .gallery-mosaic-main { grid-row: 1; grid-column: 1 / 3; }
            .gallery-mosaic-all {
                position: static;
                width: 100%;
                margin-top: 0;
                justify-content: center;
                min-height: 44px;
                grid-column: 1 / -1;
                border-radius: 12px;
            }
            .gallery-panel { padding: 1rem 0.75rem 2rem; }
            .gallery-panel-shell { padding: 1rem; border-radius: 20px; }
            .gallery-panel-grid { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
            .gallery-panel-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                top: 3.25rem;
                scrollbar-width: none;
            }
            .gallery-panel-tabs::-webkit-scrollbar { display: none; }
            .gallery-panel-tab { flex: 0 0 auto; min-height: 44px; }
            .gallery-lightbox-prev { left: 0.5rem; }
            .gallery-lightbox-next { right: 0.5rem; }
            .gallery-lightbox-close { top: 0.75rem; right: 0.75rem; }
            .location-highlights { grid-template-columns: 1fr; }
            .glass-search {
                flex-direction: column;
                gap: 0.75rem !important;
                border-radius: 22px;
                align-items: stretch;
            }
            .glass-search > div[style*="width: 1px"] { display: none; }
            .glass-search > div[style*="min-width"] {
                min-width: 0 !important;
                width: 100%;
            }
            .social-link { width: 44px; height: 44px; }
            /* Booking widget mobile rules live after base .glass-booking-widget styles */
        }
        @media (max-width: 640px) {
            .comparison-group .comparison-card-link {
                flex: 1 1 100%;
                width: 100%;
                max-width: 100%;
                min-width: 0;
            }
            .comparison-group--center .comparison-card-link {
                max-width: 100%;
            }
            .comparison-price,
            .comparison-fee {
                white-space: normal;
            }
            .comparison-card {
                min-height: 0;
                padding: 1.35rem 1rem 1.15rem;
            }
        }
        @media (max-width: 480px) {
            .logo--nav .logo-name { display: none; }
            .gallery-panel-grid { grid-template-columns: 1fr; }
            .gallery-mosaic {
                grid-template-rows: 160px 100px 100px;
            }
            .room-carousel,
            .room-carousel-track,
            .room-carousel-slide img {
                min-height: 240px;
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f0f9ff; }
        ::-webkit-scrollbar-thumb { background: rgba(59, 130, 246, 0.3); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(59, 130, 246, 0.5); }
        ::selection { background: rgba(59, 130, 246, 0.2); color: var(--primary-blue); }
    
        /* Phase 2: Interactive Glass Elements - Lodgify Style */

        /* Glass Search Bar */
        .glass-search {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.85rem 1.25rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: 0 2px 16px rgba(30, 58, 95, 0.06);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: text;
            max-width: 400px;
        }
        .glass-search:hover, .glass-search:focus-within {
            background: rgba(255, 255, 255, 0.65);
            border-color: rgba(59, 130, 246, 0.35);
            box-shadow: 0 4px 24px rgba(59, 130, 246, 0.12), var(--shadow-glow);
            transform: translateY(-1px);
        }
        .glass-search i {
            color: var(--accent-blue);
            font-size: 1rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        .glass-search:hover i, .glass-search:focus-within i {
            opacity: 1;
        }
        .glass-search input {
            background: transparent;
            border: none;
            outline: none;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--primary-blue);
            width: 100%;
        }
        .glass-search input::placeholder {
            color: var(--primary-blue-light);
            opacity: 0.7;
        }

        /* Glass Dropdown / Select */
        .glass-dropdown {
            position: relative;
            display: inline-block;
        }
        .glass-dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.45);
            box-shadow: 0 2px 12px rgba(30, 58, 95, 0.05);
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Inter', sans-serif;
        }
        .glass-dropdown-toggle:hover {
            background: rgba(255, 255, 255, 0.65);
            border-color: rgba(59, 130, 246, 0.3);
            box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
            transform: translateY(-1px);
        }
        .glass-dropdown-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 0;
            min-width: 220px;
            padding: 0.5rem;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(var(--blur-lg)) saturate(180%);
            -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.55);
            box-shadow: 0 8px 40px rgba(30, 58, 95, 0.12);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.96);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
        }
        .glass-dropdown.active .glass-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .glass-dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            border-radius: var(--radius-sm);
            color: var(--primary-blue);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .glass-dropdown-item:hover {
            background: rgba(59, 130, 246, 0.08);
            color: var(--accent-blue);
        }
        .glass-dropdown-item i {
            width: 20px;
            text-align: center;
            color: var(--accent-blue);
            opacity: 0.7;
            flex-shrink: 0;
        }
        .glass-dropdown-item-title {
            font-weight: 600;
            font-size: 0.9rem;
            line-height: 1.3;
        }
        .glass-dropdown-item-sub {
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 0.1rem;
            line-height: 1.35;
        }
        a.glass-dropdown-item {
            text-decoration: none;
            color: inherit;
        }
        .glass-dropdown-item--current {
            background: rgba(59, 130, 246, 0.08);
            cursor: default;
        }
        .glass-dropdown-item--current:hover {
            background: rgba(59, 130, 246, 0.08);
            color: var(--primary-blue);
        }
        .glass-dropdown-item--disabled {
            opacity: 0.5;
            cursor: default;
            pointer-events: none;
        }

        /* Glass Booking Widget (Sticky) */
        .glass-booking-widget {
            position: fixed;
            bottom: 1.35rem;
            left: 50%;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            width: min(720px, calc(100vw - 2.5rem));
            padding: 0.55rem 0.55rem 0.55rem 1.25rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(var(--blur-lg)) saturate(180%);
            -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 8px 32px rgba(30, 58, 95, 0.14), 0 0 0 1px rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            pointer-events: none;
            transform: translateX(-50%) translateY(100px);
            box-sizing: border-box;
        }
        .glass-booking-widget.visible {
            opacity: 1;
            pointer-events: all;
            transform: translateX(-50%) translateY(0);
        }
        .glass-booking-widget:hover {
            background: rgba(255, 255, 255, 0.88);
            box-shadow: 0 10px 40px rgba(30, 58, 95, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.4);
        }
        .glass-booking-widget .widget-info {
            display: flex;
            flex-direction: row;
            align-items: baseline;
            flex-wrap: wrap;
            gap: 0.35rem 0.75rem;
            flex: 1 1 auto;
            min-width: 0;
        }
        .glass-booking-widget .widget-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--accent-blue);
            line-height: 1.15;
            white-space: nowrap;
        }
        .glass-booking-widget .widget-price span {
            font-size: 0.78rem;
            font-weight: 400;
            color: var(--primary-blue-light);
            margin-left: 0.1rem;
        }
        .glass-booking-widget .widget-label {
            font-size: 0.82rem;
            color: var(--primary-blue-light);
            font-weight: 500;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .glass-booking-widget .widget-btn {
            padding: 0.55rem 1.35rem;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 58, 95, 0.25);
            white-space: nowrap;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            flex-shrink: 0;
        }
        .glass-booking-widget .widget-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 24px rgba(30, 58, 95, 0.35);
        }
        .glass-booking-widget .widget-close {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(30, 58, 95, 0.06);
            border: 1px solid rgba(30, 58, 95, 0.1);
            color: var(--primary-blue-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 0.75rem;
            flex-shrink: 0;
            margin-right: 0.15rem;
        }
        .glass-booking-widget .widget-close:hover {
            background: rgba(30, 58, 95, 0.12);
            color: var(--primary-blue);
            transform: rotate(90deg);
        }

        /* Booking widget — mobile (must follow base styles) */
        @media (max-width: 768px) {
            .glass-booking-widget {
                left: 0.75rem !important;
                right: 0.75rem !important;
                bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px)) !important;
                width: auto !important;
                max-width: none !important;
                transform: translateY(120%) !important;
                border-radius: 14px !important;
                padding: 0.55rem 0.55rem 0.55rem 0.85rem !important;
                gap: 0.5rem !important;
                flex-wrap: nowrap !important;
                align-items: center !important;
                justify-content: space-between !important;
                box-sizing: border-box;
            }
            .glass-booking-widget.visible {
                transform: translateY(0) !important;
            }
            .glass-booking-widget .widget-info {
                flex: 1 1 auto;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.1rem;
                min-width: 0;
            }
            .glass-booking-widget .widget-price {
                font-size: 1rem;
                line-height: 1.15;
            }
            .glass-booking-widget .widget-price span {
                font-size: 0.7rem !important;
            }
            .glass-booking-widget .widget-label {
                display: none !important;
            }
            .glass-booking-widget .widget-btn {
                flex: 0 0 auto;
                min-height: 42px;
                padding: 0.55rem 0.95rem !important;
                border-radius: 11px !important;
                font-size: 0.82rem;
                display: inline-flex;
                align-items: center;
                gap: 0.35rem;
                white-space: nowrap;
            }
            .glass-booking-widget .widget-btn:hover {
                transform: none;
            }
            .glass-booking-widget .widget-close {
                flex: 0 0 36px;
                width: 36px !important;
                height: 36px !important;
                min-width: 36px;
                margin-right: 0;
            }
            body.booking-widget-visible .scroll-to-bottom {
                bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
            }
            body.booking-widget-visible .scroll-to-top {
                bottom: calc(4.75rem + 3.2rem + env(safe-area-inset-bottom, 0px));
            }
        }

        /* Enhanced Card Hover Effects */
        .room-card {
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .room-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 24px 64px rgba(30, 58, 95, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.25);
        }
        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        .room-card .room-info {
            transition: all 0.3s ease;
        }
        .room-card:hover .room-info {
            background: rgba(255, 255, 255, 0.5);
        }

        /* Glass Button Variants */
        .glass-btn {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.45);
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 12px rgba(30, 58, 95, 0.06);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .glass-btn:hover {
            background: rgba(255, 255, 255, 0.65);
            border-color: rgba(59, 130, 246, 0.35);
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
            transform: translateY(-2px);
            color: var(--accent-blue);
        }

        /* Glass Chip / Tag */
        .glass-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 0.85rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(var(--blur-sm)) saturate(140%);
            -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: var(--primary-blue);
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .glass-chip:hover {
            background: rgba(255, 255, 255, 0.55);
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
        }
        .glass-chip.active {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.3);
            color: var(--accent-blue);
        }
        button.glass-chip {
            cursor: pointer;
            font: inherit;
            font-family: inherit;
        }

        /* Glass Toast / Notification */
        .glass-toast {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 1001;
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(var(--blur-lg)) saturate(180%);
            -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(180%);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 8px 40px rgba(30, 58, 95, 0.15);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transform: translateX(120%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-toast.show {
            transform: translateX(0);
        }
        .glass-toast-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--sky-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        /* House rules */
        .house-rules {
            margin: 0 auto 2.5rem;
            max-width: 1000px;
            padding: 1.75rem 1.5rem 1.6rem;
            border-radius: var(--radius-xl);
            background:
                linear-gradient(165deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.4) 100%);
            border: 1px solid rgba(255, 255, 255, 0.65);
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.7),
                0 12px 36px rgba(30, 58, 95, 0.07);
            backdrop-filter: blur(16px) saturate(150%);
            -webkit-backdrop-filter: blur(16px) saturate(150%);
        }
        .house-rules-intro {
            text-align: center;
            margin-bottom: 1.35rem;
        }
        .house-rules-intro h3 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.35rem, 2.4vw, 1.7rem);
            color: var(--primary-blue);
            margin: 0 0 0.45rem;
        }
        .house-rules-intro p {
            margin: 0 auto;
            max-width: 36rem;
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--primary-blue-light);
        }
        .house-rules-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.9rem;
        }
        .house-rule-card {
            display: flex;
            align-items: flex-start;
            gap: 0.9rem;
            padding: 1.05rem 1.1rem;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(30, 58, 95, 0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .house-rule-card:hover {
            transform: translateY(-2px);
            border-color: rgba(59, 130, 246, 0.22);
            box-shadow: 0 10px 24px rgba(30, 58, 95, 0.08);
        }
        .house-rule-icon {
            flex-shrink: 0;
            width: 2.6rem;
            height: 2.6rem;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            color: #fff;
            font-size: 1rem;
            box-shadow: 0 8px 18px rgba(30, 58, 95, 0.18);
        }
        .house-rule-body h4 {
            margin: 0 0 0.3rem;
            font-size: 0.98rem;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: 0.01em;
        }
        .house-rule-body p {
            margin: 0;
            font-size: 0.88rem;
            line-height: 1.55;
            color: var(--primary-blue-light);
        }
        .house-rule-body strong {
            color: var(--primary-blue);
            font-weight: 600;
        }
        @media (max-width: 700px) {
            .house-rules {
                padding: 1.35rem 1rem 1.2rem;
            }
            .house-rules-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Glass Accordion / Expandable */
        .glass-accordion {
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.35);
            backdrop-filter: blur(var(--blur-md)) saturate(140%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(140%);
            border: 1px solid rgba(255, 255, 255, 0.4);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .glass-accordion:hover {
            background: rgba(255, 255, 255, 0.55);
            border-color: rgba(59, 130, 246, 0.2);
        }
        .glass-accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-blue);
        }
        .glass-accordion-header i {
            transition: transform 0.3s ease;
            color: var(--accent-blue);
        }
        .glass-accordion.open .glass-accordion-header i {
            transform: rotate(180deg);
        }
        .glass-accordion-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-accordion.open .glass-accordion-body {
            max-height: 500px;
        }
        .glass-accordion-content {
            padding: 0 1.5rem 1.25rem;
            color: var(--primary-blue-light);
            line-height: 1.7;
        }

        /* Glass Divider */
        .glass-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.2) 50%, transparent 100%);
            margin: 2rem 0;
        }

        /* Glass Tooltip */
        .glass-tooltip {
            position: relative;
        }
        .glass-tooltip::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 0.75rem);
            left: 50%;
            transform: translateX(-50%) translateY(4px);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-sm);
            background: rgba(30, 58, 95, 0.85);
            backdrop-filter: blur(var(--blur-md));
            -webkit-backdrop-filter: blur(var(--blur-md));
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.2s ease;
            pointer-events: none;
            box-shadow: 0 4px 16px rgba(30, 58, 95, 0.2);
        }
        .glass-tooltip:hover::after {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Enhanced comparison card hover */
        .comparison-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .comparison-card:hover {
            transform: translateY(-6px);
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 20px 56px rgba(30, 58, 95, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
        }
        .comparison-card.best {
            border: 2px solid rgba(59, 130, 246, 0.4);
            box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
        }
        .comparison-card.best:hover {
            transform: translateY(-6px);
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 20px 56px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.2);
        }

        @media (max-width: 900px) {
            .review-card {
                flex: 0 0 calc((100% - 1.15rem) / 2);
                min-width: 280px;
            }
        }

        /* Overview card enhanced */
        .overview-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .overview-card:hover {
            transform: translateY(-6px) scale(1.03);
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 16px 48px rgba(30, 58, 95, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.15);
        }
        .overview-card:hover .overview-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
        }
        .overview-icon {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Amenity item enhanced */
        .amenity-item {
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .amenity-item:hover {
            z-index: 2;
        }

        /* Location highlight enhanced */
        .location-highlight {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.35);
        }
        .location-highlight:hover {
            background: rgba(255, 255, 255, 0.65);
            transform: translateX(6px) scale(1.02);
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 4px 16px rgba(30, 58, 95, 0.08);
        }
        .location-highlight:hover i {
            transform: scale(1.2);
            color: var(--accent-blue);
        }
        .location-highlight i {
            transition: all 0.3s ease;
        }

        /* Nav link enhanced */
        .nav-links a {
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            opacity: 1;
            transform: translateY(-1px);
        }

        /* Social link enhanced */
        .social-link {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .social-link:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
        }

        /* Footer link enhanced */
        .footer-column a {
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .footer-column a:hover {
            transform: translateX(4px);
        }

        /* Hero button enhanced — shimmer on ::before so ::after stays free for tooltips */
        .hero-btn-primary, .hero-btn-secondary, .nav-cta, .cta-btn, .room-book-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .hero-btn-primary::before, .hero-btn-secondary::before, .nav-cta::before, .cta-btn::before, .room-book-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
            pointer-events: none;
            z-index: 0;
        }
        .hero-btn-primary:hover::before, .hero-btn-secondary:hover::before, .nav-cta:hover::before, .cta-btn:hover::before, .room-book-btn:hover::before {
            left: 100%;
        }

        /* Floating card enhanced */
        .floating-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .floating-card:hover {
            transform: translateY(-4px) scale(1.05);
            background: rgba(255, 255, 255, 0.75);
            box-shadow: 0 8px 32px rgba(30, 58, 95, 0.12);
            border-color: rgba(59, 130, 246, 0.3);
        }

        /* Scrollbar enhanced */
        ::-webkit-scrollbar-thumb {
            background: rgba(59, 130, 246, 0.25);
            border-radius: 4px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: rgba(59, 130, 246, 0.45);
            border: 2px solid transparent;
            background-clip: padding-box;
        }

    
        /* Phase 3: Advanced Visual Effects */

        /* Animated Gradient Mesh Background */
        .mesh-bg {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: -2;
            pointer-events: none;
            overflow: hidden;
            background: 
                radial-gradient(ellipse at 20% 30%, rgba(191, 219, 254, 0.5) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(147, 197, 253, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(219, 234, 254, 0.3) 0%, transparent 60%);
            animation: meshShift 20s ease-in-out infinite alternate;
        }
        @keyframes meshShift {
            0% { 
                background: 
                    radial-gradient(ellipse at 20% 30%, rgba(191, 219, 254, 0.5) 0%, transparent 50%),
                    radial-gradient(ellipse at 80% 70%, rgba(147, 197, 253, 0.4) 0%, transparent 50%),
                    radial-gradient(ellipse at 50% 50%, rgba(219, 234, 254, 0.3) 0%, transparent 60%);
            }
            33% { 
                background: 
                    radial-gradient(ellipse at 30% 20%, rgba(191, 219, 254, 0.5) 0%, transparent 50%),
                    radial-gradient(ellipse at 70% 80%, rgba(147, 197, 253, 0.4) 0%, transparent 50%),
                    radial-gradient(ellipse at 60% 40%, rgba(219, 234, 254, 0.3) 0%, transparent 60%);
            }
            66% { 
                background: 
                    radial-gradient(ellipse at 40% 40%, rgba(191, 219, 254, 0.5) 0%, transparent 50%),
                    radial-gradient(ellipse at 60% 60%, rgba(147, 197, 253, 0.4) 0%, transparent 50%),
                    radial-gradient(ellipse at 40% 70%, rgba(219, 234, 254, 0.3) 0%, transparent 60%);
            }
            100% { 
                background: 
                    radial-gradient(ellipse at 25% 35%, rgba(191, 219, 254, 0.5) 0%, transparent 50%),
                    radial-gradient(ellipse at 75% 65%, rgba(147, 197, 253, 0.4) 0%, transparent 50%),
                    radial-gradient(ellipse at 55% 45%, rgba(219, 234, 254, 0.3) 0%, transparent 60%);
            }
        }

        /* Animated Glass Border — rotating gradient */
        .glass-border-animated {
            position: relative;
            background: var(--glass-white);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }
        .glass-border-animated::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: calc(var(--radius-lg) + 2px);
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(96, 165, 250, 0.6), rgba(59, 130, 246, 0.4), transparent);
            background-size: 300% 100%;
            animation: borderGlow 4s linear infinite;
            z-index: -1;
        }
        .glass-border-animated::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            background: var(--glass-white);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            z-index: 0;
        }
        .glass-border-animated > *:not(.best-badge) {
            position: relative;
            z-index: 1;
        }
        .glass-border-animated .best-badge {
            z-index: 6;
        }
        .comparison-card.best.glass-border-animated {
            overflow: visible;
        }
        @keyframes borderGlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }

        /* Inner Glow Glass Card */
        .glass-inner-glow {
            position: relative;
            background: var(--glass-white);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid var(--border-light);
            box-shadow: 
                var(--shadow-soft),
                inset 0 1px 1px rgba(255, 255, 255, 0.6),
                inset 0 -1px 1px rgba(30, 58, 95, 0.05);
            overflow: hidden;
        }
        .glass-inner-glow::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 60%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }
        .glass-inner-glow > * {
            position: relative;
            z-index: 1;
        }

        /* Glass Card with Reflection */
        .glass-reflection {
            position: relative;
            background: var(--glass-white);
            backdrop-filter: blur(var(--blur-md)) saturate(160%);
            -webkit-backdrop-filter: blur(var(--blur-md)) saturate(160%);
            border: 1px solid var(--border-light);
            overflow: hidden;
        }
        .glass-reflection::after {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: linear-gradient(
                45deg,
                transparent 40%,
                rgba(255, 255, 255, 0.1) 45%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0.1) 55%,
                transparent 60%
            );
            transform: rotate(30deg);
            animation: reflectionSweep 6s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes reflectionSweep {
            0%, 100% { transform: translateX(-100%) rotate(30deg); }
            50% { transform: translateX(100%) rotate(30deg); }
        }

        /* Depth Layered Glass Stack */
        .glass-stack {
            position: relative;
        }
        .glass-stack::before {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: calc(var(--radius-lg) + 8px);
            background: rgba(30, 58, 95, 0.04);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: -1;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .glass-stack::after {
            content: '';
            position: absolute;
            inset: -16px;
            border-radius: calc(var(--radius-lg) + 16px);
            background: rgba(30, 58, 95, 0.02);
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            z-index: -2;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Glass Progress Bar (Scroll) */
        .glass-progress {
            position: fixed;
            top: 0; left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-blue), var(--sky-blue), var(--ice-blue));
            z-index: 1001;
            border-radius: 0 2px 2px 0;
            box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
            transition: width 0.1s linear;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        /* Parallax Glass Layer */
        .parallax-glass {
            will-change: transform;
            transition: transform 0.1s linear;
        }

        /* Glass Morphing Blob */
        .glass-morph-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.35;
            animation: morphBlob 15s ease-in-out infinite;
            pointer-events: none;
        }
        @keyframes morphBlob {
            0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg) scale(1); }
            25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(90deg) scale(1.1); }
            50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; transform: rotate(180deg) scale(0.9); }
            75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; transform: rotate(270deg) scale(1.05); }
        }

        /* Glass Card 3D Tilt */
        .glass-tilt {
            transition: transform 0.3s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        .glass-tilt:hover {
            transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
        }

        /* Glass Shimmer Text */
        .glass-shimmer-text {
            background: linear-gradient(
                90deg,
                var(--primary-blue) 0%,
                var(--accent-blue) 25%,
                var(--sky-blue) 50%,
                var(--accent-blue) 75%,
                var(--primary-blue) 100%
            );
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textShimmer 4s linear infinite;
        }
        @keyframes textShimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        /* Glass Floating Orbs */
        .glass-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(59, 130, 246, 0.3));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 
                0 8px 32px rgba(59, 130, 246, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.6);
            animation: orbFloat 8s ease-in-out infinite;
        }
        @keyframes orbFloat {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }

        /* Glass Noise Texture Overlay */
        .glass-noise {
            position: relative;
        }
        .glass-noise::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
        }

        /* Glass Spotlight Effect */
        .glass-spotlight {
            position: relative;
            overflow: hidden;
        }
        .glass-spotlight::before {
            content: '';
            position: absolute;
            width: 200px; height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            pointer-events: none;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 0;
        }
        .glass-spotlight:hover::before {
            opacity: 1;
        }

        /* Glass Frosted Edge */
        .glass-frosted-edge {
            position: relative;
        }
        .glass-frosted-edge::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.1) 20%, transparent 40%, transparent 60%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.6) 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            border-radius: inherit;
        }

        /* Section entrance animation */
        .section-entrance {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .section-entrance.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Staggered children animation */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .stagger-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }

        /* Safety: reveal content if scroll JS is delayed or fails */
        @keyframes force-visible {
            to { opacity: 1; transform: none; }
        }
        .animate-on-scroll:not(.visible) {
            animation: force-visible 0.01s 1.25s forwards;
        }
        .stagger-children:not(.visible) > * {
            animation: force-visible 0.01s 1.25s forwards;
        }
        .footer-booking-strip {
            opacity: 1 !important;
            visibility: visible !important;
        }


        /* Mobile navigation drawer */
        .mobile-nav-backdrop {
            position: fixed;
            inset: 0;
            z-index: 1100;
            background: rgba(15, 31, 51, 0.45);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }
        .mobile-nav-backdrop.is-open {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            right: 0;
            z-index: 1101;
            width: min(340px, 88vw);
            height: 100%;
            padding: 1.25rem 1.1rem 1.5rem;
            background: rgba(255, 255, 255, 0.82);
            border-left: 1px solid rgba(255, 255, 255, 0.55);
            box-shadow: -16px 0 48px rgba(30, 58, 95, 0.16);
            backdrop-filter: blur(28px) saturate(170%);
            -webkit-backdrop-filter: blur(28px) saturate(170%);
            transform: translateX(105%);
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            overflow-y: auto;
        }
        .mobile-nav-drawer.is-open {
            transform: translateX(0);
        }
        .mobile-nav-drawer-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
        }
        .mobile-nav-drawer-top strong {
            color: var(--primary-blue);
            font-size: 1.05rem;
        }
        .mobile-nav-close {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            border: 1px solid rgba(30, 58, 95, 0.12);
            background: rgba(255, 255, 255, 0.7);
            color: var(--primary-blue);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .mobile-nav-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .mobile-nav-links a {
            display: flex;
            align-items: center;
            min-height: 48px;
            padding: 0.75rem 0.9rem;
            border-radius: 14px;
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            background: rgba(255, 255, 255, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.45);
        }
        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            background: rgba(255, 255, 255, 0.7);
        }
        .mobile-nav-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            margin-top: auto;
            padding: 0.85rem 1rem;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
            color: #fff !important;
            text-decoration: none;
            font-weight: 700;
            box-shadow: 0 10px 24px rgba(30, 58, 95, 0.2);
        }
        body.mobile-nav-open {
            overflow: hidden;
        }

        /* Property footer — final overrides (glass contact + full-width socials) */
        .page-property .footer-grid--property .footer-contact-card--compact,
        .footer-grid--property .footer-contact-card--compact,
        .footer-grid--property .footer-contact-card--glass {
            background: linear-gradient(
                155deg,
                rgba(255, 255, 255, 0.38) 0%,
                rgba(191, 219, 254, 0.22) 55%,
                rgba(147, 197, 253, 0.14) 100%
            ) !important;
            border: 1px solid rgba(255, 255, 255, 0.72) !important;
            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.85),
                inset 0 -1px 0 rgba(59, 130, 246, 0.06),
                0 8px 28px rgba(30, 58, 95, 0.08) !important;
            backdrop-filter: blur(22px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(22px) saturate(180%) !important;
        }
        .page-property .footer-grid--property .footer-brand .footer-social--labeled,
        .footer-grid--property .footer-brand .footer-social--labeled,
        .footer-grid--property .footer-social--stretch,
        .footer-grid--property .footer-social--bar {
            display: grid !important;
            grid-template-columns: 1fr 1fr 1fr !important;
            width: 100% !important;
            max-width: 100% !important;
            gap: 0.5rem !important;
        }
        .footer-grid--property .footer-social--bar {
            grid-column: 1 / -1 !important;
            margin-top: 0.35rem !important;
            padding-top: 0.75rem !important;
            border-top: 1px solid rgba(30, 58, 95, 0.08);
        }
        .page-property .footer-grid--property .footer-brand .social-chip,
        .footer-grid--property .footer-brand .social-chip,
        .footer-grid--property .footer-social--stretch .social-chip,
        .footer-grid--property .footer-social--bar .social-chip {
            display: inline-flex !important;
            width: 100% !important;
            max-width: none !important;
            min-width: 0 !important;
            justify-content: center !important;
            box-sizing: border-box !important;
        }
        @media (max-width: 700px) {
            .footer-grid--property .footer-social--bar,
            .footer-grid--property .footer-social--stretch,
            .page-property .footer-grid--property .footer-brand .footer-social--labeled,
            .footer-grid--property .footer-brand .footer-social--labeled {
                grid-template-columns: 1fr !important;
            }
        }

        /* Shared mobile polish */
        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 2rem;
            }
            .review-card {
                padding: 1.25rem 1rem;
                flex: 0 0 88%;
                min-width: 88%;
            }
            .reviews-summary {
                margin-bottom: 1.25rem;
            }
            .reviews-summary-note {
                font-size: 0.8rem;
            }
            .location-map {
                height: clamp(240px, 55vw, 400px);
            }
            .entire-property-content {
                padding: 1.25rem 1rem;
            }
            .entire-property-price {
                font-size: 1.75rem;
            }
            .entire-property-stats {
                gap: 1rem;
            }
            .comparison-group {
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.75rem;
            }
            .comparison-group .comparison-card-link {
                width: min(168px, calc(50% - 0.5rem));
                max-width: none;
                flex: 1 1 calc(50% - 0.5rem);
            }
            .comparison-group--center .comparison-card-link {
                width: 100%;
                flex: 1 1 100%;
            }
            body.booking-widget-visible .footer {
                padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
            }
            .gallery-panel-top {
                position: relative;
            }
            .gallery-panel-tabs {
                position: sticky;
                top: 0;
            }
            .faq-section,
            .faq-item {
                scroll-margin-top: 7.5rem;
            }
        }
        @media (max-width: 480px) {
            .nav-actions .nav-cta {
                display: none;
            }
            .room-compare-row,
            .property-compare .room-compare-row {
                flex-wrap: wrap;
                gap: 0.2rem 0.5rem;
            }
            .room-compare-row > :first-child {
                flex: 1 1 auto;
                min-width: 0;
            }
            .room-compare-price {
                flex-shrink: 0;
            }
            .comparison-group .comparison-card-link {
                flex: 1 1 100%;
                width: 100%;
            }
            .amenities-grid {
                grid-template-columns: 1fr;
            }
            .floor-plan-header {
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            .glass-booking-widget .widget-btn {
                padding: 0.5rem 0.75rem !important;
                font-size: 0.78rem;
            }
        }

