        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #8b5cf6;
            --secondary-color: #a0826b;
            --accent-color: #d4c5b9;
            --dark-color: #2d2d2d;
            --gradient: linear-gradient(135deg, #8b5cf6 0%, #a0826b 50%, #d4c5b9 100%);
            --gradient-reverse: linear-gradient(135deg, #d4c5b9 0%, #a0826b 50%, #8b5cf6 100%);
            --glow-gradient: linear-gradient(45deg, #8b5cf6, #a0826b, #d4c5b9, #f5f1eb);
            --text-gradient: linear-gradient(45deg, #8b5cf6, #a0826b);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background: #ffffff;
            position: relative;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes floatingOrbs {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Enhanced Dessert Floating Animation */
        .dessert-float {
            position: fixed;
            pointer-events: none;
            z-index: 1;
            font-size: 3rem;
            opacity: 0;
            animation: dessertFloat 20s linear infinite;
            filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.6));
        }

        @keyframes dessertFloat {
            0% {
                transform: translateY(100vh) rotate(0deg) scale(0.5);
                opacity: 0;
            }
            5% {
                opacity: 0.8;
                transform: translateY(95vh) rotate(18deg) scale(0.7);
            }
            50% {
                opacity: 1;
                transform: translateY(50vh) rotate(180deg) scale(1.2);
                filter: drop-shadow(0 0 30px rgba(255, 51, 102, 0.8));
            }
            95% {
                opacity: 0.8;
                transform: translateY(5vh) rotate(342deg) scale(0.7);
            }
            100% {
                transform: translateY(-100px) rotate(360deg) scale(0.5);
                opacity: 0;
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: white;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: var(--text-gradient);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textShimmer 3s ease-in-out infinite;
            position: relative;
        }

        .logo::after {
            content: '🍰';
            position: absolute;
            right: -40px;
            top: 0px;
            font-size: 2rem;
        }

        @keyframes logoGlow {
            0%, 100% { 
                filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.3)) drop-shadow(0 0 40px rgba(255, 51, 102, 0.2)); 
            }
            50% { 
                filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4)) drop-shadow(0 0 60px rgba(255, 170, 0, 0.3)); 
            }
        }

        @keyframes textShimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes sparkleEnhanced {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
                opacity: 0.8;
                filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.6));
            }
            33% { 
                transform: scale(1.3) rotate(120deg); 
                opacity: 1;
                filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.8));
            }
            66% { 
                transform: scale(0.9) rotate(240deg); 
                opacity: 0.9;
                filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.7));
            }
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #2d2d2d;
            font-weight: 700;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient);
            border-radius: 25px;
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            transition: all 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .nav-links a:hover::before {
            opacity: 1;
            transform: scale(1.05);
        }

        .nav-links a:hover::after {
            width: 100px;
            height: 100px;
        }

        .nav-links a:hover {
            color: white;
            transform: translateY(-3px);
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.3);
        }

        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient);
            background-size: 200% 200%;
            color: white;
            box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
            animation: gradientPulse 3s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .btn-primary:hover::after {
            transform: translateX(100%);
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
            animation: none;
            background-position: 100% 0;
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid transparent;
            background-image: var(--gradient);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            position: relative;
            overflow: hidden;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: rgba(26, 26, 46, 0.9);
            border-radius: inherit;
            z-index: -1;
        }

        .btn-outline:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
        }

        .btn-outline:hover::before {
            opacity: 0;
        }

        @keyframes gradientPulse {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Page Container */
        .page {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .page.active {
            display: block;
        }

        /* Hero Section with Image Slider */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f6f0 0%, #e8e2d5 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(160, 130, 98, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .slider-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            gap: 4rem;
            padding: 0 2rem;
        }

        .slider-content {
            flex: 1;
            z-index: 2;
        }

        .slider-visual {
            flex: 1;
            position: relative;
            height: 600px;
        }

        .image-slider {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background: linear-gradient(135deg, #8b5cf6 0%, #a0826b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: white;
        }

        .slide.active {
            opacity: 1;
        }

        .slide-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            color: #8b5cf6;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .slide-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 35px rgba(139, 92, 246, 0.3);
        }

        .slide-nav.prev {
            left: 20px;
        }

        .slide-nav.next {
            right: 20px;
        }

        .quote-container {
            margin-top: 2rem;
            min-height: 120px;
            position: relative;
        }

        .quote {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .quote.active {
            opacity: 1;
            transform: translateY(0);
        }

        .quote-text {
            font-size: 1.4rem;
            font-style: italic;
            color: #6b5b73;
            line-height: 1.6;
            margin-bottom: 1rem;
            position: relative;
        }

        .quote-text::before {
            content: '"';
            font-size: 3rem;
            color: #8b5cf6;
            position: absolute;
            left: -30px;
            top: -10px;
        }

        .quote-author {
            font-size: 1rem;
            color: #a0826b;
            font-weight: 600;
        }

        .slide-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        .hero-content {
            padding: 0 4rem;
            color: #2d2d2d;
            z-index: 2;
        }

        .hero-visual {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero h1 {
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: slideInLeft 1s ease 0.5s forwards;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: slideInLeft 1s ease 0.7s forwards;
            font-weight: 300;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0;
            animation: slideInLeft 1s ease 0.9s forwards;
            max-width: 500px;
        }

        .hero-cta {
            opacity: 0;
            animation: slideInLeft 1s ease 1.1s forwards;
            display: flex;
            gap: 1rem;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Hero Visual Elements */
        .hero-circle {
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 51, 102, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(30px);
            border: 3px solid transparent;
            background-clip: padding-box;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: heroFloat 8s ease-in-out infinite;
            box-shadow: 
                0 0 60px rgba(255, 51, 102, 0.3),
                0 0 120px rgba(139, 92, 246, 0.2),
                inset 0 0 60px rgba(255, 170, 0, 0.1);
        }

        .hero-circle::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: var(--gradient);
            border-radius: 50%;
            z-index: -1;
            animation: rotateBorder 10s linear infinite;
        }

        @keyframes heroFloat {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg) scale(1); 
                box-shadow: 
                    0 0 60px rgba(255, 51, 102, 0.3),
                    0 0 120px rgba(139, 92, 246, 0.2);
            }
            50% { 
                transform: translateY(-30px) rotate(5deg) scale(1.05); 
                box-shadow: 
                    0 0 80px rgba(255, 170, 0, 0.4),
                    0 0 160px rgba(255, 51, 102, 0.3);
            }
        }

        @keyframes rotateBorder {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-emoji {
            font-size: 10rem;
            animation: emojiSpin 12s linear infinite;
            filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.6));
            position: relative;
            z-index: 2;
        }

        @keyframes emojiSpin {
            0% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(90deg) scale(1.1); }
            50% { transform: rotate(180deg) scale(1); }
            75% { transform: rotate(270deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        .orbit-item {
            position: absolute;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
                rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            animation: orbit 15s linear infinite;
            box-shadow: 
                0 0 30px rgba(255, 170, 0, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .orbit-item:nth-child(2) {
            animation-delay: -3.75s;
            top: -50px;
            right: 120px;
            animation-duration: 12s;
        }

        .orbit-item:nth-child(3) {
            animation-delay: -7.5s;
            bottom: -50px;
            left: 120px;
            animation-duration: 18s;
        }

        .orbit-item:nth-child(4) {
            animation-delay: -11.25s;
            top: 50%;
            left: -50px;
            animation-duration: 14s;
        }

        @keyframes orbit {
            0% { 
                transform: rotate(0deg) translateX(250px) rotate(0deg) scale(1);
                box-shadow: 0 0 30px rgba(255, 170, 0, 0.4);
            }
            25% { 
                transform: rotate(90deg) translateX(250px) rotate(-90deg) scale(1.2);
                box-shadow: 0 0 40px rgba(255, 51, 102, 0.5);
            }
            50% { 
                transform: rotate(180deg) translateX(250px) rotate(-180deg) scale(1);
                box-shadow: 0 0 35px rgba(139, 92, 246, 0.4);
            }
            75% { 
                transform: rotate(270deg) translateX(250px) rotate(-270deg) scale(1.2);
                box-shadow: 0 0 40px rgba(255, 170, 0, 0.5);
            }
            100% { 
                transform: rotate(360deg) translateX(250px) rotate(-360deg) scale(1);
                box-shadow: 0 0 30px rgba(255, 170, 0, 0.4);
            }
        }

        /* Sequential Gallery Animation */
        .food-gallery {
            padding: 8rem 2rem;
            background: #f8f6f0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 4.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            background: var(--text-gradient);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            opacity: 0;
            animation: titleReveal 1.5s ease forwards, textShimmer 4s ease-in-out infinite;
            position: relative;
        }

        .section-title::after {
            content: '✨';
            position: absolute;
            top: -20px;
            right: -30px;
            font-size: 2rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.4rem;
            color: #6b5b73;
            margin-bottom: 4rem;
            opacity: 0;
            animation: titleReveal 1.5s ease 0.3s forwards;
            font-weight: 300;
        }

        @keyframes titleReveal {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .food-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .food-card {
            background: 
                linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(100px) rotateX(10deg);
            opacity: 0;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Sequential Animation Classes */
        .food-card.animate-1 { animation: cardSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s forwards; }
        .food-card.animate-2 { animation: cardSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s forwards; }
        .food-card.animate-3 { animation: cardSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s forwards; }
        .food-card.animate-4 { animation: cardSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards; }
        .food-card.animate-5 { animation: cardSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.0s forwards; }
        .food-card.animate-6 { animation: cardSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s forwards; }

        @keyframes cardSlideIn {
            0% {
                transform: translateY(100px) rotateX(10deg) scale(0.9);
                opacity: 0;
            }
            50% {
                transform: translateY(-10px) rotateX(-2deg) scale(1.02);
                opacity: 0.8;
            }
            100% {
                transform: translateY(0) rotateX(0deg) scale(1);
                opacity: 1;
            }
        }

        .food-card:hover {
            transform: translateY(-20px) scale(1.05) rotateX(-5deg);
            box-shadow: 
                0 30px 80px rgba(255, 51, 102, 0.3),
                0 0 0 1px rgba(255, 170, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .food-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .food-card:hover::before {
            transform: scaleX(1);
        }

        .food-image {
            width: 100%;
            height: 280px;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: relative;
            overflow: hidden;
        }

        .food-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .food-card:hover .food-image::after {
            left: 100%;
        }

        .food-info {
            padding: 2rem;
        }

        .food-info h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
            background: var(--text-gradient);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textShimmer 3s ease-in-out infinite;
        }

        .food-info p {
            color: #6b5b73;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            font-weight: 400;
        }

        .food-price {
            font-size: 1.6rem;
            font-weight: 900;
            background: var(--gradient);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientPulse 2s ease-in-out infinite;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px rgba(255, 170, 0, 0.5);
        }

        .card-actions {
            display: flex;
            gap: 1rem;
        }

        .btn-small {
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
            flex: 1;
            font-weight: 600;
        }

        /* Features Section - New Layout */
        .features {
            padding: 8rem 2rem;
            background: var(--gradient-reverse);
            color: white;
            position: relative;
        }

        .features-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .features-content h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .features-content p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            transform: translateX(50px);
            opacity: 0;
            animation: slideInRight 0.8s ease forwards;
        }

        /* Flip Card Styles for Services */
        .flip-card {
            background-color: transparent;
            width: 100%;
            height: 300px;
            perspective: 1000px;
            margin-bottom: 2rem;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s;
            transform-style: preserve-3d;
            cursor: pointer;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .flip-card-front {
            background: linear-gradient(145deg, #fff, #f8f9fa);
            color: #333;
        }

        .flip-card-back {
            background: var(--gradient);
            color: white;
            transform: rotateY(180deg);
        }

        .flip-card-front .feature-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: iconFloat 3s ease-in-out infinite;
        }

        .flip-card-back .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        @keyframes iconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .flip-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .flip-card p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .flip-card-back ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
        }

        .flip-card-back li {
            padding: 0.3rem 0;
            position: relative;
            padding-left: 1.5rem;
        }

        .flip-card-back li::before {
            content: '✨';
            position: absolute;
            left: 0;
            top: 0.3rem;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.4s; }
        .feature-card:nth-child(4) { animation-delay: 0.6s; }

        @keyframes slideInRight {
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.25);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        /* Stats Section */
        .stats {
            padding: 6rem 2rem;
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            border-radius: 20px;
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
            font-weight: 600;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 6rem 2rem;
            background: var(--gradient);
            color: white;
            text-align: center;
        }

        .newsletter h2 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .newsletter p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 60px;
            backdrop-filter: blur(20px);
        }

        .newsletter-input {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            outline: none;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-section p {
            margin-bottom: 1rem;
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            padding: 0.3rem 0;
        }

        .footer-section a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: modalFadeIn 0.3s ease;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modal-content {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            width: 90%;
            max-width: 450px;
            position: relative;
            animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-100px) scale(0.8);
                opacity: 0;
            }
            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #999;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            color: var(--primary-color);
            transform: rotate(90deg);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 700;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
            transform: translateY(-2px);
        }

        .user-menu {
            position: relative;
            display: none;
        }

        .user-menu.active {
            display: block;
        }

        .user-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            padding: 1rem;
            min-width: 180px;
            display: none;
            border: 1px solid rgba(255, 107, 157, 0.1);
        }

        .user-dropdown.active {
            display: block;
            animation: dropdownSlide 0.3s ease;
        }

        @keyframes dropdownSlide {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Page Specific Styles */
        .page-header {
            padding: 6rem 2rem 4rem;
            background: var(--gradient);
            color: white;
            text-align: center;
        }

        .page-header h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .page-content {
            padding: 4rem 2rem;
            background: white;
            min-height: 60vh;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 2rem;
            }
            
            .hero-content {
                padding: 0 2rem;
            }
            
            .features-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .newsletter-form {
                flex-direction: column;
                border-radius: 20px;
            }

            .card-actions {
                flex-direction: column;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Cart Badge */
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            animation: bounce 0.5s ease;
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .cart-btn {
            position: relative;
        }

        /* Pulse Animation for CTA */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5); }
            100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3); }
        }
