/* --- GLOBAL DESIGN ENVIRONMENT TOKENS --- */
:root {
    /* Core Color Palette Archetype */
    --primary: #0047AB;         /* Premium Royal Blue */
    --primary-dark: #0A1931;    /* Deep Midnight Luxury Blue */
    --gold: #D4Af37;            /* Regal Himalayan Gold */
    --gold-dark: #AA7C11;       /* Deep Antique Gold */
    --accent: #1E5631;          /* Deep Emerald Fine Dining Green */
    --bg-creme: #F9FBFD;        /* Ultra-Clean Alabaster White with a soft blue undertone */
    --card-bg: #FFFFFF;         /* Crisp Solid White */
    
    /* Typography Palette Harmony */
    --text-main: #0F172A;       /* Deep Dark Sapphire for rich readability contrast */
    --text-muted: #64748B;      /* Sophisticated Slate Blue-Gray */
    
    /* Structural Elements */
    --glass-nav: rgba(255, 255, 255, 0.96);
    --border-line: rgba(0, 71, 171, 0.08);
    
    /* Luxury Dynamic Brand Shadows */
    --shadow-sm: 0 8px 24px rgba(0, 71, 171, 0.04);
    --shadow-md: 0 16px 36px rgba(0, 71, 171, 0.08);
    --shadow-lg: 0 32px 64px rgba(0, 19, 48, 0.15);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- ROOT CONFIGURATIONS & RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-creme);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Premium Scrollbar Mapping Layout */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-creme);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
    border: 2px solid var(--bg-creme);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* --- SCROLL PROGRESS LINE INDICATOR --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--gold));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* --- LOGO AMBIENT PRELOADER SCREEN --- */
/* ==========================================================================
   MARVELLOUS BRAND WATERMARK PRELOADER ENVIRONMENT
   Revolves perfectly around White, Blue, Green, and Gold design tokens
   ========================================================================== */

.preloader-overlay {
    position: fixed;
    inset: 0;
    /* Rich brand mesh matrix moving across the background screen */
    background: linear-gradient(135deg, 
        rgba(0, 71, 171, 1) 0%,      /* Deep Brand Blue */
        rgba(30, 86, 49, 1) 50%,     /* Fine Dining Emerald Green */
        rgba(255, 255, 255, 1) 100%  /* Brilliant Luxury White */
    );
    background-size: 400% 400%;
    animation: auraSpatialGradient 12s ease infinite;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.85s cubic-bezier(0.86, 0, 0.07, 1);
}

/* Mascot Watermark Layer: Uses 'contain' so it NEVER loses its pixels or stretches.
   Floating independently behind the logo to create high-end parallax depth.
*/
.preloader-overlay::before {
    content: '';
    position: absolute;
    
    /* Box-Model Centering anchors ensure it stays dead center on ALL screens */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto; 
    
    /* Dynamic responsive scaling rules */
    width: 90vw;
    height: 90vh;
    max-width: 900px;  /* Premium structural cap size for laptop panels */
    max-height: 900px;
    
    background: url('./uploads/sarangi-background-preloader1.png') center/contain no-repeat;
    opacity: 0.98;
    mix-blend-mode: screen;
    
    /* Soft edge vignette blend mapping handles edge transitions elegantly */
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 70%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 70%);
    
    z-index: -1;
    pointer-events: none;
    
    /* Slightly tightened translation speed matrix optimize mobile viewport limits */
    animation: mascotCinematicDrift 20s ease-in-out infinite alternate;
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* --- LOGO SIZING PROTECTION BLOCK --- */
.loader-logo {
    /* Fixed clamp syntax to allow beautiful, responsive scaling across screens */
    width: clamp(210px, 40vw, 210px); 
    height: auto;
    object-fit: contain;
    display: block;
    transform-origin: center bottom;
    
    /* ─── CRITICAL BOX BORDER & BACKDROP ELIMINATION FIXES ─── */
    border: none !important;
    outline: none !important;
    background: transparent;
    mix-blend-mode: multiply;
    mix-blend-mode: screen;
    
    /* ─── LUXURY FLOATING DEPTH TRANSITIONS ─── */
    filter: drop-shadow(0 10px 15px rgba(10, 25, 49, 0.3)) 
            drop-shadow(0 20px 30px rgba(0, 71, 171, 0.2));
    animation: eliteLogoFloat 4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* ==========================================================================
   UPDATED PARALLAX DRIFT KEYFRAMES (Symmetric Center-Aligned Balance)
   ========================================================================== */
@keyframes mascotCinematicDrift {
    0% {
        /* Loops with symmetric multi-axis offsets to protect mobile centers */
        transform: scale(0.98) translate(-6px, -6px) rotate(-1deg);
    }
    100% {
        transform: scale(1.04) translate(6px, 6px) rotate(1deg);
    }
}

/* Tracking Bar under the Logo */
.loader-track {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: trackShadowSync 3s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.loader-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), #FFFFFF, var(--gold), transparent);
    position: absolute;
    left: -100%;
    animation: cycleLoaderBar 2s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
}

/* ==========================================================================
   PRELOADER TIMING KEYFRAMES
   ========================================================================== */

/* Smooth fluid motion for background color waves */
@keyframes auraSpatialGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Slow, elegant 3D drifting loop for your Sarangi Mascot background image */
@keyframes mascotCinematicDrift {
    0% {
        transform: scale(0.95) translate(-10px, -10px) rotate(-2deg);
    }
    100% {
        transform: scale(1.05) translate(10px, 10px) rotate(2deg);
    }
}

/* Premium Weight-Based Bounce and Pulse Animation for the Brand Logo
   Creates a squash-and-stretch effect used by elite web environments
*/
@keyframes luxuryLogoBounce {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        filter: drop-shadow(0 15px 25px rgba(0, 45, 110, 0.25));
    }
    45% {
        transform: translateY(-15px) scale(1.02) rotate(0.5deg);
        filter: drop-shadow(0 30px 35px rgba(0, 31, 77, 0.4)); /* Distance expands shadow map */
    }
    50% {
        transform: translateY(-15px) scale(1.02) rotate(-0.5deg);
    }
}

/* Synchronizes the tracking line below the logo with the bounce timing */
@keyframes trackShadowSync {
    0%, 100% {
        transform: scaleX(1);
        opacity: 0.8;
    }
    50% {
        transform: scaleX(0.85); /* Line subtly compresses as the logo lifts */
        opacity: 0.4;
    }
}

@keyframes cycleLoaderBar {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* --- HIGH-END NAVIGATION BAR --- */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--glass-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    z-index: 3000;
    transition: var(--transition-smooth);
}

.glass-nav.scrolled {
    height: 65px;
    box-shadow: var(--shadow-sm);
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.glass-nav.scrolled .logo img {
    height: 44px;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

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

#langBtn {
    background: rgba(0, 71, 171, 0.04);
    border: 1px solid rgba(0, 71, 171, 0.1);
    color: var(--primary);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

#langBtn:hover {
    background: rgba(0, 71, 171, 0.08);
    border-color: var(--gold);
    transform: scale(1.08);
}

/* --- MOBILE ANIMATED BURGER NAVIGATION --- */
.mobile-toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 3100;
}

.mobile-toggle-btn .bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

@media (min-width: 992px) {
    .nav-links { display: flex; }
    .mobile-toggle-btn { display: none; }
}

.mobile-nav-panel {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.99);
    z-index: 2900;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-panel.active {
    transform: translateX(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

/* Mobile Toggle Hamburger Transformation state */
.mobile-toggle-btn.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: var(--gold); }
.mobile-toggle-btn.active .bar:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.mobile-toggle-btn.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: var(--gold); }

/* --- HERO WRAPPER SCROLL LAYOUT --- */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    inset: 0;
    background: url('./uploads/food/multiple-dish-showcase-on-table.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.05);
    will-change: transform;
}

@media (max-width: 1024px) {
    .hero-parallax-bg {
        background-attachment: scroll;
        transform: none !important;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 25, 49, 0.45) 0%, rgba(10, 25, 49, 0.8) 100%);
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    max-width: 1000px;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 5.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 35px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

.scroll-indicator-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse-scroll {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    display: block;
    position: relative;
}

/* --- REGAL GREEN BOOKING BUTTON --- */
.btn-green {
    background-color: var(--accent); /* Uses your authentic emerald green token (#1E5631) */
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(9, 80, 25, 0.25);
}

.btn-green:hover {
    background-color: #063b19; /* Smooth rich transition shift on hover state pointer actions */
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 86, 49, 0.4);
}
.mouse-scroll::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: cycleMouseWheel 2s infinite ease-in-out;
}

@keyframes cycleMouseWheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
    100% { top: 8px; opacity: 1; }
}

/* --- STRUCTURAL ARCHITECTURE CONTAINERS --- */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 0;
}

.section-offset-top { padding-top: 0; }

.luxury-box {
    background-color: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--border-line);
    padding: 50px 45px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.luxury-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 71, 171, 0.2);
}

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

@media (min-width: 992px) {
    .grid-70-30 { grid-template-columns: 7.2fr 2.8fr; }
}

/* Brand Geometric Accent Dividers */
.brand-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    margin: 25px 0;
    border-radius: 10px;
}
.brand-divider.center-auto {
    margin: 25px auto;
}

/* --- LEGACY CONTENT STRUCTURING --- */
.story-teaser {
    cursor: pointer;
    border-left: 6px solid var(--gold);
}

.story-teaser:hover {
    border-left-color: var(--primary);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary);
    font-weight: 700;
}

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

.story-preview-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
}

.story-preview-text strong {
    color: var(--gold-dark);
}

/* Metrics Core Card styling mapping rules */
.metrics-card {
    background-color: var(--primary);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    text-align: center;
    border: none;
    box-shadow: var(--shadow-md);
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.85;
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 5px;
}

.metric-separator {
    width: 60%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}

.metric-subtext {
    font-size: 0.85rem;
    opacity: 0.85;
}

.metric-action-wrap {
    margin-top: 10px;
}

.metric-hint {
    font-size: 0.85rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* --- FUNCTION EVENT SECTION GRID --- */
.section-header-centered {
    margin-bottom: 60px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.event-box {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 28px;
    text-align: center;
    border: 1px solid var(--border-line);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.event-box:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.event-icon-circle {
    width: 75px;
    height: 75px;
    background-color: rgba(212, 175, 55, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.event-box:hover .event-icon-circle {
    background-color: var(--primary);
}

.event-box i {
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition-smooth);
}

.event-box:hover i {
    color: #FFFFFF;
    transform: scale(1.1);
}

.event-box-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
}

/* --- CULINARY SHOWCASE MATRIX (MENU) --- */
.menu-showcase-section {
    background-color: rgba(0, 71, 171, 0.02);
    border-radius: 60px 60px 0 0;
    border-top: 1px solid var(--border-line);
}

.menu-tabs-wrapper {
    width: 100%;
    margin-bottom: 45px;
    overflow: visible;
}

.menu-tabs {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 4px 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background-color: var(--card-bg);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 12px 24px rgba(0, 71, 171, 0.15);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 30px;
    width: 100%;
}

@media (max-width: 640px) {
    .menu-grid { grid-template-columns: 1fr; }
}

/* Premium Menu Presentation Card Structure */
.menu-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.dish-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

.dish-price {
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 1.15rem;
    white-space: nowrap;
    background-color: rgba(212, 175, 55, 0.08);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.dish-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- PREMIUM INTERACTIVE ACTION SYSTEM (BUTTONS) --- */
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(170, 124, 17, 0.4);
}

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

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-uber {
    background-color: var(--primary);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(10, 25, 49, 0.2);
}

.btn-uber:hover {
    background-color: var(--accent);
    color: #FFFFFF;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 34, 86, 0.3);
}

/* --- MASTER CORPORATE MODULES (FOOTER) --- */
.luxury-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    border-top: 2px solid var(--gold);
    padding-top: 80px;
    border-radius: 40px 40px 0 0;
}

.footer-grid-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

@media (min-width: 992px) {
    .footer-grid-wrap { grid-template-columns: 6.5fr 3.5fr; }
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--gold);
    width: 20px;
    font-size: 1.1rem;
}

.footer-social-channels {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.footer-social-channels a {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-channels a:hover {
    background-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.footer-map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    height: 280px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-copyright-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-copyright-banner a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px transparent solid;
    transition: var(--transition-smooth);
}

.footer-copyright-banner a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* --- OVERLAY CONTROL INTERFACES (MODALS) --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 49, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 620px;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid var(--gold);
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: windowSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes windowSlideIn {
    from { opacity: 0; transform: translateY(40px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--primary);
}

.modal-header-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    padding-right: 20px;
}

.modal-body-content {
    margin: 25px 0;
    line-height: 1.8;
    color: var(--text-main);
    font-size: 1rem;
}

.modal-highlight-tag {
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.modal-cta-wrap {
    margin-top: 10px;
}

/* Adjustments mapping safe scaling targets for small handheld viewing monitors */
@media (max-width: 480px) {
    .luxury-box { padding: 35px 25px; }
    .modal-content { padding: 35px 25px; }
    .hero-cta-group .btn-action { width: 100%; }
    
    /* ADJUSTMENT: Scale down the sticky nav bar button size directly here */
    .glass-nav .btn-action { padding: 8px 14px; font-size: 0.72rem; gap: 4px; }
    .glass-nav .btn-action i { font-size: 0.75rem; }
}

/* --- REGAL AMBIENT FLOATING PARTICLES --- */
#ambient-particle-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Safely locks clicks out so users can interact with menus normally */
    z-index: 1; /* Glides perfectly beneath text cards but over white backgrounds */
    overflow: hidden;
}

.ambient-particle {
    position: absolute;
    pointer-events: none;
    will-change: transform, opacity;
    opacity: 0;
}

/* ─── LUXURY SLOW-MOTION KEYFRAMES TRACKS ─── */

/* Paces items smoothly from bottom to top */
@keyframes ambientFloatUp {
    0% {
        transform: translateY(105vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.08; /* Delicate watermark opacity level to ensure code readability */
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateY(-15vh) translateX(var(--drift-x, 40px)) rotate(var(--drift-rotation, 180deg));
        opacity: 0;
    }
}

/* Paces items smoothly from top to bottom */
@keyframes ambientFloatDown {
    0% {
        transform: translateY(-15vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.08;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateY(105vh) translateX(var(--drift-x, -40px)) rotate(calc(var(--drift-rotation) * -1));
        opacity: 0;
    }
}