        :root {
            --gold: #D4A853;
            --gold-light: #E8C97A;
            --gold-dark: #B8922F;
            --cream: #FDF8F0;
            --burgundy: #722F37;
            --green-veg: #228B22;
            
            /* Light Mode (Default) */
            --bg-primary: #FFFFFF;
            --bg-secondary: #F8F6F3;
            --bg-card: #FFFFFF;
            --text-primary: #1A1A1A;
            --text-secondary: #555555;
            --text-muted: #888888;
            --border-color: rgba(0, 0, 0, 0.08);
            --shadow-color: rgba(0, 0, 0, 0.08);
            --overlay-dark: rgba(0, 0, 0, 0.5);
            --nav-bg: rgba(255, 255, 255, 0.95);
        }
        
        [data-theme="dark"] {
            --bg-primary: #1A1A1A;
            --bg-secondary: #2D2D2D;
            --bg-card: rgba(255, 255, 255, 0.02);
            --text-primary: #FFFFFF;
            --text-secondary: #CCCCCC;
            --text-muted: #888888;
            --border-color: rgba(255, 255, 255, 0.08);
            --shadow-color: rgba(0, 0, 0, 0.3);
            --overlay-dark: rgba(26, 26, 26, 0.7);
            --nav-bg: rgba(26, 26, 26, 0.95);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            transition: background 0.4s ease, color 0.4s ease;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Cormorant Garamond', serif;
            color: var(--text-primary);
        }
        
        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.6s ease, visibility 0.6s ease;
        }
        
        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .preloader-logo {
            width: 120px;
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        [data-theme="dark"] .preloader-logo {
            filter: brightness(0) invert(1);
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .nav.scrolled {
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            padding: 15px 5%;
            box-shadow: 0 4px 30px var(--shadow-color);
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        
        .veg-symbol {
            width: 24px;
            height: 24px;
            border: 2px solid var(--green-veg);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .veg-symbol::after {
            content: '';
            width: 12px;
            height: 12px;
            background: var(--green-veg);
            border-radius: 50%;
        }
        
        .nav-logo img {
            height: 50px;
            transition: transform 0.3s ease;
        }
        
        [data-theme="dark"] .nav-logo img {
            filter: brightness(0) invert(1);
        }
        
        .nav-logo:hover img {
            transform: scale(1.05);
        }
        
        .nav-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
        }
        
        .lang-toggle {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            padding: 10px 18px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 25px;
            font-family: 'Outfit', sans-serif;
        }
        
        .lang-toggle:hover {
            border-color: var(--gold);
            background: rgba(212, 168, 83, 0.1);
            color: var(--gold);
        }
        
        .lang-toggle.active {
            background: var(--gold);
            color: #1A1A1A;
            border-color: var(--gold);
        }
        
        [data-theme="dark"] .lang-toggle.active {
            color: #FFFFFF;
        }
        
        .theme-toggle {
            width: 44px;
            height: 44px;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
            padding: 0;
            margin: 0;
            position: relative;
        }
        
        .theme-toggle:hover {
            border-color: var(--gold);
            background: rgba(212, 168, 83, 0.1);
        }
        
        .theme-toggle svg {
            width: 20px;
            height: 20px;
            fill: var(--text-primary);
            transition: fill 0.3s ease;
            display: block;
            margin: 0;
            padding: 0;
        }
        
        .theme-toggle .sun-icon {
            display: none;
        }
        
        .theme-toggle .moon-icon {
            display: block;
        }
        
        [data-theme="dark"] .theme-toggle .sun-icon {
            display: block;
        }
        
        [data-theme="dark"] .theme-toggle .moon-icon {
            display: none;
        }
        
        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--gold);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 12px 28px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .nav-cta:hover {
            background: var(--gold);
            color: var(--bg-primary);
        }
        
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
        }
        
        .mobile-toggle span {
            width: 28px;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
        }
        
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--bg-primary);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 30px;
            transition: right 0.5s ease;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu a {
            color: var(--text-primary);
            text-decoration: none;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 500;
            letter-spacing: 3px;
            transition: color 0.3s ease;
        }
        
        .mobile-menu a:hover {
            color: var(--gold);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('swastik-restaurant-background.jpg');
            background-size: cover;
            background-position: center;
            filter: brightness(0.5);
            transform: scale(1.1);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }
        
        [data-theme="dark"] .hero-bg {
            filter: brightness(0.4);
        }
        
        @keyframes heroZoom {
            0% { transform: scale(1.1); }
            100% { transform: scale(1.2); }
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0) 30%,
                rgba(0, 0, 0, 0.6) 100%
            );
        }
        
        [data-theme="dark"] .hero-overlay {
            background: linear-gradient(
                180deg,
                rgba(26, 26, 26, 0.3) 0%,
                rgba(26, 26, 26, 0.1) 50%,
                rgba(26, 26, 26, 0.8) 100%
            );
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(34, 139, 34, 0.2);
            border: 1px solid var(--green-veg);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .hero-badge span {
            width: 10px;
            height: 10px;
            background: var(--green-veg);
            border-radius: 50%;
        }
        
        .hero-badge p {
            color: var(--green-veg);
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .hero-title {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 600;
            color: #FFFFFF;
            line-height: 1;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.5s both;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
        }
        
        .hero-title span {
            color: var(--gold);
        }
        
        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 400;
            font-style: italic;
            color: var(--gold-light);
            margin-bottom: 15px;
            animation: fadeInUp 1s ease 0.7s both;
        }
        
        .hero-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.9s both;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 1.1s both;
        }
        
        .btn-primary {
            background: var(--gold);
            color: #1A1A1A;
            padding: 18px 45px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
        }
        
        .btn-primary:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 168, 83, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            color: #FFFFFF;
            padding: 18px 45px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
        }
        
        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
        
        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 45%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            animation: fadeInUp 1s ease 1.3s both;
            z-index: 10;
        }
        
        .hero-scroll p {
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            padding: 0;
            text-align: center;
        }
        
        .hero-scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollLine 2s ease-in-out infinite;
            margin: 0 auto;
        }
        
        @keyframes scrollLine {
            0%, 100% { transform: scaleY(1); opacity: 1; }
            50% { transform: scaleY(0.5); opacity: 0.5; }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        .section {
            padding: 120px 5%;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* About Section */
        .about {
            background: var(--bg-secondary);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }
        
        .about-image-frame {
            position: absolute;
            top: 30px;
            left: 30px;
            right: -30px;
            bottom: -30px;
            border: 2px solid var(--gold);
            z-index: -1;
        }
        
        .about-text h3 {
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 30px;
            line-height: 1.3;
        }
        
        .about-text h3 span {
            color: var(--gold);
        }
        
        .about-text p {
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
        
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .about-feature-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
        }
        
        .about-feature h4 {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 5px;
        }
        
        .about-feature p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }
        
        /* Menu Section */
        .menu {
            background: var(--bg-primary);
        }
        
        .menu-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 60px;
            padding: 0 20px;
        }
        
        .menu-tab {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-muted);
            padding: 12px 24px;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .menu-tab:hover,
        .menu-tab.active {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(212, 168, 83, 0.1);
        }
        
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .menu-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 30px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .menu-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--gold);
            transition: height 0.4s ease;
        }
        
        .menu-item:hover {
            background: rgba(212, 168, 83, 0.05);
            border-color: rgba(212, 168, 83, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 10px 40px var(--shadow-color);
        }
        
        .menu-item:hover::before {
            height: 100%;
        }
        
        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
            gap: 20px;
        }
        
        .menu-item-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-primary);
        }
        
        .menu-item-name-hindi {
            font-size: 0.9rem;
            color: var(--gold);
            margin-top: 5px;
        }
        
        .menu-item-price {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--gold);
            white-space: nowrap;
        }
        
        .menu-item-description {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 15px;
        }
        
        .menu-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        
        .menu-item-tag {
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 3px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .menu-item-tag.veg {
            background: rgba(34, 139, 34, 0.15);
            color: var(--green-veg);
            border: 1px solid rgba(34, 139, 34, 0.3);
        }
        
        .menu-item-tag.vegan {
            background: rgba(34, 139, 34, 0.15);
            color: #32CD32;
            border: 1px solid rgba(50, 205, 50, 0.3);
        }
        
        .menu-item-tag.gluten-free {
            background: rgba(212, 168, 83, 0.15);
            color: var(--gold);
            border: 1px solid rgba(212, 168, 83, 0.3);
        }
        
        .menu-category-content {
            display: none;
        }
        
        .menu-category-content.active {
            display: grid;
        }
        
        /* Specialties Section */
        .specialties {
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }
        
        .specialties::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .specialty-card {
            text-align: center;
            padding: 50px 30px;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
        }
        
        .specialty-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(212, 168, 83, 0.15);
        }
        
        .specialty-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(212, 168, 83, 0.1);
            border-radius: 50%;
            border: 2px solid var(--gold);
        }
        
        .specialty-icon svg {
            width: 36px;
            height: 36px;
            fill: var(--gold);
        }
        
        .specialty-card h3 {
            font-size: 1.5rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 15px;
        }
        
        .specialty-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        /* Location Section */
        .location {
            background: var(--bg-primary);
        }
        
        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .location-info h3 {
            font-size: 2rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 30px;
        }
        
        .location-details {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .location-detail {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        
        .location-detail-icon {
            width: 50px;
            height: 50px;
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .location-detail-icon svg {
            width: 22px;
            height: 22px;
            fill: var(--gold);
        }
        
        .location-detail h4 {
            font-size: 1rem;
            font-weight: 500;
            color: var(--gold);
            margin-bottom: 8px;
            font-family: 'Outfit', sans-serif;
        }
        
        .location-detail p {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
        }
        
        .location-areas {
            margin-top: 40px;
        }
        
        .location-areas h4 {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 15px;
        }
        
        .location-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .location-tag {
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid rgba(212, 168, 83, 0.2);
            color: var(--gold-dark);
            padding: 8px 16px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }
        
        [data-theme="dark"] .location-tag {
            color: var(--gold-light);
        }
        
        .location-tag:hover {
            background: var(--gold);
            color: #1A1A1A;
        }
        
        .location-map {
            position: relative;
            height: 500px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            overflow: hidden;
        }
        
        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        [data-theme="dark"] .location-map iframe {
            filter: grayscale(100%) invert(92%) contrast(83%);
        }
        
        /* Contact Section */
        .contact {
            background: var(--bg-secondary);
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .form-group label {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea {
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            padding: 16px 20px;
            font-size: 1rem;
            color: var(--text-primary);
            font-family: 'Outfit', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(212, 168, 83, 0.05);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info-side h3 {
            font-size: 2rem;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 20px;
        }
        
        .contact-info-side p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .contact-method-icon {
            width: 60px;
            height: 60px;
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-method-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
        }
        
        .contact-method h4 {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gold);
            margin-bottom: 5px;
            font-family: 'Outfit', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .contact-method p {
            font-size: 1.1rem;
            color: var(--text-primary);
            margin: 0;
        }
        
        /* Footer */
        .footer {
            background: var(--bg-primary);
            padding: 80px 5% 30px;
            border-top: 1px solid var(--border-color);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto 60px;
        }
        
        .footer-brand img {
            height: 60px;
            margin-bottom: 20px;
        }
        
        [data-theme="dark"] .footer-brand img {
            filter: brightness(0) invert(1);
        }
        
        .footer-brand p {
            color: var(--text-muted);
            line-height: 1.8;
            font-size: 0.95rem;
        }
        
        .footer-column h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 25px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: 'Outfit', sans-serif;
        }
        
        .footer-column ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .footer-column a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .footer-column a:hover {
            color: var(--gold);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--gold);
        }
        
        .footer-social a:hover svg {
            fill: var(--bg-primary);
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
            transition: fill 0.3s ease;
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .footer-bottom .powered-by {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-bottom .powered-by a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .footer-bottom .powered-by a:hover {
            color: var(--gold);
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .specialties-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .nav-right .nav-cta {
                display: none;
            }
            
            .nav-right {
                gap: 15px;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .about-content,
            .location-content,
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .about-image-frame {
                display: none;
            }
            
            .about-image img {
                height: 400px;
            }
            
            .menu-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 80px 5%;
            }
            
            .hero {
                min-height: 100vh;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary,
            .btn-secondary {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
            
            .specialties-grid {
                grid-template-columns: 1fr;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .menu-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .location-map {
                height: 350px;
            }
        }
        
        @media (max-width: 480px) {
            .nav {
                padding: 15px 4%;
            }
            
            .nav-logo img {
                height: 40px;
            }
            
            .veg-symbol {
                width: 20px;
                height: 20px;
            }
            
            .veg-symbol::after {
                width: 10px;
                height: 10px;
            }
            
            .lang-toggle {
                padding: 8px 14px;
                font-size: 0.75rem;
            }
            
            .theme-toggle {
                width: 38px;
                height: 38px;
                flex-shrink: 0;
            }
            
            .theme-toggle svg {
                width: 16px;
                height: 16px;
                display: block;
            }
            
            .hero-scroll {
                bottom: 30px;
            }
            
            .hero-scroll p {
                font-size: 0.65rem;
                letter-spacing: 2px;
            }
            
            .hero-scroll-line {
                height: 50px;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .menu-item {
                padding: 20px;
            }
            
            .specialty-card {
                padding: 35px 20px;
            }
        }
        
        /* Utility Classes */
        .text-gold {
            color: var(--gold);
        }
        
        /* Animations on scroll */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Tech Partner Badge (Subtle) */
        .tech-badge {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            text-decoration: none;
            z-index: 100;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px var(--shadow-color);
            opacity: 0.6;
        }
        
        .tech-badge:hover {
            opacity: 1;
            border-color: var(--gold);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 168, 83, 0.2);
        }
        
        .tech-badge svg {
            width: 20px;
            height: 20px;
            fill: var(--text-muted);
            transition: fill 0.3s ease;
        }
        
        .tech-badge:hover svg {
            fill: var(--gold);
        }
        
        @media (max-width: 768px) {
            .tech-badge {
                bottom: 15px;
                right: 15px;
                width: 36px;
                height: 36px;
            }
            
            .tech-badge svg {
                width: 18px;
                height: 18px;
            }
        }
        
        /* Grand Opening Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background: var(--bg-primary);
            max-width: 500px;
            width: 100%;
            position: relative;
            overflow: hidden;
            transform: scale(0.8) translateY(50px);
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
        }
        
        .modal-overlay.active .modal {
            transform: scale(1) translateY(0);
        }
        
        /* Tricolor top border */
        .modal-tricolor {
            height: 6px;
            display: flex;
        }
        
        .modal-tricolor span {
            flex: 1;
        }
        
        .modal-tricolor span:nth-child(1) {
            background: #FF9933;
        }
        
        .modal-tricolor span:nth-child(2) {
            background: #FFFFFF;
        }
        
        .modal-tricolor span:nth-child(3) {
            background: #138808;
        }
        
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: transparent;
            border: 1px solid var(--border-color);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .modal-close:hover {
            border-color: var(--gold);
            background: rgba(212, 168, 83, 0.1);
        }
        
        .modal-close svg {
            width: 18px;
            height: 18px;
            fill: var(--text-muted);
            transition: fill 0.3s ease;
        }
        
        .modal-close:hover svg {
            fill: var(--gold);
        }
        
        .modal-content {
            padding: 50px 40px 40px;
            text-align: center;
        }
        
        .modal-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #FF9933 0%, #138808 100%);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
            animation: badgePulse 2s ease-in-out infinite;
        }
        
        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 153, 51, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(255, 153, 51, 0); }
        }
        
        .modal-badge span {
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        .modal-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            position: relative;
        }
        
        .modal-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
        
        [data-theme="dark"] .modal-icon img {
            filter: brightness(0) invert(1);
        }
        
        .modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.2;
        }
        
        .modal-title span {
            color: var(--gold);
        }
        
        .modal-date {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 168, 83, 0.1);
            border: 1px solid var(--gold);
            padding: 12px 25px;
            margin: 20px 0;
        }
        
        .modal-date svg {
            width: 20px;
            height: 20px;
            fill: var(--gold);
        }
        
        .modal-date p {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gold);
            letter-spacing: 1px;
        }
        
        .modal-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .modal-republic {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 20px 0;
            padding: 15px;
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(19, 136, 8, 0.1) 100%);
            border-radius: 8px;
        }
        
        .modal-republic .flag-icon {
            font-size: 1.5rem;
        }
        
        .modal-republic p {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
        }
        
        .modal-republic p strong {
            color: #FF9933;
        }
        
        .modal-cta {
            display: inline-block;
            background: var(--gold);
            color: #1A1A1A;
            padding: 16px 40px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            margin-top: 10px;
        }
        
        .modal-cta:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(212, 168, 83, 0.3);
        }
        
        .modal-confetti {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .confetti-piece {
            position: absolute;
            width: 10px;
            height: 10px;
            top: -20px;
            animation: confettiFall 3s ease-in-out infinite;
        }
        
        .confetti-piece:nth-child(1) { left: 10%; animation-delay: 0s; background: #FF9933; }
        .confetti-piece:nth-child(2) { left: 20%; animation-delay: 0.2s; background: #FFFFFF; border: 1px solid #ddd; }
        .confetti-piece:nth-child(3) { left: 30%; animation-delay: 0.4s; background: #138808; }
        .confetti-piece:nth-child(4) { left: 40%; animation-delay: 0.6s; background: var(--gold); }
        .confetti-piece:nth-child(5) { left: 50%; animation-delay: 0.8s; background: #FF9933; }
        .confetti-piece:nth-child(6) { left: 60%; animation-delay: 1s; background: #138808; }
        .confetti-piece:nth-child(7) { left: 70%; animation-delay: 1.2s; background: var(--gold); }
        .confetti-piece:nth-child(8) { left: 80%; animation-delay: 1.4s; background: #FFFFFF; border: 1px solid #ddd; }
        .confetti-piece:nth-child(9) { left: 90%; animation-delay: 1.6s; background: #FF9933; }
        
        @keyframes confettiFall {
            0% {
                top: -20px;
                transform: rotate(0deg) scale(1);
                opacity: 1;
            }
            100% {
                top: 100%;
                transform: rotate(720deg) scale(0.5);
                opacity: 0;
            }
        }
        
        @media (max-width: 576px) {
            .modal-content {
                padding: 40px 25px 30px;
            }
            
            .modal-title {
                font-size: 2rem;
            }
            
            .modal-icon {
                width: 60px;
                height: 60px;
            }
        }
