        html {
            scroll-behavior: smooth;
            scroll-padding-top: 120px;
            /* Increased for more breathing room below header */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }



        :root {
            --bg-primary: #080808;
            --bg-secondary: #121212;
            --accent-orange: #ff6b35;
            --accent-gold: #f4c430;
            --accent-red: #e63946;
            --text-light: #ffffff;
            --text-muted: #b8b8b8;
            --glass-bg: rgba(255, 255, 255, 0.06);
            --glass-bg-strong: rgba(255, 255, 255, 0.09);
            --glass-border: rgba(255, 255, 255, 0.12);
            --shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
            --shadow-glow: 0 0 25px rgba(255, 107, 53, 0.28);
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background:
                radial-gradient(circle at top left, rgba(255, 107, 53, 0.12), transparent 30%),
                radial-gradient(circle at bottom right, rgba(244, 196, 48, 0.10), transparent 25%),
                var(--bg-primary);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
        }

        /* --- SCROLL PROGRESS BAR --- */
        .scroll-progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            z-index: 10000;
            background: rgba(0, 0, 0, 0.1);
        }

        .scroll-progress-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold), var(--accent-orange));
            background-size: 200% 100%;
            box-shadow: 0 0 15px rgba(244, 196, 48, 0.6);
            animation: progress-shimmer 2s linear infinite;
        }

        @keyframes progress-shimmer {
            0% {
                background-position: 100% 0;
            }

            100% {
                background-position: -100% 0;
            }
        }





        a {
            color: inherit;
            text-decoration: none;
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2000;
            background: transparent;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0.5rem 0;
        }

        body.scrolled header {
            background: rgba(8, 8, 8, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-links a {
            color: #fff;
            position: relative;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .nav-links a:hover {
            color: #ff6b35;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 50px;
            transition: transform 0.3s ease;
        }

        .logo img {
            height: 80px;
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            position: relative;
            color: var(--text-light);
            font-weight: 500;
            padding: 0.25rem 0;
            transition: color 0.25s ease, transform 0.25s ease;
        }


        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;

            bottom: -4px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
            transition: width 0.25s ease;
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: var(--accent-orange);
            transform: translateY(-1px);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--text-light);
            border-radius: 3px;
            transition: all 0.3s ease;
            position: relative;
        }

        .hamburger.active span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        /* --- TYPING EFFECT --- */
        .typing-text {
            color: var(--accent-gold);
            font-weight: 700;
        }

        .cursor {
            color: var(--accent-gold);
            animation: blink 0.7s infinite;
            margin-left: 5px;
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        /* --- MENU FILTERS --- */
        .menu-filters {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            padding: 10px 24px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: var(--accent-gold);
            color: #000;
            border-color: var(--accent-gold);
            box-shadow: 0 10px 20px rgba(244, 196, 48, 0.2);
        }

        .menu-item.shuffle-hide {
            display: none;
        }

        .menu-item {
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .top-slider {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            margin-top: 0;
            background: #000;
        }



        .slider-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(0, 0, 0, 0.3);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-top: 49px;
            transition: all 0.3s ease;
            flex: 0 0 auto;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .slider-arrow:hover {
            background: var(--accent-orange);
            color: #fff;
            transform: scale(1.1);
        }

        .slider-arrow i {

            font-size: 1rem;
        }

        @media (max-width: 1024px) {
            .slider-arrow {
                width: 48px;
                height: 48px;
                background: rgba(0, 0, 0, 0.4);
                backdrop-filter: blur(8px);
                border: 1px solid rgba(255, 255, 255, 0.15);
            }

            .slider-arrow.prev {
                left: 15px;
            }

            .slider-arrow.next {
                right: 15px;
            }
        }

        .slider-track,
        .slide {
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.8s ease;
        }

        .slide.active {
            opacity: 1;
            z-index: 10;
        }

        .slide.active .slide-overlay h2,
        .slide.active .slide-overlay p {
            animation: slideUpFade 0.8s ease forwards;
        }

        .typing-text {
            display: inline-block;
            color: var(--accent-gold);
        }

        @keyframes slideUpFade {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .slide img,
        .slide video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7);
            transition: transform 8s ease-out;
        }

        .slide.active img,
        .slide.active video {
            transform: scale(1.1);
        }

        .slide-video {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .slide-overlay {
            position: absolute;
            left: 50%;
            bottom: 15%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1000px;
            padding: 2rem;
            text-align: center;
            z-index: 20;
        }

        .slide-overlay h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1rem;
            color: #fff;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            line-height: 1.1;
            letter-spacing: -1px;
            font-weight: 700;
        }

        .slide-overlay p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
            max-width: 700px;
            margin: 0.5rem auto 0;
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .slider-dots {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slider-controls {
            position: absolute;
            left: 50%;
            bottom: 0.8rem;
            /* Shifted down */
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 10;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, 0.35);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            width: 32px;
            border-radius: 999px;
            background: linear-gradient(135deg, #ff6b35, #f4c430);
            box-shadow: 0 0 16px rgba(255, 107, 53, 0.35);
        }

        @media (max-width: 768px) {
            .top-slider {
                height: 70vh;
                /* Further reduced height for a more compact mobile look */
                min-height: 400px;
            }

            .slide-overlay {
                bottom: 25%;
                padding: 1.5rem;
                width: 100%;
                left: 0;
                transform: none;
                /* Reset desktop transform */
                background: none; /* Removed background as requested */
                border-radius: 0;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); /* Added shadow for readability */
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .slide-overlay h2 {
                font-size: clamp(1.5rem, 8vw, 2.2rem);
                margin-bottom: 0.5rem;
                font-weight: 700;
                padding: 0 1rem;
            }

            .slide-overlay p {
                font-size: 0.95rem;
                max-width: 85%;
                margin: 0 auto;
                opacity: 0.9;
                line-height: 1.4;
            }

            .logo img {
                height: 45px !important;
            }

            header {
                padding: 0.4rem 0 !important;
                height: auto !important;
            }

            .slider-controls {
                bottom: 3rem;
                /* Moved higher up */
                gap: 12px;
            }

            .slider-arrow {
                width: 40px;
                height: 40px;
            }

            .slider-arrow {
                width: 44px;
                height: 44px;
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.3);
                backdrop-filter: blur(10px);
            }

            .slider-arrow i {
                font-size: 1rem;
            }

            .dot {
                width: 7px;
                height: 7px;
                background: rgba(255, 255, 255, 0.4);
            }

            .dot.active {
                width: 28px;
            }
        }

        @media (max-width: 1024px) {
            .slider-controls {
                bottom: 1.2rem;
                gap: 10px;
            }

            .slider-arrow {
                width: 36px;
                height: 36px;
            }
        }

        .social-bar {
            position: fixed;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            /* ✅ CENTER PERFECT */
            z-index: 2500;

            display: flex;
            /* ✅ STACK ITEMS */
            flex-direction: column;
            gap: 10px;
        }

        @media (max-width: 991px) {
            .social-bar {
                display: none;
                /* Hide on mobile to prevent overlap */
            }
        }



        .social-item {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 54px;
            padding: 14px 16px;
            color: #fff;
            border-radius: 0 18px 18px 0;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.10);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            transition: width 0.35s ease, transform 0.35s ease, background 0.35s ease;
            white-space: nowrap;
        }

        .social-item i {
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
            transition: transform 0.35s ease;
        }

        .social-item span {
            opacity: 0;
            transform: translateX(-10px);
            transition: opacity 0.25s ease, transform 0.25s ease;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .social-item:hover {
            width: 175px;
            transform: translateX(8px);
        }

        .social-item:hover span {
            opacity: 1;
            transform: translateX(0);
        }

        .social-item:hover i {
            transform: rotate(360deg) scale(1.1);
        }

        .social-item.facebook {
            background: linear-gradient(135deg, rgba(24, 119, 242, 0.92), rgba(24, 119, 242, 0.68));
        }

        .social-item.instagram {
            background: linear-gradient(135deg, rgba(225, 48, 108, 0.92), rgba(255, 140, 0, 0.72));
        }

        .social-item.twitter {
            background: linear-gradient(135deg, rgba(29, 161, 242, 0.92), rgba(15, 23, 42, 0.72));
        }

        .social-item.youtube {
            background: linear-gradient(135deg, rgba(255, 0, 0, 0.92), rgba(139, 0, 0, 0.72));
        }

        .social-item.whatsapp {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.92), rgba(18, 140, 126, 0.72));
        }

        .hero {
            height: 100vh;
            background:
                linear-gradient(135deg, rgba(10, 10, 10, 0.72), rgba(26, 26, 26, 0.88)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%230a0a0a" width="1200" height="800"/><path fill="%231a1a1a" d="M0 0h1200v400l-1200 400v-800z"/><circle fill="%23ff6b35" opacity="0.10" cx="300" cy="200" r="150"/><circle fill="%23f4c430" opacity="0.07" cx="900" cy="500" r="200"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.38));
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            padding: 0 1rem;
        }

        .hero-content h1,
        .hero-content p,
        .cta-buttons {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeUp 1s ease forwards;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3rem, 8vw, 6rem);
            margin-bottom: 1rem;
            text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
        }

        .hero-content p {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin: 0 auto 2rem;
            max-width: 600px;
            animation-delay: 0.3s;
            color: rgba(255, 255, 255, 0.95);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation-delay: 0.6s;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            will-change: transform;
        }

        .btn::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
            transform: translateX(-120%);
            transition: transform 0.6s ease;
        }

        .btn:hover::before {
            transform: translateX(120%);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            color: white;
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-light);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: var(--shadow-glow);
        }

        .philosophy-section {
            padding: 40px 2rem 60px; /* Reduced bottom gap */
            /* Reduced top padding to 30px */
            background:
                radial-gradient(circle at 15% 15%, rgba(255, 107, 53, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 85% 85%, rgba(244, 196, 48, 0.05) 0%, transparent 40%),
                var(--bg-primary);
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .philosophy-section::after {
            display: none;
            /* Removed from section */
        }

        .philosophy-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .philosophy-container {
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
            background: rgba(15, 15, 15, 0.7);
            padding: 5rem 3rem;
            border-radius: 40px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
        }

        .philosophy-container:hover {
            transform: translateY(-5px);
            border-color: rgba(244, 196, 48, 0.3);
        }

        .philosophy-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .philosophy-content .highlight {
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .philosophy-content p {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }

        .philosophy-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-num {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        @media (max-width: 768px) {
            .philosophy-stats {
                gap: 2rem;
            }

            .stat-num {
                font-size: 2rem;
            }
        }

        .menu-section,

        .featured-dishes,
        .about-section,
        .contact-section {
            position: relative;
            overflow: hidden;
        }

        .menu-section {
            padding: 60px 2rem; /* Reduced top/bottom gap */
            background:
                radial-gradient(circle at 50% 0%, rgba(244, 196, 48, 0.05), transparent 50%),
                var(--bg-primary);
            position: relative;
        }

        .section-bg-text {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            font-size: clamp(5rem, 15vw, 12rem);
            font-weight: 900;
            color: rgba(255, 255, 255, 0.015);
            letter-spacing: 0.4em;
            z-index: 0;
            pointer-events: none;
            user-select: none;
            text-transform: uppercase;
        }

        .section-header {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header .section-title {
            margin-bottom: 0;
            margin-top: 0.5rem;
        }


        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .featured-menu-img {
            width: 100%;
            max-width: 800px;
            margin: 0 auto 4rem;
            display: block;
            border-radius: 24px;
            box-shadow: var(--shadow);
            height: 400px;
            object-fit: cover;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* .category-grid,
        .dishes-grid {
            perspective: 1200px;
        } */

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            max-width: 1300px;
            margin: 0 auto 4rem;
            perspective: 2000px;
        }

        .category-card {
            background: linear-gradient(145deg, #121212, #080808);
            border-radius: 30px;
            padding: 0;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            cursor: pointer;
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .category-card:hover {
            transform: translateY(-12px);
            border-color: rgba(244, 196, 48, 0.3);
            box-shadow: 0 25px 70px rgba(244, 196, 48, 0.15);
        }

        .category-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .category-card-front,
        .category-card-back {
            width: 100%;
            height: 100%;
            border-radius: 20px;
            padding: 1.5rem;
        }

        .category-card-back {
            background: rgba(255, 255, 255, 0.03);
            text-align: left;
            border: 1px solid rgba(244, 196, 48, 0.1);
        }

        /* Mobile specific: stack them */
        @media (max-width: 991px) {
            .category-grid {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }

            .category-card {
                background: linear-gradient(145deg, #121212, #080808);
                border-radius: 20px;
                border: 1px solid rgba(244, 196, 48, 0.1);
                overflow: hidden;
                height: auto !important;
                position: relative;
                width: 100%;
            }

            .category-card-inner {
                transform: none !important;
                height: auto !important;
                position: relative !important;
                display: block !important;
            }

            .category-card-front {
                background: rgba(244, 196, 48, 0.05);
                display: flex;
                align-items: center;
                gap: 1.2rem;
                padding: 1.2rem;
                text-align: left;
                position: relative !important;
                inset: auto !important;
                width: 100% !important;
                height: auto !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                z-index: 2;
            }

            .category-card-front h3 {
                margin: 0;
                font-size: 1.3rem;
                flex-grow: 1;
                font-family: 'Playfair Display', serif;
            }

            .category-card-front .category-icon {
                margin: 0;
                width: 45px;
                height: 45px;
                border-radius: 12px;
                flex-shrink: 0;
                background: rgba(244, 196, 48, 0.1);
            }

            .category-card-front p {
                display: none;
            }

            /* Ribbon adjustment for mobile */
            .category-card-front.popular::before {
                width: 100px;
                font-size: 0.6rem;
                top: 12px;
                right: -30px;
            }

            /* Accordion Logic */
            .category-card-back {
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                background: transparent;
                position: relative !important;
                inset: auto !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
                opacity: 0;
            }

            .category-card.active .category-card-back {
                max-height: 2000px;
                padding: 1.2rem;
                opacity: 1;
            }

            .category-card.active .category-card-front {
                background: rgba(244, 196, 48, 0.15);
            }

            .category-card-front::after {
                content: "▼";
                font-size: 0.8rem;
                color: var(--accent-gold);
                transition: transform 0.3s ease;
                margin-left: 10px;
            }

            .category-card.active .category-card-front::after {
                transform: rotate(180deg);
            }
        }

        /* Desktop Flip Effect */
        @media (min-width: 992px) {
            .category-card {
                perspective: 1500px;
                height: 380px;
            }

            .category-card:hover .category-card-inner {
                transform: rotateY(180deg);
            }

            .category-card-front,
            .category-card-back {
                position: absolute;
                inset: 0;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                padding: 1.5rem 2rem;
            }

            .category-card-front {
                background: rgba(255, 255, 255, 0.03);
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }

            .category-card-back {
                background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
                transform: rotateY(180deg);
                overflow-y: auto;
                border-color: var(--accent-gold);
                pointer-events: auto;
                -webkit-overflow-scrolling: touch;
            }

            .category-card-back::-webkit-scrollbar {
                width: 6px;
            }

            .category-card-back::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.02);
                border-radius: 10px;
            }

            .category-card-back::-webkit-scrollbar-thumb {
                background: linear-gradient(to bottom, var(--accent-gold), var(--accent-orange));
                border-radius: 10px;
                border: 1px solid rgba(0, 0, 0, 0.2);
            }

            .category-card-back::-webkit-scrollbar-thumb:hover {
                background: var(--accent-gold);
            }
        }

        .category-icon {
            width: 110px;
            height: 110px;
            background: radial-gradient(circle at center, rgba(244, 196, 48, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            /* Circle for more premium feel */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid rgba(244, 196, 48, 0.1);
            position: relative;
        }

        .category-icon::after {
            content: "";
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 1px solid rgba(244, 196, 48, 0.2);
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s ease;
        }

        .category-card:hover .category-icon::after {
            opacity: 1;
            transform: scale(1.1);
        }

        /* --- PREMIUM BOUND RIBBON (MATCHED TO SCREENSHOT) --- */
        .category-card-front.popular {
            position: relative;
            overflow: hidden !important;
            /* Clips the ribbon to the card corner */
        }

        .category-card-front.popular::before {
            content: attr(data-tag);
            position: absolute;
            top: 20px;
            right: -40px;
            width: 150px;
            background: linear-gradient(135deg, #fcaa22, #ff8c00);
            color: #111;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 8px 0;
            transform: rotate(45deg);
            z-index: 10;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 1.5px;
            text-align: center;
            text-transform: uppercase;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .category-card.active .category-card-front.popular::before {
            opacity: 0;
            visibility: hidden;
        }


        .category-card:hover {
            transform: translateY(-8px);
        }

        .category-card:hover::after {
            opacity: 1;
        }

        .category-icon {
            width: 170px;
            height: 170px;
            margin: 0 auto 1.5rem;
            /* border-radius: 24px; */
            overflow: hidden;
            background: linear-gradient(135deg, rgba(244, 196, 48, 0.15), rgba(244, 196, 48, 0.05));
            border: 1px solid rgba(244, 196, 48, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .category-card:hover .category-icon {
            transform: translateZ(30px) scale(1.1);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 30px rgba(244, 196, 48, 0.2);
        }

        .cat-icon-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.5s ease;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
        }

        .category-card:hover .cat-icon-img {
            transform: scale(1.1);
        }

        .category-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: #fff;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .category-card:hover h3 {
            color: var(--accent-gold);
            text-shadow: 0 0 15px rgba(244, 196, 48, 0.3);
        }

        .category-content {
            width: 100%;
            height: auto;
            position: relative;
            z-index: 1;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            /* Reduced padding to fit more items */
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
            position: relative;
            gap: 12px;
        }

        .menu-item span:first-child {
            font-weight: 500;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            flex-grow: 1;
            display: flex;
            align-items: center;
            gap: 10px;
            line-height: 1.4;
        }

        .menu-item span:last-child {
            color: var(--accent-gold);
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            text-shadow: 0 0 10px rgba(244, 196, 48, 0.15);
        }

        .menu-item:hover {
            transform: translateX(8px);
            color: #fff;
        }

        .menu-item:hover span:last-child {
            transform: scale(1.1);
            text-shadow: 0 0 15px rgba(244, 196, 48, 0.4);
        }

        .food-indicator {
            display: inline-block;
            width: 14px;
            height: 14px;
            border: 1.5px solid currentColor;
            border-radius: 2px;
            flex-shrink: 0;
            background-origin: border-box;
        }

        .food-indicator.veg {
            color: #44ff44;
            background: radial-gradient(circle, #44ff44 35%, transparent 35%);
            box-shadow: 0 0 8px rgba(68, 255, 68, 0.2);
        }

        .food-indicator.non-veg {
            color: #ff4444;
            background: radial-gradient(circle, #ff4444 35%, transparent 35%);
            box-shadow: 0 0 8px rgba(255, 68, 68, 0.2);
        }

        .menu-legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .menu-legend span {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
        }

        @media (max-width: 480px) {
            .menu-legend {
                gap: 1rem;
                flex-direction: row;
                flex-wrap: wrap;
            }
        }

        .menu-item.veg::before,
        .menu-item.non-veg::before {
            content: "";
            display: block;
            width: 14px;
            height: 14px;
            border: 1.5px solid currentColor;
            border-radius: 2px;
            flex-shrink: 0;
            margin: 0;
            position: static;
        }

        .menu-item.veg::before {
            color: #44ff44;
            background: radial-gradient(circle, #44ff44 35%, transparent 35%);
            box-shadow: 0 0 8px rgba(68, 255, 68, 0.2);
        }

        .menu-item.non-veg::before {
            color: #ff4444;
            background: radial-gradient(circle, #ff4444 35%, transparent 35%);
            box-shadow: 0 0 8px rgba(255, 68, 68, 0.2);
        }

        /* Hover glows */
        .menu-item.veg:hover::before {
            box-shadow: 0 0 10px rgba(46, 125, 50, 0.4);
        }

        .menu-item.non-veg:hover::before {
            box-shadow: 0 0 10px rgba(198, 40, 40, 0.4);
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .featured-dishes {
            position: relative;
            padding: 4rem 0; /* Reduced top/bottom gap */
            overflow: hidden;
            background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
        }

        .bg-parallax-text {
            position: absolute;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            font-size: 15vw;
            font-weight: 900;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
            z-index: 0;
            pointer-events: none;
            white-space: nowrap;
            text-transform: uppercase;
            font-family: 'Playfair Display', serif;
            letter-spacing: 20px;
            will-change: transform;
        }

        /* Shimmer Title Effect */
        .featured-dishes .section-title {
            background: linear-gradient(to right, #fff 20%, var(--accent-gold) 40%, var(--accent-gold) 60%, #fff 80%);
            background-size: 200% auto;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            animation: shimmer 4s linear infinite;
            font-size: 3.5rem;
            margin-bottom: 2rem;
        }

        @keyframes shimmer {
            to {
                background-position: 200% center;
            }
        }

        .featured-dishes .section-header {
            position: relative;
            margin-bottom: 5rem;
        }

        .featured-dishes .section-header::after {
            content: "";
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
            box-shadow: 0 0 15px var(--accent-gold);
        }

        .dishes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .dish-card {
            position: relative;
            height: 400px;
            perspective: 1500px;
            cursor: pointer;
            background: transparent;
            border: none;
        }

        .dish-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-style: preserve-3d;
        }

        .dish-card:hover .dish-card-inner {
            transform: rotateY(180deg);
        }

        .dish-card-front,
        .dish-card-back {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden !important;
            backface-visibility: hidden !important;
            border-radius: 35px;
            overflow: hidden;
            border: 1px solid rgba(244, 196, 48, 0.15);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateZ(0);
        }

        .dish-card-front {
            background: #111;
            display: flex;
            flex-direction: column;
            z-index: 2;
        }

        .dish-card:hover .dish-card-inner,
        .dish-card.flipped .dish-card-inner {
            transform: rotateY(180deg);
        }

        /* Prevent front side from interfering when flipped */
        .dish-card.flipped .dish-card-front {
            pointer-events: none;
            opacity: 0;
        }

        .dish-card-back {
            background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
            cursor: pointer;
            color: white;
            transform: rotateY(180deg) translateZ(1px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            border: 2px solid var(--accent-gold);
            z-index: 5;
        }

        .dish-card-back .dish-name-wrapper {
            margin-bottom: 1.2rem;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        .dish-card-back h3 {
            font-family: 'Playfair Display', serif;
            color: var(--accent-gold);
            font-size: 1.8rem;
            margin: 0;
            text-shadow: 0 0 10px rgba(244, 196, 48, 0.3);
        }

        .dish-card-back p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .back-tag {
            font-size: 0.7rem;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            border-top: 1px solid rgba(244, 196, 48, 0.2);
            padding-top: 1rem;
            width: 100%;
        }

        .dish-img {
            width: 100%;
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .dish-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, #0f0f0f, transparent 50%);
            opacity: 0.9;
        }

        .dish-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .dish-card:hover .dish-img img {
            transform: scale(1.1);
        }

        .dish-info {
            padding: 1.5rem;
            background: #0f0f0f;
            z-index: 2;
        }

        .dish-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.8rem;
        }

        .dish-tag {
            position: absolute;
            top: 25px;
            left: 25px;
            z-index: 10;
            font-size: 0.7rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 8px 18px;
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
            color: #000;
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .dish-card:hover .dish-tag,
        .dish-card.flipped .dish-tag {
            opacity: 0;
            visibility: hidden;
        }




        .dish-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #fff;
            margin-bottom: 0.2rem;
            transition: color 0.3s ease;
        }

        .dish-card:hover .dish-name {
            color: var(--accent-gold);
        }

        /* Reusable Food Indicator overrides for dishes */
        .dish-card .food-indicator {
            width: 12px;
            height: 12px;
        }

        .about-section {
            padding: 60px 2rem; /* Reduced top/bottom gap */
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }

        .about-img:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            /* -webkit-background-clip: text; */
        }

        .about-content p {
            color: var(--text-muted);
        }

        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        .trust-badge {
            background: var(--glass-bg);
            padding: 1rem 1.5rem;
            border-radius: 50px;
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
            transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        }

        .trust-badge:hover {
            transform: translateY(-3px);
            background: var(--glass-bg-strong);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
        }

        .contact-section {
            padding: 60px 2rem; /* Reduced top/bottom gap */
            background: var(--bg-secondary);
            text-align: center;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .contact-content p {
            color: var(--text-muted);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .contact-item {
            background: var(--glass-bg);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
        }

        .contact-item:hover {
            transform: translateY(-4px);
            background: var(--glass-bg-strong);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
        }

        .contact-icon {
            font-size: 2.5rem;
            color: var(--accent-orange);
            margin-bottom: 1rem;
        }

        .phone-link {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-light);
            text-decoration: none;
            display: block;
        }



        .floating-btn {
            position: fixed;
            right: 20px;
            width: 60px;
            /* Unified width */
            height: 60px;
            /* Unified height */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2001;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .floating-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        .whatsapp-btn,
        .floating-btn.whatsapp-btn {
            bottom: 110px !important;
            /* Increased gap from top button */
            background: linear-gradient(135deg, #25d366, #128c7e) !important;
            color: #fff !important;
            fill: #fff !important;
            font-size: 1.8rem;
            right: 20px !important;
        }

        .top-btn {
            bottom: 20px;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
            color: white;
            font-size: 1.2rem;
            display: none;
        }

        .top-btn.show {
            display: flex;
        }

        .fade-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        footer {
            position: relative;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
                rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(22px);
            text-align: center;
            padding: 3rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

        footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at top center, rgba(255, 107, 53, 0.12), transparent 35%),
                radial-gradient(circle at bottom right, rgba(244, 196, 48, 0.10), transparent 25%);
            pointer-events: none;
        }

        .footer-inner {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            text-align: left;
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 0.75rem;
            /* -webkit-background-clip: text; */
        }

        .footer-brand p,
        .footer-col a,
        .footer-col li {
            color: var(--text-muted);
            list-style: none;
            transition: color 0.25s ease, transform 0.25s ease;
        }

        .footer-col h4 {
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 600;
        }

        .footer-col ul {
            display: grid;
            gap: 0.6rem;
        }

        .footer-col a:hover {
            color: var(--accent-orange);
            transform: translateX(3px);
        }

        .footer-bottom {
            position: relative;
            max-width: 1200px;
            margin: 2.5rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-muted);
            text-align: center;
        }

        @media (max-width: 900px) {
            .footer-inner {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 1024px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(8, 8, 8, 0.9);
                /* More transparent for blur */
                backdrop-filter: blur(20px);
                /* Glassmorphism effect */
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 1.5rem 0;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
                gap: 0;
                /* Use padding on items instead */
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0;
                font-size: 1.1rem;
                letter-spacing: 1px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.02);
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

            .nav-links.active {
                display: flex;
            }

            .about-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }



            .category-grid {
                grid-template-columns: 1fr;
            }

            .floating-btn {
                right: 20px;
                width: 60px;
                height: 60px;
            }




            .social-item:hover {
                width: 160px;
            }


        }

        @media (max-width: 640px) {
            .footer-inner {
                grid-template-columns: 1fr;
            }
        }














        .back-to-top {
            position: fixed;
            right: 20px !important;
            bottom: 30px !important;
            width: 60px !important;
            height: 60px !important;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            text-decoration: none;
            color: #fff;
            font-size: 1.15rem;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(230, 57, 70, 0.95));
            border: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35), 0 0 22px rgba(255, 107, 53, 0.25);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            opacity: 0;
            visibility: hidden;
            transform: translateY(18px) scale(0.9);
            transition: all 0.35s ease;
            z-index: 2500;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.06);
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42), 0 0 30px rgba(255, 107, 53, 0.38);
        }

        .back-to-top::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        }

        .back-to-top:hover::before {
            transform: translateX(140%);
        }






        .premium-split-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(18, 18, 18, 0.95));
        }

        .split-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .split-card {
            position: relative;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(244, 196, 48, 0.14);
            border-radius: 28px;
            padding: 38px;
            backdrop-filter: blur(14px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
            color: #fff;
            overflow: hidden;
        }

        .split-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(244, 196, 48, 0.10), transparent 32%);
            pointer-events: none;
        }

        .section-tag {
            display: inline-block;
            margin-bottom: 14px;
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 0.78rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #f4c430;
            background: rgba(244, 196, 48, 0.10);
            border: 1px solid rgba(244, 196, 48, 0.18);
            position: relative;
            z-index: 1;
        }

        .split-card h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 3vw, 3.2rem);
            margin-bottom: 18px;
            position: relative;
            z-index: 1;
        }

        .split-card h2::after {
            content: "";
            display: block;
            width: 84px;
            height: 3px;
            margin-top: 12px;
            border-radius: 999px;
            background: linear-gradient(90deg, #f4c430, transparent);
        }

        .why-choose ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            gap: 14px;
            position: relative;
            z-index: 1;
        }

        .why-choose li {
            position: relative;
            padding-left: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.92);
        }

        .why-choose li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.9em;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #f4c430;
            box-shadow: 0 0 10px rgba(244, 196, 48, 0.55);
            transform: translateY(-50%);
        }

        .newsletter-card p {
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.7;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }

        .newsletter-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 220px;
            padding: 15px 16px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            outline: none;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.55);
        }

        .newsletter-form button {
            padding: 15px 26px;
            border-radius: 14px;
            border: 1px solid rgba(244, 196, 48, 0.28);
            background: linear-gradient(135deg, #f4c430, #ff9f1c);
            color: #111;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(244, 196, 48, 0.22);
        }

        .newsletter-card small {
            color: rgba(255, 255, 255, 0.62);
            position: relative;
            z-index: 1;
        }

        @media (max-width: 900px) {
            .split-inner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .split-card {
                padding: 26px 20px;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
            }
        }
















        /* --- UNIFIED PREMIUM GALLERY SECTION --- */
        .gallery-section {
            width: 100%;
            padding: 60px 0; /* Reduced top/bottom gap */
            background: #000;
            overflow: hidden;
        }

        .gallery-container {
            width: 100%;
            max-width: 100%;
        }

        .masonry-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: 100px;
            grid-auto-flow: dense;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            background: #111;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(244, 196, 48, 0.05);
        }

        /* Hover Overlay Logic */
        .gallery-item::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
            pointer-events: none;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            z-index: 10;
            border-color: var(--accent-gold);
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.8s ease;
            filter: brightness(0.85);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        /* 20-Photo Masonry Distribution */
        .layout-full .a1 {
            grid-column: span 6;
            grid-row: span 4;
        }

        .layout-full .a2 {
            grid-column: span 3;
            grid-row: span 4;
        }

        .layout-full .a3 {
            grid-column: span 3;
            grid-row: span 4;
        }

        .layout-full .a4 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a5 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a6 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a7 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a8 {
            grid-column: span 4;
            grid-row: span 3;
        }

        .layout-full .a9 {
            grid-column: span 4;
            grid-row: span 3;
        }

        .layout-full .a10 {
            grid-column: span 4;
            grid-row: span 3;
        }

        .layout-full .a11 {
            grid-column: span 6;
            grid-row: span 4;
        }

        .layout-full .a12 {
            grid-column: span 6;
            grid-row: span 4;
        }

        .layout-full .a13 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a14 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a15 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a16 {
            grid-column: span 3;
            grid-row: span 3;
        }

        .layout-full .a17 {
            grid-column: span 4;
            grid-row: span 3;
        }

        .layout-full .a18 {
            grid-column: span 4;
            grid-row: span 3;
        }

        .layout-full .a19 {
            grid-column: span 4;
            grid-row: span 3;
        }

        /* The Fix: Force last image to span full width */
        .layout-full .a20 {
            grid-column: 1 / -1;
            grid-row: span 4;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .masonry-grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .layout-full div {
                grid-column: span 3 !important;
                grid-row: span 3 !important;
            }

            .layout-full .a1,
            .layout-full .a11,
            .layout-full .a12,
            .layout-full .a20 {
                grid-column: span 6 !important;
            }
        }

        @media (max-width: 640px) {
            .masonry-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-auto-rows: 150px;
            }

            .layout-full div {
                grid-column: span 1 !important;
                grid-row: span 1 !important;
            }

            .layout-full .a20 {
                grid-column: span 2 !important;
            }
        }





        /* Loader */
        .page-loader {
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at top, rgba(255, 107, 53, 0.10), transparent 35%),
                radial-gradient(circle at bottom, rgba(244, 196, 48, 0.10), transparent 35%),
                rgba(5, 5, 5, 0.97);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

        .page-loader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader-wrap {
            position: relative;
            width: 260px;
            text-align: center;
            color: #fff;
        }

        .road {
            width: 220px;
            height: 6px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
            margin: 0 auto 22px;
            border-radius: 999px;
            position: relative;
            overflow: hidden;
        }

        .road::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, #f4c430, transparent);
            animation: roadMove 1s linear infinite;
        }

        .bus {
            position: relative;
            width: 160px;
            height: 72px;
            margin: 0 auto 18px;
            animation: busBounce 1s ease-in-out infinite;
        }

        .bus-front {
            position: absolute;
            left: 0;
            top: 12px;
            width: 36px;
            height: 42px;
            background: linear-gradient(135deg, #f4c430, #ff9f1c);
            border-radius: 10px 14px 14px 10px;
        }

        .bus-front::before {
            content: "";
            position: absolute;
            left: 8px;
            top: 8px;
            width: 16px;
            height: 12px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.75);
        }

        .bus {
            box-shadow: 0 0 24px rgba(255, 107, 53, 0.16);
        }

        .bus::before {
            content: "";
            position: absolute;
            left: 30px;
            top: 12px;
            width: 110px;
            height: 42px;
            border-radius: 12px;
            background: linear-gradient(135deg, #ff6b35, #e63946);
        }

        .bus-window {
            position: absolute;
            left: 46px;
            top: 20px;
            width: 20px;
            height: 14px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.72);
            box-shadow: 26px 0 0 rgba(255, 255, 255, 0.72), 52px 0 0 rgba(255, 255, 255, 0.72);
        }

        .bus-door {
            position: absolute;
            right: 18px;
            top: 18px;
            width: 20px;
            height: 22px;
            border-radius: 5px;
            border: 2px solid rgba(255, 255, 255, 0.35);
        }

        .bus-line {
            position: absolute;
            left: 44px;
            bottom: 18px;
            width: 72px;
            height: 4px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.26);
        }

        .wheel {
            position: absolute;
            bottom: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #111;
            border: 4px solid #f4c430;
            animation: spin 0.7s linear infinite;
        }

        .wheel::after {
            content: "";
            position: absolute;
            inset: 7px;
            border-radius: 50%;
            background: #444;
        }

        .wheel-1 {
            left: 46px;
        }

        .wheel-2 {
            left: 118px;
        }

        .steam {
            position: absolute;
            bottom: 62px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(244, 196, 48, 0.8);
            filter: blur(1px);
            animation: steamUp 1.4s infinite ease-in-out;
        }

        .steam-1 {
            left: 52px;
            animation-delay: 0s;
        }

        .steam-2 {
            left: 68px;
            animation-delay: 0.25s;
        }

        .steam-3 {
            left: 84px;
            animation-delay: 0.5s;
        }

        .loader-wrap h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 6px;
            color: #fff;
        }

        .loader-wrap p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes busBounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-4px);
            }
        }

        @keyframes steamUp {
            0% {
                transform: translateY(0) scale(1);
                opacity: 0;
            }

            20% {
                opacity: 1;
            }

            100% {
                transform: translateY(-22px) scale(1.6);
                opacity: 0;
            }
        }

        @keyframes roadMove {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(100%);
            }
        }








        .read-more-btn {
            margin-top: 18px;
            padding: 12px 24px;
            border: 1px solid rgba(244, 196, 48, 0.22);
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(244, 196, 48, 0.92));
            color: #111;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
        }

        .read-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 34px rgba(255, 107, 53, 0.22);
        }

        .about-popup {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.72);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;
            z-index: 99999;
        }

        .about-popup.show {
            opacity: 1;
            visibility: visible;
        }

        .about-popup-box {
            position: relative;
            max-width: 900px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(10, 10, 10, 0.98));
            border: 1px solid rgba(244, 196, 48, 0.18);
            border-radius: 26px;
            padding: 34px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
            color: #fff;
        }

        .about-popup-box h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 18px;
            color: #f4c430;
        }

        .about-popup-box p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
            white-space: pre-line;
        }

        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 42px;
            height: 42px;
            border: none;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .popup-close:hover {
            background: rgba(255, 107, 53, 0.2);
            color: #f4c430;
        }














        /* Scroll Animation */
        /* Premium scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px) scale(0.98);
            filter: blur(6px);
            transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
            will-change: opacity, transform, filter;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.9s ease;
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.9s ease;
        }

        .reveal-left.visible,
        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Card hover polish */
        .category-card,
        .dish-card,
        .trust-badge,
        .contact-item,
        .split-card,
        .gallery-item,
        .about-img {
            transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.9s ease;
        }

        .category-card:hover,
        .dish-card:hover,
        .trust-badge:hover,
        .contact-item:hover,
        .split-card:hover {
            transform: translateY(-8px);
        }

        /* Stagger helper */
        .stagger-item {
            transition-delay: calc(var(--i) * 120ms);
        }

        /* Soft parallax feel for hero */
        .top-slider img {
            transform: scale(1.08);
            transition: transform 1.2s ease;
        }

        .top-slider .slide.active img {
            transform: scale(1);
        }
















        /* ================= SECTION ================= */
        .reviews-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ================= WRAPPER ================= */
        .rs-wrap {
            padding: 2rem 0;
        }

        .rs-outer {
            border-radius: 20px;
            padding: 1.5rem 0;
            overflow: hidden;
        }

        /* ================= TRACK ================= */
        .rs-container {
            position: relative;
        }

        .rs-track-wrap {
            overflow: hidden;
            padding: 20px 0;
            /* FIX for scaling space */
        }

        .rs-track {
            display: flex;
            gap: 16px;
            transition: transform 0.5s ease;
            will-change: transform;
        }

        /* ================= CARDS ================= */
        .rv-card {
            flex: 0 0 100%;
            max-width: 100%;
            background: linear-gradient(135deg, #191919 0%, #1a1a1a 50%, #2e2a1d 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 18px;
            opacity: 0.6;
            transform: scale(0.95);
            transition: all 0.4s ease;
        }

        /* CENTER CARD */
        .rv-card.active {
            opacity: 1;
            transform: scale(1.08);
            border-color: rgba(244, 196, 48, 0.5);
            box-shadow: 0 0 25px rgba(244, 196, 48, 0.15);
            z-index: 2;
        }

        /* SIDE CARDS */
        .rv-card.side {
            opacity: 0.7;
            transform: scale(0.92);
        }

        /* ================= TEXT ================= */
        .rv-stars {
            color: #f4c430;
            margin-bottom: 10px;
        }

        .rv-card p {
            color: rgba(255, 255, 255, 0.85);
            font-style: italic;
            line-height: 1.6;
        }

        .rv-card h4 {
            color: #fff;
        }

        .rv-card span {
            color: rgba(255, 255, 255, 0.5);
        }

        /* ================= CONTROLS ================= */
        .rs-controls {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            max-width: 320px;
            margin: 1.5rem auto 0;
        }

        /* ================= ARROWS ================= */
        .rs-arrow {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(244, 196, 48, 0.3);
            background: rgba(255, 255, 255, 0.06);
            color: #f4c430;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .rs-arrow:hover {
            background: rgba(244, 196, 48, 0.2);
            color: #fff;
            transform: scale(1.1);
        }

        /* ================= DOTS ================= */
        .rs-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        .rs-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .rs-dot.active {
            background: #f4c430;
            width: 18px;
            border-radius: 4px;
        }

        /* ================= RESPONSIVE ================= */

        /* Tablet */
        @media (min-width: 600px) {
            .rv-card {
                flex: 0 0 calc(50% - 8px);
            }
        }

        /* Desktop */
        @media (min-width: 992px) {
            .rv-card {
                flex: 0 0 calc(33.333% - 10px);
            }

            .rv-card.active {
                transform: scale(1.08);
            }

            .rv-card.side {
                transform: scale(0.9);
            }
        }

        /* MOBILE FIX */
        @media (max-width: 599px) {
            .rv-card {
                flex: 0 0 100%;
                max-width: 100%;
                transform: scale(1) !important;
                opacity: 1 !important;
            }

            .rv-card.side {
                transform: none;
                opacity: 1;
            }
        }




        /* /* Mobile/Tablet ONLY: Visible on slider, hide on scroll with animation */
        @media (max-width: 991px) {
            .social-bar {
                opacity: 1;
                visibility: visible;
                transform: translateY(-50%) translateX(0);
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                /* Smooth animation */
            }

            /* Hide when scrolled past slider */
            body.scrolled .social-bar {
                opacity: 0;
                visibility: hidden;
                transform: translateY(-50%) translateX(-20px);
                /* Slide left animation */
            }

            /* Show when menu open */
            body.menu-open .social-bar {
                opacity: 1 !important;
                visibility: visible !important;
                transform: translateY(-50%) translateX(0) !important;
            }
        }

        /* Desktop: Always visible, no change */
        @media (min-width: 992px) {
            .social-bar {
                opacity: 1 !important;
                visibility: visible !important;
            }
        }





        .gallery-section .section-header p {
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
            /* Dark neutral */
            text-align: center;
            padding: 15px 0;
            letter-spacing: 0.5px;
            max-width: 500px;
            margin: 20px auto;
            line-height: 1.5;
        }

        /* Buttons ko bhi simple banao (if floating) */
        .gallery-section .explore-buttons button,
        .gallery-section [class*="social"] {
            background: #ff8c00;
            /* Solid orange */
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 500;
        }



        .rv-author {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 16px;
        }

        .rv-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .rv-avatar:hover {
            transform: scale(1.05);
            border-color: #ff6b35;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }


        .verified-badge {
            display: inline-block;
            vertical-align: middle;
            margin-left: 6px;
            transition: transform 0.2s ease;
        }

        .rv-author:hover .verified-badge {
            transform: scale(1.1);
        }

        .rv-card h4 {
            margin: 0 0 4px 0;
            font-size: 1.1em;
        }

        .rv-card span {
            font-size: 0.85em;
            color: #666;
        }





        /* ===== FLOATING CALL/WHATSAPP CIRCLE BUTTONS ===== */
        .floating-call,
        .floating-whatsapp {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            /* 👈 ICON CENTER */
            text-decoration: none;
            color: white;
            font-size: 20px;
            /* 👈 Slightly smaller for perfect fit */
            line-height: 1;
            /* 👈 No extra spacing */
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse 2s infinite;
        }

        /* Text - HIDDEN by default */
        .floating-call span,
        .floating-whatsapp span {
            position: absolute;
            left: 70px;
            /* 👈 Outside circle */
            font-size: 14px;
            font-weight: 600;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        /* Icon perfect */
        .floating-call i,
        .floating-whatsapp i {
            font-size: 20px !important;
            line-height: 1;
        }

        /* HOVER - Expand + Show Text */
        .floating-call:hover,
        .floating-whatsapp:hover {
            width: 160px;
            border-radius: 30px;
            padding: 0 20px;
            justify-content: flex-start;
            /* 👈 Text left-aligned */
            box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
            animation: none;
        }

        .floating-call:hover span,
        .floating-whatsapp:hover span {
            opacity: 1;
            transform: translateX(0);
        }

        /* Call Button */
        .floating-call {
            background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
            bottom: 95px;
        }

        /* WhatsApp Button */
        .floating-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #20B449 100%);
        }

        /* Pulse Animation */
        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
                transform: scale(1);
            }

            50% {
                box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
                transform: scale(1.05);
            }
        }

        /* --- FAQ SECTION --- */
        .faq-section {
            padding: 8rem 0;
            background: #050505;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            gap: 1.5rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .faq-item.active {
            background: rgba(255, 255, 255, 0.06);
            border-color: var(--accent-gold);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .faq-question {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
        }

        .faq-question h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-light);
            margin: 0;
            transition: color 0.3s ease;
        }

        .faq-item.active .faq-question h3 {
            color: var(--accent-gold);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.4s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: "";
            position: absolute;
            background: var(--accent-gold);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .faq-icon::before {
            width: 100%;
            height: 2px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
        }

        .faq-icon::after {
            width: 2px;
            height: 100%;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0, 0, 0, 0.2);
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 2rem 2rem;
        }

        .faq-answer p {
            color: var(--text-muted);
            line-height: 1.8;
            margin: 0;
            font-size: 1.1rem;
        }

        /* --- MARQUEE SECTION --- */
        .marquee-section {
            background: var(--accent-orange);
            padding: 1.2rem 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 10;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee-scroll 40s linear infinite;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding-right: 2rem;
        }

        .marquee-content span {
            color: #000;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Poppins', sans-serif;
        }

        .marquee-content .dot {
            width: 8px;
            height: 8px;
            background: #000;
            border-radius: 50%;
            opacity: 0.5;
        }

        @keyframes marquee-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .marquee-section:hover .marquee-track {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {
            .marquee-section {
                padding: 1rem 0;
            }

            .marquee-content span {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }

            .marquee-track {
                animation-duration: 30s;
            }

            .philosophy-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .stat-item {
                padding: 1.5rem;
            }

            .floating-call,
            .floating-whatsapp {
                width: 58px;
                height: 58px;
                right: 21px;
            }

            .floating-call {
                bottom: 100px;
                background: green;
            }

            .floating-call:hover,
            .floating-whatsapp:hover {
                width: 140px;
            }

            .floating-call i,
            .floating-whatsapp i {
                font-size: 18px !important;
            }
        }

        /* --- LUXURY SHINE EFFECT --- */
        .category-card-front,
        .dish-card-front {
            position: relative;
            overflow: hidden;
        }

        .category-card-front::after,
        .dish-card-front::after {
            content: "";
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.2) 50%,
                    rgba(255, 255, 255, 0) 100%);
            transform: skewX(-30deg);
            pointer-events: none;
            z-index: 10;
        }

        .category-card:hover .category-card-front::after,
        .dish-card:hover .dish-card-front::after {
            left: 200%;
            transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }



        /* --- MOMENTS SLIDER SECTION --- */
        .moments-section {
            padding: 8rem 0;
            background: #050505;
            overflow: hidden;
        }

        .moments-slider {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 0 20px;
        }

        .slider-container {
            position: relative;
            height: 600px;
            border-radius: 40px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
            transform: scale(1.1);
            display: flex;
            align-items: flex-end;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
            z-index: 10;
        }



        /* Navigation Buttons */
        .slider-nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 40px;
            z-index: 20;
            pointer-events: none;
        }

        .nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .nav-btn:hover {
            background: var(--accent-gold);
            color: #000;
            border-color: var(--accent-gold);
            transform: scale(1.1);
        }

        /* Dots */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 3rem;
        }

        .dot {
            width: 40px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--accent-gold);
            width: 60px;
        }

        @media (max-width: 768px) {
            .slider-container {
                height: 400px;
            }

            .slide-overlay {
                padding: 2rem;
            }

            .slide-overlay h3 {
                font-size: 1.8rem;
            }

            .nav-btn {
                width: 45px;
                height: 45px;
            }
        }