        /* Loading Screen Styles */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ff8c00, #ffd700, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
            animation: logoGlow 2s ease-in-out infinite alternate;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 215, 0, 0.3);
            border-top: 4px solid #ffd700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1.5rem;
        }

        .loading-text {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            animation: fadeInOut 1.5s ease-in-out infinite;
        }

        .loading-progress {
            width: 300px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
            overflow: hidden;
            margin-top: 1rem;
        }

        .loading-progress-bar {
            height: 100%;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            border-radius: 2px;
            animation: progressLoad 3s ease-in-out;
            transform: translateX(-100%);
        }

        @keyframes logoGlow {
            0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
            100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 40px rgba(255, 140, 0, 0.6); }
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        @keyframes progressLoad {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(0%); }
        }

        /* Mobile Menu Styles */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            z-index: 999;
            padding: 2rem;
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            display: block;
            transform: translateY(0);
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mobile-menu-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 1.2rem;
            padding: 1rem;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .mobile-menu-links a:hover {
            background: rgba(255, 215, 0, 0.2);
            color: #ffd700;
        }

        .mobile-auth-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .mobile-auth-buttons .btn {
            width: 100%;
            text-align: center;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

        body {
            font-family: 'Crimson Text', 'Georgia', serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            overflow-x: hidden;
            line-height: 1.7;
            color: #ffffff;
            font-weight: 400;
            min-height: 100vh;
        }

        /* Modern Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.3);
            z-index: 1000;
            padding: 1rem 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(255, 215, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ff8c00, #ffd700, #ffb347);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            letter-spacing: 0.3px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #333;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
            font-weight: 600;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border: 2px solid rgba(255, 215, 0, 0.6);
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        /* Page Sections */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Modern Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(255, 235, 59, 0.15) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
        }

        .hero-content {
            z-index: 2;
            color: #ffffff;
            max-width: 900px;
            padding: 2rem;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
            text-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        /* Advanced Food Animations */
        .food-showcase {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .food-item {
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 8s ease-in-out infinite;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
            overflow: hidden;
        }

        /* Burger Cutting Animation */
        .burger-cutting {
            position: relative;
            width: 200px;
            height: 200px;
        }

        .burger-whole {
            position: absolute;
            width: 180px;
            height: 120px;
            left: 10px;
            top: 40px;
            animation: burgerSlice 6s ease-in-out infinite;
        }

        .burger-bun-top {
            width: 180px;
            height: 45px;
            background: linear-gradient(to bottom, #daa520 0%, #b8860b 50%, #996515 100%);
            border-radius: 90px 90px 20px 20px;
            position: absolute;
            top: 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .burger-lettuce {
            width: 160px;
            height: 12px;
            background: linear-gradient(45deg, #32cd32, #228b22);
            border-radius: 80px;
            position: absolute;
            top: 40px;
            left: 10px;
        }

        .burger-patty {
            width: 150px;
            height: 20px;
            background: linear-gradient(to bottom, #8b4513 0%, #654321 50%, #4a2c17 100%);
            border-radius: 10px;
            position: absolute;
            top: 55px;
            left: 15px;
            box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
        }

        .burger-bun-bottom {
            width: 180px;
            height: 25px;
            background: linear-gradient(to bottom, #daa520 0%, #b8860b 50%, #996515 100%);
            border-radius: 20px 20px 90px 90px;
            position: absolute;
            bottom: 0;
        }

        .knife-line {
            position: absolute;
            width: 2px;
            height: 0;
            background: linear-gradient(to bottom, #c0c0c0, #808080);
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            animation: knifeSlice 6s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(192, 192, 192, 0.8);
        }

        .burger-left, .burger-right {
            position: absolute;
            width: 90px;
            height: 120px;
            overflow: hidden;
            opacity: 0;
        }

        .burger-left {
            left: 0;
            animation: slideLeft 6s ease-in-out infinite;
        }

        .burger-right {
            right: 0;
            animation: slideRight 6s ease-in-out infinite;
        }

        /* Pizza Cutting Animation */
        .pizza-cutting {
            position: relative;
            width: 200px;
            height: 200px;
        }

        .pizza-base {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, #ffcc00 30%, #ff8c00 60%, #d2691e 90%);
            border-radius: 50%;
            position: absolute;
            top: 10px;
            left: 10px;
            animation: pizzaCut 8s ease-in-out infinite;
            box-shadow: 0 0 25px rgba(255, 140, 0, 0.4);
        }

        .pizza-toppings-cut {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
        }

        .pizza-slice {
            position: absolute;
            width: 90px;
            height: 90px;
            background: radial-gradient(circle, #ffcc00 30%, #ff8c00 60%, #d2691e 90%);
            border-radius: 0 90px 0 0;
            transform-origin: 0 90px;
            opacity: 0;
        }

        .pizza-slice-1 {
            top: 0;
            left: 90px;
            animation: sliceMove1 8s ease-in-out infinite;
        }

        .pizza-slice-2 {
            top: 90px;
            right: 0;
            transform: rotate(90deg);
            transform-origin: 0 0;
            animation: sliceMove2 8s ease-in-out infinite;
        }

        .pizza-slice-3 {
            bottom: 0;
            right: 90px;
            transform: rotate(180deg);
            transform-origin: 90px 0;
            animation: sliceMove3 8s ease-in-out infinite;
        }

        .pizza-slice-4 {
            bottom: 90px;
            left: 0;
            transform: rotate(270deg);
            transform-origin: 90px 90px;
            animation: sliceMove4 8s ease-in-out infinite;
        }

        .pizza-cut-lines {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 180px;
            height: 180px;
        }

        .cut-line {
            position: absolute;
            background: linear-gradient(to right, transparent, #fff, transparent);
            opacity: 0;
            animation: cutLineAppear 8s ease-in-out infinite;
        }

        .cut-line-1 {
            width: 180px;
            height: 2px;
            top: 89px;
            left: 0;
        }

        .cut-line-2 {
            width: 2px;
            height: 180px;
            top: 0;
            left: 89px;
        }

        .dessert-builder {
            position: relative;
            width: 200px;
            height: 200px;
        }

        .cake-base {
            width: 180px;
            height: 60px;
            background: linear-gradient(to bottom, #8b4513 0%, #654321 50%, #4a2c17 100%);
            border-radius: 90px 90px 20px 20px;
            position: absolute;
            bottom: 20px;
            left: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .frosting-layer {
            width: 160px;
            height: 40px;
            background: linear-gradient(45deg, #fff8dc, #f5f5dc, #fff8dc);
            border-radius: 80px 80px 15px 15px;
            position: absolute;
            bottom: 70px;
            left: 20px;
            animation: frostingGlow 3s ease-in-out infinite;
            box-shadow: inset 0 2px 8px rgba(255,255,255,0.5);
        }

        .chocolate-drizzle {
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, #3c1810, #654321);
            border-radius: 2px;
            animation: drizzleFlow 4s ease-in-out infinite;
        }

        .chocolate-drizzle::before,
        .chocolate-drizzle::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, #3c1810, #654321);
            border-radius: 2px;
            animation: drizzleFlow 4s ease-in-out infinite;
        }

        .chocolate-drizzle::before {
            left: -20px;
            animation-delay: 0.5s;
        }

        .chocolate-drizzle::after {
            right: -20px;
            animation-delay: 1s;
        }

        .berry-topping {
            position: absolute;
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, #ff1744, #c62828);
            border-radius: 50%;
            opacity: 0;
            animation: berryDrop 5s ease-in-out infinite;
        }

        .berry-1 { top: 60px; left: 60px; animation-delay: 2s; }
        .berry-2 { top: 65px; right: 60px; animation-delay: 2.3s; }
        .berry-3 { top: 70px; left: 90px; animation-delay: 2.6s; }

        .cream-swirl {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 30px;
            background: radial-gradient(circle, #ffffff, #f8f8ff);
            border-radius: 50%;
            opacity: 0;
            animation: creamSwirl 6s ease-in-out infinite;
        }

        .pizza-modern {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #ffcc00 30%, #ff8c00 60%, #d2691e 90%);
            border-radius: 50%;
            position: relative;
            animation: pizzaRotate 6s linear infinite;
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
        }

        .pizza-toppings {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .topping {
            position: absolute;
            border-radius: 50%;
            animation: toppingPulse 2s ease-in-out infinite;
        }

        .pepperoni {
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, #cc0000, #990000);
        }

        .pepper {
            width: 15px;
            height: 15px;
            background: radial-gradient(circle, #228b22, #006400);
        }

        .cheese {
            width: 25px;
            height: 25px;
            background: radial-gradient(circle, #ffff99, #ffff66);
        }

        .burger-stack-modern {
            position: relative;
            width: 180px;
            height: 180px;
        }

        .bun-top-modern {
            width: 160px;
            height: 40px;
            background: linear-gradient(to bottom, #daa520 0%, #b8860b 50%, #996515 100%);
            border-radius: 80px 80px 20px 20px;
            position: absolute;
            top: 20px;
            left: 10px;
            animation: bunFloat 3s ease-in-out infinite;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .lettuce-layer {
            width: 140px;
            height: 15px;
            background: linear-gradient(45deg, #32cd32, #228b22);
            border-radius: 70px;
            position: absolute;
            top: 70px;
            left: 20px;
            animation: leafRustle 2s ease-in-out infinite;
        }

        .patty-modern {
            width: 130px;
            height: 25px;
            background: linear-gradient(to bottom, #8b4513 0%, #654321 50%, #4a2c17 100%);
            border-radius: 15px;
            position: absolute;
            top: 90px;
            left: 25px;
            animation: pattySizzle 1.5s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
        }

        .food-item:nth-child(1) {
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .food-item:nth-child(2) {
            top: 55%;
            right: 12%;
            animation-delay: 2s;
        }

        .food-item:nth-child(3) {
            bottom: 15%;
            left: 15%;
            animation-delay: 4s;
        }

        .food-item:nth-child(4) {
            top: 25%;
            right: 25%;
            animation-delay: 1s;
        }

        .food-item:nth-child(5) {
            bottom: 35%;
            right: 8%;
            animation-delay: 3s;
        }

        .food-item:nth-child(6) {
            top: 5%;
            right: 5%;
            animation-delay: 5s;
        }

        .food-item:nth-child(7) {
            bottom: 5%;
            right: 35%;
            animation-delay: 6s;
        }

        .food-item:nth-child(8) {
            top: 35%;
            left: 5%;
            animation-delay: 7s;
        }

        .food-item:nth-child(9) {
            bottom: 45%;
            left: 35%;
            animation-delay: 8s;
        }

        .food-item:nth-child(10) {
            top: 65%;
            left: 25%;
            animation-delay: 9s;
        }

        .food-item:nth-child(11) {
            top: 45%;
            right: 45%;
            animation-delay: 10s;
        }

        .food-item:nth-child(12) {
            bottom: 25%;
            right: 55%;
            animation-delay: 11s;
        }

        .food-item:nth-child(13) {
            top: 75%;
            right: 15%;
            animation-delay: 12s;
        }

        /* Products Section */
        .products {
            padding: 6rem 2rem;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(20px);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(255, 215, 0, 0.4);
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            color: #333333;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.5);
        }

        .product-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: linear-gradient(45deg, #fff9e6, #fef7d9);
            border: 3px solid rgba(255, 215, 0, 0.3);
        }

        .product-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #333333;
        }

        .product-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: #ff8c00;
            margin: 1rem 0;
        }

        .product-description {
            font-size: 0.95rem;
            color: #555555;
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .add-to-cart {
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            color: #333;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            width: 100%;
        }

        .add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            background: linear-gradient(45deg, #ffed4e, #fff176);
        }

        .product-reviews, .service-review {
            margin: 1rem 0;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .stars {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .review-text {
            font-size: 0.9rem;
            font-style: italic;
            color: #666666;
            text-align: center;
            margin: 0;
            line-height: 1.4;
        }

        .service-review .review-text {
            color: rgba(255, 255, 255, 0.8);
        }

        .cart-count {
            position: fixed;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, #ff8c00, #ffd700);
            color: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 1001;
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cart-count:hover {
            transform: scale(1.1);
        }

        /* Modern Services Section */
        .services {
            padding: 6rem 2rem;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 4rem;
            background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
            text-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 215, 0, 0.4);
            padding: 2.5rem;
            border-radius: 25px;
            text-align: center;
            color: #333333;
            transform: translateY(0);
            transition: all 0.4s ease;
            animation: slideInUp 0.8s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .service-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
            color: #333333;
        }

        .service-card p {
            font-size: 1.1rem;
            color: #555555;
            line-height: 1.6;
        }

        /* Chef Profiles Section */
        .chef-profiles {
            padding: 6rem 2rem;
            background: rgba(0, 0, 0, 0.1);
        }

        .chef-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .chef-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            color: white;
            transition: all 0.3s ease;
        }

        .chef-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #ff6b6b, #ffd93d, #6bcf7f);
            border-radius: 50%;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: rgba(255, 255, 255, 0.05);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 2rem;
            color: white;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            opacity: 0.3;
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            color: white;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: #ffd93d;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            font-size: 1.3rem;
            letter-spacing: 0.3px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: #ffd93d;
        }

        .subscribe-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .subscribe-input {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 10px;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
        }

        .subscribe-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2.5rem;
            border-radius: 25px;
            width: 90%;
            max-width: 450px;
            animation: slideInDown 0.3s ease;
            color: white;
        }

        .modal-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .modal-header h2 {
            color: white;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: white;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
            transition: border-color 0.3s ease;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus {
            border-color: #ffd93d;
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: white;
        }

        .user-menu {
            display: none;
            position: relative;
        }

        .user-menu.active {
            display: block;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1rem;
            min-width: 180px;
            margin-top: 0.5rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotateX(0deg) rotateY(0deg);
            }
            25% {
                transform: translateY(-25px) rotateX(5deg) rotateY(5deg);
            }
            50% {
                transform: translateY(-15px) rotateX(-3deg) rotateY(-3deg);
            }
            75% {
                transform: translateY(-35px) rotateX(3deg) rotateY(8deg);
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.8;
            }
        }

        @keyframes drizzleFlow {
            0% {
                height: 0;
                opacity: 0;
            }
            20% {
                height: 60px;
                opacity: 1;
            }
            80% {
                height: 120px;
                opacity: 1;
            }
            100% {
                height: 140px;
                opacity: 0;
            }
        }

        @keyframes berryDrop {
            0% {
                opacity: 0;
                transform: translateY(-20px) scale(0);
            }
            30% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes creamSwirl {
            0% {
                opacity: 0;
                transform: translateX(-50%) scale(0) rotate(0deg);
            }
            40% {
                opacity: 1;
                transform: translateX(-50%) scale(1) rotate(180deg);
            }
            100% {
                opacity: 1;
                transform: translateX(-50%) scale(1) rotate(360deg);
            }
        }

        @keyframes frostingGlow {
            0%, 100% {
                box-shadow: inset 0 2px 8px rgba(255,255,255,0.5);
            }
            50% {
                box-shadow: inset 0 2px 8px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.4);
            }
        }

        @keyframes pizzaRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes toppingPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes bunFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        @keyframes leafRustle {
            0%, 100% { transform: translateX(0px); }
            50% { transform: translateX(2px); }
        }

        @keyframes pattySizzle {
            0%, 100% { 
                box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
            }
            50% { 
                box-shadow: 0 0 30px rgba(255, 68, 68, 0.8), 0 0 40px rgba(255, 140, 0, 0.6);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Cutting Animation Keyframes */
        @keyframes burgerSlice {
            0%, 30% { opacity: 1; }
            40%, 60% { opacity: 0; }
            70%, 100% { opacity: 1; }
        }

        @keyframes knifeSlice {
            0%, 30% { height: 0; opacity: 0; }
            35% { height: 120px; opacity: 1; }
            45% { height: 120px; opacity: 1; }
            50% { height: 0; opacity: 0; }
            60%, 100% { height: 0; opacity: 0; }
        }

        @keyframes slideLeft {
            0%, 40% { opacity: 0; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(0); }
            70% { opacity: 1; transform: translateX(-20px); }
            80%, 100% { opacity: 0; transform: translateX(0); }
        }

        @keyframes slideRight {
            0%, 40% { opacity: 0; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(0); }
            70% { opacity: 1; transform: translateX(20px); }
            80%, 100% { opacity: 0; transform: translateX(0); }
        }

        @keyframes pizzaCut {
            0%, 40% { opacity: 1; }
            50%, 70% { opacity: 0; }
            80%, 100% { opacity: 1; }
        }

        @keyframes cutLineAppear {
            0%, 40% { opacity: 0; }
            45%, 55% { opacity: 0.8; }
            60%, 100% { opacity: 0; }
        }

        @keyframes sliceMove1 {
            0%, 50% { opacity: 0; transform: rotate(0deg) translateX(0); }
            60% { opacity: 1; transform: rotate(0deg) translateX(0); }
            75% { opacity: 1; transform: rotate(-15deg) translateX(15px); }
            85%, 100% { opacity: 0; transform: rotate(0deg) translateX(0); }
        }

        @keyframes sliceMove2 {
            0%, 50% { opacity: 0; transform: rotate(90deg) translateX(0); }
            60% { opacity: 1; transform: rotate(90deg) translateX(0); }
            75% { opacity: 1; transform: rotate(75deg) translateX(15px); }
            85%, 100% { opacity: 0; transform: rotate(90deg) translateX(0); }
        }

        @keyframes sliceMove3 {
            0%, 50% { opacity: 0; transform: rotate(180deg) translateX(0); }
            60% { opacity: 1; transform: rotate(180deg) translateX(0); }
            75% { opacity: 1; transform: rotate(195deg) translateX(15px); }
            85%, 100% { opacity: 0; transform: rotate(180deg) translateX(0); }
        }

        @keyframes sliceMove4 {
            0%, 50% { opacity: 0; transform: rotate(270deg) translateX(0); }
            60% { opacity: 1; transform: rotate(270deg) translateX(0); }
            75% { opacity: 1; transform: rotate(285deg) translateX(15px); }
            85%, 100% { opacity: 0; transform: rotate(270deg) translateX(0); }
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .food-item {
                width: 280px;
                height: 280px;
            }
            
            .section-title {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .food-item {
                width: 250px;
                height: 250px;
            }
            
            .products-grid,
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .navbar {
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 2rem 1rem;
                min-height: 80vh;
            }
            
            .hero h1 {
                font-size: 2.8rem;
                line-height: 1.2;
            }
            
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .food-item {
                width: 180px;
                height: 180px;
            }
            
            .section-title {
                font-size: 2.4rem;
                margin-bottom: 2rem;
            }
            
            .products-grid,
            .services-grid,
            .chef-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .service-card,
            .product-card {
                padding: 1.5rem;
            }
            
            .navbar {
                padding: 0.8rem 1rem;
            }
            
            .logo {
                font-size: 2rem;
            }
            
            .cart-count {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            
            /* Contact page responsive */
            #contact .container > div:first-child {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
            
            .modal-content {
                width: 95%;
                padding: 2rem;
                margin: 1rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .subscribe-form {
                flex-direction: column;
                gap: 1rem;
            }
            
            .loading-logo {
                font-size: 2.5rem;
            }
            
            .loading-progress {
                width: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .food-item {
                width: 150px;
                height: 150px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card,
            .product-card {
                padding: 1rem;
            }
            
            .service-icon {
                font-size: 2.5rem;
            }
            
            .product-image {
                width: 80px;
                height: 80px;
            }
            
            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }
            
            .navbar {
                padding: 0.6rem 0.8rem;
            }
            
            .logo {
                font-size: 1.6rem;
            }
            
            .modal-content {
                padding: 1.5rem;
            }
            
            .loading-logo {
                font-size: 2rem;
            }
            
            .loading-progress {
                width: 200px;
            }
            
            .loading-text {
                font-size: 1rem;
            }
        }

        /* Landscape orientation for mobile */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero {
                min-height: 100vh;
                padding: 1rem;
            }
            
            .hero h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }
            
            .hero p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
            
            .food-item {
                width: 120px;
                height: 120px;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero h1,
            .section-title {
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }
        }

        /* Reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            .food-item {
                animation: none;
            }
            
            .loading-spinner {
                animation: none;
                border: 4px solid #ffd700;
            }
        }
