/* ============================================
   LOTUSHAVEN INFRATECH — LUXURY BRAND CSS
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Gold System */
    --gold: #C9A24E;
    --gold-light: #E8CC7E;
    --gold-dark: #A68332;
    --gold-muted: #8B7230;
    --gold-glow: rgba(201, 162, 78, 0.25);
    --gold-gradient: linear-gradient(135deg, #C9A24E 0%, #E8CC7E 45%, #D4A843 55%, #A68332 100%);
    --gold-gradient-subtle: linear-gradient(135deg, rgba(201,162,78,0.15), rgba(232,204,126,0.08));
    
    /* Dark Theme (Default) */
    --black: #080808;
    --black-light: #0F0F0F;
    --black-medium: #161616;
    --dark: #0C0C0C;
    --dark-card: #121210;
    --dark-card-hover: #1A1A17;
    --dark-border: #222220;
    --dark-border-hover: #333330;
    --surface: #0E0E0C;
    
    /* Text */
    --white: #F5F2EC;
    --text-primary: #F5F2EC;
    --text-secondary: #9A9590;
    --text-muted: #605C56;
    --text-dark: #1A1A1A;
    --text-accent: var(--gold);
    
    /* Accents */
    --ivory: #FAF8F3;
    --champagne: #F0E6CE;
    --cream: #FFF9F0;
    --emerald: #1B4332;
    --emerald-light: #2D6A4F;
    
    /* Shadows */
    --shadow-gold: 0 0 50px rgba(201, 162, 78, 0.12);
    --shadow-heavy: 0 25px 80px rgba(0, 0, 0, 0.6);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.35);
    --shadow-light: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.2);
    
    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Typography */
    --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Raleway', 'Segoe UI', sans-serif;
    --font-display: 'Cinzel', 'Bodoni Moda', 'Playfair Display', serif;
    --font-luxury: 'Cinzel Decorative', 'Bodoni Moda', 'Cinzel', serif;
    --font-elegant: 'Bodoni Moda', 'Cormorant Garamond', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.justify-center { justify-content: center; }

/* --- Section Styling --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}
.label-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--white);
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}
.section-header { margin-bottom: 60px; }

/* --- Button Styles --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
    border-radius: var(--radius-sm);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
    border-radius: var(--radius-sm);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}
.btn-lg { padding: 20px 44px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }
.btn i { font-size: 0.85em; transition: transform 0.3s; }
.btn:hover i { transform: translateX(4px); }

/* ============================
/* ============================
   CUSTOM CURSOR
   ============================ */
.cursor-outer, .cursor-inner {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease, opacity 0.3s;
}
.cursor-outer {
    width: 36px; height: 36px;
    border: 1px solid rgba(212, 168, 67, 0.4);
    transform: translate(-50%, -50%);
}
.cursor-inner {
    width: 6px; height: 6px;
    background: var(--gold);
    transform: translate(-50%, -50%);
}
.cursor-hover .cursor-outer {
    transform: translate(-50%, -50%) scale(1.6);
    border-color: var(--gold);
}
.cursor-hover .cursor-inner {
    transform: translate(-50%, -50%) scale(0.5);
    background: var(--white);
}
@media (max-width: 768px) {
    .cursor-outer, .cursor-inner { display: none; }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.12);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px;
    height: 64px;
}
/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 100;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-logo:hover .nav-logo-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 14px rgba(201, 162, 78, 0.45));
}
.nav-logo:hover .nav-brand-name {
    text-shadow: 0 0 24px rgba(201, 162, 78, 0.4);
}
.nav-logo-icon {
    width: 52px; height: 52px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 8px rgba(201, 162, 78, 0.25));
}
.nav-lotus-svg { width: 100%; height: 100%; }
.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--gold);
    display: block;
    line-height: 1;
    transition: text-shadow 0.4s ease;
}
.nav-brand-sub {
    font-family: var(--font-elegant);
    font-size: 0.6rem;
    letter-spacing: 5.5px;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
    font-style: italic;
}
/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-link {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold-gradient);
    border-radius: 1px;
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-link:hover {
    color: var(--gold);
    background: rgba(212, 168, 67, 0.07);
}
.nav-link:hover::after { width: 55%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 55%; }
/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
/* Call Button */
.nav-cta-call {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.6px;
    padding: 7px 14px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}
.nav-cta-call i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.nav-cta-call:hover {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.15);
}
.nav-cta-call:hover i { transform: scale(1.2); }
/* CTA Button */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: var(--gold-gradient);
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 12px rgba(212, 168, 67, 0.2);
    position: relative;
    overflow: hidden;
}
.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.35);
}
.nav-cta-btn:hover::before { left: 100%; }
.nav-cta-btn:hover i { transform: translateX(3px); }
.nav-cta-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}
/* Theme Toggle */
.theme-toggle {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 168, 67, 0.2);
    background: rgba(212, 168, 67, 0.06);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.theme-toggle:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.15);
    transform: rotate(30deg) scale(1.05);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.2);
}
.theme-icon-sun, .theme-icon-moon {
    position: absolute;
    font-size: 0.85rem;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.theme-icon-sun { color: #F2D06B; }
.theme-icon-moon { color: var(--gold); opacity: 0; transform: rotate(-90deg) scale(0.3); }
[data-theme="dark"] .theme-icon-sun { opacity: 1; transform: rotate(0) scale(1); }
[data-theme="dark"] .theme-icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.3); }
[data-theme="light"] .theme-icon-sun { opacity: 0; transform: rotate(90deg) scale(0.3); }
[data-theme="light"] .theme-icon-moon { opacity: 1; transform: rotate(0) scale(1); }
/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1.5px solid rgba(212, 168, 67, 0.25);
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 8px;
    z-index: 100;
    transition: all 0.3s ease;
}
.nav-hamburger:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
}
.nav-hamburger span {
    width: 22px; height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}
.nav-hamburger:hover span { background: var(--gold-light); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 6px;
}
.mobile-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
}
.mobile-link:hover {
    color: var(--gold);
    background: rgba(212, 168, 67, 0.08);
    transform: translateX(8px);
}
.mobile-menu-cta {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.mobile-call-btn {
    padding: 14px 32px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.mobile-call-btn:hover {
    background: rgba(212, 168, 67, 0.1);
    transform: translateY(-2px);
}
.mobile-book-btn {
    padding: 14px 32px;
    background: var(--gold-gradient);
    color: var(--black);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.3);
}
@media (max-width: 1100px) {
    .nav-links { display: none !important; }
    .nav-cta-call { display: none !important; }
    .nav-cta-btn { display: none !important; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: block; }
    .nav-container { padding: 0 20px; }
    .theme-toggle { display: flex; }
}
@media (min-width: 1101px) {
    .nav-hamburger { display: none !important; }
    .mobile-menu { display: none !important; }
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.hero-bg-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
}
.hero-mesh-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--gold);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 24px;
    padding-top: 80px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 30px;
    margin-bottom: 32px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero-badge span:last-child {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
}
.hero-title {
    margin-bottom: 24px;
}
.hero-title-line {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}
.hero-title-accent {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}
.hero-title-gold {
    color: #FFFFFF;
    font-weight: 700;
}
.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1;
}
.stat-suffix {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--dark-border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollBounce 2s infinite;
}
.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-md);
    z-index: 2;
}
.hero-float-card i { color: var(--gold); font-size: 1.1rem; }
.hero-float-card span { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.5px; white-space: nowrap; }
.hf-1 { top: 25%; right: 5%; }
.hf-2 { bottom: 25%; right: 8%; }
.hf-3 { bottom: 35%; right: 3%; }

@media (max-width: 1024px) {
    .hero-float-card { display: none; }
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    position: relative;
    background: var(--black);
    overflow: hidden;
}
.section-bg-accent {
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.about-value {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.about-value-icon {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-size: 1rem;
}
.about-value h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.about-value p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.about-image-wrapper {
    position: relative;
}
.about-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
}
.about-image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--dark-card), var(--black-medium));
}
.about-image-placeholder i { font-size: 3rem; color: var(--gold); opacity: 0.3; }
.about-image-placeholder span { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 2px; }
.about-image-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 60%; height: 60%;
    border: 2px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-lg);
    z-index: -1;
}
.about-experience-badge {
    position: absolute;
    bottom: -30px; left: -30px;
    padding: 24px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 168, 67, 0.3);
}
.exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}
.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-values { grid-template-columns: 1fr; }
}

/* ============================
   BRAND MARQUEE
   ============================ */
.brand-marquee {
    padding: 24px 0;
    background: linear-gradient(90deg, var(--gold-gradient), var(--gold-dark), var(--gold-gradient));
    overflow: hidden;
}
.marquee-track { display: flex; width: max-content; }
.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: marqueeScroll 30s linear infinite;
    padding-right: 32px;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
}
.marquee-item i { font-size: 1rem; }
.marquee-divider {
    color: var(--black);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* ============================
   PROJECTS SECTION
   ============================ */
.projects-section {
    background: var(--black);
    position: relative;
}
.project-hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    margin-bottom: 60px;
    min-height: 500px;
    border: 1px solid var(--dark-border);
}
.project-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.project-hero-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a0d 50%, #0d0d0d 100%);
}
.project-hero-placeholder i { font-size: 5rem; color: var(--gold); opacity: 0.15; }
.project-hero-placeholder span { font-size: 1.1rem; color: var(--text-muted); letter-spacing: 3px; }
.project-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.1) 100%);
}
.project-hero-content {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 50px;
}
.project-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 16px;
}
.project-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}
.project-hero-location {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.project-hero-location i { color: var(--gold); margin-right: 8px; }
.project-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.project-hero-highlights span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.project-hero-highlights i { color: var(--gold); font-size: 0.8rem; }
.project-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Plot Options */
.plot-options-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}
.plot-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.plot-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.plot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: var(--shadow-gold);
}
.plot-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 168, 67, 0.08) 0%, var(--dark-card) 100%);
}
.plot-card-badge {
    position: absolute;
    top: 16px; right: -30px;
    padding: 6px 40px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
}
.plot-card-icon {
    width: 64px; height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
}
.plot-card h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.plot-card > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}
.plot-card-divider {
    width: 40px; height: 1px;
    background: var(--gold);
    margin: 16px auto;
}
.plot-card ul {
    text-align: left;
    margin-bottom: 24px;
}
.plot-card li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.plot-card li i { color: var(--gold); font-size: 0.75rem; }
.plot-card-btn {
    display: inline-flex;
    padding: 12px 32px;
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.plot-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

@media (max-width: 768px) {
    .plot-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .project-hero-content { padding: 30px; }
}

/* ============================
   WHY INVEST SECTION
   ============================ */
.why-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: var(--shadow-gold);
}
.why-card-number {
    position: absolute;
    top: 16px; right: 20px;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(212, 168, 67, 0.06);
    line-height: 1;
}
.why-card-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ============================
   AMENITIES SECTION
   ============================ */
.amenities-section {
    background: var(--black);
    position: relative;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.amenity-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
}
.amenity-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: var(--shadow-gold);
}
.amenity-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}
.amenity-card:hover .amenity-icon {
    background: var(--gold);
    color: var(--black);
}
.amenity-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================
   LOCATION SECTION
   ============================ */
.location-section {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}
.location-map-area {
    margin-bottom: 60px;
}
.location-map-placeholder {
    position: relative;
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #0d0f0a 0%, #121a0d 50%, #0d0f0a 100%);
    border-radius: var(--radius-xl);
    border: 1px solid var(--dark-border);
    overflow: hidden;
}
.location-map-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(45, 90, 39, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 168, 67, 0.05) 0%, transparent 40%);
}
.map-center-point {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}
.map-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    animation: mapPulse 2s infinite;
}
.map-dot {
    width: 14px; height: 14px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
    position: relative;
    z-index: 2;
}
.map-label {
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    background: rgba(10, 10, 10, 0.8);
    padding: 4px 12px;
    border-radius: 4px;
}
.map-landmark {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    z-index: 2;
}
.map-landmark i { color: var(--gold); font-size: 0.85rem; }

.location-nearby {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.location-category {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.location-category h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.location-category h3 i { color: var(--gold); font-size: 1rem; }
.location-category li {
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}
.location-category li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .location-nearby { grid-template-columns: 1fr; }
    .location-map-placeholder { height: 300px; }
    .map-landmark { font-size: 0.6rem; padding: 5px 8px; }
}

/* ============================
   GALLERY
   ============================ */
.gallery-section { background: var(--black); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
    cursor: pointer;
    background: #0a0a0a;
}
.gallery-item.gi-large {
    grid-column: span 2;
}
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--dark-card), #0d0d0d);
}
.gallery-placeholder i { font-size: 2.5rem; color: var(--gold); opacity: 0.2; }
.gallery-placeholder span { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }
.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold);
}
.gallery-item:hover { border-color: rgba(212, 168, 67, 0.3); }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.gi-large { grid-column: span 1; }
}

/* ============================
   INVESTMENT CTA SECTION
   ============================ */
.invest-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.invest-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, #0d0a05 50%, var(--black) 100%);
}
.invest-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.invest-content { position: relative; z-index: 2; }
.invest-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.invest-desc {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF !important;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.invest-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}
.invest-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF !important;
}
.invest-highlight i { color: var(--gold); }
.invest-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section { background: var(--black); }
.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.2);
}
.testimonial-stars {
    margin-bottom: 16px;
}
.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}
.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px; height: 44px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}
.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonial-carousel { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ============================
   TAGLINES
   ============================ */
.taglines-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}
.taglines-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.tagline-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.tagline-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-4px);
}
.tagline-card i {
    display: block;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 12px;
    opacity: 0.5;
}
.tagline-card span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .taglines-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-section {
    background: var(--black-light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail i {
    width: 44px; height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-size: 1rem;
}
.contact-detail strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.contact-detail span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.contact-form-wrap {
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 44px;
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 20px;
    position: relative;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group label {
    position: absolute;
    top: 14px; left: 18px;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 12px;
    font-size: 0.7rem;
    color: var(--gold);
    background: var(--dark-card);
    padding: 0 6px;
}
.form-group select {
    appearance: none;
    cursor: pointer;
}
.form-group select option {
    background: var(--dark-card);
    color: var(--white);
}
.form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 16px;
}
.form-disclaimer i { margin-right: 6px; }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }
}

/* ============================
   FOOTER
   ============================ */
.footer {
    background: #050505;
    border-top: 1px solid var(--dark-border);
}
.footer-top { padding: 80px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    display: block;
    line-height: 1;
}
.footer-brand-sub {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}
.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}
.footer-links-col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--gold);
}
.footer-links-col li {
    margin-bottom: 10px;
}
.footer-links-col a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}
.footer-contact-list i { color: var(--gold); font-size: 0.85rem; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    background: #25D366;
    border-radius: 28px;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    height: 54px;
    gap: 4px;
}
.whatsapp-float i {
    font-size: 1.6rem;
    line-height: 1;
    display: inline-block;
}
.whatsapp-float .whatsapp-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.whatsapp-float:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
    position: fixed;
    bottom: 28px; right: 100px;
    width: 44px; height: 44px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

/* ============================
   COMPREHENSIVE MOBILE FIXES
   ============================ */

/* --- Tablets & Medium screens (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .section-padding { padding: 70px 0; }
    .section-header { margin-bottom: 40px; }
    .hero-content { padding-top: 100px; }
    .project-hero-card { min-height: 400px; }
    .hero-stats { gap: 24px; }
    .invest-section { padding: 80px 0; }
}

/* --- Small Tablets (max-width: 768px) --- */
@media (max-width: 768px) {
    html { font-size: 15px; }
    .container { padding: 0 16px; }
    .section-padding { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }

    /* Hero section mobile */
    .hero-section { min-height: auto !important; padding: 80px 0 30px; }

    /* Hero mobile */
    .hero-content { padding-top: 70px !important; padding: 70px 16px 0 !important; min-height: auto !important; }
    .hero-badge {
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    .hero-badge span:last-child {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    .hero-title-line { line-height: 1.15; }
    .hero-desc {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 28px;
    }
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-stats {
        gap: 16px;
        justify-content: flex-start;
    }
    .stat-number { font-size: 2rem; }
    .stat-suffix { font-size: 1.4rem; }
    .stat-label { font-size: 0.7rem; }
    .hero-stat-divider { height: 30px; }
    .hero-scroll-indicator { bottom: 20px; }
    .scroll-line { height: 30px; }

    /* Navbar mobile */
    .nav-brand-name { font-size: 1rem; letter-spacing: 3px; }
    .nav-brand-sub { font-size: 0.5rem; letter-spacing: 3px; }
    .nav-logo-icon { width: 40px; height: 40px; }
    .nav-container { padding: 0 12px; height: 56px; }

    /* Mobile menu */
    .mobile-link { font-size: 1rem; padding: 10px 24px; letter-spacing: 2px; }
    .mobile-call-btn, .mobile-book-btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }
    .mobile-menu-cta { flex-direction: column; gap: 10px; width: 100%; max-width: 240px; }
    .mobile-call-btn, .mobile-book-btn { width: 100%; text-align: center; }

    /* Projects mobile */
    .project-hero-card { min-height: 350px; margin-bottom: 40px; }
    .project-hero-content { padding: 24px; }
    .project-hero-title { font-size: 1.8rem; }
    .project-hero-location { font-size: 0.85rem; }
    .project-hero-highlights { gap: 10px; }
    .project-hero-highlights span { font-size: 0.75rem; }
    .project-hero-ctas { flex-direction: column; gap: 10px; }
    .project-hero-ctas .btn { width: 100%; justify-content: center; }
    .plot-options-title { font-size: 1.4rem; }
    .plot-card { padding: 28px 20px; }

    /* Why section mobile */
    .why-card { padding: 28px 20px; }
    .why-card-icon { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 16px; }
    .why-card h3 { font-size: 1.05rem; }
    .why-card p { font-size: 0.85rem; }

    /* Amenities mobile */
    .amenity-card { padding: 24px 14px; }
    .amenity-card h4 { font-size: 0.75rem; }
    .amenity-icon { width: 48px; height: 48px; font-size: 1rem; margin-bottom: 12px; }

    /* Map mobile */
    .location-map-placeholder { height: 250px; }
    .map-landmark {
        font-size: 0.55rem;
        padding: 4px 7px;
        gap: 4px;
    }
    .map-landmark i { font-size: 0.65rem; }
    .map-label { font-size: 0.6rem; padding: 3px 8px; }
    .map-dot { width: 10px; height: 10px; }
    .map-pulse { width: 40px; height: 40px; }

    /* Gallery mobile */
    .gallery-grid { gap: 12px; }

    /* Invest section mobile */
    .invest-section { padding: 60px 0; }
    .invest-title { font-size: clamp(1.5rem, 4vw, 2.2rem); }
    .invest-desc { font-size: 0.95rem; margin-bottom: 28px; }
    .invest-highlights { gap: 12px; }
    .invest-highlight {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    .invest-ctas { flex-direction: column; gap: 12px; }
    .invest-ctas .btn { width: 100%; justify-content: center; }

    /* Testimonials mobile */
    .testimonial-card { padding: 24px; }
    .testimonial-card > p { font-size: 0.88rem; }

    /* Taglines mobile */
    .tagline-card { padding: 20px 14px; }
    .tagline-card span { font-size: 0.85rem; }

    /* Contact mobile */
    .contact-form-wrap { padding: 24px; }
    .form-title { font-size: 1.3rem; margin-bottom: 20px; }
    .form-group input, .form-group select, .form-group textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    .contact-detail { gap: 12px; }
    .contact-detail i { width: 36px; height: 36px; min-width: 36px; font-size: 0.85rem; }
    .contact-detail strong { font-size: 0.85rem; }
    .contact-detail span { font-size: 0.8rem; }

    /* Footer mobile */
    .footer-top { padding: 50px 0 30px; }
    .footer-logo { margin-bottom: 16px; }
    .footer-brand-name { font-size: 1.1rem; }

    /* WhatsApp float mobile */
    .whatsapp-float {
        padding: 0 12px;
        height: 40px;
        gap: 5px;
        border-radius: 20px;
        bottom: 16px; right: 12px;
    }
    .whatsapp-float i { font-size: 1.2rem; }
    .whatsapp-float .whatsapp-label { font-size: 0.8rem; display: inline; }
    .back-to-top {
        width: 36px; height: 36px;
        bottom: 20px; right: 80px;
        font-size: 0.85rem;
    }

    /* Inner page hero mobile */
    .project-detail-hero { min-height: 30vh; }
    .project-detail-hero .container {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    /* About section mobile */
    .about-experience-badge {
        bottom: -15px;
        left: -10px;
        padding: 16px;
    }
    .exp-number { font-size: 1.8rem; }
    .exp-text { font-size: 0.65rem; }
    .about-image-accent { bottom: -10px; right: -10px; }
}

/* --- Mobile Phones (max-width: 480px) --- */
@media (max-width: 480px) {
    html { font-size: 14px; }
    .container { padding: 0 14px; }
    .section-padding { padding: 40px 0; }

    .hero-badge span:last-child { font-size: 0.5rem; letter-spacing: 0.5px; }
    .hero-desc { font-size: 0.88rem; }
    .hero-section { min-height: auto !important; padding: 60px 0 20px; }
    .hero-content { padding-top: 56px !important; min-height: auto !important; }
    .hero-ctas { margin-bottom: 16px !important; }
    .stat-number { font-size: 1.6rem; }
    .stat-suffix { font-size: 1.1rem; }

    /* Nav ultra small */
    .nav-brand-name { font-size: 0.85rem; letter-spacing: 2px; }
    .nav-brand-sub { display: none; }
    .nav-logo-icon { width: 34px; height: 34px; }
    .nav-container { height: 50px; padding: 0 10px; }

    /* Buttons */
    .btn { padding: 14px 24px; font-size: 0.8rem; }
    .btn-lg { padding: 16px 30px; font-size: 0.85rem; }

    /* Project hero ultra small */
    .project-hero-card { min-height: 280px; }
    .project-hero-content { padding: 20px; }
    .project-hero-title { font-size: 1.5rem; }
    .project-badge-large { font-size: 0.65rem; padding: 6px 14px; }

    /* Plot cards */
    .plot-cards { max-width: 100%; }
    .plot-card h4 { font-size: 1.2rem; }
    .plot-card-icon { width: 52px; height: 52px; font-size: 1.2rem; }

    /* Invest section ultra small */
    .invest-title { font-size: 1.4rem; }
    .invest-desc { font-size: 0.88rem; }
    .invest-highlight {
        width: 100%;
        justify-content: center;
    }

    /* Contact form ultra small */
    .contact-form-wrap { padding: 20px; }
    .form-title { font-size: 1.15rem; }
    .form-row { gap: 12px; }

    /* Location category */
    .location-category { padding: 24px 16px; }
    .location-category h3 { font-size: 0.95rem; }
    .location-category li { font-size: 0.8rem; padding: 8px 0; }

    /* Inner page hero ultra small */
    .project-detail-hero { min-height: 25vh; }
    .project-detail-hero .container {
        padding-top: 80px !important;
        padding-bottom: 30px !important;
    }

    /* Map */
    .location-map-placeholder { height: 200px; }
}

/* ============================
   BROCHURE IMAGE INTEGRATION
   ============================ */
.hero-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
    z-index: 0;
}
.about-img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
}
.about-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-border);
}
.project-hero-img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
}
.gallery-img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}
.invest-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12;
    z-index: 0;
}

/* ============================
   LIGHT MODE THEME
   ============================ */
[data-theme="light"] {
    --black: #F8F5EF;
    --black-light: #F2EDE4;
    --black-medium: #E8E1D4;
    --dark: #EDE8DD;
    --dark-card: #FFFFFF;
    --dark-card-hover: #FAF7F0;
    --dark-border: #DDD5C6;
    --dark-border-hover: #C9BFA8;
    --surface: #F5F1E9;
    --white: #1C1915;
    --text-primary: #1C1915;
    --text-secondary: #3D3730;
    --text-muted: #6B645B;
    --shadow-gold: 0 0 40px rgba(201, 162, 78, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] body {
    background: var(--black);
    color: var(--text-primary);
}

[data-theme="light"] .hero-bg-img { opacity: 0.4; }
[data-theme="light"] .hero-gradient-overlay {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 162, 78, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 78, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(248,245,239,0.5) 0%, rgba(248,245,239,0.85) 100%);
}
[data-theme="light"] .hero-mesh-overlay {
    background-image: 
        linear-gradient(rgba(201, 162, 78, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 78, 0.05) 1px, transparent 1px);
}
[data-theme="light"] .hero-badge {
    background: rgba(201, 162, 78, 0.06);
    border-color: rgba(201, 162, 78, 0.12);
}
[data-theme="light"] .hero-title-line { color: #FFFFFF; }
[data-theme="light"] .hero-title-accent { color: #F0E6D3; }
[data-theme="light"] .hero-desc { color: #E0D6C4; }
[data-theme="light"] .hero-float-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(201, 162, 78, 0.12);
    backdrop-filter: blur(12px);
}
[data-theme="light"] .hero-float-card span { color: #2C2620; }

[data-theme="light"] .navbar.scrolled {
    background: rgba(250, 248, 243, 0.95);
    border-bottom-color: rgba(212, 168, 67, 0.1);
}
[data-theme="light"] .nav-link { color: #3A3530; }
[data-theme="light"] .nav-link.active,
[data-theme="light"] .nav-link:hover { color: var(--gold); }

[data-theme="light"] .section-title { color: #1A1A1A; }
[data-theme="light"] .section-subtitle { color: #4A4540; }

[data-theme="light"] .about-section { background: var(--black); }
[data-theme="light"] .about-text { color: #3A3530; }

[data-theme="light"] .plot-card,
[data-theme="light"] .why-card,
[data-theme="light"] .amenity-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .tagline-card,
[data-theme="light"] .location-category,
[data-theme="light"] .contact-form-wrap {
    border-color: #E0D8C8;
}
[data-theme="light"] .plot-card h4,
[data-theme="light"] .why-card h3,
[data-theme="light"] .amenity-card h4 { color: #1A1A1A; }
[data-theme="light"] .plot-card p,
[data-theme="light"] .why-card p,
[data-theme="light"] .plot-card li { color: #4A4540; }

[data-theme="light"] .contact-detail span { color: #4A4540; }
[data-theme="light"] .contact-detail strong { color: #1A1A1A; }
[data-theme="light"] .form-title { color: #1A1A1A; }
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(0,0,0,0.03);
    border-color: #D0C8B8;
    color: #1A1A1A;
}
[data-theme="light"] .form-group label { color: #5E5850; }

[data-theme="light"] .invest-bg-img { opacity: 0.2; }
[data-theme="light"] .invest-title { color: #1A1A1A; }
[data-theme="light"] .invest-desc { color: #FFFFFF; }
[data-theme="light"] .invest-highlight {
    background: rgba(212, 168, 67, 0.06);
    border-color: rgba(212, 168, 67, 0.15);
    color: #FFFFFF;
}

[data-theme="light"] .testimonial-card > p { color: #3A3530; }
[data-theme="light"] .testimonial-author strong { color: #1A1A1A; }
[data-theme="light"] .tagline-card span { color: #444; }

[data-theme="light"] .hero-scroll-indicator span { color: #777; }
[data-theme="light"] .stat-label { color: #FFFFFF; font-weight: 600; }
[data-theme="light"] .stat-number { color: #FFFFFF; }
[data-theme="light"] .text-gold { color: var(--gold); }
[data-theme="light"] .stat-suffix { color: #FFFFFF; }

[data-theme="light"] .map-landmark {
    background: rgba(255,255,255,0.9);
    border-color: rgba(212, 168, 67, 0.15);
    color: #3A3530;
}
[data-theme="light"] .location-category h3 { color: #1A1A1A; }
[data-theme="light"] .location-category li { color: #4A4540; border-color: rgba(0,0,0,0.05); }

[data-theme="light"] .footer {
    background: #F0EBE2;
    border-top-color: #E0D8C8;
}
[data-theme="light"] .footer-desc { color: #4A4540; }
[data-theme="light"] .footer-links-col a { color: #4A4540; }
[data-theme="light"] .footer-links-col a:hover { color: var(--gold); }
[data-theme="light"] .footer-contact-list li { color: #4A4540; }
[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.05); }
[data-theme="light"] .footer-bottom p { color: #777; }

[data-theme="light"] .brand-marquee {
    background: linear-gradient(90deg, #D4A843, #B8922E, #D4A843);
}
[data-theme="light"] .marquee-item { color: #1A1A1A; }
[data-theme="light"] .marquee-divider { color: #1A1A1A; }

[data-theme="light"] .btn-primary { box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3); }

[data-theme="light"] .whatsapp-float { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }

[data-theme="light"] .project-hero-overlay {
    background: linear-gradient(to top, rgba(250,248,243,0.95) 0%, rgba(250,248,243,0.3) 50%, transparent 100%);
}
[data-theme="light"] .project-hero-title { color: #1A1A1A; }
[data-theme="light"] .project-hero-location { color: #4A4540; }
[data-theme="light"] .project-hero-highlights span { color: #4A4540; }

[data-theme="light"] .plot-options-title { color: #1A1A1A; }
[data-theme="light"] .section-label { color: var(--gold); }

[data-theme="light"] .about-image-accent { border-color: rgba(212, 168, 67, 0.1); }
[data-theme="light"] .about-value h4 { color: #1A1A1A; }
[data-theme="light"] .about-value p { color: #5E5850; }

[data-theme="light"] .location-map-placeholder {
    background: linear-gradient(135deg, #e8e4d8 0%, #f0ead8 50%, #e8e4d8 100%);
}

/* Light mode scrollbar */
[data-theme="light"]::-webkit-scrollbar { width: 8px; }
[data-theme="light"]::-webkit-scrollbar-track { background: #F0EBE2; }
[data-theme="light"]::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Theme toggle always visible */
.theme-toggle { display: flex; }

/* ============================
   PRELOADER
   ============================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #F4EFE4 100%);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
[data-theme="dark"] #preloader {
    background: radial-gradient(ellipse at center, #0E0E0E 0%, #050505 100%);
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-canvas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    padding: 24px;
}
.preloader-icon {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.preloader-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
}
.pl-ring {
    transform-origin: 50px 50px;
    animation: preloaderPulse 2s ease-in-out infinite;
}
.pl-ring-1 { animation-delay: 0s; }
.pl-ring-2 { animation-delay: 0.4s; }
.pl-petals ellipse {
    transform-origin: 50px 50px;
    animation: preloaderPetal 2.2s ease-in-out infinite;
}
.pl-petals ellipse:nth-child(1) { animation-delay: 0s; }
.pl-petals ellipse:nth-child(2) { animation-delay: 0.15s; }
.pl-petals ellipse:nth-child(3) { animation-delay: 0.3s; }
.pl-petals ellipse:nth-child(4) { animation-delay: 0.45s; }
.pl-petals ellipse:nth-child(5) { animation-delay: 0.6s; }
.pl-petals ellipse:nth-child(6) { animation-delay: 0.75s; }
.pl-petals ellipse:nth-child(7) { animation-delay: 0.9s; }
.pl-petals ellipse:nth-child(8) { animation-delay: 1.05s; }
.pl-center {
    transform-origin: 50px 50px;
    animation: preloaderCenter 1.5s ease-in-out infinite;
}
.preloader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-height: 70px;
}
.preloader-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 12px;
    margin: 0;
    color: #1A1A1A;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderTitleIn 0.8s ease forwards;
    animation-delay: 0.2s;
}
[data-theme="dark"] .preloader-title {
    color: #F7E7CE;
}
.preloader-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 6px;
    margin: 0;
    color: #3D3730;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderTitleIn 0.8s ease forwards;
    animation-delay: 0.5s;
    font-style: italic;
}
[data-theme="dark"] .preloader-subtitle {
    color: #B0A898;
}
.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(201, 162, 78, 0.18);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: preloaderProgressIn 0.4s ease forwards;
    animation-delay: 0.8s;
}
.preloader-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #C9A24E, #F7E7CE, #C9A24E, transparent);
    background-size: 200% 100%;
    animation: preloaderFill 2s ease forwards, preloaderShimmer 1.5s linear infinite;
    border-radius: 2px;
}
.preloader-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 4px;
    margin: 0;
    color: #3D3730;
    opacity: 0;
    font-style: italic;
    text-transform: uppercase;
    animation: preloaderTaglineIn 0.8s ease forwards;
    animation-delay: 2.6s;
}
[data-theme="dark"] .preloader-tagline { color: #B0A898; }

@keyframes preloaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.9; }
}
@keyframes preloaderPetal {
    0%, 100% { opacity: 0.35; transform: scale(0.9); }
    50% { opacity: 0.85; transform: scale(1.1); }
}
@keyframes preloaderCenter {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}
@keyframes preloaderTitleIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderProgressIn {
    to { opacity: 1; }
}
@keyframes preloaderFill {
    from { width: 0%; }
    to { width: 100%; }
}
@keyframes preloaderShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes preloaderTaglineIn {
    to { opacity: 0.7; }
}

/* ============================
   MOBILE BOTTOM ACTION BAR
   ============================ */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 99998;
    background: #0E0E0E;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
}
[data-theme="light"] .mobile-bottom-bar {
    background: #FFFFFF;
    border-top-color: rgba(201, 168, 76, 0.35);
}
.mobile-bottom-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    max-width: 600px;
    margin: 0 auto;
    gap: 6px;
    padding: 0 8px;
}
.mobile-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 4px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s;
    -webkit-tap-highlight-color: transparent;
}
.mobile-bar-btn i {
    font-size: 1.15rem;
    line-height: 1;
}
.mobile-bar-btn span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1;
}
.mobile-bar-btn-call {
    color: #FFFFFF;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    border-radius: 10px;
    min-height: 44px;
    animation: mobile-pulse 2s ease-in-out infinite;
}
.mobile-bar-btn-call:hover { filter: brightness(1.1); }
.mobile-bar-btn-wa {
    color: #FFFFFF;
    background: linear-gradient(135deg, #1DA851, #25D366);
    border-radius: 10px;
    min-height: 44px;
    animation: mobile-pulse 2s ease-in-out 0.65s infinite;
}
.mobile-bar-btn-wa:hover { filter: brightness(1.1); }
.mobile-bar-btn-book {
    color: #FFFFFF;
    background: linear-gradient(135deg, #C9A84C, #D4A843);
    border-radius: 10px;
    min-width: 100px;
    min-height: 44px;
    animation: mobile-pulse 2s ease-in-out 1.3s infinite;
}
.mobile-bar-btn-book:hover { filter: brightness(1.08); }
@keyframes mobile-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    }
}
[data-theme="light"] .mobile-bar-btn-call { color: #FFFFFF; }
[data-theme="light"] .mobile-bar-btn-wa { color: #FFFFFF; }
[data-theme="light"] .mobile-bar-btn-book { color: #FFFFFF; }

@media (max-width: 768px) {
    .mobile-bottom-bar { display: block; }
    body { padding-bottom: 62px; }
    .whatsapp-float { display: none !important; }
    .back-to-top { bottom: 78px; }
}
@media (max-width: 480px) {
    .mobile-bottom-bar { display: block; }
    .mobile-bar-btn span { font-size: 0.62rem; }
    .mobile-bar-btn-book { min-width: 80px; }
    body { padding-bottom: 58px; }
}
