/* CSS Variables & Theme */
:root {
    --bg-color: #050505;
    --bg-light: #111111;
    --text-main: #f5f5f5;
    --text-dim: #a0a0a0;
    
    /* Neons */
    --neon-pink: #FF0055;
    --neon-pink-glow: rgba(255, 0, 85, 0.5);
    --neon-yellow: #00F0FF; /* Cyan */
    --neon-yellow-glow: rgba(0, 240, 255, 0.5);
    --neon-blue: #0044FF;
    
    /* Semantic Neons */
    --neon-primary: var(--neon-pink);
    --neon-primary-glow: var(--neon-pink-glow);
    --neon-secondary: var(--neon-yellow);
    --neon-secondary-glow: var(--neon-yellow-glow);
    --cyan: #00F0FF;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 12px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(-45deg, #050505, #0f1015, #000000, #151010);
    background-size: 400% 400%;
    animation: gradientBG 20s ease infinite;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, .logo, .badge {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container-fluid {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

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

section {
    padding: 100px 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
}

.btn-primary {
    background-color: var(--neon-yellow);
    color: #000;
    box-shadow: 0 0 15px var(--neon-yellow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--neon-yellow-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink-glow) inset, 0 0 10px var(--neon-pink-glow);
}

.btn-secondary:hover {
    background-color: rgba(255, 0, 85, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--neon-pink-glow) inset, 0 0 20px var(--neon-pink-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-small {
    padding: 8px 16px;
    font-size: 0.875rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.btn-outline-small:hover {
    background-color: var(--neon-pink);
    border-color: var(--neon-pink);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.glow-effect {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px var(--neon-yellow-glow); }
    100% { box-shadow: 0 0 30px var(--neon-yellow-glow), 0 0 10px var(--neon-yellow); }
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink-glow);
}

.divider {
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
    margin: 0 auto;
    border-radius: 2px;
}

/* Logos */
.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--neon-pink-glow));
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--neon-pink-glow));
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 5%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--text-main), var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1. Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.8);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    width: 90%;
}

.glass-panel-hero {
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(255, 0, 85, 0.15);
}

.main-brand {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #ff99c2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--neon-pink-glow)) drop-shadow(0 0 40px var(--neon-pink));
    letter-spacing: 2px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(226, 255, 0, 0.1);
    color: var(--neon-yellow);
    border: 1px solid rgba(226, 255, 0, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px var(--neon-yellow-glow);
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero-title span {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink-glow), 0 0 40px var(--neon-pink);
    display: inline-block;
    animation: neonFlicker 3s infinite alternate;
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 20px var(--neon-pink-glow), 0 0 40px var(--neon-pink);
        opacity: 1;
    }
    20%, 24%, 55% {
        text-shadow: none;
        opacity: 0.8;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--text-dim);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-15px) translateX(-50%); }
    60% { transform: translateY(-7px) translateX(-50%); }
}

/* 2. Social Proof */
.social-proof {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 0;
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--neon-yellow), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-text {
    color: var(--text-dim);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3. Value Proposition */
.value-prop {
    background: rgba(10, 10, 10, 0.6);
}

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

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(226, 255, 0, 0.3);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 0, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-pink);
    box-shadow: 0 0 20px var(--neon-pink-glow) inset;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    background: rgba(226, 255, 0, 0.1);
    color: var(--neon-yellow);
    box-shadow: 0 0 20px var(--neon-yellow-glow) inset;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* 4. Reviews */
.reviews {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
    position: relative;
    min-height: 350px;
}

.review-card {
    position: absolute;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 1;
}

.review-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: auto;
    z-index: 2;
    border-color: rgba(255, 0, 85, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.stars {
    color: var(--neon-yellow);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 0 0 5px var(--neon-yellow-glow);
}

.review-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-tag {
    font-size: 0.85rem;
    color: var(--neon-yellow);
}

/* Special Booking Form */
.booking-section { padding: 60px 0; background: rgba(5, 5, 5, 0.6); border-top: 1px solid var(--glass-border); }
.booking-container { max-width: 600px; margin: 0 auto; padding: 40px; }
.booking-form .form-group { margin-bottom: 20px; text-align: left; }
.booking-form label { display: block; margin-bottom: 8px; color: var(--neon-pink); font-weight: 600; font-family: var(--font-heading); letter-spacing: 1px;}
.booking-form input, .booking-form select { 
    width: 100%; padding: 12px 15px; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--glass-border); 
    border-radius: 8px; color: var(--text-main); 
    font-family: var(--font-body); outline: none; transition: border-color 0.3s;
}
.booking-form input:focus, .booking-form select:focus { border-color: var(--neon-pink); }
.booking-form select option { background: #0a0015; color: var(--text-main); }

/* Age Gate */
.age-gate-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 10000; display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.age-gate-overlay.hidden { opacity: 0; visibility: hidden; }
.age-gate-content {
    text-align: center; max-width: 450px; padding: 50px 30px;
    background: rgba(10,10,10,0.95); border: 1px solid var(--neon-secondary);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2); border-radius: 16px;
}
.age-gate-logo { height: 80px; margin: 0 auto 30px; filter: drop-shadow(0 0 10px var(--neon-secondary-glow)); }
.age-gate-content h2 { color: var(--text-main); margin-bottom: 15px; font-family: var(--font-heading); }
.age-gate-content p { color: var(--text-dim); margin-bottom: 30px; }
.age-gate-buttons { display: flex; flex-direction: column; gap: 15px; }
body.age-gate-active { overflow: hidden; }

/* Audio Button */
.audio-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--neon-secondary);
    color: var(--neon-secondary);
    font-size: 1.5rem;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;
}
.audio-btn:hover {
    background: var(--neon-secondary);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--neon-secondary-glow);
}
.audio-btn.playing {
    border-color: var(--neon-primary);
    color: var(--neon-primary);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3);
}
.audio-btn.playing:hover {
    background: var(--neon-primary);
    color: #fff;
    box-shadow: 0 0 25px var(--neon-primary-glow);
}

/* Digital Menu */
.menu-section { background: rgba(5, 5, 5, 0.6); padding: 80px 0; border-top: 1px solid var(--glass-border); }

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.menu-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-tab i { font-size: 1.2rem; }
.menu-tab:hover { background: rgba(255, 255, 255, 0.1); color: var(--text-main); }
.menu-tab.active {
    background: var(--neon-secondary);
    color: #000;
    border-color: var(--neon-secondary);
    box-shadow: 0 0 15px var(--neon-secondary-glow);
}

.menu-pane { display: none; animation: fadeIn 0.5s ease forwards; }
.menu-pane.active { display: block; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.menu-category { 
    padding: 35px 30px; 
    border-radius: 20px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    background: linear-gradient(145deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.05);
}
.menu-category:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px rgba(161, 0, 255, 0.2); 
    border-color: rgba(255,255,255,0.15);
}
.menu-category h3 { 
    color: var(--neon-primary); 
    margin-bottom: 8px; 
    font-size: 1.6rem; 
    text-shadow: 0 0 15px var(--neon-primary-glow); 
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255,0,85,0.3);
    padding-bottom: 10px;
    display: inline-block;
}
.menu-desc { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 25px; font-style: italic; opacity: 0.8; }
.menu-items { list-style: none; }
.menu-items li { 
    display: flex; 
    justify-content: space-between; 
    align-items: baseline; 
    margin-bottom: 18px; 
}
.menu-items li:last-child { margin-bottom: 0; }
.menu-items li .name { color: var(--text-main); font-weight: 500; font-size: 1.05rem; letter-spacing: 0.5px; }
.menu-items li .dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.2);
    margin: 0 15px;
    position: relative;
    top: -5px;
    opacity: 0.5;
}
.menu-items .price { 
    color: var(--cyan); 
    font-family: var(--font-heading); 
    font-weight: 700; 
    font-size: 1.15rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.stacked-item { display: flex; justify-content: space-between; align-items: flex-start !important; }
.stacked-names { display: flex; flex-direction: column; gap: 8px; }
.stacked-names .name { font-weight: 500; color: var(--text-main) !important; font-size: 1.05rem; }

.highlight-menu { border: 1px solid var(--neon-secondary); box-shadow: 0 0 20px rgba(0, 240, 255, 0.1) inset; position: relative; overflow: hidden; }
.highlight-menu::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, transparent 70%); z-index: -1; animation: rotateBg 10s linear infinite; }
@keyframes rotateBg { 100% { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Experience Section */
.experience-section { padding: 100px 0; background: rgba(5, 5, 5, 0.8); border-top: 1px solid var(--glass-border); }
.experience-section .intro-text { text-align: center; color: var(--text-dim); font-size: 1.1rem; max-width: 800px; margin: 0 auto 50px; line-height: 1.8; }
.floors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.floor-card { padding: 40px; border-radius: 20px; text-align: center; transition: all 0.4s ease; background: linear-gradient(145deg, rgba(20,20,20,0.8) 0%, rgba(5,5,5,0.9) 100%); border: 1px solid rgba(255,255,255,0.05); }
.floor-card:hover { transform: translateY(-10px); border-color: var(--neon-secondary); box-shadow: 0 15px 40px rgba(0,240,255,0.15); }
.floor-icon { font-size: 3.5rem; color: var(--neon-secondary); margin-bottom: 25px; filter: drop-shadow(0 0 15px var(--neon-secondary-glow)); }
.floor-card h3 { color: var(--neon-primary); margin-bottom: 15px; font-size: 1.8rem; letter-spacing: 1px; }
.floor-card p { color: var(--text-dim); line-height: 1.7; font-size: 1.05rem; }

/* FAQ Section */
.faq-section { padding: 80px 0; background: rgba(10, 10, 10, 0.6); }
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; overflow: hidden; }
.faq-question { width: 100%; padding: 20px 25px; background: none; border: none; text-align: left; color: var(--text-main); font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: rgba(255, 255, 255, 0.05); }
.faq-question i { color: var(--neon-secondary); transition: transform 0.3s; }
.faq-question.active i { transform: rotate(180deg); color: var(--neon-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: rgba(0,0,0,0.3); }
.faq-answer p { padding: 0 25px 20px; color: var(--text-dim); line-height: 1.6; }

/* Event Pop-up */
.event-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(5px);
    z-index: 9999; display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.event-popup-overlay.active { opacity: 1; pointer-events: all; }
.event-popup-content {
    background: rgba(10,10,10,0.95); padding: 30px; max-width: 400px; width: 90%;
    text-align: center; position: relative; transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.event-popup-overlay.active .event-popup-content { transform: scale(1); }
.close-popup {
    position: absolute; top: 10px; right: 15px; background: none; border: none;
    color: var(--text-dim); font-size: 2rem; cursor: pointer; transition: color 0.3s;
}
.close-popup:hover { color: var(--neon-pink); }
.popup-title { font-family: var(--font-heading); color: var(--text-main); margin-bottom: 10px; }

/* Floating Buttons Container */
.floating-buttons-container {
    position: fixed; bottom: 30px; right: 30px;
    display: flex; flex-direction: column; gap: 15px; z-index: 1000;
}

.floating-whatsapp, .floating-messenger {
    width: 65px; height: 65px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 38px; color: white; text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp { background-color: #25D366; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
.floating-whatsapp:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7); }

.floating-messenger { background-color: #0084FF; box-shadow: 0 4px 15px rgba(0, 132, 255, 0.4); }
.floating-messenger:hover { transform: scale(1.1) translateY(-5px); box-shadow: 0 6px 25px rgba(0, 132, 255, 0.7); }

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink-glow);
    transform: scale(1.3);
}

/* 5. Gallery */
.gallery {
    padding: 0 0 100px 0;
}

.gallery-header {
    margin-bottom: 40px;
}

.gallery-subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-hashtag {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
    padding: 0 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
    filter: contrast(1.15) saturate(1.3); /* Adds life and vibrant colors to the photos */
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 3rem;
    color: #fff;
}

.gallery-item:hover {
    box-shadow: 0 0 20px var(--neon-pink-glow);
    border-color: var(--neon-pink);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: contrast(1.2) saturate(1.5);
}

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

/* Responsive adjustments for gallery */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item.large {
        grid-column: span 1;
    }
}

/* 6. Closing Section */
.closing {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(5, 5, 5, 0.9) 100%);
    backdrop-filter: blur(5px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.closing-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.closing-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* 7. Footer */
.footer {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--neon-secondary-glow));
}

.highlight-text {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-desc {
    color: var(--text-dim);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-secondary);
    color: var(--neon-secondary);
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    background: var(--neon-secondary);
    color: #000;
    box-shadow: 0 0 20px var(--neon-secondary-glow);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--neon-primary);
    border-color: var(--neon-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--neon-primary-glow);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.list-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 0, 85, 0.1);
    color: var(--neon-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.list-content {
    display: flex;
    flex-direction: column;
}

.list-content strong {
    color: var(--text-main);
    margin-bottom: 3px;
    font-size: 1.05rem;
}

.list-content span {
    color: var(--text-dim);
    font-size: 0.95rem;
}

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

.footer-links li a {
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links li a i {
    color: var(--neon-secondary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--text-main);
    padding-left: 5px;
}

.footer-links li a:hover i {
    transform: translateX(5px);
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    padding: 5px;
}

.map-container iframe {
    border-radius: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-badge {
    background: rgba(255, 0, 85, 0.1);
    color: var(--neon-primary);
    border: 1px solid rgba(255, 0, 85, 0.3);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Responsive Footer */
.mobile-bottom-bar { display: none; }

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-title { font-size: 5rem; }
    .hero-title span { font-size: 6rem; }
}

@media (max-width: 768px) {
    /* Base Mobile Layout */
    .container { padding: 0 20px; }
    .menu-section, .faq-section, .experience-section { padding: 60px 0; }
    
    /* 1. Perfect 100dvh Hero */
    .hero { height: 100dvh; min-height: 100dvh; }
    .hero-content { padding-top: 10vh; }
    .hero-title { font-size: 3.5rem; letter-spacing: 1px; line-height: 1.1; margin-bottom: 10px; }
    .hero-title span { font-size: 4rem; display: block; margin-top: 5px; }
    .hero-subtitle { font-size: 1.05rem; max-width: 100%; margin: 0 auto 30px; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
    .section-header h2 { font-size: 2.2rem; }
    .hero-overlay { background: linear-gradient(to bottom, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.7) 60%, #050505 100%); }
    
    /* 2. Swipeable Horizontal Menu Tabs */
    .menu-tabs { 
        flex-direction: row; 
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto; 
        scroll-snap-type: x mandatory;
        padding-bottom: 15px; /* space for scrollbar/shadow */
        margin: 0 -20px 30px; 
        padding: 0 20px 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .menu-tabs::-webkit-scrollbar { display: none; } /* Chrome/Safari */
    .menu-tab { 
        flex: 0 0 auto; 
        scroll-snap-align: start; 
        white-space: nowrap; 
        font-size: 1.05rem;
        padding: 10px 20px;
    }
    
    .menu-category { padding: 25px 15px; }
    .menu-category h3 { font-size: 1.4rem; }
    
    .menu-items li {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    .menu-items li .dots { display: none; }
    .menu-items .price { align-self: flex-start; margin-top: 8px; font-size: 1.2rem; }
    
    .stacked-item { flex-direction: column !important; align-items: flex-start !important; }
    .stacked-names .name { font-size: 1rem; }
    
    /* 3. Swipeable Horizontal Grids (Floors & Gallery) */
    .floors-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin: 0 -20px;
        padding: 0 20px 30px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .floors-grid::-webkit-scrollbar { display: none; }
    .floor-card {
        flex: 0 0 85vw;
        scroll-snap-align: center;
        padding: 30px 20px;
    }
    
    .gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin: 0 -20px;
        padding: 0 20px 30px;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .gallery-grid::-webkit-scrollbar { display: none; }
    .gallery-item {
        flex: 0 0 80vw;
        height: 350px;
        scroll-snap-align: center;
    }
    
    /* 4. Hide old floating buttons & Show Premium Bottom Bar */
    .floating-buttons-container { display: none !important; }
    
    .mobile-bottom-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
        z-index: 1000;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    }
    
    .mobile-bar-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 15px;
        background: linear-gradient(45deg, #25D366, #128C7E);
        color: #fff;
        border-radius: 12px;
        font-weight: 800;
        font-size: 1.2rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
        transition: transform 0.2s;
    }
    .mobile-bar-btn:active {
        transform: scale(0.96);
    }
    
    /* Contact Card Mobile */
    .contact-card { padding: 25px 15px !important; }
    .contact-card h3 { font-size: 1.5rem !important; }
    .contact-card p { font-size: 1.2rem !important; }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    /* Reposition Audio Button to be above the Bottom Bar */
    .audio-btn { bottom: 95px; transform: scale(0.85); left: 15px; z-index: 1001; }
    
    /* Extra space at bottom for Mobile Action Bar */
    body { padding-bottom: 80px; }
}

@media (max-width: 600px) {
    .hero-cta, .closing-cta {
        flex-direction: column;
    }
    .btn, .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .menu-grid, .floors-grid, .features-grid, .stats-container {
        grid-template-columns: 1fr;
    }
}
