/* ========================================
   TATVA BY TRADEPROP - PREMIUM GOLDEN LUXURY THEME
   ======================================== */

/* CSS VARIABLES - GOLDEN LUXURY PALETTE */
:root {
    /* Golden Colors */
    --primary-gold: #D4AF37;
    --rich-gold: #B8860B;
    --dark-gold: #7A5212;
    --light-gold: #F4E6A1;
    --champagne: #F7F3E9;
    
    /* Supporting Colors */
    --luxury-black: #121212;
    --charcoal: #222222;
    --pearl-white: #F8F5ED;
    --ivory: #F5F1E6;
    --bronze: #B87333;
    
    /* Accent Colors */
    --emerald: #50C878;
    --ruby: #E0115F;
    --sapphire: #0F52BA;
    
    /* Enhanced Typography System */
    --font-primary: 'Playfair Display', 'Times New Roman', serif;
    --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    
    /* Fluid Typography Scale - Modular Scale (1.250) */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);      /* 12-13px */
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 0.9rem);    /* 14-15px */
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.1rem);        /* 16-18px */
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);     /* 18-20px */
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);      /* 20-24px */
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);       /* 24-30px */
    --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.25rem);  /* 30-36px */
    --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);       /* 36-48px */
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);           /* 48-64px */
    --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);         /* 60-80px */
    --text-7xl: clamp(4.5rem, 3.5rem + 5vw, 6rem);           /* 72-96px */
    
    /* Line Heights - Optimized for readability */
    --leading-none: 1;
    --leading-tight: 1.1;
    --leading-snug: 1.2;
    --leading-normal: 1.4;
    --leading-relaxed: 1.6;
    --leading-loose: 1.8;
    
    /* Letter Spacing - Precise tracking */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    --tracking-ultra: 0.15em;
    
    /* Font Weights - Complete range */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    
    /* Typography Spacing - Vertical rhythm */
    --space-xs: 0.25rem;    /* 4px */
    --space-sm: 0.5rem;     /* 8px */
    --space-md: 1rem;       /* 16px */
    --space-lg: 1.5rem;     /* 24px */
    --space-xl: 2rem;       /* 32px */
    --space-2xl: 3rem;      /* 48px */
    --space-3xl: 4rem;      /* 64px */
    --space-4xl: 6rem;      /* 96px */
    
    /* Luxury Shadows */
    --shadow-soft: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-medium: 0 8px 32px rgba(212, 175, 55, 0.25);
    --shadow-bold: 0 16px 48px rgba(212, 175, 55, 0.35);
    --shadow-inset: inset 0 2px 8px rgba(212, 175, 55, 0.2);
    
    /* Luxury Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #996515 100%);
    --gradient-gold-soft: linear-gradient(135deg, #F4E6A1 0%, #D4AF37 100%);
    --gradient-dark: linear-gradient(135deg, #1C1C1C 0%, #2C2C2C 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(28, 28, 28, 0.8) 0%, rgba(212, 175, 55, 0.2) 100%);
}

/* ========================
   LOGO STYLES - ENHANCED
   ======================== */

/* Base Logo Image */
.logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent;
    transition: transform 0.3s ease;
}

/* ===========================
   LOADING SCREEN LOGO - LARGE
   =========================== */
.loading-screen .golden-logo {
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    width: 280px;
    height: 280px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite ease-in-out;
}

.loading-screen .logo-icon {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
}

@keyframes pulse {
    0% { transform: scale(0.98); }
    50% { transform: scale(1.02); }
    100% { transform: scale(0.98); }
}

/* Navigation Logo - Smaller and Subtle */
.nav-brand .golden-logo {
    width: 50px;
    height: 50px;
    margin: 0;
}

.nav-brand .logo-icon {
    padding: 5px;
}

/* Navigation Logo - More Prominent */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon .golden-t {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

/* Footer Logo - Larger and Clean */
.footer-logo {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.footer-logo .golden-t {
    width: 64px;
    height: 64px;
    display: block;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.logo-img:hover,
.brand-icon .golden-t:hover .logo-img,
.footer-logo .golden-t:hover .logo-img {
    transform: scale(1.05);
}

/* Global Overrides */
.golden-t, 
.golden-logo,
.brand-icon,
.logo-icon,
.footer-logo,
.footer-logo .golden-t {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .golden-logo {
        width: 130px;
        height: 130px;
    }
    
    .brand-icon .golden-t {
        width: 42px;
        height: 42px;
    }
    
    .footer-logo .golden-t {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .golden-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .logo-icon {
        padding: 10px;
    }
    
    .brand-icon .golden-t {
        width: 36px;
        height: 36px;
    }
    
    .footer-logo {
        margin-right: 15px;
    }
    
    .footer-logo .golden-t {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .golden-logo {
        width: 90px;
        height: 90px;
    }
    
    .brand-icon .golden-t {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo .golden-t {
        width: 42px;
        height: 42px;
    }
}


/* Golden sparkle overlay: only hovered area glows, no blur */
.art-title {
    position: relative;
}
.art-title::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(70px 70px at var(--mx) var(--my), rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.35) 40%, transparent 60%);
    mix-blend-mode: screen; /* white highlight over golden text */
    transition: opacity 0.1s ease;
}
.art-title:hover::after {
    opacity: 1;
}

/* Nudge hero content slightly downward */
.spectacular-hero .art-hero {
    margin-top: 28vh; /* doubled: push headline much further down */
}

@media (max-width: 768px) {
    .spectacular-hero .art-hero {
        margin-top: 16vh; /* doubled on mobile */
    }
}

/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    /* Keep smooth scroll; per-section offsets handled via scroll-margin */
}
/* Offset for fixed nav when navigating to the hero section */
#home { scroll-margin-top: 100px; }

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--luxury-black);
    background-color: var(--pearl-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ENHANCED TYPOGRAPHY SYSTEM
   ======================================== */

/* Base Typography Reset */
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--luxury-black);
    background-color: var(--pearl-white);
    overflow-x: hidden;
    font-weight: var(--font-normal);
    letter-spacing: var(--tracking-normal);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--pearl-white);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    margin-bottom: 1.5rem;
    letter-spacing: var(--tracking-wide);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: var(--text-6xl);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tighter);
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--text-4xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-normal);
    margin-bottom: var(--space-md);
}

h4 {
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-normal);
    letter-spacing: var(--tracking-normal);
    margin-bottom: var(--space-sm);
}

h5 {
    font-size: var(--text-2xl);
    font-weight: var(--font-medium);
    line-height: var(--leading-normal);
    letter-spacing: var(--tracking-normal);
    margin-bottom: var(--space-sm);
}

h6 {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
    line-height: var(--leading-normal);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-sm);
}

/* Paragraph Styles */
p {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--champagne);
    margin-bottom: var(--space-md);
    font-weight: var(--font-light);
    letter-spacing: var(--tracking-normal);
    max-width: 65ch; /* Optimal reading width */
}

/* Lead Paragraph */
.lead {
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
    color: var(--champagne);
    font-weight: var(--font-normal);
    margin-bottom: var(--space-lg);
}

/* Small Text */
small, .text-small {
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--champagne);
    opacity: 0.8;
}

/* Inline Elements */
span {
    font-family: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

strong, b {
    font-weight: var(--font-semibold);
    color: var(--luxury-black);
}

em, i {
    font-style: italic;
    font-family: var(--font-primary);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
}

a:hover:not(.social-link):not(.nav-link) {
    color: var(--primary-gold);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Lists */
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    font-family: var(--font-secondary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--champagne);
    margin-bottom: var(--space-xs);
    padding-left: var(--space-md);
    position: relative;
}

ul li::before {
    content: "•";
    color: var(--primary-gold);
    font-weight: var(--font-bold);
    position: absolute;
    left: 0;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
    padding-left: var(--space-xl);
}

ol li::before {
    content: counter(item) ".";
    color: var(--primary-gold);
    font-weight: var(--font-bold);
    position: absolute;
    left: 0;
    min-width: var(--space-md);
}

/* Text Sizes */
.text-xl {
    font-size: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

/* Text Colors */
.text-gold {
    color: var(--primary-gold);
}

.text-luxury {
    color: var(--luxury-black);
}

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

.text-muted {
    color: var(--charcoal);
    opacity: 0.8;
}

.golden-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CUSTOM CURSOR */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0.5;
}

/* LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f5f2 0%, #f5f0e8 50%, #f0ebe0 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: #5A4A00;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-bold);
    animation: pulse 2s infinite;
}

.nav-brand .brand-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: #2C2416; /* Warmer dark color */
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.loading-text {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2em;
    color: #7A5C00;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.loading-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #8A7C40;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 500;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFE8A0 0%, #FFD54F 50%, #FFC107 100%);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(255, 213, 79, 0.5);
    animation: loading 3s ease-out forwards;
}

/* NAVIGATION */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFDF0; /* Warm yellowish-white */
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.golden-t {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.brand-info h1 {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--pearl-white);
    margin-bottom: var(--space-xs);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

.brand-tagline {
    font-size: 0.7rem;
    color: #B8860B; /* Slightly darker gold for better contrast */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    font-weight: 500;
}

.nav-center .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #4A4238; /* Warmer dark color for better contrast */
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.2;
}

.nav-link:hover {
    color: var(--dark-gold);
    background-color: rgba(212, 175, 55, 0.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease, width 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    background: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    color: #2C2416; /* Darker text for better contrast */
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(180, 150, 45, 0.25);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.nav-phone:hover {
    background: #C19A5B; /* Warmer gold on hover */
    border-color: #B8860B;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(180, 150, 45, 0.4);
    color: #2C2416;
}

.premium-cta {
    background: var(--gradient-gold);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}

.premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Navigation buttons - equal width */
.nav-actions .premium-cta {
    min-width: 160px;
    justify-content: center;
    text-align: center;
}

.nav-actions .premium-cta span {
    flex: 1;
    text-align: center;
}

/* ========================================
   HERO TITLE HOVER EFFECTS
   ======================================== */

/* Make both Experience and Luxury text white by default */
.section-title .typography-hover {
    color: white !important;
    transition: all 0.4s ease;
    text-shadow: none;
}

/* Override golden-text class to make Luxury white too */
.section-title .golden-text.typography-hover {
    color: white !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    background-clip: unset !important;
}

/* Golden glow effect on hover for both Experience and Luxury text */
.section-title .typography-hover:hover {
    color: var(--primary-gold) !important;
    -webkit-text-fill-color: var(--primary-gold) !important;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3),
        0 0 50px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
}

/* HERO SECTION - Enhanced Color Grading */
.spectacular-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--pearl-white);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(180, 140, 20, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.03) 0%, transparent 80%);
}

/* Enhanced Platonic Hero Mode with Cinematic Color Grading */
.platonic-hero .bg-image {
    filter: 
        contrast(1.15) 
        brightness(0.65) 
        saturate(1.1) 
        sepia(8%) 
        hue-rotate(15deg) 
        drop-shadow(0 0 30px rgba(212, 175, 55, 0.1));
    transform: scale(1.05);
}

.platonic-hero .bg-overlay {
    background: 
        /* Main cinematic overlay with warm tones */
        linear-gradient(180deg, 
            rgba(8, 6, 4, 0.94) 0%, 
            rgba(12, 8, 6, 0.85) 30%, 
            rgba(15, 10, 8, 0.88) 70%, 
            rgba(8, 6, 4, 0.96) 100%
        ),
        /* Golden accent gradients */
        radial-gradient(800px 400px at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        radial-gradient(600px 300px at 70% 80%, rgba(180, 140, 20, 0.06) 0%, transparent 60%),
        /* Subtle vignette effect */
        radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.3) 100%);
}

.platonic-hero .floating-particles {
    opacity: 0.45;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23D4AF37" opacity="0.4"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23F4E6A1" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="1" fill="%23B8860B" opacity="0.5"><animate attributeName="opacity" values="0.5;0.9;0.5" dur="2s" repeatCount="indefinite"/></circle><circle cx="60" cy="50" r="0.8" fill="%23D4AF37" opacity="0.3"><animate attributeName="opacity" values="0.3;0.7;0.3" dur="5s" repeatCount="indefinite"/></circle></svg>') repeat;
    filter: blur(0.5px);
}

.platonic-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
    background-size: 80px 80px, 80px 80px;
    mask-image: radial-gradient(closest-side, rgba(0,0,0,0.4), transparent 80%);
    pointer-events: none;
    opacity: 0.6;
}

/* Additional atmospheric layer */
.platonic-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(180, 140, 20, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(244, 230, 161, 0.02) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* ========================================
   CLUB RESORT SHOWCASE SECTION
   ======================================== */

.club-resort-showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--pearl-white) 0%, var(--ivory) 100%);
    position: relative;
    overflow: hidden;
}

.club-resort-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(180, 140, 20, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.resort-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.resort-hero {
    position: relative;
}

.resort-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.resort-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.resort-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.resort-image-container:hover .resort-main-image {
    transform: scale(1.05);
}

.resort-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.2) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.resort-image-container:hover .resort-overlay {
    opacity: 1;
}

.resort-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.resort-play-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--luxury-black);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    backdrop-filter: blur(10px);
}

.resort-play-btn:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.resort-play-btn i {
    font-size: 16px;
    color: var(--primary-gold);
}

.resort-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.resort-feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.resort-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-image {
    position: relative;
    height: 120px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.resort-feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(180, 140, 20, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.resort-feature-card:hover .feature-overlay {
    opacity: 1;
}

.feature-overlay i {
    font-size: 24px;
    color: white;
}

.feature-info {
    padding: 20px;
}

.feature-info h4 {
    font-size: var(--text-lg);
    color: var(--luxury-black);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-info p {
    font-size: var(--text-sm);
    color: var(--charcoal);
    opacity: 0.8;
    line-height: var(--leading-normal);
}

.resort-amenities-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 60px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.amenity-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    text-align: center;
}

.amenity-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.amenity-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.amenity-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--luxury-black);
    margin-bottom: 2px;
}

.amenity-desc {
    font-size: var(--text-sm);
    color: var(--charcoal);
    opacity: 0.7;
}

.resort-cta-section {
    background: linear-gradient(135deg, var(--luxury-black), var(--charcoal));
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resort-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(180, 140, 20, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.resort-cta-content {
    position: relative;
    z-index: 2;
}

.resort-cta-content h3 {
    font-size: var(--text-3xl);
    color: white;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.resort-cta-content p {
    font-size: var(--text-lg);
    color: var(--pearl-white);
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resort-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.resort-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.resort-btn.primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--rich-gold));
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.resort-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.resort-btn.secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.resort-btn.secondary:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .resort-showcase-grid {
        gap: 40px;
    }
    
    .resort-amenities-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .amenity-highlight {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 968px) {
    .resort-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .resort-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resort-amenities-bar {
        flex-direction: column;
        gap: 25px;
    }
    
    .amenity-highlight {
        flex-basis: 100%;
        justify-content: center;
    }
    
    .resort-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .resort-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .club-resort-showcase {
        padding: 80px 0;
    }
    
    .resort-main-image {
        height: 300px;
    }
    
    .resort-cta-section {
        padding: 40px 20px;
    }
}

.platonic-hero .hero-title { letter-spacing: var(--tracking-tight); }
.platonic-hero .hero-kicker { letter-spacing: var(--tracking-normal); }
.platonic-hero .hero-subtitle { opacity: 0.92; }

.platonic-hero .hero-cta.primary {
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 100%);
    border: 1px solid rgba(255,255,255,0.2);
}

.platonic-hero .hero-cta.secondary,
.platonic-hero .hero-cta.ghost {
    border-color: rgba(255,255,255,0.3);
}

.hero-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/4.jpg') center/cover no-repeat; /* full-screen cover */
    background-attachment: fixed;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23D4AF37" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="%23D4AF37" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="4s" repeatCount="indefinite"/></circle><circle cx="30" cy="70" r="1" fill="%23D4AF37" opacity="0.4"><animate attributeName="opacity" values="0.4;1;0.4" dur="2s" repeatCount="indefinite"/></circle></svg>') repeat;
    opacity: 0.6;
    animation: float 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--pearl-white);
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Artistic Hero Redesign */
.art-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.hero-topline {
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.85);
}

.art-title {
    font-family: var(--font-primary);
    font-size: clamp(2.75rem, 4vw + 1rem, 6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    /* Sparkle variables */
    --mx: 50%;
    --my: 50%;
    /* Default text appearance: simple solid white */
    color: #FFFFFF;
}

.art-title .line { display: block; }
.art-title .gold { color: transparent; background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; }
.art-title .amp { font-family: var(--font-secondary); letter-spacing: 0.2em; font-size: 0.6em; opacity: 0.9; }
/* Redesigned headline accents */
.art-title.redesigned .emerald {
    color: var(--emerald);
    text-shadow: 0 2px 8px rgba(80, 200, 120, 0.25);
}
.art-title.redesigned .converge {
    color: transparent;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0.08em;
}

.art-subtitle {
    font-size: var(--text-lg);
    opacity: 0.9;
    letter-spacing: var(--tracking-wide);
}

.art-ctas { display: flex; gap: var(--space-md); flex-wrap: wrap; justify-content: center; }

.hero-meta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.meta-item { font-size: var(--text-sm); letter-spacing: var(--tracking-wide); }
.meta-item span { color: var(--primary-gold); font-weight: 700; margin-right: 6px; }
.meta-divider { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); }

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    padding: 12px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.luxury-badge i {
    color: var(--primary-gold);
}

.hero-title {
    font-size: var(--text-7xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-2xl);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tighter);
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.title-line {
    display: block;
    margin-bottom: var(--space-sm);
    position: relative;
    overflow: hidden;
}

.title-line:last-child {
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 0.7rem;
    color: #FFFFFF; /* Changed to white */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.2;
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    font-weight: 500;
    margin-bottom: var(--space-3xl);
    text-align: center;
    opacity: 0.95;
}

/* Premium hero refinements */
.hero-title-premium .title-line {
    display: block;
}

.hero-kicker {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-secondary);
    font-size: var(--text-lg);
    letter-spacing: var(--tracking-wide);
    margin-top: var(--space-sm);
    margin-bottom: var(--space-md);
}

.hero-stats-premium .stat-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(8px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: var(--primary-gold);
    opacity: 0.5;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: none;
}

.hero-cta.primary {
    /* Apply glassy luxury consultant style */
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.30);
    backdrop-filter: blur(12px);
    color: var(--pearl-white);
    box-shadow: var(--shadow-medium);
}

.hero-cta.glassy {
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.08) 100%);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-bold);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(212, 175, 55, 0.5);
}

.hero-cta.ghost:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-bold);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(212, 175, 55, 0.5);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--pearl-white);
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.hero-cta.ghost {
    /* Match glassy style */
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(212, 175, 55, 0.30);
    backdrop-filter: blur(12px);
    color: var(--pearl-white);
}

.hero-cta.secondary:hover {
    background: var(--primary-gold);
    color: white;
}

/* PROPERTIES SECTION */
.luxury-properties {
    padding: 100px 0;
    background: var(--ivory);
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.intro-badge {
    display: inline-block;
    background: var(--gradient-gold-soft);
    color: var(--dark-gold);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-snug);
    letter-spacing: var(--tracking-tight);
    margin-bottom: var(--space-lg);
    text-align: center;
    position: relative;
}

.section-title span {
    display: block;
    margin-bottom: var(--space-xs);
}

.section-title span:last-child {
    margin-bottom: 0;
}

.section-subtitle {
    font-size: var(--text-lg);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--charcoal);
    opacity: 0.85;
    max-width: 65ch;
    margin: 0 auto var(--space-2xl);
    text-align: center;
    letter-spacing: var(--tracking-normal);
}

.properties-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.property-masterpiece {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
}

.property-masterpiece:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-bold);
}

.property-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-masterpiece:hover .property-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-masterpiece:hover .image-overlay {
    opacity: 1;
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 5;
}

.property-badge.luxury {
    background: var(--gradient-gold);
}

.property-badge.exclusive {
    background: linear-gradient(135deg, var(--emerald) 0%, #228B22 100%);
}

.property-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.property-masterpiece:hover .property-hover-content {
    opacity: 1;
}

.explore-btn {
    background: var(--gradient-gold);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-bold);
}

.property-details {
    padding: 30px;
}

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

.property-header h3 {
    font-size: 1.5rem;
    color: var(--luxury-black);
}

.property-rating {
    color: var(--primary-gold);
    font-size: 1rem;
}

.property-description {
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.6;
}

.property-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--primary-gold);
}

.property-pricing {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price-main {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.price-note {
    color: var(--charcoal);
    font-size: 0.9rem;
    opacity: 0.8;
}


/* AMENITIES SECTION */
.luxury-amenities,
.revolutionary-amenities {
    padding: 100px 0;
    background-color: var(--ivory);
    /* Subtle fixed gold grid texture */
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.06) 1px, transparent 1px),
        radial-gradient(800px 400px at 50% 0%, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0) 60%);
    background-size: 60px 60px, 60px 60px, 100% 100%;
    background-attachment: fixed, fixed, fixed; /* pattern remains stationary */
}

.amenities-revolution {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 80px;
}

.amenities-navigation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
}

.nav-item:hover,
.nav-item.active {
    background: var(--gradient-gold-soft);
}

.nav-icon {
width: 60px;
height: 60px;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.5rem;
box-shadow: var(--shadow-soft);
flex-shrink: 0;
}

.nav-content h4 {
font-size: 1.2rem;
color: var(--luxury-black);
margin-bottom: 5px;
}

.nav-content p {
color: var(--charcoal);
font-size: 0.9rem;
opacity: 0.8;
}

.amenities-showcase {
position: relative;
min-height: 500px;
}

.showcase-content {
display: none;
opacity: 0;
transform: translateY(20px);
transition: all 0.5s ease;
}

.showcase-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.showcase-visual {
    position: relative;
    height: 400px;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
}

.showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0.3;
}

.showcase-details h3 {
    font-size: 2rem;
    color: var(--luxury-black);
    margin-bottom: 25px;
}

.amenity-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.feature-tag i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-tag span {
    font-weight: 600;
    color: var(--luxury-black);
}

.amenities-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.amenity-tab {
    background: white;
    border: 2px solid transparent;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: var(--shadow-soft);
}

.amenity-tab:hover,
.amenity-tab.active {
    background: var(--gradient-gold);
    color: white;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.amenity-content {
    display: none;
}

.amenity-content.active {
    display: block;
}

.amenity-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-feature {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.amenity-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-image {
    width: 100%;
    height: 200px;
    background: var(--champagne);
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-info h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--luxury-black);
}

.feature-info p {
    color: var(--charcoal);
    line-height: 1.6;
}

/* New equal-grid amenities layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.amenity-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 340px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.amenity-image,
.amenity-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.amenity-image img {
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

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

.amenity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}

/* Remove dark film for the sticky showcase variant */
.amenities-grid.showcase-scroll .amenity-overlay {
    display: none;
    background: transparent;
}

.amenity-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff;
}

/* Hide captions for the sticky showcase variant */
.amenities-grid.showcase-scroll .amenity-info {
    display: none;
}

.amenity-info h4 {
    margin: 0 0 6px 0;
    font-size: 1.4rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.amenity-info p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}

/* Scroll-driven one-at-a-time amenities showcase */

/* Stacked sticky showcase: each card fills the viewport and the next scrolls over it */
.amenities-grid.showcase-scroll {
    display: block;
    margin-top: 0;
}

.amenities-grid.showcase-scroll .amenity-card {
    position: sticky;
    top: 0;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
    transition: box-shadow 400ms ease, filter 400ms ease, opacity 400ms ease;
    overflow: hidden;
}

/* Per-card vertical motion controlled via --shiftY set by JS */
/* Frame the image smaller and allow random offset/rotation */
.amenities-grid.showcase-scroll .amenity-card .amenity-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--imgW, min(72vw, 820px));
    height: var(--imgH, min(60vh, 560px));
    transform: translate(calc(-50% + var(--randX, 0px)), calc(-50% + var(--randY, 0px))) rotate(var(--randR, 0deg)) scale(var(--randS, 1));
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.amenities-grid.showcase-scroll .amenity-card .amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.6s ease;
}

.amenities-grid.showcase-scroll .amenity-card.is-active {
    opacity: 1;
    filter: none;
}

/* Reduce spacing and height on smaller screens for smooth scroll */
@media (max-width: 992px) {
    .amenities-grid.showcase-scroll .amenity-card {
        height: 100vh;
    }
    .amenities-grid.showcase-scroll .amenity-card .amenity-image {
        width: min(88vw, 640px);
        height: min(60vh, 480px);
        border-radius: 16px;
    }
}

@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .amenity-card {
        height: 280px;
    }
}

/* ========================================
   ENHANCED GALLERY SECTION
   ======================================== */

.immersive-gallery {
    padding: 100px 0;
    background: var(--pearl-white);
    position: relative;
    overflow: hidden;
}

.immersive-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

/* Enhanced Filter Pills */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-pill {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: var(--tracking-wide);
    position: relative;
    overflow: hidden;
}

.filter-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-pill:hover,
.filter-pill.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.filter-pill:hover::before,
.filter-pill.active::before {
    left: 0;
}

.filter-pill i {
    font-size: 1rem;
}

/* Gallery Showcase Layout */
.gallery-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

/* Mosaic grid for dynamic 15-image layout */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: 180px;
    gap: 16px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: transform 300ms ease, filter 300ms ease;
}

.mosaic-item:hover img {
    transform: scale(1.05);
    filter: none;
}

/* Size variants for visual rhythm */
.mosaic-item.wide { grid-column: span 2; }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.large { grid-column: span 2; grid-row: span 2; }

@media (max-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        grid-auto-rows: 140px;
    }
}

/* Cinematic spotlight overlay */

/* Disable spotlight darkness for a cleaner, brighter look */
.immersive-gallery .gallery-spotlight {
    display: none !important;
    opacity: 0 !important;
}

.immersive-gallery.spotlight-active .gallery-spotlight {
    opacity: 1;
}

/* Hover color reveal and gentle depth */

/* Keep images vivid (no grayscale) */
.gallery-piece .piece-image img {
    filter: none;
    transform: translateZ(0);
    transition: transform 350ms ease, filter 350ms ease;
}

.gallery-piece:hover .piece-image img {
    filter: none;
    transform: scale(1.03);
}

/* Subtle parallax tilt container */
.gallery-piece .piece-image {
    will-change: transform;
    transition: transform 200ms ease;
}

/* Cinematic filmstrip at the bottom */
.gallery-filmstrip {
    position: relative;
    margin-top: 10px;
    overflow: hidden;
    padding: 8px 0;
}

.filmstrip-track {
    display: flex;
    align-items: center;
    gap: 12px;
    will-change: transform;
    animation: filmstrip-scroll 28s linear infinite;
}

.filmstrip-item {
    flex: 0 0 180px;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.filmstrip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: filter 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.filmstrip-item:hover img {
    filter: none;
}

@keyframes filmstrip-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================
   VISUAL HUB (Video + Floating Images)
   ============================= */
.visual-hub {
    position: relative;
    width: 100%;
    min-height: 560px;
    padding: 40px 0 80px;
}

.visual-hub .video-core {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layout: video and stacked cards side-by-side on large screens */
.visual-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Stacked Cards */
.stacked-cards {
    position: relative;
    height: min(560px, 70vh);
    perspective: 1200px;
    transform-style: preserve-3d;
}

.stacked-cards .card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 88%;
    height: 70%;
    transform: translate(-50%, -50%);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0,0,0,0.18);
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease, filter 300ms ease;
}

.stacked-cards .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fan-out arrangement using nth-child rotations and depths */
.stacked-cards .card:nth-child(odd) { filter: brightness(0.98) saturate(0.98); }
.stacked-cards .card:nth-child(even) { filter: brightness(1.02) saturate(1.02); }

.stacked-cards .card:nth-child(1) { transform: translate(-50%, -50%) rotate(-6deg) translateZ(0px); z-index: 1; }
.stacked-cards .card:nth-child(2) { transform: translate(-50%, -50%) rotate(6deg) translateZ(10px); z-index: 2; }
.stacked-cards .card:nth-child(3) { transform: translate(-50%, -50%) rotate(-4deg) translateZ(20px); z-index: 3; }
.stacked-cards .card:nth-child(4) { transform: translate(-50%, -50%) rotate(4deg) translateZ(30px); z-index: 4; }
.stacked-cards .card:nth-child(5) { transform: translate(-50%, -50%) rotate(-2deg) translateZ(40px); z-index: 5; }
.stacked-cards .card:nth-child(6) { transform: translate(-50%, -50%) rotate(2deg) translateZ(50px); z-index: 6; }
.stacked-cards .card:nth-child(7) { transform: translate(-50%, -50%) rotate(-8deg) translateZ(60px); z-index: 7; }
.stacked-cards .card:nth-child(8) { transform: translate(-50%, -50%) rotate(8deg) translateZ(70px); z-index: 8; }
.stacked-cards .card:nth-child(9) { transform: translate(-50%, -50%) rotate(-5deg) translateZ(80px); z-index: 9; }
.stacked-cards .card:nth-child(10){ transform: translate(-50%, -50%) rotate(5deg)  translateZ(90px); z-index: 10; }
.stacked-cards .card:nth-child(11){ transform: translate(-50%, -50%) rotate(-3deg) translateZ(100px); z-index: 11; }
.stacked-cards .card:nth-child(12){ transform: translate(-50%, -50%) rotate(3deg)  translateZ(110px); z-index: 12; }
.stacked-cards .card:nth-child(13){ transform: translate(-50%, -50%) rotate(-7deg) translateZ(120px); z-index: 13; }
.stacked-cards .card:nth-child(14){ transform: translate(-50%, -50%) rotate(7deg)  translateZ(130px); z-index: 14; }
.stacked-cards .card:nth-child(15){ transform: translate(-50%, -50%) rotate(0deg)  translateZ(140px); z-index: 15; }

/* Hover interaction: lift focus card and fan cards apart */
.stacked-cards:hover .card {
    filter: brightness(0.92) saturate(0.9);
}

.stacked-cards .card:hover {
    transform: translate(-50%, -50%) scale(1.04) rotate(0deg) translateZ(220px) !important;
    box-shadow: 0 28px 64px rgba(0,0,0,0.28);
    filter: none;
    z-index: 50;
}

/* Programmatically highlighted top card during auto-rotation */
.stacked-cards .card.is-top {
    transform: translate(-50%, -50%) rotate(0deg) translateZ(200px) scale(1.02) !important;
    z-index: 48 !important;
    box-shadow: 0 22px 56px rgba(0,0,0,0.24);
    filter: none;
}

/* Small screens: place stack below video and reduce size */
@media (max-width: 1100px) {
    .stacked-cards { height: min(440px, 64vh); }
    .stacked-cards .card { width: 92%; height: 72%; }
}

.visual-hub .video-frame {
    position: relative;
    width: min(880px, 86vw);
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2), 0 8px 24px rgba(212, 175, 55, 0.18);
    background: #000;
}

.visual-hub .video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.visual-hub .floating-cluster {
    position: absolute;
    inset: 0;
    z-index: 10; /* above video */
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 140px; /* default, overridden inline */
    height: 140px; /* default, overridden inline */
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,0.16), 0 0 0 rgba(212,175,55,0.0);
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
    transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
    will-change: transform, filter, opacity;
    opacity: 0.9;
    z-index: 20; /* ensure above frame */
    animation:
        drift var(--dur, 12s) ease-in-out var(--delay, 0s) infinite alternate,
        glowPulse 3.5s ease-in-out calc(var(--delay, 0s) * -1) infinite alternate,
        floatFade 6s ease-in-out calc(var(--delay, 0s) * -1) infinite alternate;
}

.float-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(var(--bright, 1)) saturate(var(--sat, 0.95)) contrast(1.03);
    transition: transform 220ms ease, filter 220ms ease;
}

/* Shape variants */
.shape-circle { border-radius: 999px; }
.shape-soft { border-radius: 22px; }
.shape-squircle { border-radius: 30% / 24%; }
.shape-diamond { transform: translate(-50%, -50%) rotate(45deg); }
/* Additional shapes */
.shape-hex {
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
}
.shape-triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.shape-blob {
    clip-path: path('M45.8 -50.4C58.9 -40.4 66.6 -23.4 68.2 -6.6C69.8 10.2 65.3 26.8 55.3 41.6C45.3 56.5 29.8 69.6 12.6 72.9C-4.6 76.1 -23.6 69.6 -36.7 58.2C-49.8 46.8 -56.9 30.6 -60.5 13.4C-64.2 -3.9 -64.5 -22 -56.3 -36.2C-48.1 -50.3 -31.4 -60.5 -14.1 -64.9C3.3 -69.2 20.7 -67.8 45.8 -50.4Z');
}

/* Gentle drifting */
@keyframes drift {
    0%   { transform: translate(calc(var(--x) * 1px), calc(var(--y) * 1px)) rotate(var(--rot, 0deg)); }
    100% { transform: translate(calc(var(--x) * 1px + var(--dx, 16px)), calc(var(--y) * 1px + var(--dy, -16px))) rotate(calc(var(--rot, 0deg) + var(--drot, 6deg))); }
}

/* Soft golden glow pulsing */
@keyframes glowPulse {
    0%   { box-shadow: 0 10px 28px rgba(0,0,0,0.16), 0 0 0 rgba(212,175,55,0.0); }
    100% { box-shadow: 0 14px 34px rgba(0,0,0,0.18), 0 0 26px rgba(212,175,55,0.35); }
}

/* Gentle opacity breathing */
@keyframes floatFade {
    0%   { opacity: 0.78; }
    100% { opacity: 1; }
}

/* Interactive brighten on hover/touch */
.float-item:hover img {
    transform: scale(1.06);
    filter: brightness(calc(var(--bright, 1) * 1.06)) saturate(calc(var(--sat, 0.95) * 1.12)) contrast(1.06);
}
.float-item:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.22), 0 0 34px rgba(212,175,55,0.45);
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .visual-hub { min-height: 520px; }
    .visual-hub .video-frame { width: min(92vw, 720px); }
}

@media (max-width: 600px) {
    .visual-hub { min-height: 480px; }
    .visual-hub .video-frame { width: 94vw; border-radius: 14px; }
}

/* Only-video layout */
.gallery-showcase.only-video {
    grid-template-columns: 1fr;
}

/* Featured Video */
.gallery-featured {
    /* Do not force spanning two rows; let content define height */
    grid-row: auto;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-bold);
    transition: all 0.3s ease;
    align-self: start;
}

.gallery-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.featured-video {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    background: transparent; /* remove black background around iframe */
    border-radius: 25px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 50%;
    width: 177.78%; /* 16:9 cover: 100 / 56.25 * 100% */
    height: 100%;
    transform: translateX(-50%);
    border: none;
    border-radius: 25px;
}

.video-featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.video-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-featured:hover .featured-overlay {
    opacity: 1;
}

/* Video Overlay */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(212, 175, 55, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.1; /* lighter by default to keep video visible */
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.video-featured:hover .video-overlay {
    opacity: 0.9;
}

.video-content {
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 400px;
}

.video-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: var(--tracking-widest);
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.video-content h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 15px;
    line-height: var(--leading-tight);
}

.video-content p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: var(--leading-relaxed);
}

.video-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.play-video-btn {
    background: var(--gradient-gold);
    border: none;
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    box-shadow: var(--shadow-medium);
}

.play-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-bold);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
}

.play-video-btn i {
    font-size: 1.2rem;
}

.video-actions .view-full {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: var(--text-sm);
    backdrop-filter: blur(10px);
}

.video-actions .view-full:hover {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.featured-content {
    text-align: center;
    color: white;
    padding: 40px;
    max-width: 400px;
}

.featured-badge {
    background: var(--gradient-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    letter-spacing: var(--tracking-widest);
    margin-bottom: 20px;
    display: inline-block;
}

.featured-content h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    margin-bottom: 15px;
    line-height: var(--leading-tight);
}

.featured-content p {
    font-size: var(--text-lg);
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: var(--leading-relaxed);
}

.featured-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.featured-actions button {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: var(--text-sm);
    backdrop-filter: blur(10px);
}

.featured-actions button:hover {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-piece {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.gallery-piece:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-bold);
}

.piece-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.piece-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-piece:hover .piece-image img {
    transform: scale(1.1);
}

.piece-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(212, 175, 55, 0.4) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-piece:hover .piece-overlay {
    opacity: 1;
}

.piece-info {
    text-align: center;
    color: white;
    padding: 20px;
    width: 100%;
}

.piece-category {
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest);
    margin-bottom: 8px;
}

.piece-info h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: 8px;
    color: white;
    line-height: var(--leading-tight);
}

.piece-info p {
    font-size: var(--text-sm);
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: var(--leading-normal);
}

.piece-stats {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.piece-stats span {
    font-size: var(--text-xs);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.piece-stats i {
    color: var(--primary-gold);
    width: 12px;
}

.view-full {
    width: 45px;
    height: 45px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
}

.view-full:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-bold);
}

/* Gallery Actions */
.gallery-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.immersive-cta {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    border: none;
    position: relative;
    overflow: hidden;
}

.immersive-cta.primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: var(--shadow-medium);
}

.immersive-cta.secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.immersive-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-bold);
}

.immersive-cta.secondary:hover {
    background: var(--primary-gold);
    color: white;
}

.immersive-cta i {
    font-size: 1.1rem;
}

/* CONTACT SECTION */
.luxury-contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0f12 0%, #100c11 100%);
    color: var(--pearl-white);
    position: relative;
    overflow: hidden;
}

.luxury-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px 400px at 80% 0%, rgba(212, 175, 55, 0.10) 0%, rgba(212, 175, 55, 0.02) 40%, rgba(212, 175, 55, 0) 60%)
                , radial-gradient(600px 300px at 10% 90%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.contact-symphony {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content .section-description {
    font-size: var(--text-lg);
    opacity: 0.85;
    margin-bottom: var(--space-xl);
    line-height: var(--leading-relaxed);
}

/* Ensure all key text uses light color on dark background */
.luxury-contact .section-subtitle,
.luxury-contact .section-description,
.luxury-contact label,
.luxury-contact .method-action,
.luxury-contact .method-details p,
.luxury-contact .method-details span {
    color: rgba(255, 255, 255, 0.9);
}

.luxury-contact label {
    font-weight: var(--font-medium);
}

/* Contact typography refinements */
.luxury-contact .section-title {
    font-family: var(--font-primary);
    letter-spacing: var(--tracking-tight);
}

.luxury-contact .section-title span {
    color: var(--pearl-white);
}

.luxury-contact .section-title .golden-text {
    color: var(--primary-gold);
}

.luxury-contact .intro-badge {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--pearl-white);
    backdrop-filter: blur(6px);
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.35);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.method-details {
    flex: 1;
}

.method-details h4 {
    font-size: var(--text-lg);
    color: var(--pearl-white);
    margin-bottom: 6px;
    letter-spacing: var(--tracking-tight);
}

.method-details p {
    font-size: var(--text-base);
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.method-details span {
    font-size: var(--text-sm);
    opacity: 0.75;
    color: var(--pearl-white);
}

.method-action {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.method-action:hover {
    background: var(--primary-gold);
    color: white;
    transform: scale(1.05);
}

.luxury-booking-form {
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.form-card {
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: var(--text-2xl);
    color: var(--pearl-white);
    margin-bottom: 10px;
    letter-spacing: var(--tracking-tight);
    position: relative;
}

.form-header h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.form-header p {
    opacity: 0.8;
    font-size: var(--text-base);
}

/* Inputs: improve contrast on dark bg */
.premium-form input,
.premium-form select,
.premium-form textarea {
    background: rgba(255, 255, 255, 0.06);
    color: var(--pearl-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: var(--text-base);
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.premium-form select {
    appearance: none;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}


.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(10px);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.contact-method-info h4 {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.contact-method-info p {
    opacity: 0.8;
}

/* CONSULTATION FORM */
.consultation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 600;
    color: var(--primary-gold);
}

.form-field input,
.form-field select,
.form-field textarea,
.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--pearl-white);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.premium-form input::placeholder,
.premium-form select::placeholder,
.premium-form textarea::placeholder {
    color: rgba(254, 253, 248, 0.6);
    font-style: italic;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

/* FOCUS STYLES FOR INTERACTIVE ELEMENTS */
button:focus,
.nav-link:focus,
.social-link:focus,
.luxury-fab:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ENHANCED FORM FIELD STATES */
.form-field.focused label {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.form-field.error input,
.form-field.error select,
.form-field.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-field.success input,
.form-field.success select,
.form-field.success textarea {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-submit {
    background: var(--gradient-gold);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-bold);
}

.form-security {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
    justify-content: center;
}

/* FOOTER */
.luxury-footer {
    background: var(--gradient-dark);
    color: var(--pearl-white);
    padding: 80px 0 30px;
}

.footer-symphony {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
}

.brand-details h3 {
    font-size: 1.8rem;
    margin-bottom: -5px;
}

.brand-details span {
    font-size: 0.8rem;
    color: var(--primary-gold);
    letter-spacing: 0.2em;
}

.brand-details p {
    margin-top: 10px;
    opacity: 0.8;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.link-column a {
    color: var(--pearl-white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: var(--primary-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h4 {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: var(--primary-gold);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 30px;
}

.legal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: var(--pearl-white);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: var(--primary-gold);
    opacity: 1;
}

/* FLOATING ACTIONS */
.floating-luxury-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.luxury-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    color: white;
    font-size: 1.3rem;
}

.luxury-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: var(--shadow-bold);
}

.luxury-fab.whatsapp {
    background: #25D366;
}

.luxury-fab.call {
    background: var(--gradient-gold);
}

.luxury-fab.scroll-top {
    background: var(--luxury-black);
}

.luxury-fab[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--luxury-black);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 10;
}

/* ========================================
   TYPOGRAPHY ANIMATIONS & MICRO-INTERACTIONS
   ======================================== */

/* Text Reveal Animations */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes lineReveal {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes letterSpacing {
    0% {
        letter-spacing: 0.2em;
    }
    100% {
        letter-spacing: 0.05em;
    }
}

/* Typography Animation Classes */
.text-reveal {
    animation: textReveal 0.8s ease-out forwards;
    opacity: 0;
}

.text-slide-in {
    animation: textSlideIn 0.6s ease-out forwards;
    opacity: 0;
}

.text-fade-in {
    animation: textFadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.line-reveal {
    position: relative;
    overflow: hidden;
}

.line-reveal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--primary-gold);
    animation: lineReveal 1s ease-out 0.5s forwards;
    width: 0;
}

/* Hover Effects for Typography */
.typography-hover {
    transition: all 0.3s ease;
}

.typography-hover:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Button Text Animations */
.btn-text-animate {
    position: relative;
    overflow: hidden;
}

.btn-text-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

/* Existing Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-symphony {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .gallery-masonry {
        columns: 3;
    }
}

@media (max-width: 968px) {
    .nav-center {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .properties-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    
    .amenities-navigation {
        gap: 10px;
    }
    
    .amenity-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-featured {
        grid-row: span 1;
        min-height: 300px;
    }
    
    .video-container {
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    }
    
    .video-content {
        padding: 30px 20px;
    }
    
    .video-content h3 {
        font-size: var(--text-2xl);
    }
    
    .video-content p {
        font-size: var(--text-base);
    }
    
    .video-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .play-video-btn,
    .video-actions .view-full {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .piece-image {
        height: 200px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Typography Adjustments */
    .hero-title {
        font-size: var(--text-5xl);
        line-height: var(--leading-tight);
        margin-bottom: var(--space-lg);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-2xl);
    }
    
    .section-title {
        font-size: var(--text-4xl);
        line-height: var(--leading-snug);
        margin-bottom: var(--space-md);
    }
    
    .section-subtitle {
        font-size: var(--text-base);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-xl);
    }
    
    .nav-link {
        font-size: var(--text-xs);
        letter-spacing: var(--tracking-widest);
    }
    
    .brand-info h1 {
        font-size: var(--text-xl);
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .hero-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: var(--text-xs);
        padding: var(--space-md) var(--space-lg);
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .gallery-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-featured {
        min-height: 250px;
    }
    
    .video-content {
        padding: 20px 15px;
    }
    
    .video-content h3 {
        font-size: var(--text-xl);
    }
    
    .video-content p {
        font-size: var(--text-sm);
    }
    
    .video-badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .piece-image {
        height: 180px;
    }
    
    .gallery-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .immersive-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-luxury-actions {
        right: 15px;
        bottom: 15px;
    }
    
    .luxury-fab {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .legal-info {
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile Text Alignment */
    .hero-content {
        text-align: center;
        padding: 0 var(--space-md);
    }
    
    .section-intro {
        text-align: center;
        padding: 0 var(--space-sm);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 15px;
    }
    
    /* Small Screen Typography */
    .hero-title {
        font-size: var(--text-4xl);
        line-height: var(--leading-tight);
        margin-bottom: var(--space-md);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-xl);
    }
    
    .section-title {
        font-size: var(--text-3xl);
        line-height: var(--leading-snug);
        margin-bottom: var(--space-sm);
    }
    
    .section-subtitle {
        font-size: var(--text-sm);
        line-height: var(--leading-relaxed);
        margin-bottom: var(--space-lg);
    }
    
    .nav-link {
        font-size: 0.7rem;
        letter-spacing: var(--tracking-ultra);
    }
    
    .brand-info h1 {
        font-size: var(--text-lg);
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .hero-cta {
        font-size: 0.7rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .properties-showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .property-masterpiece {
        margin: 0 10px;
    }
    
    .amenity-showcase {
        grid-template-columns: 1fr;
    }
    
    /* Edge Case Handling */
    .hero-title .title-line {
        word-break: break-word;
        hyphens: auto;
    }
    
    .section-title span {
        word-break: break-word;
        hyphens: auto;
    }
    
    /* Button Text Handling */
    .hero-cta span {
        white-space: normal;
        text-align: center;
        line-height: var(--leading-tight);
    }
    
    .premium-cta span {
        white-space: normal;
        text-align: center;
    }
}

/* AOS ANIMATION OVERRIDES */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ========================================
   TYPOGRAPHY UTILITY CLASSES
   ======================================== */

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Font Families */
.font-primary { font-family: var(--font-primary); }
.font-secondary { font-family: var(--font-secondary); }
.font-mono { font-family: var(--font-mono); }

/* Font Weights */
.font-thin { font-weight: var(--font-thin); }
.font-extralight { font-weight: var(--font-extralight); }
.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }
.font-extrabold { font-weight: var(--font-extrabold); }
.font-black { font-weight: var(--font-black); }

/* Font Sizes */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }
.text-7xl { font-size: var(--text-7xl); }

/* Line Heights */
.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

/* Letter Spacing */
.tracking-tighter { letter-spacing: var(--tracking-tighter); }
.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-normal { letter-spacing: var(--tracking-normal); }
.tracking-wide { letter-spacing: var(--tracking-wide); }
.tracking-wider { letter-spacing: var(--tracking-wider); }
.tracking-widest { letter-spacing: var(--tracking-widest); }
.tracking-ultra { letter-spacing: var(--tracking-ultra); }

/* Text Colors */
.text-gold { color: var(--primary-gold); }
.text-luxury { color: var(--luxury-black); }
.text-white { color: var(--pearl-white); }
.text-muted { color: var(--charcoal); opacity: 0.8; }
.text-emerald { color: var(--emerald); }
.text-ruby { color: var(--ruby); }
.text-sapphire { color: var(--sapphire); }

/* Text Effects */
.text-shadow { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.text-shadow-lg { text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); }
.text-shadow-xl { text-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); }

/* Text Transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Text Decoration */
.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }

/* Text Overflow */
.truncate { 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
}

.break-words { word-break: break-word; }
.break-all { word-break: break-all; }

/* Hyphens */
.hyphens-none { hyphens: none; }
.hyphens-manual { hyphens: manual; }
.hyphens-auto { hyphens: auto; }

/* ENHANCED BUTTON STYLES */
button, .btn {
    font-family: var(--font-secondary);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-widest);
    line-height: var(--leading-tight);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button:disabled, .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ENHANCED LINK STYLES */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover:not(.social-link):not(.nav-link) {
    color: var(--primary-gold);
}

/* LIST IMPROVEMENTS */
ul, ol {
    margin: 0;
    padding: 0;
}

li {
    font-family: var(--font-secondary);
    line-height: 1.6;
}

/* LABEL IMPROVEMENTS */
label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.05em;
}

/* SELECTION STYLING */
::selection {
    background: var(--primary-gold);
    color: white;
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
    text-shadow: none;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --luxury-black: #000000;
        --charcoal: #1a1a1a;
        --primary-gold: #ffd700;
    }
    
    .hero-title, .section-title {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .text-reveal,
    .text-fade-in,
    .text-slide-in,
    .typography-hover,
    .btn-text-animate {
        animation: none;
        transition: none;
    }
    
    .text-reveal,
    .text-fade-in,
    .text-slide-in {
        opacity: 1;
        transform: none;
    }
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--champagne);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

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

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

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

/* MODAL STYLES */
.property-modal,
.gallery-lightbox,
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-overlay,
.lightbox-overlay,
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content,
.lightbox-content,
.video-container {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-bold);
    z-index: 10001;
}

.modal-close,
.lightbox-close,
.video-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--primary-gold);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.modal-close:hover,
.lightbox-close:hover,
.video-close:hover {
    background: var(--rich-gold);
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: var(--luxury-black);
    margin-bottom: 10px;
}

.modal-badge {
    background: var(--gradient-gold-soft);
    color: var(--dark-gold);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.modal-body {
    text-align: center;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.modal-cta {
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-cta.primary {
    background: var(--gradient-gold);
    color: white;
}

.modal-cta.secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.lightbox-content img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.video-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: var(--charcoal);
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--luxury-black);
}

/* FORM SUCCESS MESSAGE */
.form-success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-bold);
    z-index: 10000;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.success-content i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.success-content h4 {
    color: var(--luxury-black);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.success-content p {
    color: var(--charcoal);
    line-height: 1.6;
}

/* RESPONSIVE UPDATES */
@media (max-width: 768px) {
    .contact-symphony,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .method-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-action {
        width: 100%;
    }
    
    .amenities-revolution {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .amenities-navigation {
        position: static;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .nav-item {
        min-width: 200px;
        flex-shrink: 0;
    }
    
    .modal-content,
    .lightbox-content,
    .video-container {
        padding: 20px;
        margin: 20px;
    }
}
/* =========================================================
   📱 RESPONSIVE DESIGN ADAPTATION - Tatva by Tradeprop
   ========================================================= */

/* Tablet Landscape (≤ 1024px) */
@media (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }

  .hero-content .section-title {
    font-size: 2.5rem;
  }

  .properties-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .resort-showcase-grid {
    grid-template-columns: 1fr;
  }

  .contact-symphony {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Tablet Portrait & Mobile (≤ 768px) */
@media (max-width: 768px) {
  /* Navbar */
  .nav-center {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .premium-nav.active .nav-center {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    padding: 1.5rem 0;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
  }

  /* Hero section */
  .hero-content .section-title {
    font-size: 2rem;
  }

  .art-ctas {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  /* Property Section */
  .properties-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .property-masterpiece {
    width: 100%;
  }

  /* Club & Resort */
  .resort-showcase-grid {
    flex-direction: column;
  }

  .resort-hero, .resort-features-grid {
    width: 100%;
  }

  .resort-features-grid {
    grid-template-columns: 1fr;
  }

  .resort-amenities-bar {
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Amenities grid */
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  /* Contact section */
  .contact-symphony {
    flex-direction: column;
  }

  .contact-content,
  .luxury-booking-form {
    width: 100%;
  }

  /* Footer */
  .footer-symphony {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Small Mobile Devices (≤ 480px) */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .intro-badge {
    font-size: 0.8rem;
  }

  .hero-topline {
    font-size: 0.7rem;
  }

  .btn-text-animate,
  .hero-cta,
  button {
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }

  .property-features {
    flex-direction: column;
    align-items: flex-start;
  }

  .amenity-card h4 {
    font-size: 1.1rem;
  }

  .amenity-card p {
    font-size: 0.9rem;
  }

  .contact-methods {
    flex-direction: column;
    gap: 1rem;
  }

  .form-grid {
    flex-direction: column;
  }

  .form-field {
    width: 100%;
  }
}
