/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg: #F8F6F2;          /* Warm Ivory */
    --color-primary: #274234;     /* Primary Green */
    --color-accent: #72826F;      /* Accent Sage */
    --color-secondary: #1E1E1E;   /* Charcoal */
    --color-gold: #C8B799;        /* Luxury Gold */
    --color-gold-hover: #bda485;
    --color-white: #FFFFFF;
    --color-light-gray: #EFECE6;
    --color-dark-gray: #2D2D2D;
    --color-text-muted: #5C6A5A;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transitions & Shadow */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --shadow-premium: 0 20px 40px rgba(28, 28, 28, 0.04);
    --shadow-hover: 0 30px 60px rgba(37, 67, 50, 0.12);
    --shadow-glass: 0 8px 32px 0 rgba(28, 28, 28, 0.08);

    /* Grid Spacing (Mobile-first defaults) */
    --container-width: 1280px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 60px;
    --spacing-xxl: 90px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scroll-padding-top: 90px; /* Offset for sticky header on mobile/tablet */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    html {
        scroll-padding-top: 110px; /* Offset for sticky header on desktop */
    }
}

body {
    background-color: var(--color-bg);
    color: var(--color-secondary);
    font-family: var(--font-sans);
    line-height: 1.625;
    overflow-x: hidden;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.0rem, 5vw + 1rem, 4.75rem);
}

h2 {
    font-size: clamp(1.7rem, 3.5vw + 1rem, 3.25rem);
}

h3 {
    font-size: clamp(1.3rem, 2vw + 1rem, 2.25rem);
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    font-size: 1rem;
    color: var(--color-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.section-padding {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.section-padding-double {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}

.grid-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.mt-20 { margin-top: 16px; }
.mt-30 { margin-top: 24px; }
.mt-50 { margin-top: 32px; }

.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-light-gray { color: var(--color-light-gray); }
.font-serif { font-family: var(--font-serif); }

/* Editorial Divider */
.editorial-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 20px 0;
}

.text-center .editorial-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Section Header styling */
.section-header {
    max-width: 720px;
    margin-bottom: var(--spacing-xl);
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.section-tag.light {
    color: var(--color-gold);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-top: 15px;
}

.body-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-secondary);
    opacity: 0.85;
    margin-bottom: 20px;
}

.body-text.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-primary);
    opacity: 1;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 100px; /* Modern Apple-style rounded pill */
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-solid {
    background: rgba(39, 66, 52, 0.85); /* Deep green tinted glass */
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.55);
    border-left-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    box-shadow: 
        0 4px 15px rgba(39, 66, 52, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.btn-solid:hover::before {
    left: 180%;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-solid:hover {
    background: rgba(39, 66, 52, 0.95);
    color: var(--color-white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(39, 66, 52, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-primary);
    border: 1px solid rgba(39, 66, 52, 0.3);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(39, 66, 52, 0.1);
    color: var(--color-primary);
    border-color: rgba(39, 66, 52, 0.6);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline.btn-white {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.55);
    border-left-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-outline.btn-white:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.btn-outline.btn-dark {
    color: var(--color-white);
    background: rgba(200, 183, 156, 0.08); /* Gold tint */
    border: 1px solid rgba(200, 183, 156, 0.25);
    border-top-color: rgba(200, 183, 156, 0.5);
    backdrop-filter: saturate(180%) blur(15px);
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline.btn-dark:hover {
    background: rgba(200, 183, 156, 0.2);
    color: var(--color-white);
    border-color: rgba(200, 183, 156, 0.45);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1015;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 20px auto 0 auto; /* Floating off the top edge */
    padding: 6px 28px; /* Sleeker, less vertical padding */
    border-radius: 100px; /* Mac Dock pill shape */
    background: rgba(247, 245, 241, 0.55); /* Warm Ivory glass */
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.65);
    border-left-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 
        0 15px 35px rgba(28, 28, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
    margin-top: 10px; /* Float closer on scroll */
    padding: 5px 28px; /* Sleeker on scroll */
    background: rgba(247, 245, 241, 0.88); /* More opaque on scroll */
    border-color: rgba(28, 28, 28, 0.08);
    box-shadow: 
        0 10px 30px rgba(28, 28, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
    transform: scale(1.08) translateY(-1px);
}

.nav-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95); /* White background so the green details of the logo pop */
    padding: 6px;
    border: 1.5px solid rgba(212, 175, 55, 0.5); /* Gold border */
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo {
    height: 44px;
    width: 44px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--color-gold);
    margin-top: 2px;
}

.nav-links {
    display: none;
    gap: clamp(10px, 2vw, 24px);
    align-items: center;
}

.nav-cta {
    display: none;
}

.nav-link {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-secondary);
    position: relative;
    padding: 8px 16px;
    border-radius: 30px; /* Mac style soft dock selection */
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom center;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
    opacity: 1;
    transform: scale(1.18) translateY(-4px); /* macOS Dock Zoom/Pop-up effect */
    background: rgba(37, 67, 50, 0.05); /* Tinted glass highlight */
}

.nav-link:hover::after {
    opacity: 1; /* Dot active app indicator */
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.68rem;
    border-radius: 30px; /* Sleek Apple-style pill button */
    background: rgba(39, 66, 52, 0.85); /* Deep green tinted glass */
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.btn-nav:hover {
    background: rgba(39, 66, 52, 0.95);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(39, 66, 52, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1020;
}

.hamburger-line {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
    transform-origin: left center;
}

/* Mobile Menu Overlay (Matte Background) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(28, 28, 28, 0.45);
    z-index: 1009;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Menu Dropdown (Premium Glassmorphism & Top-to-Bottom slide-down) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 48vh; /* Covers less than half the screen height */
    background: rgba(248, 246, 242, 0.88); /* Elegant light Ivory tint */
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 2px solid rgba(212, 175, 55, 0.35); /* Warm Gold hairline bottom edge */
    padding: 20px 24px 24px 24px; /* Reduced top padding to remove the extra blank space */
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2-column layout to fit cleanly on screen */
    gap: 8px 20px;
    z-index: 1010;
    transform: translateY(-100%); /* Slide down from top */
    visibility: hidden;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s;
    counter-reset: menu-counter;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-close:hover {
    transform: scale(1.1);
    color: var(--color-accent);
}

.mobile-menu::-webkit-scrollbar {
    display: none;
}

.mobile-menu.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.mobile-link {
    font-size: 1.15rem; /* Balanced size for grid layout */
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--color-secondary);
    text-decoration: none;
    padding: 6px 0;
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(-10px); /* Pre-animation position for drop down */
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.3s ease, 
                padding-left 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

/* Add editorial numbering */
.mobile-link::before {
    counter-increment: menu-counter;
    content: "0" counter(menu-counter);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-right: 12px;
    width: 18px;
    display: inline-block;
}

/* Exclude the Book Site Visit CTA button from numbering and style it as a luxury text line */
.mobile-link.btn-solid {
    grid-column: span 2; /* Span across both columns */
    margin-top: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(39, 66, 52, 0.95); /* Highly visible premium dark green solid glass background */
    color: var(--color-white) !important;
    justify-content: center;
    border-radius: 30px;
    padding: 14px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(39, 66, 52, 0.2);
}

.mobile-link.btn-solid::before {
    display: none;
}

.mobile-link.btn-solid:hover {
    background: rgba(39, 66, 52, 0.95);
    color: var(--color-white) !important;
    padding-left: 0;
}

/* Staggered entry animation delay for links */
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.04s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.12s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.16s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.24s; }
.mobile-menu.active .mobile-link:nth-child(7) { transition-delay: 0.28s; }
.mobile-menu.active .mobile-link:nth-child(8) { transition-delay: 0.32s; }

.mobile-link:not(.btn-solid):hover {
    color: var(--color-primary);
    padding-left: 6px;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(-2px, -2px);
}

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(-2px, 2px);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 100px 0; /* Add top and bottom padding on mobile */
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
                rgba(28, 28, 28, 0.35) 0%, 
                rgba(28, 28, 28, 0.5) 50%,
                rgba(28, 28, 28, 0.75) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: auto; /* Allow auto height on mobile to prevent overflow */
    gap: 30px;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 650px;
}

.hero-pretitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-headline {
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-bg);
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero-actions .btn {
    width: 100%;
}

/* ============================================
   APPLE LIQUID GLASS CARD — iOS 26 / visionOS
   ============================================ */

/* Shimmer keyframe for the iridescent light sweep */
@keyframes liquidShimmer {
    0%   { transform: translateX(-120%) skewX(-12deg); }
    100% { transform: translateX(250%)  skewX(-12deg); }
}

/* Floating Glass Card — Liquid Glass */
.hero-glass-card {
    /* Core liquid glass background: near-transparent tinted fill */
    background: rgba(255, 255, 255, 0.08);

    /* Heavy saturated blur — the soul of liquid glass */
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);

    /* Iridescent multi-layer border: bright specular top edge + subtle overall border */
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top-color: rgba(255, 255, 255, 0.55); /* bright specular top highlight */
    border-left-color: rgba(255, 255, 255, 0.35);

    padding: 22px 18px;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;

    /* Layered shadow: deep ambient + close bright glow */
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.28),
        0 2px 8px  rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.40),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);

    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.45s ease;
}

/* Specular iridescent shimmer sweep — plays once on load, then on hover */
.hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent       0%,
        rgba(255,255,255,0.00) 35%,
        rgba(255,255,255,0.18) 48%,
        rgba(200,183,156,0.12) 52%,
        rgba(255,255,255,0.00) 65%,
        transparent       100%
    );
    animation: liquidShimmer 3.2s cubic-bezier(0.4, 0, 0.6, 1) 0.8s 1 forwards;
    pointer-events: none;
    z-index: 1;
}

/* Replay shimmer on hover */
.hero-glass-card:hover::before {
    animation: liquidShimmer 1.4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

/* Subtle rainbow prism overlay for depth */
.hero-glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(200, 230, 255, 0.04) 0%,
        rgba(255, 220, 180, 0.03) 40%,
        rgba(200, 255, 210, 0.03) 70%,
        rgba(220, 200, 255, 0.04) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-glass-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.32),
        0 4px 12px  rgba(0, 0, 0, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

/* All children above the pseudo-element overlays */
.hero-glass-card > * {
    position: relative;
    z-index: 2;
}

.glass-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.glass-card-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92); /* White background to make logo pop */
    padding: 5px;
    border: 2px solid rgba(255, 255, 255, 0.60);
    box-shadow: 0 4px 16px rgba(0,0,0,0.30), 0 0 0 4px rgba(255,255,255,0.10);
}

.glass-card-tag {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    font-style: normal; /* No italics */
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.glass-card-body {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.glass-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.84rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.glass-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    color: rgba(255, 255, 255, 0.50);
    font-weight: 500;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    flex-shrink: 0;
}

.detail-val {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-align: right;
    word-break: break-word;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: var(--spacing-md);
    display: none; /* Hide on mobile/tablet by default */
    align-items: center;
    gap: 15px;
    color: var(--color-white);
    opacity: 0.6;
}

.scroll-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background-color: var(--color-white);
    transform-origin: left;
    animation: pulseLine 2s infinite alternate;
}

@keyframes pulseLine {
    0% { transform: scaleX(0.7); }
    100% { transform: scaleX(1.3); }
}

/* ==========================================================================
   2. STORY SECTION
   ========================================================================== */
.story-image-column {
    position: relative;
    padding: 0;
}

.story-img-wrapper {
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.story-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gold-accent-block {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background-color: var(--color-gold);
    z-index: -1;
    opacity: 0.2;
}

.quote-block {
    border-left: 2px solid var(--color-gold);
    padding-left: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.quote-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: normal; /* No italics */
    color: var(--color-primary);
    line-height: 1.4;
}

/* ==========================================================================
   3. DEVELOPER SECTION
   ========================================================================== */
.developer-section {
    background-color: #F0EDE7; /* Slightly deeper warm color for contrast */
}

.developer-bio-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-top-color: rgba(255, 255, 255, 0.75);
    border-left-color: rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 
        0 8px 32px rgba(28, 28, 28, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: var(--transition-smooth);
}

.developer-bio-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 
        0 15px 35px rgba(37, 67, 50, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.dev-name {
    font-size: 1.85rem;
    color: var(--color-primary);
}

.dev-role {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.dev-tag {
    display: inline-block;
    font-size: 0.7rem;
    background-color: rgba(122, 139, 123, 0.15);
    color: var(--color-primary);
    padding: 4px 10px;
    margin-top: 10px;
    font-weight: 600;
}

.dev-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px; /* Space between visual and text stacked on mobile */
}

.dev-img-container {
    position: relative;
    max-width: 440px;
    width: calc(100% - 25px);
}

.dev-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
}

.dev-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 60%, rgba(37, 67, 50, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}

.dev-frame {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: 1;
    pointer-events: none;
}

/* ==========================================================================
   4. WHY SOUTH ENCLAVE
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.feature-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-top-color: rgba(255, 255, 255, 0.75);
    border-left-color: rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(28, 28, 28, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 
        0 15px 35px rgba(37, 67, 50, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(200, 183, 156, 0.4);
}

.feature-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-card-img {
    transform: scale(1.08);
}

.feature-card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-light-gray);
    position: absolute;
    top: 10px;
    right: 30px;
    line-height: 1;
    font-weight: 300;
}

.feature-icon {
    width: 36px;
    height: 36px;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    color: var(--color-primary);
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.feature-card-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   5. LIFESTYLE SHOWCASE
   ========================================================================== */
.lifestyle-intro {
    max-width: 600px;
    margin-bottom: var(--spacing-xl);
}

.lifestyle-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.lifestyle-block.reverse {
    grid-template-columns: 1fr;
}

.lifestyle-block.reverse .lifestyle-visual {
    order: 0;
}

.lifestyle-block.reverse .lifestyle-desc {
    order: 1;
    padding-right: 0;
    padding-left: 0;
}

.lifestyle-visual {
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    height: 350px;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.lifestyle-block:hover .lifestyle-img {
    transform: scale(1.03);
}

.lifestyle-desc {
    padding-left: 0;
}

.lifestyle-headline {
    font-size: clamp(1.6rem, 3vw + 1rem, 2.25rem);
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ==========================================================================
   6. COMMERCIAL HUB
   ========================================================================== */
.commercial-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.commercial-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.commercial-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.commercial-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                rgba(28, 28, 28, 0.95) 0%, 
                rgba(28, 28, 28, 0.85) 45%, 
                rgba(28, 28, 28, 0.4) 100%);
}

.commercial-content-wrapper {
    display: flex;
    justify-content: flex-start;
}

.commercial-box {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: saturate(180%) blur(40px);
    -webkit-backdrop-filter: saturate(180%) blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top-color: rgba(255, 255, 255, 0.55);
    border-left-color: rgba(255, 255, 255, 0.35);
    padding: 40px var(--spacing-md);
    border-radius: 24px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.45s ease;
}

.commercial-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.commercial-footer-note {
    color: var(--color-light-gray) !important;
    font-size: 1.1rem;
    font-weight: 300; /* Matching weight of top description paragraph */
    opacity: 0.85;
    line-height: 1.7;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.partner-item {
    border-left: 1px solid var(--color-gold);
    padding-left: 15px;
}

.partner-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    line-height: 1.2;
}

.partner-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.05em;
}

.body-text.text-light-gray {
    color: var(--color-light-gray);
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.7;
}

/* Amenities Filtering */
.amenities-filters {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 6px var(--spacing-sm);
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.amenities-filters::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 12px 24px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 255, 255, 0.45); /* Glass base */
    color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    border-radius: 30px; /* Rounded pill shape */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.filter-btn:hover {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(39, 66, 52, 0.25);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.filter-btn.active {
    background: rgba(39, 66, 52, 0.85) !important; /* Premium dark green glass */
    color: var(--color-white) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    border-top-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 8px 20px rgba(39, 66, 52, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .amenities-filters {
        justify-content: center;
        overflow-x: visible;
        white-space: normal;
        padding: 0;
    }
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    transition: all 0.4s ease;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.72); /* Translucent premium card background without performance-intensive blurs */
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-top-color: rgba(255, 255, 255, 0.75);
    border-left-color: rgba(255, 255, 255, 0.65);
    border-radius: 20px; /* Rounded Apple-style cards */
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(28, 28, 28, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.amenity-item.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.amenity-item.hide-complete {
    display: none !important;
}

.amenity-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(200, 183, 156, 0.45);
    box-shadow: 
        0 15px 35px rgba(37, 67, 50, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.amenity-icon {
    color: var(--color-gold);
    margin-bottom: 24px;
    display: inline-flex;
    transition: var(--transition-fast);
}

.amenity-item:hover .amenity-icon {
    color: var(--color-primary);
    transform: scale(1.1);
}

.amenity-title {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.amenity-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   8. FLOOR PLANS
   ========================================================================== */
.floorplan-layout {
    max-width: 900px;
    margin: 0 auto;
}

.floorplan-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-top-color: rgba(255, 255, 255, 0.75);
    border-left-color: rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 
        0 8px 32px rgba(28, 28, 28, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.floorplan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-light-gray);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    gap: 15px;
}

.floorplan-type {
    font-size: 1.85rem;
    color: var(--color-primary);
}

.floorplan-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.spec-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--color-bg);
    color: var(--color-accent);
    padding: 6px 14px;
    letter-spacing: 0.05em;
}

/* Floor Plan View Switcher */
.floorplan-toggle-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.floorplan-toggle-btn {
    padding: 10px 18px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-color: var(--color-light-gray);
    color: var(--color-text-muted);
    border: 1px solid rgba(122, 139, 123, 0.08);
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 0;
}

.floorplan-toggle-btn:hover {
    color: var(--color-primary);
    background-color: rgba(37, 67, 50, 0.03);
}

.floorplan-toggle-btn.active {
    background-color: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(37, 67, 50, 0.1);
}

.floorplan-visual-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: var(--color-bg);
    padding: 20px;
    border: 1px dashed var(--color-gold);
    transition: var(--transition-fast);
}

.floorplan-visual-wrapper:hover {
    border-color: var(--color-primary);
}

.floorplan-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.floorplan-img.switching {
    opacity: 0.15;
    transform: scale(0.98);
}

.lightbox-hover-hint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 67, 50, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-primary);
    opacity: 0;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 600;
}

.floorplan-visual-wrapper:hover .lightbox-hover-hint {
    opacity: 1;
}

.floorplan-footer-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--color-light-gray);
    padding-top: 30px;
    text-align: center;
}

.footer-feat-item {
    border-right: 1px solid var(--color-light-gray);
}

.footer-feat-item:last-child {
    border-right: none;
}

.feat-val {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    color: var(--color-gold);
    line-height: 1;
}

.feat-lbl {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 6px;
    font-weight: 500;
}

/* ==========================================================================
   9. LOCATION BENEFITS
   ========================================================================== */
.proximity-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 24px;
    width: 1px;
    height: calc(100% + 10px);
    background-color: var(--color-light-gray);
    z-index: 1;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-gold);
    margin-top: 6px;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--color-bg);
}

.timeline-content {
    flex-grow: 1;
}

.timeline-title {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.map-card-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--color-light-gray);
    height: 350px;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.map-card-wrapper:hover .map-img {
    transform: scale(1.04);
}

.map-overlay-hint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    font-weight: 600;
}

.map-card-wrapper:hover .map-overlay-hint {
    opacity: 1;
}

/* ==========================================================================
   10. CONTACT SECTION & FOOTER
   ========================================================================== */
.contact-section {
    background-color: var(--color-secondary);
    color: var(--color-white);
    position: relative;
}

.contact-headline {
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    color: var(--color-white);
    line-height: 1.1;
}

.contact-details-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.35);
    border-left-color: rgba(255, 255, 255, 0.25);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 
        0 16px 36px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.detail-icon {
    color: var(--color-gold);
    margin-top: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.detail-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.5;
}

/* Advisory Links Layout */
.advisory-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    align-items: center;
    margin-top: 2px;
}

.advisory-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.advisory-link:hover {
    color: var(--color-gold);
}

.advisory-separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Luxury Enquiry Form - Liquid Glass Apple Style */
.contact-form-wrapper {
    position: relative;
}

.luxury-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: saturate(200%) blur(40px);
    -webkit-backdrop-filter: saturate(200%) blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top-color: rgba(255, 255, 255, 0.55);
    border-left-color: rgba(255, 255, 255, 0.35);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.45s ease;
}

.luxury-form:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

/* Specular shimmer for the form */
.luxury-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.00) 35%,
        rgba(255, 255, 255, 0.18) 48%,
        rgba(200, 183, 156, 0.12) 52%,
        rgba(255, 255, 255, 0.00) 65%,
        transparent 100%
    );
    animation: liquidShimmer 3.2s cubic-bezier(0.4, 0, 0.6, 1) 1.2s 1 forwards;
    pointer-events: none;
    z-index: 1;
}

.luxury-form:hover::before {
    animation: liquidShimmer 1.4s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

/* Subtle prism overlay for form */
.luxury-form::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        rgba(200, 230, 255, 0.04) 0%,
        rgba(255, 220, 180, 0.03) 40%,
        rgba(200, 255, 210, 0.03) 70%,
        rgba(220, 200, 255, 0.04) 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* Form inputs styling match */
.luxury-form > * {
    position: relative;
    z-index: 2;
}

.form-input {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--color-white);
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-sans);
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 1.85rem;
    color: var(--color-white);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.form-input {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: var(--color-white);
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.select-input {
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.select-input option {
    background-color: #1e1e1e; /* Dark fallback background for select dropdown */
    color: var(--color-white);
}

.textarea-input {
    resize: none;
    min-height: 100px;
}

/* Form Submit Button and Spinner */
#btn-submit {
    position: relative;
}

.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--color-white);
    animation: spin 0.8s linear infinite;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.luxury-form.loading #btn-submit .btn-text {
    visibility: hidden;
}

.luxury-form.loading #btn-submit .btn-spinner {
    display: block;
}

/* Form Success Overlay */
.form-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.form-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    color: var(--color-white);
}

.success-content svg {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.success-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* Main Footer */
.main-footer {
    background: rgba(18, 26, 22, 0.85); /* Deep luxury glass tint */
    backdrop-filter: saturate(150%) blur(25px);
    -webkit-backdrop-filter: saturate(150%) blur(25px);
    color: rgba(255, 255, 255, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 80px 0 120px 0; /* Extra bottom padding for sticky bar */
    box-shadow: 
        0 -10px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-logo {
    font-size: 1.4rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
    line-height: 1.1;
    font-weight: 500;
}

.footer-tagline {
    font-size: 0.58rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-top: 4px;
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    max-width: 380px;
    margin-top: 15px;
}

.rera-badge {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    background-color: rgba(200, 183, 156, 0.08);
    border: 1px solid rgba(200, 183, 156, 0.2);
    padding: 10px 14px;
    margin-top: 25px;
}

.badge-icon {
    color: var(--color-gold);
    font-weight: bold;
}

.badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-links-list,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
}

.contact-icon {
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-text {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-white);
}

/* Footer Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legal-link {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-link:hover {
    color: var(--color-gold);
}

.separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
}

/* ==========================================================================
   INTERACTIVE LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 28, 28, 0.95);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   INTERACTIVE 3D VIRTUAL TOUR MODAL (Solid Matte for Mobile)
   ========================================================================== */
.virtual-tour-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212;
    z-index: 2050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.virtual-tour-modal.active {
    opacity: 1;
    visibility: visible;
}

.tour-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--color-white);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 0.5;
    z-index: 2060;
    transition: var(--transition-fast);
    padding: 10px;
}

.tour-close-btn:hover {
    color: var(--color-gold);
    transform: scale(1.1);
}

.tour-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.tour-header {
    background-color: #1a1a1a;
    padding: 30px 20px 20px 20px;
    text-align: center;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-title {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.tour-subtitle {
    font-size: 0.8rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

.panorama-viewer-wrapper {
    flex: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #000;
    display: flex;
    align-items: center;
}

.panorama-viewer {
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.panorama-viewer::-webkit-scrollbar {
    display: none;
}

.panorama-inner {
    position: relative;
    width: 2400px;
    height: 100%;
}

.panorama-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Pulsing Hotspots */
.tour-hotspot {
    position: absolute;
    width: 36px;
    height: 36px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-dot {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--color-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(200, 183, 156, 0.8);
    transition: var(--transition-fast);
}

.tour-hotspot:hover .hotspot-dot {
    background-color: var(--color-white);
    transform: translate(-50%, -50%) scale(1.2);
}

.tour-hotspot::after {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: hotspot-ripple 2s infinite ease-out;
    pointer-events: none;
}

@keyframes hotspot-ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

/* Info Detail Panel (Solid Matte) */
.tour-info-panel {
    background-color: var(--color-bg);
    border-top: 1px solid rgba(200, 183, 156, 0.25);
    padding: 24px 20px 30px 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.info-panel-title {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin-bottom: 8px;
    transition: opacity 0.25s ease-in-out;
}

.info-panel-desc {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    transition: opacity 0.25s ease-in-out;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--color-white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 0.5;
    z-index: 2002;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-content-container {
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-image-wrapper {
    transition: transform 0.1s ease-out;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper:active {
    cursor: grabbing;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-controls {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    z-index: 2001;
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-btn:hover {
    background: var(--color-gold);
    color: var(--color-secondary);
    border-color: var(--color-gold);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay classes for staggered entrances */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE-FIRST)
   ========================================================================== */

/* Tablets (min-width: 768px) */
@media (min-width: 768px) {
    :root {
        --spacing-md: 24px;
        --spacing-lg: 40px;
        --spacing-xl: 80px;
        --spacing-xxl: 120px;
    }

    .mt-20 { margin-top: 20px; }
    .mt-30 { margin-top: 30px; }
    .mt-50 { margin-top: 50px; }

    .developer-bio-card {
        padding: 40px;
    }

    .story-img {
        height: 400px;
    }

    .dev-img {
        height: 420px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floorplan-card {
        padding: 50px;
    }

    .floorplan-header {
        flex-direction: row;
        align-items: center;
    }

    .floorplan-specs {
        flex-direction: row;
        gap: 12px;
        width: auto;
    }

    .floorplan-footer-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-feat-item {
        border-right: 1px solid var(--color-light-gray);
        border-bottom: none;
        padding-bottom: 0;
    }

    .hero-actions {
        flex-direction: row;
        gap: var(--spacing-md);
        width: auto;
    }

    .hero-actions .btn {
        width: auto;
    }

    .luxury-form {
        padding: 50px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-title {
        font-size: 1.35rem;
    }

    .map-card-wrapper {
        height: 500px;
    }

    .map-views-container {
        height: 400px;
    }

    .lightbox-close {
        top: 30px;
        right: 40px;
    }
}

/* Desktops (min-width: 992px) */
@media (min-width: 992px) {
    .grid-split {
        grid-template-columns: 1fr 1fr;
    }

    .reverse-mobile {
        display: grid;
    }

    .dev-visual {
        margin-bottom: 0; /* Reset mobile margin on desktop */
    }

    .story-image-column {
        padding: 30px;
    }

    .story-img {
        height: 600px;
    }

    .dev-img {
        height: 550px;
    }

    .nav-logo {
        height: 48px; /* Reduced for a sleek, minimalist look */
    }

    .navbar.scrolled .nav-logo {
        height: 40px; /* Reduced on scroll */
    }

    .navbar .nav-links {
        display: flex;
    }

    .navbar .nav-cta {
        display: block;
    }

    .mobile-nav-toggle {
        display: none;
    }

    .hero-section {
        padding: 160px 0 80px 0; /* Pushes the entire hero content down on desktop to clear the header */
    }

    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center; /* Balanced vertical centering of content */
        margin-top: 50px; /* Shifts content lower for a premium distributed feel */
        padding-bottom: 60px;
        gap: 0;
    }

    .hero-text {
        max-width: 650px;
    }

    .hero-glass-card {
        width: 380px;
        padding: 30px;
    }

    .hero-scroll-indicator {
        display: flex;
    }

    .lifestyle-block {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-xxl);
    }

    .lifestyle-block.reverse {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .lifestyle-block.reverse .lifestyle-visual {
        order: 2;
    }

    .lifestyle-block.reverse .lifestyle-desc {
        order: 1;
        padding-right: var(--spacing-lg);
        padding-left: 0;
    }

    .lifestyle-visual {
        height: 500px;
    }

    .lifestyle-desc {
        padding-left: var(--spacing-lg);
    }

    .commercial-box {
        max-width: 600px;
        padding: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-bottom-flex {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Large Desktops (min-width: 1200px) */
@media (min-width: 1200px) {
    :root {
        --spacing-xl: 100px;
        --spacing-xxl: 160px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   FLOATING & STICKY CTA ACTIONS (WHATSAPP & CALL)
   ========================================================================== */
.mobile-sticky-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(247, 245, 241, 0.72); /* Semi-transparent premium Ivory tint */
    backdrop-filter: blur(15px) saturate(140%);
    -webkit-backdrop-filter: blur(15px) saturate(140%);
    border-top: 1px solid rgba(212, 175, 55, 0.25); /* Warm gold hairline top divider */
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px 16px 16px; /* Shifted lower by reducing paddings to save screen estate */
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.06);
    z-index: 1002; /* Always on top of menu and nav */
}

.sticky-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    border: none;
    transition: var(--transition-smooth);
    border-radius: 4px; /* Soft premium corners */
}

.sticky-action-btn svg {
    transition: var(--transition-smooth);
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.2); /* Tinted WhatsApp green glass */
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(37, 211, 102, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #25D366;
}

.btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.35);
    color: #26f276;
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-call {
    background: rgba(39, 66, 52, 0.25); /* Tinted Primary green glass */
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 10px rgba(39, 66, 52, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--color-gold);
}

.btn-call:hover {
    background: rgba(39, 66, 52, 0.4);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

/* Desktop Floating WhatsApp Widget */
.desktop-floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(37, 211, 102, 0.15); /* Tinted glass */
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    color: #25D366; /* Neon WhatsApp green for the icon */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 15px rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 999;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.08);
    background: rgba(37, 211, 102, 0.25);
    color: #26f276;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 0 25px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hide / Show Sticky Actions based on Viewport */
@media (min-width: 992px) {
    .mobile-sticky-actions {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar {
        background: rgba(247, 245, 241, 0.45) !important; /* Translucent glass background on load */
        backdrop-filter: saturate(180%) blur(25px) !important;
        -webkit-backdrop-filter: saturate(180%) blur(25px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    }
    
    .navbar.scrolled {
        background: rgba(247, 245, 241, 0.65) !important; /* Still translucent on scroll (not solid white) */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    }
    
    .nav-container {
        margin: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 10px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .nav-logo {
        height: 44px !important;
        width: auto !important;
        border-radius: 0 !important;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }  
    
    .mobile-menu-header {
        grid-column: span 2;
        display: flex;
        justify-content: space-between !important; /* Logo on left, close button on opposite right side */
        align-items: center;
        padding-bottom: 12px;
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(28, 28, 28, 0.08);
    }
    
    .mobile-menu-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .reverse-mobile {
        display: flex !important;
        flex-direction: column-reverse !important;
    }

    /* Mobile Footer Centering and Alignment */
    .footer-logo-wrapper {
        justify-content: center !important;
    }
    
    .footer-brand-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .rera-badge {
        display: flex !important;
        max-width: 100% !important;
        justify-content: center !important;
        margin: 20px auto 0 auto !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    
    .footer-col-title {
        text-align: center !important;
    }
    
    .footer-col-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .footer-links-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 20px !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    
    .footer-links-list li {
        text-align: center !important;
        display: block !important;
    }

    .footer-contact-list {
        align-items: center !important;
        padding: 0 !important;
    }
    
    .footer-link {
        text-align: center !important;
    }
    
    .footer-link:hover {
        transform: translateY(-2px) !important;
    }
    
    .contact-item {
        justify-content: center !important;
        text-align: center !important;
    }

    .footer-phone-container {
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .footer-phone-separator {
        color: rgba(255, 255, 255, 0.3) !important;
        font-size: 0.85rem !important;
        font-weight: normal !important;
    }
    
    .footer-legal-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 12px !important;
    }
}
}

/* ==========================================================================
   INTERACTIVE MAP CARD
   ========================================================================== */
.map-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-top-color: rgba(255, 255, 255, 0.75);
    border-left-color: rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(28, 28, 28, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    overflow: hidden;
    margin-top: 20px;
}

.map-tabs {
    display: flex;
    background: var(--color-light-gray);
    border: 1px solid rgba(37, 67, 50, 0.05);
    padding: 6px;
    border-radius: 8px;
    margin: 20px;
    gap: 8px;
}

.map-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.map-tab-btn:hover {
    color: var(--color-primary);
    background-color: rgba(37, 67, 50, 0.03);
}

.map-tab-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(37, 67, 50, 0.12);
}

.map-views-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.map-view-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: var(--color-bg);
}

.map-view-panel.active {
    opacity: 1;
    pointer-events: auto;
}

.map-view-panel iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-actions {
    padding: 15px;
    background: var(--color-bg);
    border-top: 1px solid rgba(122, 139, 123, 0.08);
}

.get-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    padding: 14px 20px;
}

/* Mobile-Specific Refinement (Preventing text zoom & image stretching) */
@media (max-width: 991px) {
    .hero-section {
        padding: 85px 0 20px 0; /* Tightened padding to fit screen on mobile */
        min-height: calc(100vh - 60px);
        display: flex;
        align-items: center;
    }
    
    .hero-pretitle {
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    .hero-headline {
        margin-bottom: 12px;
        font-size: clamp(1.6rem, 4.5vw + 0.8rem, 2.2rem); /* Slightly more compact font size */
        line-height: 1.25;
    }
    
    .hero-subheadline {
        margin-bottom: 20px;
        font-size: 1.0rem; /* Tighter layout fit */
    }
    
    .hero-content {
        gap: 15px; /* Reduced gap between text and card */
    }

    .hero-glass-card {
        padding: 16px 18px; /* Slightly larger padding for better luxury framing */
        margin-top: 15px;
        background: rgba(255, 255, 255, 0.15) !important; /* Brighter, more visible glass sheet on mobile */
        border: 1px solid rgba(255, 255, 255, 0.32) !important;
        border-top-color: rgba(255, 255, 255, 0.70) !important;
        box-shadow: 
            0 15px 35px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.50) !important;
    }
    
    .glass-card-header {
        padding-bottom: 10px;
        margin-bottom: 10px;
        gap: 12px;
    }
    
    .glass-card-header .glass-card-logo {
        width: 44px;
        height: 44px;
        padding: 4px;
    }
    
    .glass-card-tag {
        font-size: 0.9rem;
    }
    
    .glass-card-body {
        gap: 6px;
    }
    
    .glass-detail-row {
        font-size: 0.75rem;
    }

    /* Convert horizontal reveal transitions to vertical on mobile to prevent Safari viewport pan bugs */
    .reveal-left {
        transform: translateY(30px);
    }
    .reveal-right {
        transform: translateY(30px);
    }
}

/* Premium Preloader Layout & Animations */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F8F6F2; /* Luxury Ivory color matching page background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.preloader-logo {
    height: 110px;
    width: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: preloaderLogoFade 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-bar-container {
    width: 160px;
    height: 1.5px;
    background-color: rgba(37, 67, 50, 0.08);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background-color: var(--color-gold);
    animation: preloaderProgressBar 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloaderLogoFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloaderProgressBar {
    to {
        width: 100%;
    }
}

body.loading {
    overflow: hidden;
}

/* Mobile-specific enhancements for form and contact details (Site address & phone cards) */
@media (max-width: 576px) {
    .luxury-form {
        padding: 28px 20px !important;
        border-radius: 16px !important;
    }
    .form-title {
        font-size: 1.5rem !important;
        margin-bottom: 22px !important;
    }
    .form-row {
        margin-bottom: 16px !important;
    }
    .contact-details-list {
        gap: 16px !important;
        margin-top: 30px !important;
    }
    .detail-item {
        padding: 16px !important;
        border-radius: 12px !important;
        gap: 12px !important;
    }
    .detail-value {
        font-size: 0.95rem !important;
    }
    .advisory-links-container {
        gap: 4px 8px !important;
    }
    .advisory-link {
        font-size: 0.88rem !important;
    }
}

