:root {
    --bg-color: #0f0f0f;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --primary-neon: #00f3ff;
    --secondary-neon: #ff00ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    min-width: 0;
}

/* Global Reset */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(0, 243, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 60%, rgba(255, 0, 255, 0.08) 0%, transparent 25%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* =========================================
   NAVBAR (Mobile First)
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1500;
    border-radius: 0 0 16px 16px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: neonPulse 3s infinite alternate;
}

/* Hidden by default on mobile */
.nav-links,
.nav-actions {
    display: none;
}

/* Hamburger visible on mobile */
.hamburger {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Menu for Mobile */
.mobile-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1400;
    transition: top 0.5s ease-in-out;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
}

.mobile-menu.active {
    top: 0;
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
}

.mobile-nav-links a {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   HERO SECTION (Mobile First)
   ========================================= */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1572116469696-31de0f17cc34?q=80&w=1974&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: brightness(0.5) contrast(1.1) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.3) 0%, var(--bg-color) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 1.5rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    word-wrap: break-word;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ccc;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary-neon);
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transition: var(--transition);
    border: 2px solid var(--primary-neon);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-neon);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
}

/* =========================================
   SECTIONS & GRID (Mobile First)
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    /* Mobile padding */
}

.features-section,
.gallery-section,
.menu-section {
    padding: 4rem 0;
    /* Mobile padding */
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    /* Mobile size */
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-neon);
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--secondary-neon);
}

/* Features: Single column on mobile */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.feature-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    background: var(--glass-hover);
    transform: translateY(-10px);
    border-color: var(--secondary-neon);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 255, 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--secondary-neon);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover .icon-wrapper {
    background: var(--secondary-neon);
    color: #fff;
    box-shadow: 0 0 25px var(--secondary-neon);
    transform: rotate(10deg);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

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

/* Bento Gallery: Flex column on mobile */
.bento-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    height: 300px;
    /* Fixed height for mobile stack */
    width: 100%;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
}

.bento-item:hover .bento-caption {
    transform: translateY(0);
}

/* Menu Section */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    border-color: var(--primary-neon);
    transform: translateY(-2px);
}

.menu-content {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    /* Mobile padding */
    min-height: 400px;
}

.menu-grid {
    display: none;
    grid-template-columns: 1fr;
    /* Single column */
    gap: 2rem;
    animation: fadeIn 0.6s ease;
}

.menu-grid.active {
    display: grid;
}

.menu-item {
    display: flex;
    flex-direction: column;
    /* Stacked on mobile */
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1rem;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateX(5px);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-img {
    width: 100%;
    height: 180px;
    /* Large image on mobile */
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.menu-item-content {
    flex: 1;
    width: 100%;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}

.menu-header h4 {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.menu-price {
    font-weight: 700;
    color: var(--primary-neon);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Footer (Mobile First) */
.footer-section {
    background: #050505;
    padding: 4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column */
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-info h3 {
    font-size: 2rem;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-info i {
    color: var(--primary-neon);
    width: 24px;
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #128C7E;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-3px);
}

.footer-map {
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background: #000;
    color: #444;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Animations (Global) */
@keyframes neonPulse {
    from {
        text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
    }

    to {
        text-shadow: 0 0 25px rgba(0, 243, 255, 0.8), 0 0 15px rgba(255, 0, 255, 0.5);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeIn 1.2s ease-out forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Loader Styles (Mobile First) */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s linear;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10000;
    width: 100%;
    padding: 0 1rem;
}

.neon-glass {
    font-size: 4rem;
    /* Mobile Size */
    margin-bottom: 2rem;
    position: relative;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-neon);
    filter: drop-shadow(0 0 5px var(--primary-neon));
    animation: glassPulse 2s infinite alternate ease-in-out;
}

.neon-glass::before {
    content: "\f561";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 0%;
    color: var(--secondary-neon);
    overflow: hidden;
    -webkit-text-stroke: 0;
    animation: fillLiquid 2.5s ease-in-out forwards;
    display: flex;
    align-items: flex-end;
}

@keyframes fillLiquid {
    from {
        clip-path: inset(100% 0 0 0);
    }

    to {
        clip-path: inset(20% 0 0 0);
    }
}

.neon-glass i {
    position: relative;
    z-index: 1;
}

.neon-glass::after {
    content: "\f561";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--secondary-neon);
    z-index: 0;
    -webkit-text-stroke: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    animation: liquidRise 2.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes liquidRise {
    0% {
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 25%, 100% 25%, 100% 100%, 0 100%);
        text-shadow: 0 0 20px var(--secondary-neon);
    }
}

.loader-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.3rem;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeTextUp 1s ease-out 0.5s forwards;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    max-width: 90%;
    margin: 0 auto;
    word-break: break-word;
}

@keyframes glassPulse {
    from {
        filter: drop-shadow(0 0 5px var(--primary-neon));
        transform: scale(1);
    }

    to {
        filter: drop-shadow(0 0 15px var(--primary-neon));
        transform: scale(1.05);
    }
}

@keyframes fadeTextUp {
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 20px var(--primary-neon), 0 0 40px var(--secondary-neon);
    }
}

/* =========================================
   MEDIA QUERIES (DESKTOP ADJUSTMENTS)
   ========================================= */

/* Tablet & Up (>= 768px) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .navbar {
        padding: 1rem 5%;
    }

    /* Restore Desktop Nav */
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-links li a {
        font-weight: 500;
        position: relative;
        padding: 0.5rem 0;
        font-size: 0.95rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-neon);
        transition: width 0.3s;
        box-shadow: 0 0 10px var(--primary-neon);
    }

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

    .nav-links li a:hover {
        color: var(--primary-neon);
        text-shadow: 0 0 8px var(--primary-neon);
    }

    #lang-toggle {
        background: rgba(0, 243, 255, 0.1);
        border: 1px solid var(--primary-neon);
        color: var(--primary-neon);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        cursor: pointer;
        font-family: var(--font-main);
        font-weight: 600;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    #lang-toggle:hover {
        background: var(--primary-neon);
        color: var(--bg-color);
        box-shadow: 0 0 15px var(--primary-neon);
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none;
        /* Hide entirely on desktop if not needed, or just keep default logic */
    }

    .features-section,
    .gallery-section,
    .menu-section {
        padding: 8rem 0;
    }

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

    .feature-card {
        padding: 3rem 2rem;
    }

    .icon-wrapper {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.8rem;
    }

    /* Menu Grid Two Columns */
    .menu-content {
        padding: 3rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-item {
        flex-direction: row;
        gap: 1.5rem;
        align-items: center;
    }

    .menu-item-img {
        width: 80px;
        height: 80px;
        border-radius: 12px;
    }

    .menu-header h4 {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding-bottom: 4rem;
    }

    .footer-map {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 4.5rem;
        line-height: 1;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .loader-text {
        font-size: 2.5rem;
        letter-spacing: 0.5rem;
    }

    .neon-glass {
        font-size: 5rem;
    }
}

/* Large Screens (>= 1024px) */
@media (min-width: 1024px) {

    /* Bento Grid Layout - only apply complex grid on large screens */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 240px;
        gap: 1.5rem;
    }

    .bento-item {
        height: auto;
        /* spans override default height */
    }

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

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

    .item-3 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-4 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-5 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .item-6 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card i {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.03) 0%, rgba(255, 0, 255, 0.03) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    display: grid;
    gap: 30px;
}

.contact-card {
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.contact-card:hover {
    background: var(--glass-hover);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.1);
}

.contact-card i {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-card p {
    color: var(--text-muted);
}

.contact-card a {
    color: var(--primary-neon);
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.contact-form {
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.contact-form button {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Nav active state indicator */
.nav-links a.active,
.mobile-nav-links a.active {
    color: var(--primary-neon);
    border-bottom: 2px solid var(--primary-neon);
    padding-bottom: 4px;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* =========================================
   LIGHTBOX GALLERY
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    animation: zoomIn 0.4s ease;
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.3);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    font-size: 1.5rem;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    backdrop-filter: blur(12px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    transform: scale(1.1);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: scale(1.1) translateY(-50%);
}

/* Bento items clickable */
.bento-item {
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 243, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-item:hover::after {
    opacity: 1;
}

.bento-item:hover {
    transform: scale(1.02);
}

/* =========================================
   MENU SEARCH
   ========================================= */
.menu-tabs-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-search {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    flex: 1;
    min-width: 250px;
    transition: var(--transition);
}

.menu-search::placeholder {
    color: var(--text-muted);
}

.menu-search:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    background: rgba(0, 243, 255, 0.05);
}

/* =========================================
   EVENTS BANNER
   ========================================= */
.events-banner {
    position: relative;
    padding: 100px 5%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.banner-content {
    position: relative;
    z-index: 10;
    animation: slideUp 0.8s ease;
}

.banner-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    animation: glowPulse 3s infinite alternate;
}

.banner-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0;
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 243, 255, 0.05) 100%);
}

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

.stat-card {
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: var(--glass-hover);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    font-variant-numeric: tabular-nums;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideUp 0.6s ease;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.03) 0%, rgba(255, 0, 255, 0.03) 100%);
}

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

.testimonial-card {
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: var(--glass-hover);
    box-shadow: 0 20px 50px rgba(0, 243, 255, 0.15);
}

.testimonial-card .stars {
    font-size: 1.2rem;
    color: var(--secondary-neon);
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
}

.testimonial-author {
    color: var(--primary-neon);
    font-weight: 600;
    margin: 0;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    from {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 243, 255, 0.8), 0 0 50px rgba(255, 0, 255, 0.5);
    }
}

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

@keyframes neonPulse {
    from {
        text-shadow: 0 0 10px rgba(0, 243, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 243, 255, 0.8), 0 0 40px rgba(255, 0, 255, 0.6);
    }
}

/* Delay animations for staggered effect */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Mobile responsive */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }

    .contact-section {
        padding: 60px 5%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        gap: 20px;
        order: 2;
    }

    .contact-form {
        order: 1;
        padding: 25px;
        gap: 15px;
    }

    .contact-card {
        padding: 20px;
        border-radius: 15px;
    }

    .contact-card i {
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contact-card p {
        font-size: 0.95rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
        border-radius: 10px;
    }

    .contact-form button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .menu-tabs-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .menu-search {
        min-width: 100%;
    }

    .events-banner {
        padding: 60px 5%;
        min-height: 200px;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .lightbox img {
        max-width: 95%;
        max-height: 70vh;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        padding: 10px;
        font-size: 1.2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}