/* ==========================================================================
   VENUS PARK - PREMIUM LIGHT LUXURY DESIGN SYSTEM
   ========================================================================== */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Core Styling Tokens */
:root {
    /* Color Palette */
    --color-gold: #c5a059;
    --color-gold-light: #e6d3af;
    --color-gold-dark: #8b6b2f;
    --color-bronze: #9c6d3e;
    --color-dark: #1e150b;
    --color-charcoal: #2d2112;
    --color-bg-base: #f9f7f2;
    /* Warm Alabaster */
    --color-bg-surface: #f2ede3;
    --color-bg-card: #ffffff;
    --color-text-main: #3e3223;
    --color-text-muted: #7e6e5a;
    --color-text-light: #ffffff;
    --color-success: #4a6b53;

    /* Gradients */
    --grad-gold: linear-gradient(135deg, #d4af37 0%, #b38e4b 50%, #8b6b2f 100%);
    --grad-bronze: linear-gradient(135deg, #9c6d3e 0%, #684521 100%);
    --grad-dark: linear-gradient(135deg, #2d2112 0%, #1e150b 100%);
    --grad-light: linear-gradient(180deg, #ffffff 0%, #f9f7f2 100%);
    --grad-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%);
    --grad-gold-text: linear-gradient(90deg, #b38e4b 0%, #d4af37 50%, #8b6b2f 100%);

    /* Shadows & Glows */
    --shadow-sm: 0 4px 12px rgba(62, 50, 35, 0.05);
    --shadow-md: 0 12px 30px rgba(62, 50, 35, 0.08);
    --shadow-lg: 0 20px 45px rgba(62, 50, 35, 0.12);
    --glow-gold: 0 0 25px rgba(197, 160, 89, 0.35);
    --glow-inset: inset 0 1px 1px rgba(255, 255, 255, 0.4);

    /* Borders */
    --border-gold-alpha: rgba(197, 160, 89, 0.22);
    --border-dark-alpha: rgba(45, 33, 18, 0.08);

    /* Layout Tokens */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-full: 100px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border: 3px solid var(--color-bg-base);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-dark);
}

/* Typography Scales */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    font-size: 1rem;
    color: var(--color-text-muted);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

/* Focus Outline Style */
a:focus-visible,
button:focus-visible,
input:focus,
select:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* Common Layout Container */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ==========================================================================
   PREMIUM BUTTON & BADGE STYLES - ENHANCED
   ========================================================================== */
.btn-premium {
    background: var(--grad-gold);
    color: var(--color-text-light);
    padding: 15px 36px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-bronze);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 40px rgba(197, 160, 89, 0.35);
}

.btn-premium:hover::before {
    opacity: 1;
}

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

.btn-icon-arrow {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
}

.btn-premium:hover .btn-icon-arrow {
    transform: translateX(6px);
}

.gold-badge {
    background: rgba(197, 160, 89, 0.09);
    border: 1.5px solid rgba(197, 160, 89, 0.3);
    padding: 7px 18px;
    border-radius: var(--radius-full);
    color: var(--color-gold-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.gold-badge:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.5);
}

.gold-caps-badge {
    color: var(--color-gold-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.gold-caps-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--color-gold);
}

/* ==========================================================================
   NAVIGATION STICKY HEADER - PREMIUM REDESIGN
   ========================================================================== */
#main-header {
    position: absolute;
    top: 24px;
    right: 0%;
    transform: translateX(-50%);
    width: auto;
    max-width: 900px;
    height: 70px;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-radius: 50px;
    box-shadow: none;
    border: none;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

/* On scroll, move to right, add background and border effects */
#main-header.scrolled {
    position: fixed;
    top: 16px;
    left: auto;
    right: 24px;
    transform: none;
    width: auto;
    max-width: 900px;
    height: 65px;
    background: rgba(250, 248, 245, 0.96);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50px;
    box-shadow: 0 12px 50px rgba(62, 50, 35, 0.15);
    border: 1.5px solid rgba(197, 160, 89, 0.3);
    padding: 0 44px;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.header-logo {
    display: none;
}

.header-logo img {
    display: none;
}

/* Logo positioned at top left of hero section */
.hero-logo {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
}

.hero-logo img {
    height: 80px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: height;
}

/* Schedule Visit button at top right of hero section */
.hero-schedule-btn {
    position: absolute;
    top: 28px;
    right: 24px;
    z-index: 1001;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float-btn,
.customize-scope-btn {
    position: fixed;
    z-index: 1100;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float-btn {
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #ffffff;
    font-size: 1.4rem;
    border-radius: 50%;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.25);
    animation: whatsapp-pulse 2.8s infinite ease-in-out;
}

.whatsapp-float-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.35);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 18px 35px rgba(37, 211, 102, 0.25);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 24px 52px rgba(37, 211, 102, 0.32);
    }
}

.customize-scope-btn {
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(100%);
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-dark);
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    box-shadow: 0 20px 45px rgba(62, 50, 35, 0.12);
    backdrop-filter: blur(18px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.customize-scope-btn.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.customize-scope-btn:hover {
    transform: translateX(-50%) translateY(0) scale(1.02);
    box-shadow: 0 24px 54px rgba(62, 50, 35, 0.20);
}

.nav-menu {
    display: none;
    /* Hidden on mobile */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 48px;
    align-items: center;
    white-space: nowrap;
}

.nav-link-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
    white-space: nowrap;
}

.nav-link-item:hover {
    color: var(--color-gold-dark);
}

.nav-link-item.active {
    color: var(--color-dark);
    font-weight: 600;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.btn-nav-cta {
    display: none;
    /* Show only on desktop screen sizes */
    padding: 12px 28px;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.35);
}

/* Hamburger toggle styling - Premium */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    z-index: 1001;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
    will-change: transform, opacity, background-color;
}

/* Hamburger drawer open state lines are modified in JS or via drawer classes */

/* ==========================================================================
   MOBILE DRAWER NAVIGATION - PREMIUM REDESIGN
   ========================================================================== */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--color-bg-base);
    box-shadow: -10px 0 50px rgba(62, 50, 35, 0.2);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-gold-alpha);
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.drawer-logo {
    height: 40px;
    width: auto;
}

.drawer-close-btn {
    font-size: 2.2rem;
    color: var(--color-text-muted);
    line-height: 1;
}

.drawer-close-btn:hover {
    color: var(--color-dark);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: auto;
}

.drawer-link-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    color: var(--color-text-muted);
    display: block;
    padding: 8px 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.drawer-link-item::before {
    content: '';
    position: absolute;
    left: -15px;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    top: 50%;
    transform: translateY(-50%);
}

.drawer-link-item:hover {
    color: var(--color-gold-dark);
    transform: translateX(8px);
}

.drawer-link-item:hover::before {
    width: 8px;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid var(--border-gold-alpha);
    padding-top: 30px;
}

.drawer-contact-link {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.drawer-contact-link i {
    color: var(--color-gold);
    margin-right: 8px;
}

.drawer-contact-link:hover {
    color: var(--color-dark);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 33, 18, 0.4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   HERO SECTION — PREMIUM REDESIGN
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: linear-gradient(135deg, #f5f2eb 0%, #faf8f3 100%);
    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-bg-container {
    display: none;
}

.hero-bg-img {
    display: none;
}

.hero-bg-overlay {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

/* ---- Hero Content (left panel) ---- */
.hero-content {
    max-width: 100%;
    color: var(--color-text-main);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fadeInSoft {
    from {
        opacity: 0;
        filter: blur(3px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fadeInSlow {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fadeOutSoft {
    from {
        opacity: 1;
        filter: blur(0);
    }
    to {
        opacity: 0;
        filter: blur(4px);
    }
}

.fade-in-quick {
    animation: fadeIn 0.6s ease both;
}

.fade-in-slow {
    animation: fadeInSlow 1.4s ease both;
}

.fade-out-soft {
    animation: fadeOutSoft 0.6s ease both;
}

/* Small badge above title */
.hero-tagline-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(197, 160, 89, 0.08);
    border: 1.5px solid rgba(197, 160, 89, 0.25);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.8s ease forwards;
}

.hero-tagline-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmerBadge 4s ease-in-out infinite 1.5s;
}

@keyframes shimmerBadge {
    0% { left: -100%; }
    60% { left: 100%; }
    100% { left: 100%; }
}

.gold-badge {
    background: transparent;
    border: none;
    padding: 0;
    color: var(--color-gold-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
}

.badge-dot {
    width: 5px;
    height: 5px;
    background: rgba(197, 160, 89, 0.7);
    border-radius: 50%;
    flex-shrink: 0;
}

.tagline-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Main heading — elegant typography */
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.4rem);
    color: var(--color-dark);
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    font-weight: 700;
    animation: fadeIn 1s ease 0.15s forwards;
    opacity: 0;
}

.hero-title .text-gradient {
    background: linear-gradient(110deg, #b38e4b 0%, #c5a059 35%, #d4af37 70%, #8b6b2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: goldPulse 6s ease-in-out infinite;
    display: inline;
}

@keyframes goldPulse {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-title .text-secondary {
    color: var(--color-dark);
    font-weight: 700;
}

/* Description with improved spacing */
.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: var(--color-text-muted);
    max-width: 540px;
    margin-bottom: 42px;
    line-height: 1.8;
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

/* CTA Buttons row */
.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 0;
    animation: fadeIn 1s ease 0.45s forwards;
    opacity: 0;
}

.btn-outline-gold {
    background: transparent;
    color: var(--color-gold-dark);
    border: 2px solid var(--color-gold);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-gold);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-gold:hover {
    color: var(--color-text-light);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(197, 160, 89, 0.3);
    color:white !important;
}

.btn-outline-gold:hover::before {
    opacity: 1;
}

.btn-icon-pdf {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover .btn-icon-pdf,
.btn-outline-gold:hover .btn-icon-pdf {
    transform: translateY(-2px);
}

/* ---- Right side hero image panel ---- */
.hero-image-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease 0.25s forwards;
    opacity: 0;
}

.hero-img-card {
    width: 100%;
    max-width: 500px;
    height: 480px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(62, 50, 35, 0.18);
    border: 1.5px solid rgba(197, 160, 89, 0.15);
    position: relative;
    background: var(--color-bg-card);
}

.hero-img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
    border-radius: 32px;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    transform: scale(1);
}

.hero-img-card:hover img {
    transform: scale(1.04);
    filter: brightness(1.05);
}

/* Floating achievement badge */
.hero-achievement-badge {
    position: absolute;
    bottom: 24px;
    right: 0;
    background: white;
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 45px rgba(62, 50, 35, 0.22);
    min-width: 240px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.2);
    animation: float 3.5s ease-in-out infinite;
}

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

.achievement-badge-icon {
    width: 48px;
    height: 48px;
    background: var(--grad-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.achievement-badge-text h4 {
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

.achievement-badge-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
    font-weight: 500;
}

/* ---- Hero Quick Stats — Individual white cards below hero ---- */
.hero-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 0;
}

.quick-stat-item {
    background: white;
    border: 1.5px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(62, 50, 35, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.quick-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.4), transparent);
}

.quick-stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(197, 160, 89, 0.18);
    border-color: rgba(197, 160, 89, 0.25);
}

.stat-icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(197, 160, 89, 0.08);
    border: 1.5px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-stat-item:hover .stat-icon-circle {
    background: var(--grad-gold);
    color: white;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

.quick-stat-text h3 {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
}

.quick-stat-text p {
    font-size: 0.8rem;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
    font-weight: 600;
}

/* Stats section wrapper below hero */
.hero-stats-section {
    background: linear-gradient(135deg, #f5f2eb 0%, #faf8f3 100%);
    padding: 0 0 80px;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Scroll indicator - Enhanced */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    opacity: 0.5;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s ease;
    text-decoration: none;
}

.hero-scroll-hint:hover {
    opacity: 0.9;
    transform: translateX(-50%) translateY(-4px);
}

.scroll-hint-line {
    width: 2px;
    height: 45px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

.scroll-hint-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    font-weight: 600;
}

/* ==========================================================================
   COMMON SECTION HEADER
   ========================================================================== */
.section-header {
    max-width: 750px;
    margin-bottom: 60px;
}

.section-header.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--color-gold-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.accent-line {
    width: 60px;
    height: 3px;
    background: var(--grad-gold);
    margin-bottom: 25px;
    border-radius: 2px;
}

.section-header.align-center .accent-line {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
}

/* ==========================================================================
   PROJECT HIGHLIGHTS SECTION
   ========================================================================== */
.highlights-section {
    background: var(--color-bg-base);
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.highlight-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold-alpha);
}

.highlight-card:hover::after {
    transform: scaleX(1);
}

.highlight-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.highlight-card:hover .highlight-icon-wrap {
    background: var(--grad-gold);
    color: var(--color-text-light);
}

.svg-gold-icon {
    width: 32px;
    height: 32px;
}

.highlight-card-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.highlight-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   AMENITIES & INFRASTRUCTURE SECTION (INTERACTIVE TABS)
   ========================================================================== */
.amenities-section {
    background: var(--color-bg-surface);
}

.amenity-tabs-container {
    width: 100%;
}

.tabs-buttons-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 45px;
}

.tab-btn {
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-muted);
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    background: var(--color-dark);
    color: var(--color-text-light);
    border-color: var(--color-dark);
    box-shadow: var(--shadow-md);
}

.tabs-content-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
}

.tab-pane {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    position: relative;
}

.tab-pane.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.amenity-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.amenity-list-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.amenity-item-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-card);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border-gold-alpha);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.amenity-text h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.amenity-text p {
    font-size: 0.95rem;
}

.amenity-visual-panel {
    width: 100%;
}

.visual-img-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gold-alpha);
    aspect-ratio: 4 / 3;
}

.visual-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-img-container:hover img {
    transform: scale(1.08);
}

.visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(30, 21, 11, 0.9) 0%, rgba(30, 21, 11, 0) 100%);
    color: var(--color-text-light);
    z-index: 2;
}

.visual-badge {
    background: var(--color-gold);
    font-size: 0.7rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.visual-caption h4 {
    color: var(--color-text-light);
    font-size: 1.3rem;
}

/* ==========================================================================
   LOCATION MATRIX SECTION (INTERACTIVE ACCORDION TIMELINE)
   ========================================================================== */
.location-section {
    background: var(--color-bg-base);
}

.location-matrix-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.proximity-selector-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.proximity-tab-btn {
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-md);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition-smooth);
    width: 100%;
}

.proximity-tab-btn.active {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md), 0 0 15px rgba(197, 160, 89, 0.15);
}

.prox-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.proximity-tab-btn.active .prox-icon {
    background: var(--grad-gold);
    color: var(--color-text-light);
}

.prox-lbl {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.proximity-tab-btn.active .prox-lbl {
    color: var(--color-dark);
}

.proximity-details-panel {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark-alpha);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    min-height: 350px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}

.proximity-pane {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    position: absolute;
    width: 100%;
}

.proximity-pane.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    position: relative;
}

.proximity-pane-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.proximity-pane-intro {
    font-size: 0.95rem;
    margin-bottom: 35px;
}

/* Timeline/Progress representation */
.proximity-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
}

.timeline-landmark {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 1rem;
}

.timeline-bar-wrap {
    height: 8px;
    background: var(--color-bg-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.timeline-bar {
    height: 100%;
    background: var(--grad-gold);
    border-radius: var(--radius-full);
    width: 0%;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-duration {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--color-gold-dark);
    font-size: 0.95rem;
    text-align: left;
}

/* ==========================================================================
   TECHNICAL SPECIFICATIONS SECTION
   ========================================================================== */
.specs-section {
    background: var(--color-bg-surface);
}

.specs-grid-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.spec-card-box {
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.spec-card-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold-alpha);
}

.spec-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.spec-icon-holder {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.spec-card-box:hover .spec-icon-holder {
    background: var(--grad-gold);
    color: var(--color-text-light);
}

.spec-card-top h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

.spec-card-divider {
    height: 1px;
    background: var(--border-gold-alpha);
    margin-bottom: 20px;
}

.spec-card-content h4 {
    font-size: 1.05rem;
    color: var(--color-gold-dark);
    margin-bottom: 8px;
}

.spec-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURED VIDEO SHOWCASE SECTION
   ========================================================================== */
.media-showcase-section {
    background: linear-gradient(135deg, rgba(245, 239, 230, 0.95), rgba(255, 255, 255, 0.96));
}

.ongoing-projects-section {
    background: var(--color-bg-surface);
}

.ongoing-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
    margin-top: 32px;
}

.project-logo-card {
    width: 100%;
    max-width: 360px;
    min-height: 260px;
    padding: 22px 24px;
    border-radius: 28px;
    background: var(--color-bg-card);
    border: 1px solid rgba(197, 160, 89, 0.16);
    box-shadow: 0 20px 40px rgba(30, 21, 11, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-logo-card:hover,
.project-logo-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 28px 50px rgba(30, 21, 11, 0.12);
    border-color: rgba(197, 160, 89, 0.3);
}

.project-logo-card img {
    max-width: 240px;
    max-height: 140px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

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

.media-showcase-card {
    max-width: 1320px;
    margin: 0 auto;
    padding: 30px 24px 26px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255,255,255,0.97), rgba(249,247,242,0.96));
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 30px 80px rgba(30, 21, 11, 0.12);
}

.media-footer-actions {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

/* ==========================================================================
   ACTUAL SITE GALLERY & WALKTHROUGH SECTION
   ========================================================================== */
.gallery-section {
    background: var(--color-bg-base);
}

.video-walkthrough-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-video-player-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}

.featured-video-player-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-badge-overlay-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(30, 21, 11, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.video-playlist-details-wrap {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.playlist-heading h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.playlist-vertical-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.playlist-btn-item {
    background: var(--color-bg-base);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: var(--transition-smooth);
}

.playlist-btn-item.active {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.08);
    box-shadow: var(--shadow-sm);
}

.btn-play-icon {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.playlist-btn-item.active .btn-play-icon {
    color: var(--color-gold-dark);
}

.btn-play-meta h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.btn-play-meta p {
    font-size: 0.8rem;
    margin: 0;
}

.playlist-desc-box {
    background: var(--color-bg-base);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 3px solid var(--color-gold);
}

.playlist-desc-box h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.playlist-desc-box p {
    font-size: 0.85rem;
    margin: 0;
}

/* Masonry site photo gallery */
.gallery-grid-masonry {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--border-dark-alpha);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.4s ease;
}

.masonry-hover-card {
    position: absolute;
    inset: 0;
    background: rgba(30, 21, 11, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
}

.hover-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 15px;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.masonry-hover-card h4 {
    color: var(--color-text-light);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.masonry-hover-card p {
    color: var(--color-gold-light);
    font-size: 0.85rem;
}

.masonry-item:hover img {
    transform: scale(1.05);
    filter: blur(3px);
}

.masonry-item:hover .masonry-hover-card {
    opacity: 1;
}

.masonry-item:hover .hover-icon-circle {
    transform: scale(1);
}

/* ==========================================================================
   MASTER PLAN SECTION (INTERACTIVE BLUEPRINT)
   ========================================================================== */
.masterplan-section {
    background: var(--color-bg-surface);
}

.masterplan-interactive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blueprint-svg-wrapper {
    background: #18130d;
    border: 1.5px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.masterplan-svg {
    width: 100%;
    height: auto;
    max-height: 480px;
}

.road-path {
    transition: fill 0.3s ease;
}

.mp-hotspot {
    cursor: pointer;
    outline: none;
}

.hotspot-rect {
    fill: #221c14;
    stroke: var(--color-gold);
    stroke-width: 1.5px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.mp-hotspot:hover .hotspot-rect {
    fill: var(--color-gold);
    stroke: var(--color-text-light);
    opacity: 0.95;
}

.mp-lbl {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 10px;
    fill: var(--color-gold-light);
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.mp-lbl-large {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 13px;
    fill: var(--color-gold-light);
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.mp-lbl-sm {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 8px;
    fill: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.mp-hotspot:hover .mp-lbl,
.mp-hotspot:hover .mp-lbl-large {
    fill: var(--color-dark);
}

.mp-hotspot:hover .mp-lbl-sm {
    fill: var(--color-dark);
}

.blueprint-info-panel {
    position: relative;
    min-height: 420px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    isolation: isolate;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.info-card-dynamic {
    grid-area: 1 / 1;
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
    z-index: 1;
    position: relative;
}

.info-card-dynamic.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s;
}

.info-card-header {
    margin-bottom: 20px;
}

.info-badge-indicator {
    background: rgba(197, 160, 89, 0.08);
    border: 1.5px solid var(--border-gold-alpha);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    display: inline-block;
    margin-bottom: 10px;
}

.info-card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.info-card-dynamic p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.master-legend-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.road-dot {
    background: #2a231b;
    border: 1px solid var(--color-gold);
}

.clubhouse-dot {
    background: rgba(197, 160, 89, 0.4);
    border: 1.5px solid var(--color-gold);
}

.residential-dot {
    background: #221c14;
    border: 1.5px solid var(--color-gold);
}

.blueprint-stats-table {
    width: 100%;
    border-collapse: collapse;
}

.blueprint-stats-table tr {
    border-bottom: 1px solid var(--border-dark-alpha);
}

.blueprint-stats-table tr:last-child {
    border-bottom: none;
}

.blueprint-stats-table td {
    padding: 12px 0;
    font-size: 0.9rem;
}

.blueprint-stats-table td:first-child {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--color-dark);
}

.blueprint-stats-table td:last-child {
    text-align: right;
    color: var(--color-text-muted);
}

/* ==========================================================================
   PLOT DESIGN PACKAGE SECTION
   ========================================================================== */
.floorplans-section {
    background: var(--color-bg-base);
}

.floorplan-switcher-container {
    width: 100%;
}

.floorplan-tabs-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 45px;
}

.floor-tab-btn {
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.floor-tab-btn.active {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.05);
    box-shadow: var(--shadow-md), 0 0 15px rgba(197, 160, 89, 0.1);
}

.floor-tab-btn h3 {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.floor-tab-btn.active h3 {
    color: var(--color-dark);
}

.floor-tab-btn p {
    font-size: 0.8rem;
    margin-top: 5px;
}

.floorplan-panes-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}

.floor-pane {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    position: relative;
}

.floor-pane.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.floorplan-layout-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

.floorplan-visual-wrap {
    padding: 30px;
    background: var(--color-bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-dark-alpha);
}

.floorplan-visual-wrap img {
    max-height: 380px;
    width: auto;
    border-radius: var(--radius-md);
}

.floorplan-details-wrap {
    padding: 40px 30px;
}

.floorplan-details-header {
    margin-bottom: 30px;
}

.floorplan-details-header h3 {
    font-size: 1.8rem;
    margin: 10px 0 12px;
}

.floorplan-intro {
    font-size: 0.95rem;
}

.floorplan-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.fp-stat-box {
    background: var(--color-bg-base);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-md);
    padding: 15px 20px;
}

.fp-stat-box .lbl {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.fp-stat-box .val {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
    display: block;
    margin-top: 5px;
}

.floorplan-highlights-list {
    margin-bottom: 35px;
}

.floorplan-highlights-list h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.floorplan-highlights-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floorplan-highlights-list li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.floorplan-highlights-list li i {
    color: var(--color-success);
    margin-right: 10px;
}

.floorplan-pricing-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gold-alpha);
}

.price-lbl {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.price-val {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--color-gold-dark);
    display: block;
}

/* ==========================================================================
   PHYSICAL LOCATION MAP SECTION
   ========================================================================== */
.location-map-section {
    background: var(--color-bg-surface);
}

.location-map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.map-iframe-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--color-gold);
    height: 380px;
}

.map-iframe-container iframe {
    width: 100%;
    height: 100%;
}

.location-directions-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
}

.directions-head {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.dir-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--glow-gold);
}

.directions-head h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.directions-head p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.divider-line {
    height: 1px;
    background: var(--border-gold-alpha);
    margin: 25px 0;
}

.directions-body h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.nav-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.nav-steps-list li {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1.5px solid var(--border-gold-alpha);
    color: var(--color-gold-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-txt strong {
    color: var(--color-dark);
}

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

/* ==========================================================================
   CONTACT ENQUIRY SECTION (VIP FORM)
   ========================================================================== */
.contact-enquiry-section {
    background: var(--color-bg-base);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.lead-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--border-gold-alpha);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-lg), var(--glow-gold);
}

.form-header {
    margin-bottom: 35px;
}

.form-badge {
    background: rgba(74, 107, 83, 0.08);
    border: 1px solid rgba(74, 107, 83, 0.25);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    color: var(--color-success);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 0.95rem;
}

.premium-form-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Floating label group */
.form-group-floating {
    position: relative;
    width: 100%;
}

.floating-input {
    width: 100%;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-dark-alpha);
    background: var(--color-bg-base);
    color: var(--color-dark);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.floating-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-input:focus,
.floating-input:not(:placeholder-shown) {
    border-color: var(--color-gold);
    background: var(--color-bg-card);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.08);
    padding-top: 24px;
    padding-bottom: 12px;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
    top: 10px;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--color-gold-dark);
    font-weight: 600;
}

/* Validation states */
.validation-message {
    font-size: 0.75rem;
    color: #b23b3b;
    margin-top: 5px;
    display: none;
}

.form-group-floating.error .floating-input {
    border-color: #b23b3b;
    background: #fdf5f5;
}

.form-group-floating.error .validation-message {
    display: block;
}

/* Premium drop down styling */
.form-group-select {
    position: relative;
    width: 100%;
}

.premium-select {
    width: 100%;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-dark-alpha);
    background: var(--color-bg-base);
    color: var(--color-dark);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.premium-select:focus {
    border-color: var(--color-gold);
    background: var(--color-bg-card);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.08);
}

.select-arrow-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.premium-select:focus~.select-arrow-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--color-gold-dark);
}

.btn-submit-form {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1rem;
}

.btn-whatsapp-icon {
    font-size: 1.25rem;
    margin-left: 8px;
}

/* Developer Brand Info Panel */
.developer-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow-dark {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: 10px;
    display: block;
}

.developer-brand-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.dev-info-head p {
    font-size: 1.05rem;
    margin-bottom: 35px;
}

.company-logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.company-logo-section:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.company-main-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.company-logo-title {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.dev-info-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.info-link-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-dark-alpha);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.info-link-card .card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.08);
    border: 1.5px solid var(--border-gold-alpha);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.card-meta span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 5px;
}

.meta-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-dark);
    display: block;
    margin-bottom: 2px;
    white-space: nowrap;
}

.meta-link:hover {
    color: var(--color-gold-dark);
}

.address-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-main);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: var(--color-dark);
    color: var(--color-text-light);
    border-top: 1px solid var(--color-gold-dark);
    padding: 80px 0 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand-col {
    max-width: 450px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 25px;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links-row {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon-btn:hover {
    background: var(--grad-gold);
    color: var(--color-text-light);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.footer-links-col h4 {
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--color-gold-light);
    padding-left: 5px;
}

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

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.tech-credits {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--color-gold-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   ACTUAL SITE PHOTO GALLERY LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 11, 7, 0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    z-index: 3010;
}

.lightbox-modal-close:hover {
    color: var(--color-text-light);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    z-index: 3010;
}

.lightbox-nav-btn:hover {
    background: var(--color-gold);
    border-color: transparent;
    color: var(--color-text-light);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.lightbox-content-box {
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-content-box img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

#lightbox-image-caption {
    color: var(--color-text-light);
    text-align: center;
    max-width: 600px;
}

#lightbox-image-caption h4 {
    color: var(--color-text-light);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

#lightbox-image-caption p {
    color: var(--color-gold-light);
    font-size: 0.9rem;
}

/* ==========================================================================
   AUTO-TRIGGERED POPUP ENQUIRY MODAL
   ========================================================================== */
.enquiry-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 21, 11, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.enquiry-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.enquiry-modal-content {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border-gold-alpha);
    width: 100%;
    max-width: 520px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg), var(--glow-gold);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.enquiry-modal-overlay.show .enquiry-modal-content {
    transform: scale(1);
}

.enquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10;
    pointer-events: auto !important;
    display: block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    font-family: inherit;
    transform: none !important;
}

.enquiry-modal-close:hover {
    color: var(--color-dark);
    background: rgba(0,0,0,0.06);
    transform: none !important;
}

.enquiry-modal-header {
    margin-bottom: 30px;
}

.enquiry-modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.enquiry-modal-header .modal-subtitle {
    font-size: 0.9rem;
}

.enquiry-modal-body form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (OBSERVER CLASSES)
   ========================================================================== */
.reveal-fade-up,
.reveal-fade-up-delay,
.reveal-fade-up-delay2,
.reveal-fade-up-delay3,
.reveal-scale-up {
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.reveal-fade-up {
    transition-delay: 0s;
}

.reveal-fade-up-delay {
    transition-delay: 0.15s;
}

.reveal-fade-up-delay2 {
    transition-delay: 0.3s;
}

.reveal-fade-up-delay3 {
    transition-delay: 0.45s;
}

.reveal-scale-up {
    transition-delay: 0.2s;
}

/* Stagger indices for grids */
.highlight-card,
.spec-card-box,
.masonry-item {
    opacity: 0;
    transition: opacity 1s ease;
    will-change: opacity;
}

.highlight-card,
.spec-card-box {
    transition-delay: calc(var(--card-index) * 0.1s);
}

/* Animation triggered classes */
.animated.reveal-fade-up,
.animated.reveal-fade-up-delay,
.animated.reveal-fade-up-delay2,
.animated.reveal-fade-up-delay3 {
    opacity: 1;
    animation: fadeInSoft 1.2s ease both;
}

.animated.reveal-scale-up {
    opacity: 1;
    animation: fadeInSoft 1.1s ease both;
}

.animated.highlight-card,
.animated.spec-card-box,
.animated.masonry-item {
    opacity: 1;
    animation: fadeInSoft 1s ease both;
}

/* ==========================================================================
   PREMIUM HOVER EFFECTS SYSTEM
   ========================================================================== */

/* 1. Global Text Hover Animations */
h1:not(.btn-premium *):not(.btn-outline-gold *),
h2:not(.btn-premium *):not(.btn-outline-gold *),
h3:not(.btn-premium *):not(.btn-outline-gold *),
h4:not(.btn-premium *):not(.btn-outline-gold *),
h5:not(.btn-premium *):not(.btn-outline-gold *),
h6:not(.btn-premium *):not(.btn-outline-gold *) {
    transition: color 0.4s ease, transform 0.4s ease, text-shadow 0.4s ease, letter-spacing 0.4s ease;
}

h1:not(.btn-premium *):not(.btn-outline-gold *):hover,
h2:not(.btn-premium *):not(.btn-outline-gold *):hover,
h3:not(.btn-premium *):not(.btn-outline-gold *):hover,
h4:not(.btn-premium *):not(.btn-outline-gold *):hover,
h5:not(.btn-premium *):not(.btn-outline-gold *):hover,
h6:not(.btn-premium *):not(.btn-outline-gold *):hover {
    color: var(--color-gold-dark) !important;
    transform: translateY(-2px);
    text-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
    letter-spacing: -0.01em;
}

p:not(.btn-premium *):not(.btn-outline-gold *) {
    transition: color 0.3s ease, transform 0.3s ease;
}

p:not(.btn-premium *):not(.btn-outline-gold *):hover {
    color: var(--color-dark) !important;
    transform: translateX(2px);
}

span:not(.btn-premium *):not(.btn-outline-gold *),
li:not(.btn-premium *):not(.btn-outline-gold *),
label:not(.btn-premium *):not(.btn-outline-gold *),
strong:not(.btn-premium *):not(.btn-outline-gold *) {
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

span:not(.btn-premium *):not(.btn-outline-gold *):hover,
li:not(.btn-premium *):not(.btn-outline-gold *):hover,
label:not(.btn-premium *):not(.btn-outline-gold *):hover {
    color: var(--color-gold) !important;
}

/* 2. Link Hover Animations */
a {
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: var(--color-gold) !important;
    transform: scale(1.02);
}

/* 3. Image Hover Animations */
img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease, box-shadow 0.6s ease;
    will-change: transform, filter, box-shadow;
}

img:hover {
    transform: scale(1.05) !important;
    filter: brightness(1.04) contrast(1.02);
    box-shadow: 0 10px 25px rgba(30, 21, 11, 0.15);
}

/* 4. Section Hover Animations */
section {
    transition: background-color 0.8s ease, box-shadow 0.8s ease, transform 0.8s ease;
    will-change: background-color, box-shadow;
}

section:hover {
    box-shadow: inset 0 0 80px rgba(197, 160, 89, 0.04);
}

/* 5. Card Hover Animations */
.highlight-card,
.spec-card-box,
.masonry-item,
.quick-stat-item,
.info-link-card,
.playlist-btn-item,
.floorplan-layout-card,
.location-directions-card {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease;
    will-change: transform, box-shadow;
}

.highlight-card:hover,
.spec-card-box:hover,
.quick-stat-item:hover,
.info-link-card:hover,
.floorplan-layout-card:hover,
.location-directions-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: var(--shadow-lg), var(--glow-gold) !important;
    border-color: var(--color-gold) !important;
}

.masonry-item:hover {
    transform: scale(1.03) !important;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Portrait & Smaller (768px down) */
@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-logo img {
        height: 60px;
    }


    .specs-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .floorplan-tabs-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Styles (1024px up) */
@media (min-width: 1024px) {

    /* Header: floating pill design - centered nav only */
    #main-header {
        top: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        height: 70px;
        width: auto;
        max-width: 900px;
        border-radius: 50px;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0 40px;
    }

    #main-header.scrolled {
        top: 20px;
        left: auto;
        right: 24px;
        transform: none;
        height: 65px;
        background: rgba(250, 248, 245, 0.568);
        box-shadow: 0 14px 60px rgba(62, 50, 35, 0.16);
        border: 2px solid rgb(185, 131, 29);; 
        width: auto;
        max-width: 1100px;
        border-radius: 50px;
        border: 1.5px solid rgba(197, 160, 89, 0.3);
    }

    .nav-container {
        padding: 0;
        gap: 50px;
    }

    /* Header: floating pill design */
    .nav-menu {
        display: block;
    }

    .nav-links {
        gap: 30px;
    }

    .btn-nav-cta {
        display: inline-flex;
    }

    .hamburger-btn {
        display: none;
    }

    /* Hero layout: 2-column split */
    .hero-section {
        padding-top: 140px;
        min-height: 95vh;
    }

    .hero-container {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 70px;
        align-items: center;
        max-width: 1440px;
        margin: 0 auto;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-img-card {
        height: 540px;
        max-width: 100%;
    }

    /* Hero stats — 3-column horizontal on desktop */
    .hero-quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Highlights layout */
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    /* Amenities layout */
    .tabs-buttons-row {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .tab-btn {
        font-size: 1.05rem;
        padding: 18px 35px;
    }

    .amenity-showcase-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }

    /* Location Proximity */
    .location-matrix-container {
        grid-template-columns: 350px 1fr;
        gap: 50px;
        align-items: start;
    }

    .timeline-row {
        grid-template-columns: 250px 1fr 60px;
        gap: 20px;
    }

    .timeline-duration {
        text-align: right;
    }

    /* Video and gallery layout */
    .video-walkthrough-container {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .gallery-grid-masonry {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Master Plan layout */
    .masterplan-interactive-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 50px;
        align-items: center;
    }

    /* Floor Plan layouts */
    .floorplan-layout-card {
        grid-template-columns: 1fr 1fr;
    }

    .floorplan-visual-wrap {
        border-bottom: none;
        border-right: 1px solid var(--border-dark-alpha);
        padding: 40px;
    }

    .floorplan-details-wrap {
        padding: 50px;
    }

    .floorplan-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floorplan-pricing-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Map layout */
    .location-map-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: stretch;
    }

    .map-iframe-container {
        height: auto;
    }

    /* Form & contact layout */
    .contact-grid-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        align-items: start;
    }

    .dev-info-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-link-card.full-row {
        grid-column: span 2;
    }

    /* Footer layout */
    .footer-top-row {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
    }

    .footer-bottom-row {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Large Screens (1440px up) */
@media (min-width: 1440px) {
    .gallery-grid-masonry {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-container {
        max-width: 1480px;
        margin: 0 auto;
    }
}

/* Tablet Portrait & Smaller (768px down) */
@media (min-width: 768px) and (max-width: 1023px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .specs-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .gallery-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .floorplan-tabs-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .hero-quick-stats {
        gap: 18px;
    }

    .quick-stat-item {
        padding: 26px 18px;
    }
}

/* Medium screens: hero image visible but stacked */
@media (min-width: 640px) and (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-img-card {
        max-width: 480px;
        height: 420px;
        margin: 0 auto;
    }

    .hero-image-panel {
        align-items: center;
    }

    .hero-achievement-badge {
        right: 0;
        bottom: 20px;
    }

    .hero-section {
        padding-top: 110px;
        min-height: auto;
    }
}

/* Extra small screens */
@media (max-width: 640px) {
    #main-header {
        height: 75px;
        padding: 0 16px;
    }

    .header-logo img {
        height: 60px;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-img-card {
        height: 360px;
        max-width: 100%;
        border-radius: 24px;
    }

    .hero-achievement-badge {
        padding: 12px 16px;
        min-width: 220px;
        font-size: 0.9rem;
    }

    .achievement-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .achievement-badge-text h4 {
        font-size: 0.95rem;
    }

    .achievement-badge-text p {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .hero-cta-buttons {
        gap: 12px;
    }

    .btn-premium,
    .btn-outline-gold {
        padding: 13px 28px;
        font-size: 0.85rem;
    }

    .hero-quick-stats {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
        padding: 0 12px;
    }

    .quick-stat-item {
        padding: 24px 16px;
    }

    .hero-scroll-hint {
        bottom: 28px;
    }

    .customize-scope-btn {
        font-size: 0.7rem;
        padding: 10px 20px;
    }
}

/* Absolute Small Screens (360px down and landscape overrides) */
@media (max-width: 360px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-premium,
    .btn-outline-gold {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

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

    .hero-tagline-wrap {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* ==========================================================================
   FEATURED YOUTUBE MEDIA SHOWCASE SLIDER
   ========================================================================== */
.media-showcase-section {
    background: linear-gradient(135deg, rgba(245, 239, 230, 0.94), rgba(255, 255, 255, 0.98));
    overflow: hidden;
    padding: 60px 0; /* reduced from global section padding to remove excess space */
}

.media-showcase-card {
    position: relative;
    width: 100%;
    padding: 18px 16px 8px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 242, 0.96));
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 18px 46px rgba(30, 21, 11, 0.08);
}

.media-slider-shell {
    position: relative;
    width: 100%;
}

.media-slider-frame {
    position: relative;
    width: 100%;
    padding: 0 74px;
    box-sizing: border-box;
}

.media-slider-viewport {
    position: relative;
    width: 100%;
    min-height: 380px; /* reduced to remove excess blank space */
    overflow: visible;
    border-radius: 24px;
    padding: 8px 0 12px;
}

.media-slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(58vw, 700px);
    max-width: 700px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) scale(0.9);
    transform-origin: center center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, visibility 0.45s ease, filter 0.45s ease;
    z-index: 1;
    will-change: transform, opacity;
    pointer-events: none;
}

.media-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    z-index: 10;
    pointer-events: auto;
    filter: none;
}

.media-slide.is-prev,
.media-slide.is-next {
    opacity: 0.86;
    visibility: visible;
    transform: translateX(-50%) scale(0.84) perspective(1000px) rotateY(8deg);
    filter: saturate(0.92) brightness(0.9);
    z-index: 5;
    pointer-events: auto;
}

.media-slide.is-prev {
    left: 22%;
}

.media-slide.is-next {
    left: 78%;
    transform: translateX(-50%) scale(0.84) perspective(1000px) rotateY(-8deg);
}

.media-slide-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(30, 21, 11, 0.12);
    border: 2px solid rgba(197, 160, 89, 0.16);
    background: #000;
    transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}

.media-slide-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 25%, rgba(0,0,0,0.18) 100%);
    pointer-events: none;
}

.media-slide.is-active .media-slide-screen {
    border-color: var(--color-gold);
    box-shadow: 0 28px 55px rgba(30, 21, 11, 0.22), var(--glow-gold);
    transform: translateY(-2px) scale(1.01);
}

.media-slide.is-prev .media-slide-screen,
.media-slide.is-next .media-slide-screen {
    box-shadow: 0 18px 38px rgba(30, 21, 11, 0.14);
}

.youtube-player-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.youtube-player-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #000;
}

.unmute-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(18, 12, 4, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid var(--color-gold);
    color: var(--color-text-light);
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 15;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    animation: unmute-pulse 2.4s infinite ease-in-out;
    white-space: nowrap;
}

.unmute-overlay-btn:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    box-shadow: var(--glow-gold);
    transform: translate(-50%, -50%) scale(1.02);
}

.media-slide.is-unmuted .unmute-overlay-btn {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

@keyframes unmute-pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(197, 160, 89, 0.2); }
    50% { box-shadow: 0 8px 38px rgba(197, 160, 89, 0.55); }
}

.media-slide-info {
    display: none;
}

.media-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(197, 160, 89, 0.2);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 25;
    box-shadow: 0 12px 28px rgba(30, 21, 11, 0.12);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.media-slider-nav:hover {
    background: var(--grad-gold);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--glow-gold);
    transform: translateY(-50%) scale(1.06);
}

.media-slider-nav-prev {
    left: 8px;
}

.media-slider-nav-next {
    right: 8px;
}

.media-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.media-slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.media-slider-dots button.active {
    background: var(--color-gold);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.55);
}

.media-footer-actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

@media (max-width: 1023px) {
    .media-slider-frame {
        padding: 0 58px;
    }

    .media-slider-viewport {
        min-height: 420px;
    }

    .media-slide {
        width: min(72vw, 680px);
    }

    .media-slide.is-prev {
        left: 20%;
    }

    .media-slide.is-next {
        left: 80%;
    }

    .media-slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .media-slider-nav-prev { left: 6px; }
    .media-slider-nav-next { right: 6px; }
}

@media (max-width: 640px) {
    .media-slider-frame {
        padding: 0 44px;
    }

    .media-slider-viewport {
        min-height: 200px;
        overflow: visible;
    }

    .media-slide {
        width: min(82vw, 620px);
    }

    .media-slide.is-prev {
        left: 16%;
    }

    .media-slide.is-next {
        left: 84%;
    }

    .hero-logo img {
        height: 64px;
    }

    .hero-schedule-btn {
        display: none;
    }

    .drawer-cta {
        margin: 24px 0;
    }

    .drawer-schedule-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        padding: 16px 18px;
        border-radius: 28px;
        font-size: 0.95rem;
        text-align: center;
    }
}

    .media-slider-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .media-slider-nav-prev { left: 4px; }
    .media-slider-nav-next { right: 4px; }

    .media-slide-info h3 { font-size: 1.2rem; }
    .media-slide-info p { font-size: 0.82rem; }
    .unmute-overlay-btn { padding: 9px 18px; font-size: 0.82rem; }
}