﻿/* --- CSS VARIABLES & RESET --- */
        :root {
            --color-white: #FFFFFF;
            --color-sage: #8A9A5B;
            --color-sage-dark: #556b35;
            --color-beige: #F9F7F2;
            --color-charcoal: #1a1a1a;
            --color-gold: #C5A059;
            --color-gold-light: #dfc693;
            --color-gray-light: #f4f4f4;
            --color-text-muted: #666666;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Montserrat', sans-serif;

            /* Modern Soft Shadows */
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
            --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.2);

            --radius-md: 12px;
            --radius-lg: 20px;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            /* Smooth iOS-like easing */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-charcoal);
            background-color: var(--color-white);
            line-height: 1.7;
            overflow-x: hidden;
            font-size: 16px;
            /* Base size */
        }

        /* Fluid Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            color: var(--color-charcoal);
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        /* --- UTILITIES --- */
        .container {
            width: 90%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-padding {
            padding: clamp(60px, 8vw, 100px) 0;
        }

        .bg-beige {
            background-color: var(--color-beige);
        }

        .text-center {
            text-align: center;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: var(--color-gold);
            margin: 15px auto 0;
        }

        .section-subtitle {
            color: var(--color-sage);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.90rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .hero-subtitle {
            font-weight: 800;
        }

        /* --- BUTTONS (Touch Optimized) --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            /* Pill shape looks more modern */
            cursor: pointer;
            transition: var(--transition);
            border: none;
            min-height: 48px;
            /* Mobile touch target */
        }

        .btn:active {
            transform: scale(0.96);
        }

        .btn-primary {
            background-color: var(--color-gold);
            color: var(--color-white);
            box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
        }

        .btn-primary:hover {
            background-color: var(--color-charcoal);
            transform: translateY(-2px);
        }

        .nav-booking-btn {
            position: relative;
            gap: 10px;
            min-height: 52px;
            padding: 0 28px;
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 999px;
            background: linear-gradient(135deg, var(--color-gold) 0%, #8f7440 100%);
            color: var(--color-white);
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), 0 8px 22px rgba(197, 160, 89, 0.24);
            overflow: hidden;
        }

        .nav-booking-btn::before {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
            pointer-events: none;
        }

        .nav-booking-btn i {
            position: relative;
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
            font-size: 0.95rem;
        }

        .nav-booking-btn:hover {
            background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
            transform: translateY(-3px);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: var(--color-white);
            backdrop-filter: blur(5px);
        }

        .btn-outline:hover {
            background-color: var(--color-white);
            color: var(--color-charcoal);
            border-color: var(--color-white);
        }

        /* --- NAVIGATION --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
            padding: 20px 0;
        }

        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            box-shadow: var(--shadow-sm);
            padding: 12px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-white);
            letter-spacing: 0.5px;
            z-index: 1002;
            /* Above mobile menu */
        }

        .navbar.scrolled .logo {
            color: var(--color-charcoal);
        }

        .logo span {
            color: var(--color-gold);
        }

        /* Desktop Menu */
        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            color: var(--color-white);
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: var(--color-charcoal);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-gold);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Mobile Hamburger */
        .hamburger {
            display: none;
            cursor: pointer;
            color: var(--color-white);
            font-size: 1.5rem;
            z-index: 1002;
        }

        .navbar.scrolled .hamburger {
            color: var(--color-charcoal);
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 100vh;
            /* Better for mobile address bars */
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('tree.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-white);
            padding-top: 60px;
            position: relative;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--color-white);
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 35px;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
            padding: 0 20px;
        }

        .hero-btns {
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 20px;
        }

        /* --- DESTINATIONS --- */
        .destinations-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 60px;
        }

        .destination-card {
            position: relative;
            height: 350px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            border: 2px solid transparent;
            transition: var(--transition);
        }

        /* --- APARTMENT PANEL ALIGNMENT FIX --- */
        .apartment-showcase-card {
            width: 100%;
            overflow: hidden;
            border-radius: 22px;
        }

        .apartment-showcase-main {
            display: grid;
            grid-template-columns: minmax(0, 55%) minmax(0, 45%);
            align-items: stretch;
            width: 100%;
            height: 500px;
            min-height: 500px;
            max-height: 500px;
        }

        .apartment-media-panel,
        .apartment-content-panel {
            min-width: 0;
        }

        .apartment-media-panel {
            position: relative;
            width: 100%;
            height: 500px;
            min-height: 500px;
            max-height: 500px;
            overflow: hidden;
            background: #ece8df;
        }

        .apartment-main-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
            border: 0;
            transition: opacity 0.25s ease, transform 0.6s ease;
        }

        .apartment-content-panel {
            height: 500px;
            min-height: 500px;
            max-height: 500px;
            padding: 28px 28px 22px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            overflow: hidden;
        }

        .apartment-premium-label {
            margin-bottom: 8px;
            flex-shrink: 0;
        }

        .apartment-title {
            margin: 0 0 14px;
            line-height: 1.1;
            flex-shrink: 0;
        }

        .apartment-quick-info {
            margin-bottom: 16px;
            padding-bottom: 14px;
            flex-shrink: 0;
        }

        .apartment-description {
            margin: 14px 0 16px;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-shrink: 0;
        }

        .apartment-feature-grid {
            margin-bottom: 18px;
            flex-shrink: 0;
        }

        .apartment-actions {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex-shrink: 0;
        }

        .apartment-details-button,
        .apartment-whatsapp-button {
            width: 100%;
            min-height: 46px;
            height: 46px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .apartment-benefits-bar {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            width: 100%;
            min-height: 54px;
            height: 54px;
            border-top: 1px solid #e8e5df;
            background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
        }

        .apartment-benefit {
            min-width: 0;
            min-height: 54px;
            height: 54px;
            padding: 8px 10px;
            white-space: nowrap;
        }

        .apartment-benefit i {
            width: 26px;
            height: 26px;
            font-size: 0.78rem;
        }

        .apartment-status-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 5;
        }

        .apartment-slider-btn {
            position: absolute;
            top: 50%;
            z-index: 5;
            transform: translateY(-50%);
        }

        .apartment-slider-btn:hover {
            transform: translateY(-50%) scale(1.06);
        }

        .apartment-location-overlay {
            position: absolute;
            left: 14px;
            bottom: 14px;
            z-index: 5;
            max-width: 42%;
        }

        .apartment-thumbnail-list {
            position: absolute;
            right: 14px;
            bottom: 12px;
            z-index: 5;
            display: flex;
            gap: 5px;
        }

        .apartment-thumbnail,
        .apartment-more-images {
            width: 40px;
            height: 40px;
            min-width: 40px;
            min-height: 40px;
        }

        @media (max-width: 991px) and (min-width: 768px) {
            .apartment-showcase-main {
                grid-template-columns: minmax(0, 52%) minmax(0, 48%);
                height: 460px;
                min-height: 460px;
                max-height: 460px;
            }

            .apartment-media-panel,
            .apartment-content-panel {
                height: 460px;
                min-height: 460px;
                max-height: 460px;
            }

            .apartment-main-image {
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                padding: 24px 22px 18px;
            }

            .apartment-title {
                font-size: 1.72rem;
            }

            .apartment-info-pill {
                padding: 7px 10px;
                font-size: 0.78rem;
            }

            .apartment-description {
                margin: 12px 0 14px;
                line-height: 1.55;
            }

            .apartment-feature-grid {
                gap: 9px 12px;
                margin-bottom: 14px;
            }

            .apartment-details-button,
            .apartment-whatsapp-button {
                height: 42px;
                min-height: 42px;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 36px;
                height: 36px;
                min-width: 36px;
                min-height: 36px;
            }
        }

        @media (max-width: 767px) {
            .apartment-showcase-main {
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: 0;
                max-height: none;
            }

            .apartment-media-panel {
                width: 100%;
                height: 300px;
                min-height: 300px;
                max-height: 300px;
            }

            .apartment-main-image {
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                width: 100%;
                height: auto;
                min-height: 0;
                max-height: none;
                padding: 24px 20px;
                overflow: visible;
            }

            .apartment-benefits-bar {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                height: auto;
                min-height: 0;
            }

            .apartment-benefit {
                min-height: 58px;
                height: 58px;
            }

            .apartment-location-overlay {
                max-width: calc(100% - 150px);
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 36px;
                height: 36px;
                min-width: 36px;
                min-height: 36px;
            }
        }

        @media (max-width: 480px) {
            .apartment-media-panel {
                height: 260px;
                min-height: 260px;
                max-height: 260px;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 32px;
                height: 32px;
                min-width: 32px;
                min-height: 32px;
            }
        }

        /* --- FINAL MOBILE DEVICE OVERRIDE --- */
        @media (max-width: 767px) {
            html,
            body {
                width: 100%;
                overflow-x: hidden;
            }

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

            .section-padding {
                padding: 58px 0;
            }

            .nav-menu {
                padding: 80px 24px 36px;
                gap: 22px;
                overflow-y: auto;
            }

            .hero {
                min-height: 620px;
                height: 100svh;
                padding: 96px 0 64px;
            }

            .hero-content h1 {
                font-size: clamp(2.35rem, 12vw, 3.35rem);
                line-height: 1.06;
            }

            .hero-content p {
                max-width: 92%;
                font-size: 0.98rem;
                line-height: 1.7;
            }

            .hero-btns .btn {
                width: min(100%, 320px);
                justify-content: center;
            }

            .destinations-grid,
            .reviews-grid,
            .stats-grid,
            .amenities-grid,
            .footer-grid,
            .apartment-grid,
            .apartment-grid.compact-apartment-grid {
                grid-template-columns: 1fr;
            }

            .destination-card {
                height: 300px;
            }

            .apartment-grid,
            .apartment-grid.compact-apartment-grid {
                width: 100%;
                max-width: none;
                gap: 24px;
                margin-top: 24px;
            }

            .apartment-compact-card,
            .apartment-showcase-card {
                border-radius: 18px;
            }

            .apartment-compact-image-wrap {
                height: 230px;
            }

            .apartment-showcase-main {
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: 0;
                max-height: none;
            }

            .apartment-media-panel {
                height: clamp(270px, 68vw, 360px);
                min-height: clamp(270px, 68vw, 360px);
                max-height: 360px;
            }

            .apartment-main-image {
                position: absolute;
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                width: 100%;
                height: auto;
                min-height: 0;
                max-height: none;
                padding: 24px 20px;
                overflow: visible;
            }

            .apartment-detail-back {
                margin: 16px 16px 0 auto;
                min-height: 44px;
                padding: 0 14px 0 9px;
                font-size: 0.75rem;
            }

            .apartment-title {
                font-size: 1.82rem;
            }

            .apartment-feature-grid {
                grid-template-columns: 1fr;
            }

            .apartment-benefits-bar {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                height: auto;
                min-height: 0;
            }

            .apartment-benefit {
                height: auto;
                min-height: 64px;
                white-space: normal;
                text-align: center;
            }

            .gallery-filters {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
                scrollbar-width: none;
            }

            .gallery-filters::-webkit-scrollbar {
                display: none;
            }

            .filter-btn {
                flex: 0 0 auto;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
            }

            .gallery-item {
                height: 155px;
            }

            .contact-wrapper,
            .booking-form {
                border-radius: 18px;
                padding: 18px;
            }

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

            .floating-whatsapp {
                right: max(16px, env(safe-area-inset-right));
                bottom: max(16px, env(safe-area-inset-bottom));
                width: 54px;
                height: 54px;
                font-size: 26px;
            }
        }

        @media (max-width: 430px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .section-padding {
                padding: 52px 0;
            }

            .hero {
                min-height: 590px;
            }

            .hero-content h1 {
                font-size: 2.38rem;
            }

            .section-title {
                font-size: 1.78rem;
            }

            .destination-card {
                height: 260px;
            }

            .apartment-compact-image-wrap {
                height: 205px;
            }

            .apartment-media-panel {
                height: 255px;
                min-height: 255px;
                max-height: 255px;
            }

            .apartment-title {
                font-size: 1.58rem;
            }

            .apartment-location-overlay {
                left: 12px;
                right: 12px;
                bottom: 58px;
                max-width: none;
                width: auto;
            }

            .apartment-thumbnail-list {
                left: 12px;
                right: 12px;
                bottom: 12px;
                justify-content: flex-start;
                overflow-x: auto;
                scrollbar-width: none;
            }

            .apartment-thumbnail-list::-webkit-scrollbar {
                display: none;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 34px;
                height: 34px;
                min-width: 34px;
                min-height: 34px;
            }

            .apartment-benefits-bar {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                height: 132px;
            }
        }

        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 2.05rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .apartment-detail-back {
                font-size: 0.68rem;
                gap: 8px;
            }

            .apartment-media-panel {
                height: 238px;
                min-height: 238px;
                max-height: 238px;
            }

            .gallery-item {
                height: 118px;
            }
        }

        /* --- FINAL MOBILE DEVICE OVERRIDE --- */
        @media (max-width: 1024px) {
            .container {
                width: min(94%, 920px);
                padding: 0 12px;
            }

            .apartment-showcase-main {
                height: auto;
                min-height: 0;
                max-height: none;
            }

            .apartment-media-panel,
            .apartment-content-panel {
                height: auto;
                max-height: none;
            }
        }

        @media (max-width: 767px) {
            html,
            body {
                width: 100%;
                overflow-x: hidden;
            }

            .container {
                width: 100%;
                padding: 0 18px;
            }

            .section-padding {
                padding: 58px 0;
            }

            .nav-menu {
                padding: 80px 24px 36px;
                gap: 22px;
                overflow-y: auto;
            }

            .hero {
                min-height: 620px;
                height: 100svh;
                padding: 96px 0 64px;
            }

            .hero-content h1 {
                font-size: clamp(2.35rem, 12vw, 3.35rem);
                line-height: 1.06;
            }

            .hero-content p {
                max-width: 92%;
                font-size: 0.98rem;
                line-height: 1.7;
            }

            .hero-btns .btn {
                width: min(100%, 320px);
                justify-content: center;
            }

            .destinations-grid,
            .reviews-grid,
            .stats-grid,
            .amenities-grid,
            .footer-grid,
            .apartment-grid,
            .apartment-grid.compact-apartment-grid {
                grid-template-columns: 1fr;
            }

            .destination-card {
                height: 300px;
            }

            .apartment-grid,
            .apartment-grid.compact-apartment-grid {
                width: 100%;
                max-width: none;
                gap: 24px;
                margin-top: 24px;
            }

            .apartment-compact-card,
            .apartment-showcase-card {
                border-radius: 18px;
            }

            .apartment-compact-image-wrap {
                height: 230px;
            }

            .apartment-showcase-main {
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: 0;
                max-height: none;
            }

            .apartment-media-panel {
                height: clamp(270px, 68vw, 360px);
                min-height: clamp(270px, 68vw, 360px);
                max-height: 360px;
            }

            .apartment-main-image {
                position: absolute;
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                width: 100%;
                height: auto;
                min-height: 0;
                max-height: none;
                padding: 24px 20px;
                overflow: visible;
            }

            .apartment-detail-back {
                margin: 16px 16px 0 auto;
                min-height: 44px;
                padding: 0 14px 0 9px;
                font-size: 0.75rem;
            }

            .apartment-title {
                font-size: 1.82rem;
            }

            .apartment-feature-grid {
                grid-template-columns: 1fr;
            }

            .apartment-benefits-bar {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                height: auto;
                min-height: 0;
            }

            .apartment-benefit {
                height: auto;
                min-height: 64px;
                white-space: normal;
                text-align: center;
            }

            .apartment-location-overlay {
                max-width: calc(100% - 150px);
                font-size: 0.76rem;
            }

            .gallery-filters {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
                scrollbar-width: none;
            }

            .gallery-filters::-webkit-scrollbar {
                display: none;
            }

            .filter-btn {
                flex: 0 0 auto;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
            }

            .gallery-item {
                height: 155px;
            }

            .contact-wrapper,
            .booking-form {
                border-radius: 18px;
                padding: 18px;
            }

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

            .floating-whatsapp {
                right: max(16px, env(safe-area-inset-right));
                bottom: max(16px, env(safe-area-inset-bottom));
                width: 54px;
                height: 54px;
                font-size: 26px;
            }
        }

        @media (max-width: 430px) {
            .container {
                padding: 0 14px;
            }

            .section-padding {
                padding: 52px 0;
            }

            .hero {
                min-height: 590px;
            }

            .hero-content h1 {
                font-size: 2.38rem;
            }

            .section-title {
                font-size: 1.78rem;
            }

            .destination-card {
                height: 260px;
            }

            .apartment-compact-image-wrap {
                height: 205px;
            }

            .apartment-media-panel {
                height: 255px;
                min-height: 255px;
                max-height: 255px;
            }

            .apartment-title {
                font-size: 1.58rem;
            }

            .apartment-location-overlay {
                left: 12px;
                right: 12px;
                bottom: 58px;
                max-width: none;
                width: auto;
            }

            .apartment-thumbnail-list {
                left: 12px;
                right: 12px;
                bottom: 12px;
                justify-content: flex-start;
                overflow-x: auto;
                scrollbar-width: none;
            }

            .apartment-thumbnail-list::-webkit-scrollbar {
                display: none;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 34px;
                height: 34px;
                min-width: 34px;
                min-height: 34px;
            }

            .apartment-benefits-bar {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                height: 132px;
            }
        }

        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 2.05rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .apartment-detail-back {
                font-size: 0.68rem;
                gap: 8px;
            }

            .apartment-media-panel {
                height: 238px;
                min-height: 238px;
                max-height: 238px;
            }

            .gallery-item {
                height: 118px;
            }
        }

        /* --- RESPONSIVE POLISH OVERRIDE --- */
        @media (max-width: 1024px) {
            .container {
                width: min(94%, 920px);
                padding: 0 12px;
            }

            .section-padding {
                padding: 72px 0;
            }

            .destinations-grid {
                gap: 18px;
            }

            .apartment-grid {
                gap: 28px;
            }

            .apartment-grid.compact-apartment-grid {
                max-width: 900px;
            }

            .apartment-showcase-main {
                grid-template-columns: minmax(0, 52%) minmax(0, 48%);
                height: auto;
                min-height: 0;
                max-height: none;
            }

            .apartment-media-panel,
            .apartment-content-panel {
                height: auto;
                min-height: 460px;
                max-height: none;
            }

            .apartment-main-image {
                position: absolute;
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                padding: 26px 24px 22px;
            }

            .apartment-title {
                font-size: 1.9rem;
            }
        }

        @media (max-width: 767px) {
            html,
            body {
                width: 100%;
                overflow-x: hidden;
            }

            body {
                font-size: 15px;
            }

            .container {
                width: 100%;
                padding: 0 18px;
            }

            .section-padding {
                padding: 58px 0;
            }

            .navbar {
                padding: 14px 0;
            }

            .navbar.scrolled {
                padding: 10px 0;
            }

            .logo {
                font-size: 1.26rem;
            }

            .hamburger {
                display: block;
            }

            .nav-menu {
                padding: 80px 24px 36px;
                gap: 22px;
                overflow-y: auto;
            }

            .nav-link {
                font-size: 1.22rem;
            }

            .hero {
                min-height: 620px;
                height: 100svh;
                padding: 96px 0 64px;
            }

            .hero-content h1 {
                font-size: clamp(2.35rem, 12vw, 3.35rem);
                line-height: 1.06;
                margin-bottom: 18px;
            }

            .hero-content p {
                max-width: 92%;
                font-size: 0.98rem;
                line-height: 1.7;
            }

            .hero-btns {
                width: 100%;
                gap: 12px;
                padding: 0;
            }

            .hero-btns .btn {
                width: min(100%, 320px);
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .destinations-grid,
            .reviews-grid,
            .stats-grid,
            .amenities-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .destination-card {
                height: 300px;
            }

            .apartment-grid,
            .apartment-grid.compact-apartment-grid {
                grid-template-columns: 1fr;
                width: 100%;
                max-width: none;
                gap: 24px;
                margin-top: 24px;
            }

            .apartment-compact-card,
            .apartment-showcase-card {
                border-radius: 18px;
            }

            .apartment-compact-image-wrap {
                height: 230px;
            }

            .apartment-compact-content {
                padding: 18px;
            }

            .apartment-showcase-main {
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: 0;
                max-height: none;
            }

            .apartment-media-panel {
                height: clamp(270px, 68vw, 360px);
                min-height: clamp(270px, 68vw, 360px);
                max-height: 360px;
            }

            .apartment-main-image {
                position: absolute;
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                width: 100%;
                height: auto;
                min-height: 0;
                max-height: none;
                padding: 24px 20px;
                overflow: visible;
            }

            .apartment-detail-back {
                margin: 16px 16px 0 auto;
                min-height: 44px;
                padding: 0 14px 0 9px;
                font-size: 0.75rem;
                letter-spacing: 0.45px;
            }

            .apartment-detail-back-icon {
                width: 28px;
                height: 28px;
            }

            .apartment-title {
                font-size: 1.82rem;
            }

            .apartment-quick-info {
                gap: 8px;
            }

            .apartment-info-pill {
                font-size: 0.78rem;
                padding: 7px 10px;
            }

            .apartment-feature-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .apartment-whatsapp-button,
            .apartment-compact-details {
                min-height: 52px;
            }

            .apartment-benefits-bar {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                height: auto;
                min-height: 0;
            }

            .apartment-benefit {
                height: auto;
                min-height: 64px;
                white-space: normal;
                text-align: center;
            }

            .apartment-status-badge {
                top: 14px;
                left: 14px;
                padding: 7px 12px;
                font-size: 0.68rem;
            }

            .apartment-slider-btn {
                width: 36px;
                height: 36px;
            }

            .apartment-location-overlay {
                left: 14px;
                bottom: 14px;
                max-width: calc(100% - 150px);
                font-size: 0.76rem;
                padding: 8px 10px;
            }

            .apartment-thumbnail-list {
                right: 14px;
                bottom: 12px;
                gap: 6px;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 36px;
                height: 36px;
                min-width: 36px;
                min-height: 36px;
                border-radius: 8px;
            }

            .gallery-filter-group {
                gap: 14px;
            }

            .gallery-filter-row {
                flex-direction: column;
                align-items: stretch;
            }

            .gallery-filters {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 4px;
                scrollbar-width: none;
            }

            .gallery-filters::-webkit-scrollbar {
                display: none;
            }

            .filter-btn {
                flex: 0 0 auto;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 10px;
            }

            .gallery-item {
                height: 155px;
                border-radius: 12px;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                padding: 18px;
                border-radius: 18px;
            }

            .booking-form {
                padding: 18px;
                border-radius: 16px;
            }

            .booking-form-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .floating-whatsapp {
                right: max(16px, env(safe-area-inset-right));
                bottom: max(16px, env(safe-area-inset-bottom));
                width: 54px;
                height: 54px;
                font-size: 26px;
            }
        }

        @media (max-width: 430px) {
            .container {
                padding: 0 14px;
            }

            .section-padding {
                padding: 52px 0;
            }

            .hero {
                min-height: 590px;
            }

            .hero-content h1 {
                font-size: 2.38rem;
            }

            .hero-subtitle {
                font-size: 0.78rem;
                letter-spacing: 1.6px;
            }

            .section-title {
                font-size: 1.78rem;
            }

            .destination-card {
                height: 260px;
                border-radius: 18px;
            }

            .apartment-compact-image-wrap {
                height: 205px;
            }

            .apartment-media-panel {
                height: 255px;
                min-height: 255px;
                max-height: 255px;
            }

            .apartment-detail-back {
                max-width: calc(100% - 28px);
                margin-right: 14px;
            }

            .apartment-title {
                font-size: 1.58rem;
            }

            .apartment-location-overlay {
                left: 12px;
                right: 12px;
                bottom: 58px;
                max-width: none;
                width: auto;
            }

            .apartment-thumbnail-list {
                left: 12px;
                right: 12px;
                bottom: 12px;
                justify-content: flex-start;
                overflow-x: auto;
                scrollbar-width: none;
            }

            .apartment-thumbnail-list::-webkit-scrollbar {
                display: none;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 34px;
                height: 34px;
                min-width: 34px;
                min-height: 34px;
            }

            .apartment-benefits-bar {
                grid-template-columns: 1fr;
            }

            .apartment-benefit {
                min-height: 54px;
                border-right: 0;
            }

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

            .gallery-item {
                height: 132px;
            }

            .gallery-view-all-btn {
                width: 100%;
            }
        }

        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 2.05rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .apartment-detail-back {
                font-size: 0.68rem;
                gap: 8px;
            }

            .apartment-detail-back-icon {
                width: 26px;
                height: 26px;
            }

            .apartment-media-panel {
                height: 238px;
                min-height: 238px;
                max-height: 238px;
            }

            .gallery-item {
                height: 118px;
            }
        }

        /* --- FINAL COMPACT CONTACT / BOOKING FORM OVERRIDE --- */
        #contact.section-padding {
            padding-top: 70px;
            padding-bottom: 70px;
        }

        #contact .section-title {
            margin-bottom: 10px;
        }

        #contact .text-center {
            margin-bottom: 32px;
        }

        #contact .benefits-wrapper {
            margin-bottom: 34px;
            padding: 22px 26px;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: minmax(0, 38%) minmax(0, 62%);
            gap: 32px;
            align-items: start;
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 32px;
        }

        .contact-details {
            padding: 24px 10px 24px 0;
        }

        .contact-details h3 {
            font-size: clamp(28px, 2.4vw, 36px);
            line-height: 1.15;
            margin: 0 0 14px;
        }

        .contact-details>p {
            color: var(--color-text-muted);
            font-size: 16px;
            line-height: 1.6;
            margin: 0 0 28px;
        }

        .contact-info-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 18px;
            color: var(--color-charcoal);
            font-size: 16px;
            line-height: 1.45;
            overflow-wrap: anywhere;
        }

        .contact-info-row i {
            width: 22px;
            flex: 0 0 22px;
            color: var(--color-gold);
            font-size: 17px;
            text-align: center;
        }

        .booking-form {
            width: 100%;
            padding: 22px;
            background: #ffffff;
            border: 1px solid #e8e5df;
            border-radius: 20px;
            box-shadow: 0 16px 40px rgba(25, 25, 25, 0.06);
            box-sizing: border-box;
        }

        .booking-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 16px;
            row-gap: 12px;
        }

        .booking-field {
            min-width: 0;
        }

        .booking-field-full {
            grid-column: 1 / -1;
        }

        .booking-field label {
            display: block;
            margin-bottom: 5px;
            color: #242424;
            font-size: 13px;
            line-height: 1.2;
            font-weight: 600;
            letter-spacing: 0.7px;
            text-transform: uppercase;
        }

        .booking-input-wrap {
            position: relative;
            width: 100%;
        }

        .booking-input-wrap>i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #617d35;
            font-size: 15px;
            pointer-events: none;
            z-index: 2;
        }

        .booking-form input,
        .booking-form select {
            width: 100%;
            height: 46px;
            min-height: 46px;
            padding: 0 16px 0 46px;
            border: 1px solid #dedede;
            border-radius: 12px;
            background: #ffffff;
            color: #222222;
            font-family: inherit;
            font-size: 15px;
            box-sizing: border-box;
            outline: none;
        }

        .booking-form select {
            padding-right: 42px;
            appearance: auto;
        }

        .booking-form textarea {
            width: 100%;
            min-height: 82px;
            height: 82px;
            max-height: 120px;
            resize: vertical;
            padding: 14px 16px 14px 46px;
            border: 1px solid #dedede;
            border-radius: 12px;
            background: #ffffff;
            color: #222222;
            font-family: inherit;
            font-size: 15px;
            line-height: 1.5;
            box-sizing: border-box;
            outline: none;
        }

        .booking-input-wrap.textarea-wrap>i {
            top: 15px;
            transform: none;
        }

        .booking-form input:focus,
        .booking-form select:focus,
        .booking-form textarea:focus {
            border-color: var(--color-gold);
            box-shadow: 0 0 0 3px rgba(198, 157, 80, 0.12);
        }

        .booking-submit-button {
            width: 100%;
            min-height: 46px;
            height: 46px;
            border: none;
            border-radius: 12px;
            background: var(--color-gold);
            color: #ffffff;
            font-family: inherit;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }

        .booking-submit-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(198, 157, 80, 0.22);
        }

        @media (max-width: 991px) {
            .contact-wrapper {
                grid-template-columns: minmax(0, 34%) minmax(0, 66%);
                gap: 24px;
            }

            .booking-form {
                padding: 20px;
            }

            .booking-form-grid {
                column-gap: 14px;
                row-gap: 12px;
            }
        }

        @media (max-width: 820px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .contact-details {
                padding: 0;
            }

            .booking-form {
                padding: 18px;
            }
        }

        @media (max-width: 600px) {
            .booking-form-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .booking-field,
            .booking-field-full {
                grid-column: 1;
            }

            .booking-form input,
            .booking-form select {
                height: 46px;
                min-height: 46px;
            }

            .booking-form textarea {
                min-height: 82px;
                height: 82px;
            }

            .booking-submit-button {
                min-height: 46px;
                height: auto;
                padding: 11px 14px;
                white-space: normal;
                text-align: center;
            }
        }

        .destination-bg,
        .destination-card>img {
            width: 100%;
            height: 100%;
            transition: transform 0.7s ease;
        }

        .destination-card:focus-visible,
        .destination-card.active {
            border-color: var(--color-gold);
            box-shadow: var(--shadow-gold);
            outline: none;
        }

        .destination-card:hover .destination-bg,
        .destination-card:hover>img {
            transform: scale(1.05);
        }

        .destination-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            color: var(--color-white);
        }

        .destination-badge {
            background-color: var(--color-gold);
            color: var(--color-white);
            padding: 5px 12px;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            margin-bottom: 8px;
            align-self: flex-start;
        }

        /* --- APARTMENTS --- */
        .apartment-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 36px;
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }

        .apartment-grid.compact-apartment-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
            align-items: stretch;
            max-width: 1040px;
            margin-left: auto;
            margin-right: auto;
        }

        .apartment-compact-card {
            background: var(--color-white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            min-width: 0;
        }

        .apartment-compact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .apartment-compact-image-wrap {
            height: 220px;
            position: relative;
            overflow: hidden;
            background: var(--color-gray-light);
        }

        .apartment-compact-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.55s ease;
        }

        .apartment-compact-card:hover .apartment-compact-image {
            transform: scale(1.04);
        }

        .apartment-compact-badge {
            top: 14px;
            left: 14px;
            padding: 6px 11px;
            font-size: 0.66rem;
        }

        .apartment-compact-content {
            padding: 18px 20px 22px;
        }

        .apartment-compact-location {
            display: flex;
            align-items: center;
            gap: 7px;
            color: var(--color-text-muted);
            font-size: 0.84rem;
            margin-bottom: 8px;
        }

        .apartment-compact-location i,
        .apartment-compact-meta i {
            color: var(--color-sage-dark);
        }

        .apartment-compact-title {
            font-family: var(--font-heading);
            color: var(--color-charcoal);
            font-size: 1.35rem;
            line-height: 1.18;
            margin-bottom: 10px;
        }

        .apartment-compact-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            color: var(--color-sage-dark);
            font-size: 0.8rem;
            margin-bottom: 18px;
        }

        .apartment-compact-details {
            width: 100%;
            min-height: 46px;
            border: 0;
            border-radius: 8px;
            background: var(--color-gold);
            color: var(--color-white);
            box-shadow: var(--shadow-gold);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-family: var(--font-body);
            font-weight: 700;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .apartment-compact-details:hover {
            transform: translateY(-2px);
            filter: brightness(1.04);
        }

        .apartment-showcase-card {
            background: var(--color-white);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            width: 100%;
        }

        .apartment-detail-back {
            margin: 22px 22px 0 auto;
            min-height: 48px;
            padding: 0 18px 0 12px;
            border: 1px solid rgba(26, 26, 26, 0.1);
            border-radius: 999px;
            background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
            color: var(--color-charcoal);
            display: flex;
            align-items: center;
            gap: 11px;
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .apartment-detail-back-icon {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(138, 154, 91, 0.14);
            color: var(--color-sage-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.82rem;
            transition: var(--transition);
        }

        .apartment-detail-back:hover,
        .apartment-detail-back:focus-visible {
            background: var(--color-charcoal);
            color: var(--color-white);
            border-color: var(--color-charcoal);
            transform: translateY(-2px);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.15);
            outline: 0;
        }

        .apartment-detail-back:hover .apartment-detail-back-icon,
        .apartment-detail-back:focus-visible .apartment-detail-back-icon {
            background: var(--color-gold);
            color: var(--color-white);
            transform: translateX(-2px);
        }

        .apartment-showcase-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .apartment-showcase-main {
            display: grid;
            grid-template-columns: 55fr 45fr;
            min-height: 560px;
            height: auto;
            align-items: stretch;
        }

        .apartment-media-panel {
            min-height: 560px;
            height: auto;
            position: relative;
            overflow: hidden;
            background: var(--color-gray-light);
        }

        .apartment-main-image {
            width: 100%;
            height: 100%;
            min-height: 560px;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }

        .apartment-showcase-card:hover .apartment-main-image {
            transform: scale(1.035);
        }

        .apartment-slider-btn {
            position: absolute;
            top: 50%;
            z-index: 3;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            color: var(--color-charcoal);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateY(-50%);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
            transition: var(--transition);
        }

        .apartment-slider-btn:hover {
            background: var(--color-gold);
            color: var(--color-white);
            transform: translateY(-50%) scale(1.06);
        }

        .apartment-slider-prev {
            left: 22px;
        }

        .apartment-slider-next {
            right: 22px;
        }

        .apartment-media-panel::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 45%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent);
            pointer-events: none;
        }

        .apartment-status-badge {
            position: absolute;
            top: 22px;
            left: 22px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            background: rgba(85, 107, 53, 0.96);
            color: var(--color-white);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            backdrop-filter: blur(4px);
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-white);
            display: inline-block;
            animation: statusPulse 1.4s ease-in-out infinite;
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        }

        @keyframes statusPulse {
            0% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
            }

            60% {
                opacity: 0.75;
                transform: scale(1.25);
                box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
            }

            100% {
                opacity: 1;
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        .apartment-location-overlay {
            position: absolute;
            left: 22px;
            bottom: 22px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            max-width: calc(100% - 190px);
            padding: 9px 13px;
            background: rgba(26, 26, 26, 0.7);
            color: var(--color-white);
            border-radius: 12px;
            font-size: 0.86rem;
            backdrop-filter: blur(8px);
        }

        .apartment-thumbnail-list {
            position: absolute;
            right: 22px;
            bottom: 22px;
            z-index: 2;
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .apartment-thumbnail {
            width: 54px;
            height: 54px;
            padding: 0;
            border: 2px solid rgba(255, 255, 255, 0.88);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            background: rgba(26, 26, 26, 0.65);
            color: var(--color-white);
            font-weight: 700;
            transition: var(--transition);
        }

        .apartment-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .apartment-thumbnail.active,
        .apartment-thumbnail:hover {
            border-color: var(--color-gold);
            transform: translateY(-2px);
        }

        .apartment-more-images.active {
            background: var(--color-gold);
            color: var(--color-white);
        }

        .apartment-more-images {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
        }

        .apartment-content-panel {
            padding: 38px 34px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .apartment-premium-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--color-gold);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .apartment-title {
            color: var(--color-charcoal);
            font-family: var(--font-heading);
            font-size: clamp(2.1rem, 3vw, 2.38rem);
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .apartment-quick-info {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding-bottom: 20px;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        .apartment-info-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: #fbfaf7;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 999px;
            color: var(--color-charcoal);
            font-size: 0.84rem;
            font-weight: 500;
        }

        .apartment-info-pill i {
            color: var(--color-sage-dark);
        }

        .apartment-description {
            color: var(--color-text-muted);
            line-height: 1.75;
            margin-bottom: 22px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .apartment-feature-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px 16px;
            margin-bottom: 28px;
        }

        .apartment-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--color-charcoal);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .apartment-feature i {
            color: var(--color-gold);
            width: 18px;
            text-align: center;
        }

        .apartment-actions {
            display: grid;
            gap: 12px;
        }

        .apartment-details-button,
        .apartment-whatsapp-button {
            width: 100%;
            min-height: 56px;
            border: 0;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            font-family: var(--font-body);
            font-weight: 700;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            transition: var(--transition);
        }

        .apartment-details-button {
            background: var(--color-gold);
            color: var(--color-white);
            box-shadow: var(--shadow-gold);
        }

        .apartment-whatsapp-button {
            background: var(--color-charcoal);
            color: var(--color-white);
        }

        .apartment-details-button:hover,
        .apartment-whatsapp-button:hover {
            transform: translateY(-2px);
            filter: brightness(1.04);
        }

        .apartment-benefits-bar {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
        }

        .apartment-benefit {
            min-height: 82px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            color: var(--color-charcoal);
            font-size: 0.9rem;
            font-weight: 700;
            text-align: center;
            padding: 14px 12px;
        }

        .apartment-benefit:not(:last-child) {
            border-right: 1px solid rgba(0, 0, 0, 0.07);
        }

        .apartment-benefit i {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(138, 154, 91, 0.12);
            color: var(--color-sage-dark);
            flex-shrink: 0;
        }

        .empty-state {
            grid-column: 1 / -1;
            background: var(--color-white);
            border: 1px dashed var(--color-gold-light);
            border-radius: var(--radius-md);
            color: var(--color-text-muted);
            padding: 30px;
            text-align: center;
        }

        /* --- HIGHLIGHTS --- */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .highlight-card {
            background: var(--color-white);
            padding: 25px 15px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .highlight-card:hover {
            transform: translateY(-5px);
            border-color: var(--color-gold-light);
            box-shadow: var(--shadow-gold);
        }

        .highlight-icon {
            font-size: 1.8rem;
            color: var(--color-gold);
            margin-bottom: 10px;
        }

        .highlight-card h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        /* --- AMENITIES --- */
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 15px;
            margin-top: 50px;
        }

        .amenity-item {
            background: rgba(255, 255, 255, 0.7);
            padding: 20px;
            border-radius: var(--radius-md);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: var(--transition);
        }

        .amenity-item:hover {
            background: white;
            box-shadow: var(--shadow-md);
        }

        .amenity-icon {
            font-size: 1.8rem;
            color: var(--color-sage);
            margin-bottom: 12px;
        }

        .amenity-item h4 {
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* --- GALLERY --- */
        .gallery-filter-row {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            min-height: 48px;
        }

        .gallery-location-select-wrap {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-width: 190px;
            padding: 10px 14px;
            background: var(--color-white);
            border: 1px solid #e0e0e0;
            border-radius: 30px;
            color: var(--color-charcoal);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            transition: var(--transition);
        }

        .gallery-location-select-wrap:hover,
        .gallery-location-select-wrap:focus-within {
            border-color: var(--color-charcoal);
            box-shadow: var(--shadow-md);
            transform: translateY(-50%);
        }

        .gallery-location-select-wrap i:first-child {
            color: var(--color-sage-dark);
        }

        .gallery-location-select-wrap i:last-child {
            color: var(--color-text-muted);
            font-size: 0.75rem;
            pointer-events: none;
        }

        .gallery-location-select {
            appearance: none;
            border: 0;
            outline: 0;
            background: transparent;
            width: 100%;
            color: var(--color-charcoal);
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .gallery-location-dropdown {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            min-width: 220px;
        }

        .gallery-location-trigger {
            width: 100%;
            min-height: 50px;
            padding: 0 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid rgba(26, 26, 26, 0.28);
            border-radius: 999px;
            background: var(--color-beige);
            color: var(--color-charcoal);
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .gallery-location-trigger:hover,
        .gallery-location-dropdown.open .gallery-location-trigger {
            border-color: var(--color-charcoal);
            box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
        }

        .gallery-location-trigger i:first-child {
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(138, 154, 91, 0.12);
            color: var(--color-sage-dark);
            flex-shrink: 0;
        }

        .gallery-location-trigger i:last-child {
            margin-left: auto;
            color: var(--color-text-muted);
            font-size: 0.78rem;
            transition: transform 0.25s ease;
        }

        .gallery-location-dropdown.open .gallery-location-trigger i:last-child {
            transform: rotate(180deg);
        }

        .gallery-location-menu {
            position: absolute;
            top: calc(100% + 10px);
            right: 0;
            width: 100%;
            padding: 8px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 16px;
            background: var(--color-beige);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        }

        .gallery-location-dropdown.open .gallery-location-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .gallery-location-option {
            width: 100%;
            min-height: 42px;
            padding: 0 12px;
            border: 0;
            border-radius: 10px;
            background: transparent;
            color: var(--color-charcoal);
            cursor: pointer;
            display: flex;
            align-items: center;
            font-family: var(--font-body);
            font-size: 0.92rem;
            font-weight: 500;
            text-align: left;
            transition: var(--transition);
        }

        .gallery-location-option:hover {
            background: var(--color-beige);
        }

        .gallery-location-option.active {
            background: var(--color-charcoal);
            color: var(--color-white);
        }

        .gallery-filters {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .gallery-filter-group {
            margin-bottom: 16px;
            text-align: center;
        }

        .filter-label {
            display: block;
            color: var(--color-text-muted);
            font-size: 0.75rem;
            letter-spacing: 1px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .filter-btn {
            padding: 8px 18px;
            border: 1px solid #e0e0e0;
            background: white;
            border-radius: 30px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: var(--transition);
        }

        .filter-btn.active,
        .filter-btn:hover {
            background-color: var(--color-charcoal);
            color: var(--color-white);
            border-color: var(--color-charcoal);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .gallery-page-section {
            padding-top: clamp(120px, 14vw, 150px);
        }

        .gallery-item {
            height: 220px;
            border-radius: var(--radius-md);
            overflow: hidden;
            cursor: pointer;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            transition: transform 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-view-all-wrap {
            grid-column: 1 / -1;
            display: flex;
            justify-content: center;
            margin-top: 12px;
        }

        .gallery-view-all-btn {
            min-height: 52px;
            padding: 0 26px;
            border: 1px solid #e8e5df;
            border-radius: 999px;
            background: var(--color-beige);
            color: var(--color-charcoal);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            font-family: var(--font-body);
            font-size: 0.92rem;
            font-weight: 700;
            letter-spacing: 0.4px;
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }

        .gallery-view-all-btn i {
            color: var(--color-sage-dark);
        }

        .gallery-view-all-btn small {
            min-width: 30px;
            height: 30px;
            padding: 0 8px;
            border-radius: 999px;
            background: var(--color-white);
            color: var(--color-sage-dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.78rem;
            font-weight: 700;
        }

        .gallery-view-all-btn:hover {
            transform: translateY(-2px);
            border-color: var(--color-gold-light);
            box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
        }

        /* --- STATS --- */
        .stats-section {
            background-color: var(--color-charcoal);
            color: var(--color-white);
            padding: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: var(--color-gold);
            margin-bottom: 10px;
            font-family: var(--font-heading);
        }

        .stat-item p {
            font-size: 0.85rem;
            text-transform: uppercase;
            opacity: 0.7;
            letter-spacing: 1px;
        }

        /* --- REVIEWS --- */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .review-card {
            background: var(--color-white);
            padding: 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 20px;
            border: 1px solid #f0f0f0;
            transition: var(--transition);
        }

        .review-card:hover {
            box-shadow: var(--shadow-md);
        }

        .guest-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
            border: 2px solid var(--color-gold);
        }

        .review-content h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .review-location {
            color: var(--color-text-muted);
            font-size: 0.8rem;
            margin-bottom: 12px;
            display: block;
        }

        .stars {
            color: var(--color-gold);
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .review-text {
            font-size: 0.9rem;
            color: #555;
            font-style: italic;
        }

        /* --- BENEFITS & CONTACT --- */
        .benefits-wrapper {
            background: var(--color-white);
            padding: 30px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            margin-bottom: 50px;
        }

        .benefits-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .benefit-item i {
            color: var(--color-sage);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            background: white;
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
            background: #fafafa;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-gold);
            background: white;
            box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
        }

        .booking-form {
            background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 18px;
            padding: 26px;
            box-shadow: var(--shadow-sm);
        }

        .booking-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
        }

        .booking-field {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
        }

        .booking-field-full {
            grid-column: 1 / -1;
        }

        .booking-field span {
            color: var(--color-charcoal);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .booking-field i {
            position: absolute;
            left: 16px;
            bottom: 17px;
            color: var(--color-sage-dark);
            font-size: 0.9rem;
            pointer-events: none;
            z-index: 1;
        }

        .booking-field .form-control {
            min-height: 56px;
            padding: 15px 16px 15px 44px;
            border-radius: 12px;
            background: var(--color-white);
            border-color: rgba(0, 0, 0, 0.09);
        }

        .booking-field select.form-control {
            appearance: auto;
            cursor: pointer;
        }

        .booking-message-field i {
            top: 45px;
            bottom: auto;
        }

        .booking-message-field textarea.form-control {
            min-height: 118px;
            resize: vertical;
            line-height: 1.6;
        }

        .booking-submit-btn {
            width: 100%;
            min-height: 58px;
            margin-top: 20px;
            gap: 10px;
            border-radius: 14px;
            box-shadow: var(--shadow-gold);
        }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease;
            padding: 0;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: var(--color-white);
            width: 100%;
            max-width: 1000px;
            max-height: 90vh;
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: translateY(30px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .close-modal:hover {
            background: var(--color-gold);
            color: white;
        }

        .modal-body {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            height: 100%;
            overflow-y: auto;
        }

        .modal-gallery-container {
            position: relative;
            background: #000;
            height: min(85vh, 620px);
            min-height: 300px;
        }

        .modal-main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .modal-gallery-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            color: #000;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .modal-prev {
            left: 15px;
        }

        .modal-next {
            right: 15px;
        }

        .modal-details {
            padding: 40px;
            background: white;
            overflow-y: auto;
        }

        .modal-amenities-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 20px 0;
        }

        .modal-amenities-list li {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: #555;
        }

        .modal-amenities-list li i {
            color: var(--color-sage);
        }

        /* --- LIGHTBOX --- */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-img {
            max-width: 95%;
            max-height: 90vh;
            border-radius: 4px;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            transition: opacity 0.2s ease;
        }

        .close-lightbox {
            position: absolute;
            top: 30px;
            right: 30px;
            color: var(--color-white);
            font-size: 2.5rem;
            cursor: pointer;
            z-index: 3001;
        }

        /* --- TOAST --- */
        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background-color: var(--color-charcoal);
            color: var(--color-white);
            padding: 16px 32px;
            border-radius: 50px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
            z-index: 4000;
            display: flex;
            align-items: center;
            gap: 12px;
            white-space: nowrap;
            font-size: 0.9rem;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        /* --- FOOTER (WITH MAP) --- */
        footer {
            background-color: var(--color-charcoal);
            color: var(--color-white);
            padding: 80px 0 30px;
            border-top: 4px solid var(--color-gold);
        }

        /* 4 Columns Layout for Footer */
        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr 1.5fr;
            /* Map gets more space */
            gap: 40px;
            margin-bottom: 50px;
            align-items: start;
        }

        .footer-about p {
            opacity: 0.7;
            margin-top: 20px;
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .footer-links h4,
        .footer-map h4 {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            opacity: 0.7;
            transition: var(--transition);
            font-size: 0.9rem;
            display: block;
        }

        .footer-links a:hover {
            color: var(--color-gold);
            opacity: 1;
            padding-left: 5px;
        }

        .social-icons a {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background: var(--color-gold);
            transform: translateY(-3px);
        }

        /* Map Styling */
        .footer-map-container {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            /* Grayscale for luxury look */
            transition: var(--transition);
        }


        .footer-map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .map-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .map-tab {
            background: transparent;
            border-color: rgba(255, 255, 255, 0.22);
            color: rgba(255, 255, 255, 0.82);
        }

        .map-tab:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.35);
            color: var(--color-white);
        }

        .map-tab.active {
            background: var(--color-white);
            border-color: var(--color-white);
            color: var(--color-charcoal);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
        }

        .location-address {
            display: none;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 14px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.85rem;
        }

        .location-address.active {
            display: flex;
        }

        .location-address i {
            color: var(--color-gold);
            margin-top: 4px;
        }

        .location-address strong {
            color: var(--color-white);
        }

        .location-address p {
            margin: 3px 0 4px;
        }

        .location-address a {
            color: var(--color-gold-light);
            font-weight: 600;
        }

        .map-frame {
            display: none;
        }

        .map-frame.active {
            display: block;
        }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            font-size: 0.85rem;
            opacity: 0.6;
        }

        /* --- FLOATING WHATSAPP --- */
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: var(--transition);
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {

            /* Footer becomes 2x2 grid on tablet */
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-map-container {
                height: 250px;
            }

            /* Taller map on tablet */

            .destinations-grid,
            .stats-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .apartment-showcase-main {
                grid-template-columns: 52fr 48fr;
                min-height: 560px;
                height: auto;
            }

            .apartment-media-panel,
            .apartment-main-image {
                min-height: 560px;
                height: 100%;
            }

            .apartment-content-panel {
                padding: 30px 26px;
            }

            .apartment-title {
                font-size: 2rem;
            }

            .apartment-thumbnail {
                width: 48px;
                height: 48px;
            }

            .apartment-slider-btn {
                width: 38px;
                height: 38px;
            }

            .modal-body {
                grid-template-columns: 1fr;
            }

            .modal-gallery-container {
                height: 300px;
                order: -1;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
                padding: 25px;
            }

            .booking-form {
                padding: 22px;
            }
        }

        @media (max-width: 768px) {

            /* Footer stacks vertically on mobile */
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .apartment-grid.compact-apartment-grid {
                grid-template-columns: 1fr;
            }

            /* Mobile Menu Overlay */
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: 0;
                width: 100%;
                height: 100vh;
                background-color: var(--color-white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                transform: translateX(100%);
                transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
                z-index: 1001;
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-link {
                font-size: 1.5rem;
                font-weight: 600;
                color: var(--color-charcoal);
            }

            .nav-menu .btn-primary {
                padding: 15px 40px;
                font-size: 1rem;
            }

            .nav-menu .nav-booking-btn {
                min-height: 54px;
                padding: 0 34px;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .benefits-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

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

            .booking-submit-btn {
                min-height: 54px;
                font-size: 0.82rem;
            }

            .apartment-showcase-main {
                grid-template-columns: 1fr;
                height: auto;
            }

            .apartment-media-panel {
                min-height: 300px;
                height: 300px;
            }

            .apartment-main-image {
                min-height: 300px;
                height: 300px;
            }

            .apartment-content-panel {
                padding: 28px 22px;
            }

            .apartment-title {
                font-size: 1.85rem;
            }

            .apartment-description {
                -webkit-line-clamp: unset;
            }

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

            .apartment-benefit {
                min-height: 74px;
            }

            .apartment-benefit:nth-child(2) {
                border-right: 0;
            }

            .apartment-benefit:nth-child(-n+2) {
                border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            }

            .apartment-location-overlay {
                max-width: calc(100% - 170px);
            }

            .apartment-slider-prev {
                left: 14px;
            }

            .apartment-slider-next {
                right: 14px;
            }

            /* Modal on Mobile: Full Screen Experience */
            .modal-content {
                height: 100%;
                max-height: 100%;
                border-radius: 0;
                transform: translateY(100%);
            }

            .modal-overlay.active .modal-content {
                transform: translateY(0);
            }

            .modal-body {
                display: flex;
                flex-direction: column;
                height: 100%;
            }

            .modal-gallery-container {
                height: 40vh;
                /* Large image on top */
                flex-shrink: 0;
            }

            .modal-details {
                padding: 25px;
                flex-grow: 1;
                overflow-y: auto;
                border-radius: 20px 20px 0 0;
                margin-top: -20px;
                position: relative;
                z-index: 2;
                background: white;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }

            .gallery-filter-row {
                flex-direction: column;
                gap: 14px;
            }

            .gallery-location-select-wrap {
                position: static;
                transform: none;
                min-width: min(100%, 230px);
            }

            .gallery-location-dropdown {
                position: static;
                transform: none;
                width: min(100%, 230px);
                min-width: 0;
            }

            .gallery-location-select-wrap:hover,
            .gallery-location-select-wrap:focus-within {
                transform: none;
            }

            .gallery-location-menu {
                left: 0;
                right: auto;
            }

            .gallery-item {
                height: 150px;
            }

            /* Map height on mobile */
            .footer-map-container {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .apartment-grid {
                gap: 28px;
            }

            .apartment-showcase-card {
                border-radius: 22px;
            }

            .apartment-media-panel {
                min-height: 280px;
                height: 280px;
            }

            .apartment-main-image {
                min-height: 280px;
                height: 280px;
            }

            .apartment-status-badge {
                top: 16px;
                left: 16px;
                font-size: 0.68rem;
            }

            .apartment-location-overlay {
                left: 16px;
                bottom: 16px;
                max-width: calc(100% - 150px);
                font-size: 0.74rem;
                padding: 8px 10px;
            }

            .apartment-thumbnail-list {
                right: 16px;
                bottom: 16px;
                gap: 6px;
            }

            .apartment-thumbnail {
                width: 38px;
                height: 38px;
                border-radius: 8px;
            }

            .apartment-slider-btn {
                width: 34px;
                height: 34px;
                font-size: 0.8rem;
            }

            .apartment-content-panel {
                padding: 24px 18px;
            }

            .apartment-title {
                font-size: 1.7rem;
            }

            .apartment-feature-grid {
                grid-template-columns: 1fr;
            }

            .apartment-benefit {
                font-size: 0.78rem;
                padding: 10px 8px;
            }
        }

        /* --- FINAL APARTMENT PANEL ALIGNMENT OVERRIDE --- */
        .apartment-showcase-card {
            width: 100%;
            overflow: hidden;
            border-radius: 22px;
        }

        .apartment-showcase-main {
            display: grid;
            grid-template-columns: minmax(0, 55%) minmax(0, 45%);
            align-items: stretch;
            width: 100%;
            height: 500px;
            min-height: 500px;
            max-height: 500px;
        }

        .apartment-media-panel,
        .apartment-content-panel {
            min-width: 0;
        }

        .apartment-media-panel {
            position: relative;
            width: 100%;
            height: 500px;
            min-height: 500px;
            max-height: 500px;
            overflow: hidden;
            background: #ece8df;
        }

        .apartment-main-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
            border: 0;
            transition: opacity 0.25s ease, transform 0.6s ease;
        }

        .apartment-content-panel {
            height: 500px;
            min-height: 500px;
            max-height: 500px;
            padding: 28px 28px 22px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
            overflow: hidden;
        }

        .apartment-premium-label {
            margin-bottom: 8px;
            flex-shrink: 0;
        }

        .apartment-title {
            margin: 0 0 14px;
            line-height: 1.1;
            flex-shrink: 0;
        }

        .apartment-quick-info {
            margin-bottom: 16px;
            padding-bottom: 14px;
            flex-shrink: 0;
        }

        .apartment-description {
            margin: 14px 0 16px;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-shrink: 0;
        }

        .apartment-feature-grid {
            margin-bottom: 18px;
            flex-shrink: 0;
        }

        .apartment-actions {
            margin-top: auto;
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex-shrink: 0;
        }

        .apartment-details-button,
        .apartment-whatsapp-button {
            width: 100%;
            min-height: 46px;
            height: 46px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .apartment-benefits-bar {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            width: 100%;
            min-height: 54px;
            height: 54px;
            border-top: 1px solid #e8e5df;
            background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
        }

        .apartment-benefit {
            min-width: 0;
            min-height: 54px;
            height: 54px;
            padding: 8px 10px;
            white-space: nowrap;
        }

        .apartment-benefit i {
            width: 26px;
            height: 26px;
            font-size: 0.78rem;
        }

        .apartment-status-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            z-index: 5;
        }

        .apartment-slider-btn {
            position: absolute;
            top: 50%;
            z-index: 5;
            transform: translateY(-50%);
        }

        .apartment-slider-btn:hover {
            transform: translateY(-50%) scale(1.06);
        }

        .apartment-location-overlay {
            position: absolute;
            left: 14px;
            bottom: 14px;
            z-index: 5;
            max-width: 42%;
        }

        .apartment-thumbnail-list {
            position: absolute;
            right: 14px;
            bottom: 12px;
            z-index: 5;
            display: flex;
            gap: 5px;
        }

        .apartment-thumbnail,
        .apartment-more-images {
            width: 40px;
            height: 40px;
            min-width: 40px;
            min-height: 40px;
        }

        @media (max-width: 991px) and (min-width: 768px) {
            .apartment-showcase-main {
                grid-template-columns: minmax(0, 52%) minmax(0, 48%);
                height: 460px;
                min-height: 460px;
                max-height: 460px;
            }

            .apartment-media-panel,
            .apartment-content-panel {
                height: 460px;
                min-height: 460px;
                max-height: 460px;
            }

            .apartment-main-image {
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                padding: 24px 22px 18px;
            }

            .apartment-title {
                font-size: 1.72rem;
            }

            .apartment-info-pill {
                padding: 7px 10px;
                font-size: 0.78rem;
            }

            .apartment-description {
                margin: 12px 0 14px;
                line-height: 1.55;
            }

            .apartment-feature-grid {
                gap: 9px 12px;
                margin-bottom: 14px;
            }

            .apartment-details-button,
            .apartment-whatsapp-button {
                height: 42px;
                min-height: 42px;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 36px;
                height: 36px;
                min-width: 36px;
                min-height: 36px;
            }
        }

        @media (max-width: 767px) {
            .apartment-showcase-main {
                display: flex;
                flex-direction: column;
                height: auto;
                min-height: 0;
                max-height: none;
            }

            .apartment-media-panel {
                width: 100%;
                height: 300px;
                min-height: 300px;
                max-height: 300px;
            }

            .apartment-main-image {
                height: 100%;
                min-height: 100%;
            }

            .apartment-content-panel {
                width: 100%;
                height: auto;
                min-height: 0;
                max-height: none;
                padding: 24px 20px;
                overflow: visible;
            }

            .apartment-benefits-bar {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                height: auto;
                min-height: 0;
            }

            .apartment-benefit {
                min-height: 58px;
                height: 58px;
            }

            .apartment-location-overlay {
                max-width: calc(100% - 150px);
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 36px;
                height: 36px;
                min-width: 36px;
                min-height: 36px;
            }
        }

        @media (max-width: 480px) {
            .apartment-media-panel {
                height: 260px;
                min-height: 260px;
                max-height: 260px;
            }

            .apartment-thumbnail,
            .apartment-more-images {
                width: 32px;
                height: 32px;
                min-width: 32px;
                min-height: 32px;
            }
        }
