        .hero-gradient {
            background: linear-gradient(135deg, rgba(30, 86, 49, 0.95), rgba(212, 175, 55, 0.85)), 
                        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
            background-attachment: fixed;
        }
        
        /* Enhanced Statistics */
        .hero-stat-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(212, 175, 55, 0.6);
            border-radius: 20px;
            padding: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .hero-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(212, 175, 55, 0.8);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1e5631, #d4af37);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .stat-label {
            color: #1e5631;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Enhanced Magnetic Buttons */
        .magnetic-btn {
            position: relative;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
            border-radius: 50px;
            overflow: hidden;
            border: 3px solid transparent;
            background: linear-gradient(135deg, #1e5631, #2d7a43);
            background-clip: padding-box;
        }

        .magnetic-btn::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, #d4af37, #e8c547, #d4af37);
            border-radius: 50px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .magnetic-btn:hover::before {
            opacity: 1;
        }

        .magnetic-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s;
        }

        .magnetic-btn:hover::after {
            transform: translateX(100%);
        }

        .magnetic-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        /* Secondary Button Style */
        .magnetic-btn-secondary {
            background: linear-gradient(135deg, #d4af37, #e8c547);
            color: #1e5631;
            border: 3px solid transparent;
        }

        .magnetic-btn-secondary::before {
            background: linear-gradient(45deg, #1e5631, #2d7a43, #1e5631);
        }

        /* Clickable Scroll Indicator */
        .scroll-discover {
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            position: absolute;
            bottom: 30px;
            right: 30px;
        }

        .scroll-discover:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .scroll-arrow {
            transition: all 0.3s ease;
        }

        .scroll-discover:hover .scroll-arrow {
            transform: translateY(5px);
            animation: bounce 1s infinite;
        }

        /* Category Tabs Styling */
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .category-tab {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .category-tab:hover {
            background: rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.6);
            transform: translateY(-2px);
        }

        .category-tab.active {
            background: linear-gradient(135deg, #d4af37, #e8c547);
            border-color: #d4af37;
            color: #1e5631;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        /* Menu Items Grid */
        #menu-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            min-height: 600px;
        }

        .menu-item {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: block;
            width: 100%;
        }

        .menu-item.filtered-out {
            display: none !important;
        }

        .menu-item.filtered-in {
            display: block;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Premium Card Animations */
        .premium-card {
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: linear-gradient(145deg, #ffffff, #f8f8f8);
            border-radius: 20px;
            overflow: hidden;
            width: 100%;
            height: auto;
        }
        
        .premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .premium-card:hover::before {
            left: 100%;
        }
        
        .premium-card:hover {
            transform: translateY(-20px) rotateX(5deg);
            box-shadow: 0 30px 60px rgba(30, 86, 49, 0.2), 0 0 50px rgba(212, 175, 55, 0.1);
        }

        /* Floating Elements */
        .float-element {
            animation: gentleFloat 8s ease-in-out infinite;
        }
        
        .float-element:nth-child(2) {
            animation-delay: -2s;
        }
        
        .float-element:nth-child(3) {
            animation-delay: -4s;
        }

        @keyframes gentleFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(1deg); }
            50% { transform: translateY(-20px) rotate(0deg); }
            75% { transform: translateY(-10px) rotate(-1deg); }
        }

        /* Glowing Effects */
        .glow-gold {
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        }

        .glow-forest {
            box-shadow: 0 0 20px rgba(30, 86, 49, 0.4);
        }

        /* Gallery Item */
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(30, 86, 49, 0.8), rgba(212, 175, 55, 0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-zoom {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            color: white;
            font-size: 2rem;
            z-index: 3;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-zoom {
            transform: translate(-50%, -50%) scale(1);
        }

        /* Testimonial Card */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #d4af37, #1e5631, #d4af37);
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        /* Form Styling */
        .premium-input {
            position: relative;
            border: 2px solid #e5e5e5;
            border-radius: 15px;
            padding: 15px 20px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .premium-input:focus {
            outline: none;
            border-color: #d4af37;
            background: white;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }

        .premium-textarea {
            resize: none;
            min-height: 120px;
        }

        /* Scroll Reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-drawer {
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100vh;
            background: linear-gradient(135deg, #ffffff, #faf8f3);
            z-index: 999;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
            border-right: 3px solid #d4af37;
        }

        .mobile-menu-drawer.active {
            transform: translateX(350px);
        }

        .mobile-nav-item {
            position: relative;
            margin: 8px 0;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .mobile-nav-item:hover {
            background: linear-gradient(135deg, #f0f8ff, #e8f5e8);
            transform: translateX(10px);
        }

        .mobile-nav-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(135deg, #1e5631, #d4af37);
            border-radius: 2px;
            transition: height 0.3s ease;
        }

        .mobile-nav-item:hover::before {
            height: 100%;
        }

        /* Progress Circle */
        .progress-circle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1e5631, #d4af37);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(30, 86, 49, 0.3);
        }

        .progress-circle.visible {
            opacity: 1;
            visibility: visible;
            animation: pulse 2s infinite;
        }

        .progress-circle:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(30, 86, 49, 0.4);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 8px 25px rgba(30, 86, 49, 0.3); }
            50% { box-shadow: 0 8px 25px rgba(30, 86, 49, 0.5), 0 0 0 10px rgba(212, 175, 55, 0.1); }
        }

        /* Loading Screen */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #1e5631, #0a2817);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s ease;
        }

        .loading-content {
            text-align: center;
            transform: translateY(0);
            animation: loadingFloat 3s ease-in-out infinite;
        }

        @keyframes loadingFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(212, 175, 55, 0.2);
            border-top: 4px solid #d4af37;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Navbar */
        .navbar-enhanced {
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .nav-link {
            position: relative;
            font-weight: 500;
            font-size: 1.125rem;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #1e5631, #d4af37);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Decorative Elements */
        .decoration-leaf {
            position: absolute;
            color: rgba(212, 175, 55, 0.1);
            font-size: 8rem;
            z-index: -1;
            animation: gentleFloat 12s ease-in-out infinite;
        }

        .decoration-leaf:nth-child(1) { top: 10%; left: 5%; }
        .decoration-leaf:nth-child(2) { top: 60%; right: 5%; animation-delay: -4s; }
        .decoration-leaf:nth-child(3) { bottom: 20%; left: 10%; animation-delay: -8s; }

        /* Color Classes */
        .forest-bg { background-color: #1e5631; }
        .gold-bg { background-color: #d4af37; }
        .forest-text { color: #1e5631; }
        .gold-text { color: #d4af37; }
        .cream-bg { background-color: #faf8f3; }
        .accent-border { border-color: #d4af37; }

        html {
            scroll-behavior: smooth;
        }

        /* Form Error States */
        .premium-input.error {
            border-color: #dc3545;
            background-color: #fff5f5;
            box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
        }

        .field-error {
            font-size: 0.875rem;
            color: #dc3545;
            margin-top: 0.25rem;
            display: none;
            align-items: center;
        }

        .field-error:not(:empty) {
            display: flex;
        }

        .field-error::before {
            content: '⚠️';
            margin-right: 0.5rem;
        }

        .btn-loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid currentColor;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            display: inline-block;
            margin-right: 8px;
        }

        /* Alerts */
        .alert {
            padding: 15px 20px;
            border-radius: 10px;
            margin: 15px 0;
            font-weight: 500;
            display: none;
            align-items: center;
        }

        .alert-success {
            background-color: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
        }

        .alert-error {
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
            color: #721c24;
        }

        .alert.show {
            display: flex;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .honeypot {
            position: absolute !important;
            left: -9999px !important;
            top: -9999px !important;
            visibility: hidden !important;
            opacity: 0 !important;
            width: 0 !important;
            height: 0 !important;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            #menu-items {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3.5rem !important;
            }
            
            .section-title {
                font-size: 2.5rem !important;
            }

            .hero-stat-card {
                padding: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .category-tabs {
                gap: 0.5rem;
            }

            .category-tab {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .scroll-discover {
                bottom: 20px;
                right: 20px;
                padding: 0.75rem;
            }

            #menu-items {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .nav-link {
                font-size: 1rem;
            }

            .mobile-menu-drawer {
                width: 300px;
                left: -300px;
            }

            .mobile-menu-drawer.active {
                transform: translateX(300px);
            }
        }