/* =======================================
   RED CHILLY FAMILY RESTAURANT
   Premium Dark + Neon Aesthetic 
   ======================================= */

   :root {
    --col-bg: #050505;
    --col-bg-elevate: rgba(25, 10, 10, 0.8);
    --col-primary: #8B0000;
    --col-primary-glow: rgba(139, 0, 0, 0.7);
    --col-accent: #FF4500;
    --col-accent-glow: rgba(255, 69, 0, 0.6);
    --col-highlight: #FFD700;
    --col-text: #F3F4F6;
    --col-text-muted: #9CA3AF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-circle: 50%;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--col-accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Focus visible styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--col-accent);
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    body {
        animation: none !important;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --col-bg: #000;
        --col-text: #fff;
        --col-accent: #ff6600;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--col-bg);
    color: #fff;
    margin: 0;
    overflow-x: hidden;
    line-height: 1.6;
    animation: fadeInPage 0.8s ease-out;
}

body.page-enter {
    animation: fadeInPage 0.8s ease-out both;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Top Banner (Urgency) */
.top-banner {
    background: linear-gradient(90deg, var(--col-primary), var(--col-accent));
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--col-accent-glow);
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    animation: flash 3s infinite alternate;
}

@keyframes flash {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 36px;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--col-highlight);
    z-index: 1001;
    transition: width 0.1s;
    box-shadow: 0 0 10px var(--col-highlight);
}

/* Typography Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h3 { font-size: 1.5rem; font-weight: 700; }

.text-primary { color: var(--col-primary); }
.text-neon-orange { 
    color: var(--col-accent); 
    text-shadow: 0 0 20px var(--col-accent-glow);
}

/* General Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section { padding: 100px 0; }
.section-title { margin-bottom: 50px; text-align: center; }
.subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Navbar */
.header {
    position: fixed;
    top: 36px;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-actions {
    display: none !important;
}
.logo-box {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img { mix-blend-mode: screen;
    height: 50px;
    transition: var(--transition);
}
.logo-img:hover {
    transform: scale(1.05);
}

.desktop-nav {
    display: none;
    gap: 30px;
}
@media (min-width: 768px) { .desktop-nav { display: flex; } }

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    font-size: 1.1rem;
    transition: var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--col-accent);
    box-shadow: 0 0 10px var(--col-accent);
    transition: var(--transition);
}
.nav-link:hover { color: var(--col-accent); text-shadow: 0 0 10px var(--col-accent-glow); }
.nav-link:hover::after { width: 100%; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-heading);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1.1rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
    color: #fff;
    box-shadow: 0 4px 15px var(--col-primary-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--col-accent-glow);
    filter: brightness(1.1);
}
.btn-secondary.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}
.btn-secondary.glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
.btn-outline.glow-red {
    background: transparent;
    border: 2px solid var(--col-accent);
    color: #fff;
    box-shadow: inset 0 0 10px var(--col-accent-glow), 0 0 10px var(--col-accent-glow);
    animation: pulsate-border 2s infinite alternate;
}
@media(max-width: 768px){ .nav-actions { display: none; } }

@keyframes pulsate-border {
    0% { box-shadow: inset 0 0 5px var(--col-accent-glow), 0 0 5px var(--col-accent-glow); }
    100% { box-shadow: inset 0 0 15px var(--col-accent), 0 0 15px var(--col-accent); }
}
.pulse-glow {
    animation: primary-pulse 2s infinite;
}
@keyframes primary-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 69, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #120707;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
/* Readability shade without red tint so the hero photo stays clear. */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.22) 0%, rgba(5,5,5,0.08) 48%, rgba(5,5,5,0.34) 100%);
}

.ambient-particles {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3);
    color: var(--col-highlight);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255,215,0,0.1);
}
.sub-headline {
    font-size: 1.25rem;
    color: var(--col-text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}
.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--col-text-muted);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 3;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Trust Banner */
.trust-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    background: var(--col-bg-elevate);
    padding: 40px 20px;
    border-top: 1px solid rgba(255,69,0,0.2);
    border-bottom: 1px solid rgba(255,69,0,0.2);
    position: relative;
    z-index: 4;
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.trust-item i {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--col-primary-glow));
}
.trust-item h4 { margin-bottom: 0; font-size: 1.2rem; }
.trust-item p { color: var(--col-text-muted); font-size: 0.9rem; }

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.menu-card {
    background: rgba(20, 20, 20, 0.8);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
}
.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px var(--col-primary-glow);
    border-color: rgba(255,69,0,0.3);
}
.popular-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--col-highlight);
    color: #000;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255,215,0,0.4);
}
.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}
.menu-card:hover .card-img {
    transform: scale(1.05);
}
.card-content {
    padding: 25px;
    position: relative;
    background: linear-gradient(to top, rgba(20,20,20,1) 80%, rgba(20,20,20,0) 100%);
    margin-top: -30px;
}
.card-content .category {
    font-size: 0.85rem;
    color: var(--col-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}
.card-content h3 { margin-bottom: 10px; }
.card-content p { color: var(--col-text-muted); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.4; }
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}
.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}
.price del {
    font-size: 0.85rem;
    color: var(--col-text-muted);
    font-weight: 400;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    opacity: 0.6;
}
.order-btn {
    background: transparent;
    border: 1px solid var(--col-accent);
    color: var(--col-accent);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.order-btn:hover {
    background: var(--col-accent);
    color: #fff;
    box-shadow: 0 0 15px var(--col-accent-glow);
}

/* Gallery Section */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}
@media (max-width: 900px) { .masonry-grid { column-count: 2; } }
@media (max-width: 600px) { .masonry-grid { column-count: 1; } }

.gallery-item {
    margin-bottom: 20px;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover::after {
    opacity: 1;
}

.gallery-empty-state {
    break-inside: avoid;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    color: var(--text-muted);
    text-align: center;
    font-size: 0.96rem;
    line-height: 1.6;
}

.gallery-empty-state.is-error {
    border-color: rgba(255, 107, 107, 0.35);
    color: #ffd5d5;
}

/* Reviews Section */
.reviews {
    background: url('https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
    position: relative;
}
.reviews::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
}
.reviews .container { position: relative; z-index: 2; }
.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}
.stars i { color: var(--col-highlight); font-size: 2.5rem; filter: drop-shadow(0 0 10px rgba(255,215,0,0.5)); }
.reviews-header h2 { margin-top: 15px; font-size: 2.5rem; }
.reviews-header p { color: var(--col-text-muted); font-size: 1.1rem; }

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: var(--radius-md);
    position: relative;
    backdrop-filter: blur(10px);
    min-width: 0;
    overflow: hidden;
}
.quote-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--col-primary);
    width: 40px; height: 40px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px var(--col-primary-glow);
}
.review-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.review-card h4 {
    color: var(--col-accent);
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.review-card .review-date,
.review-card .review-stars {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Location Contact */
.container-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}
.contact-info, .map-container {
    flex: 1;
    min-width: 300px;
}
.info-blocks { margin-top: 30px; }
.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.icon-circle {
    width: 60px; height: 60px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--col-accent);
    flex-shrink: 0;
}
.info-block p, .info-block a {
    color: var(--col-text-muted);
    text-decoration: none;
    font-size: 1.1rem;
}
.info-block a:hover { color: var(--col-accent); }
.map-glow-border {
    padding: 10px;
    background: linear-gradient(135deg, var(--col-primary), var(--col-accent));
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px var(--col-primary-glow);
}
.map-glow-border iframe {
    border-radius: calc(var(--radius-lg) - 5px) !important;
    display: block;
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { mix-blend-mode: screen;
    height: 80px;
    margin-bottom: 20px;
}
footer p { color: var(--col-text-muted); max-width: 400px; margin: 0 auto 40px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* Lazy Load Skeleton */
.skeleton {
    background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 100%;
    animation: loadingSkeleton 1.5s infinite linear;
    position: relative;
    overflow: hidden;
}
.skeleton img {
    opacity: 0;
    transition: opacity 0.5s ease;
}
@keyframes loadingSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Floating UI Elements */
.floating-music {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--col-primary);
    color: var(--col-primary);
    width: 50px; height: 50px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
}
.floating-music.playing {
    color: var(--col-accent);
    border-color: var(--col-accent);
    box-shadow: inset 0 0 10px var(--col-accent-glow), 0 0 10px var(--col-accent-glow);
}
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px; height: 60px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
}
.wa-tooltip {
    position: absolute;
    right: 80px;
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.floating-whatsapp:hover .wa-tooltip {
    opacity: 1; visibility: visible;
}

/* Mobile Bottom Bar Sticky */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: var(--col-bg-elevate);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.bottom-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}
.bottom-btn.call-btn {
    background: var(--col-bg);
    color: #fff;
}
.bottom-btn.wa-btn {
    background: #25D366;
    color: #fff;
}

@media(max-width: 768px) {
    .floating-whatsapp { 
        bottom: 80px; /* Above the mobile bar */
        width: 50px; height: 50px; font-size: 1.5rem; right: 20px;
    }
    .mobile-bottom-bar { display: flex; }
    footer { padding-bottom: 100px; /* Space for sticky bar */ }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Mobile View Navbar */
.mobile-menu-toggle {
    display: none;
    margin-left: 8px;
    margin-right: 0;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(255, 69, 0, 0.38);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.92), rgba(255, 69, 0, 0.82));
    box-shadow: 0 14px 28px rgba(139, 0, 0, 0.28);
    font-size: 1.45rem;
    cursor: pointer;
    color: #ffe0cc;
    transition: var(--transition);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
    transform: translateY(-1px);
    color: #fff;
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 18px 34px rgba(255, 69, 0, 0.32);
}

/* ========== TABLET (max-width: 768px) ========== */
@media(max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .desktop-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        padding: 15px 0;
        border-bottom: 2px solid var(--col-accent);
        z-index: 9999;
        gap: 0;
    }
    .desktop-nav.active .nav-link {
        padding: 14px 25px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .desktop-nav.active .nav-link:last-child {
        border-bottom: none;
    }
    .mobile-menu-toggle {
        display: inline-flex;
    }
    .nav-actions {
        display: none;
    }

    /* PERFORMANCE: Kill ALL backdrop-filter (GPU killer on low-end) */
    *,
    *::before,
    *::after {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* PERFORMANCE: Kill all box-shadow animations */
    .pulse-glow,
    .btn-outline.glow-red {
        animation: none !important;
    }

    /* PERFORMANCE: Remove text-shadow glow effects */
    .text-neon-orange {
        text-shadow: none !important;
    }
    .nav-link:hover {
        text-shadow: none !important;
    }

    /* PERFORMANCE: Kill floating WhatsApp bounce */
    .floating-whatsapp {
        animation: none !important;
    }

    /* PERFORMANCE: Kill particles overlay */
    .ambient-particles {
        display: none !important;
    }

    /* PERFORMANCE: Fixed backgrounds cause repaint jank */
    .reviews {
        background-attachment: scroll !important;
    }

    /* PERFORMANCE: Kill all hover transforms on touch */
    .menu-card:hover,
    .gallery-item:hover img,
    .btn:hover,
    .magnetic:hover {
        transform: none !important;
    }
    .gallery-item:hover::after {
        opacity: 0 !important;
    }

    /* PERFORMANCE: Reduce all transitions to minimum */
    .reveal {
        transition: opacity 0.25s ease, transform 0.25s ease !important;
        transform: translateY(20px) !important;
    }
    .reveal.active {
        transform: translateY(0) !important;
    }
    .delay-1, .delay-2, .delay-3 {
        transition-delay: 0s !important;
    }

    /* PERFORMANCE: Contain layout to prevent reflows */
    .section {
        padding: 50px 0;
        contain: layout style;
    }

    /* Hero */
    .hero { min-height: 85vh; }
    .headline { font-size: 2rem !important; }
    .sub-headline { font-size: 0.95rem !important; }
    .hero-cta { flex-direction: column; padding: 0 20px; gap: 10px; }
    .hero-cta .btn { width: 100%; justify-content: center; }

    /* Trust Banner */
    .trust-banner {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }
    .trust-item {
        justify-content: flex-start;
    }

    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Gallery Masonry */
    .masonry-grid {
        columns: 2 !important;
        gap: 10px !important;
    }

    /* Reviews */
    .review-cards {
        grid-template-columns: 1fr !important;
    }

    /* About Grid */
    .about-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    /* Contact Section */
    .container-flex {
        flex-direction: column;
    }
    .contact-info, .map-container {
        width: 100% !important;
    }

    /* Footer */
    .footer-content {
        padding: 30px 20px;
    }

    /* Disable 3D tilt on touch devices */
    .menu-card {
        transform: none !important;
        will-change: auto !important;
    }

    /* Top banner - kill animation */
    .top-banner {
        animation: none !important;
    }

    /* Scroll progress - kill glow */
    .scroll-progress {
        box-shadow: none !important;
    }
}

/* ========== PHONE (max-width: 480px) ========== */
@media(max-width: 480px) {
    /* PERFORMANCE: Kill page fade-in on very low-end */
    body {
        animation: none !important;
    }

    /* PERFORMANCE: Kill scroll-indicator bounce */
    .scroll-indicator {
        animation: none !important;
        font-size: 0.8rem;
    }
    /* PERFORMANCE: Kill skeleton shimmer */
    .skeleton::after {
        animation: none !important;
        display: none !important;
    }

    /* PERFORMANCE: Kill ALL box-shadows site-wide */
    .trust-badge,
    .btn-primary,
    .review-card,
    .quote-icon,
    .map-glow-border,
    .floating-whatsapp,
    .icon-circle,
    .scroll-progress {
        box-shadow: none !important;
    }

    /* PERFORMANCE: Kill filter effects */
    .trust-item i,
    .stars i {
        filter: none !important;
    }

    .hero { min-height: 80vh; }
    .headline { font-size: 1.6rem !important; line-height: 1.3; }
    .sub-headline { font-size: 0.88rem !important; }
    .trust-badge { font-size: 0.8rem; padding: 6px 14px; }

    .top-banner span { font-size: 0.75rem; }

    /* Menu Cards */
    .card-content h3 { font-size: 1.05rem; }
    .card-content p { font-size: 0.85rem; }
    .price { font-size: 1rem; }

    /* Gallery single column */
    .masonry-grid {
        columns: 1 !important;
    }

    /* Review cards smaller */
    .review-card {
        padding: 20px !important;
    }
    .review-card p { font-size: 0.9rem; }

    /* Section title */
    .section-title h2 { font-size: 1.5rem; }
    .subtitle { font-size: 0.75rem; }

    /* Header */
    .logo-img { mix-blend-mode: screen; height: 35px; }
    .header { padding: 8px 0; }

    /* Mobile bottom bar */
    .mobile-bottom-bar {
        padding: 8px 15px;
    }
    .bottom-btn { font-size: 0.85rem; padding: 10px; }

    /* Floating buttons */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 80px;
        right: 15px;
    }
    .floating-music {
        display: none; /* Hide music on small phones */
    }

    /* Contact form */
    #contactForm input,
    #contactForm textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-logo { mix-blend-mode: screen; height: 50px; }
    footer { padding: 40px 0 80px; }
    footer p { font-size: 0.85rem; }
    .footer-bottom { font-size: 0.75rem; }
}

/* ========== ULTRA PERFORMANCE: prefers-reduced-motion ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Skeletons */
.skeleton {
    position: relative;
    overflow: hidden;
    background-color: #111;
    border-radius: inherit;
}
.skeleton::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, transparent 0%, rgba(255, 69, 0, 0.1) 50%, transparent 100%);
}
@keyframes shimmer {
    100% { left: 150%; }
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}
.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.8) 0%, rgba(139,0,0,0.5) 50%, #050505 100%);
    z-index: 2;
}

/* Modals (Booking & Lightbox) */
.modal-overlay, .lightbox-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.modal-overlay.active, .lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.glass-panel {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 69, 0, 0.4);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(255,69,0,0.1);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .glass-panel {
    transform: translateY(0) scale(1);
}
.location-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 3, 0.88);
    backdrop-filter: blur(10px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.location-gate-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.location-gate-card {
    width: min(92vw, 460px);
    background: rgba(16, 16, 16, 0.96);
    border: 1px solid rgba(255, 69, 0, 0.28);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.location-gate-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--col-highlight);
    margin-bottom: 10px;
}
.location-gate-message {
    color: var(--col-text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}
.location-gate-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.location-gate-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #fff;
    background: rgba(255, 69, 0, 0.12);
    border: 1px solid rgba(255, 69, 0, 0.22);
}
.location-gate-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.location-gate-actions .btn {
    flex: 1 1 180px;
    justify-content: center;
}
.location-gate-help {
    margin: 14px 0 0;
    font-size: 0.82rem;
    color: var(--col-text-muted);
}
body.location-gate-active {
    overflow: hidden;
}
.modal-close, .lightbox-close {
    position: absolute;
    top: 15px; right: 20px;
    background: transparent;
    border: none;
    color: var(--col-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}
.modal-close:hover, .lightbox-close:hover {
    color: var(--col-accent);
    transform: rotate(90deg);
}
#bookingForm input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
}
#bookingForm input:focus {
    outline: none;
    border-color: var(--col-accent);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}
.form-row {
    display: flex; gap: 10px;
}
.w-100 { width: 100%; }

/* Lightbox Specifics */
#lightboxImg {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0,0,0,0.9);
    transform: scale(0.95);
    transition: transform 0.4s ease;
}
.lightbox-overlay.active #lightboxImg {
    transform: scale(1);
}
.lightbox-close { top: 30px; right: 40px; font-size: 2rem; color: #fff; }

/* Premium Button Hover (replaces magnetic) */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.magnetic:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.4);
}
.magnetic:active {
    transform: translateY(-1px) scale(1.02);
}
.menu-card {
    will-change: transform;
}
.gallery-item {
    cursor: zoom-in;
}

/* About Grid Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
}

/* Contact Form Focus */
#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--col-accent) !important;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

/* Active nav link */
.nav-link.active {
    color: var(--col-accent) !important;
    font-weight: 700;
}

/* -- Enhanced Footer -- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}
.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--col-accent);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col p, .footer-col a {
    color: var(--col-text-muted);
    font-size: 0.88rem;
    line-height: 2;
    display: block;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--col-accent); }
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--col-text-muted) !important;
    transition: var(--transition) !important;
    line-height: 1 !important;
}
.footer-social a:hover {
    border-color: var(--col-accent);
    color: var(--col-accent) !important;
    background: rgba(255,69,0,0.1);
    transform: translateY(-2px);
}
.footer-hours li {
    list-style: none;
    color: var(--col-text-muted);
    font-size: 0.88rem;
    line-height: 2.1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.footer-hours li span { color: #4ade80; font-weight: 600; }
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin: 0 0 20px;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-social { justify-content: center; }
    .footer-hours li { justify-content: center; }
}
.footer-hours .closed-day { color: #ef4444 !important; font-weight: 600; }


/* --- NAVBAR SOCIAL ICONS ------------------------------- */
.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    padding: 4px 10px 4px 14px;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
    background: rgba(255,255,255,0.05);
    position: relative;
}
.nav-social a::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}
.nav-social a:hover {
    transform: translateY(-3px) scale(1.15);
    color: #fff;
}
.nav-social a.insta       { border-color: rgba(225,48,108,0.3); }
.nav-social a.insta:hover { border-color: #e1306c; color:#e1306c; background:rgba(225,48,108,0.15); box-shadow: 0 4px 18px rgba(225,48,108,0.45); }
.nav-social a.fb          { border-color: rgba(24,119,242,0.3); }
.nav-social a.fb:hover    { border-color: #1877f2; color:#1877f2; background:rgba(24,119,242,0.15); box-shadow: 0 4px 18px rgba(24,119,242,0.45); }
.nav-social a.wa          { border-color: rgba(37,211,102,0.3); }
.nav-social a.wa:hover    { border-color: #25d366; color:#25d366; background:rgba(37,211,102,0.15); box-shadow: 0 4px 18px rgba(37,211,102,0.45); }
.nav-social a.yt          { border-color: rgba(255,0,0,0.3); }
.nav-social a.yt:hover    { border-color: #ff0000; color:#ff0000; background:rgba(255,0,0,0.15); box-shadow: 0 4px 18px rgba(255,0,0,0.45); }

@media (max-width: 768px) {
    .nav-social { display: none; }  /* Hidden on mobile — footer has social links */
}
/* --- ANIMATED STATS SECTION --------------------------- */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.08) 0%, transparent 50%, rgba(255,69,0,0.05) 100%);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.stat-card {
    text-align: center;
    padding: 28px 16px;
    background: rgba(25,10,10,0.6);
    border: 1px solid rgba(139,0,0,0.25);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(255,69,0,0.06), transparent 70%);
    pointer-events: none;
}
.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,69,0,0.4);
    box-shadow: 0 8px 30px rgba(255,69,0,0.1);
}
.stat-icon {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--col-accent);
    line-height: 1;
    display: block;
    letter-spacing: -0.02em;
}
.stat-num .stat-plus { font-size: 0.7em; opacity: 0.8; }
.stat-label {
    font-size: 0.82rem;
    color: var(--col-text-muted);
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}
.stat-sub {
    font-size: 0.72rem;
    color: rgba(255,215,0,0.7);
    margin-top: 3px;
    display: block;
}
/* Google stars */
.google-stars {
    color: #FFD700;
    font-size: 0.85rem;
    margin-top: 4px;
    display: block;
}

@media (max-width: 680px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stat-card { padding: 20px 12px; }
    .stat-num { font-size: 2rem; }
    .location-gate-card {
        width: calc(100vw - 24px);
        padding: 22px 18px;
        border-radius: 20px;
    }
}

/* --- ANIMATED OFFER BANNER ---------------------------- */
.offer-strip {
    background: linear-gradient(90deg, var(--col-primary), var(--col-accent), var(--col-primary));
    background-size: 200% auto;
    animation: offerSlide 3s linear infinite;
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px var(--col-accent-glow);
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.offer-strip.active { display: flex; }
.offer-badge {
    display: inline-block;
    background: #FFD700;
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes offerSlide {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* --- OPENING HOURS TABLE ---------------------------- */
.hours-table {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(25,10,10,0.5);
    backdrop-filter: blur(8px);
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover { background: rgba(255,69,0,0.05); }
.hours-day {
    font-weight: 600;
    color: var(--col-text);
    font-size: 0.95rem;
}
.open-time {
    color: #4ade80;
    font-weight: 600;
    font-size: 0.9rem;
}
.closed-time {
    color: #f87171;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.closed-row { background: rgba(248,113,113,0.04); }
.closed-row .hours-day { color: var(--col-text-muted); }

/* Today highlight */
.hours-row.today-row {
    background: rgba(255,69,0,0.08);
    border-left: 3px solid var(--col-accent);
}
.hours-row.today-row .hours-day::after {
    content: ' (Today)';
    color: var(--col-accent);
    font-size: 0.78rem;
    font-weight: 700;
}

/* -- Honeypot anti-spam (do not remove) ----------------- */
.hp-field { position:absolute; left:-9999px; top:-9999px; opacity:0; height:0; width:0; z-index:-1; pointer-events:none; tab-index:-1; }

.human-check {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 94, 0, 0.22);
    background: rgba(255, 255, 255, 0.03);
}

.human-check.is-error {
    border-color: rgba(239, 68, 68, 0.45);
}

.human-check.is-loading {
    opacity: 0.82;
}

.human-check-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--col-text, #f5f5f5);
}

.human-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.human-check-prompt {
    font-size: 0.92rem;
    color: var(--col-text, #f5f5f5);
}

.human-check-refresh {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--col-accent, #ff4500);
    cursor: pointer;
}

.human-check-input {
    width: 100%;
    min-height: 46px;
}

.human-check-help {
    margin: 8px 0 0;
    font-size: 0.78rem;
    color: var(--col-text-muted, #9ca3af);
}

