<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Frutzenfoods - Master Restaurant Operations with Frutzenfoods</title>

    <script src="https://cdn.tailwindcss.com"></script>
    
    <link href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.0/flowbite.min.css" rel="stylesheet" />
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">

    <style>
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--tw-gradient-from), var(--tw-gradient-to));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        .pattern-dots {
            background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .section-divider {
            position: relative;
            overflow: hidden;
        }

        .section-divider::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 120%;
            height: 200%;
            background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%);
            transform: rotate(-5deg);
        }
    </style>
    <link rel="stylesheet" href="assets/css/dynamic.css">
</head>
<body class="antialiased">

<nav class="bg-white/90 backdrop-blur-md fixed w-full z-50 top-0 border-b border-gray-100">
    <div class="max-w-screen-xl mx-auto px-6 py-2 flex items-center justify-between">
        <a href="./" class="flex items-center space-x-4">
            <div class="relative">
                <div class="w-12 h-12 rounded-xl bg-gradient-to-br from-emerald-500 to-lime-600 flex items-center justify-center text-white font-black text-xl"></div>
                <div class="absolute -bottom-2 -right-2 w-6 h-6 rounded-full bg-white flex items-center justify-center text-xs font-bold text-emerald-600">24/7</div>
            </div>
            <div class="flex flex-col">
                <span class="text-xs uppercase tracking-[0.4em] text-gray-400">RESTAURANT</span>
                <span class="text-2xl font-black text-gray-900">Frutzenfoods</span>
            </div>
        </a>
        <div class="hidden md:flex items-center space-x-8">
            <a href="#services" class="flex items-center space-x-2 text-gray-700 font-semibold hover:text-emerald-600 transition">
                <i class="fas fa-layer-group"></i><span>Services</span>
            </a>
            <a href="#features" class="flex items-center space-x-2 text-gray-700 font-semibold hover:text-emerald-600 transition">
                <i class="fas fa-sparkles"></i><span>Features</span>
            </a>
            <a href="#about" class="flex items-center space-x-2 text-gray-700 font-semibold hover:text-emerald-600 transition">
                <i class="fas fa-circle-info"></i><span>About</span>
            </a>
            <a href="#testimonials" class="flex items-center space-x-2 text-gray-700 font-semibold hover:text-emerald-600 transition">
                <i class="fas fa-star"></i><span>Stories</span>
            </a>
        </div>
        <div class="hidden md:flex items-center space-x-4">
            <div class="text-right">
                <div class="text-xs text-gray-400 uppercase">Email</div>
                <div class="text-sm font-semibold text-gray-900">hello@frutzenfoods.com</div>
            </div>
            <a href="#contact" class="px-5 py-2.5 rounded-full bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-semibold shadow-lg hover:shadow-xl transition">Start Project</a>
        </div>
        <button data-collapse-toggle="navbar-16" type="button" class="md:hidden inline-flex items-center justify-center w-11 h-11 rounded-xl bg-gray-100 text-gray-600">
            <svg class="w-6 h-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
            </svg>
        </button>
    </div>
    <div class="hidden bg-white" id="navbar-16">
        <div class="px-6 pb-6 space-y-4">
            <a href="#services" class="block text-gray-700 font-semibold">Services</a>
            <a href="#features" class="block text-gray-700 font-semibold">Features</a>
            <a href="#about" class="block text-gray-700 font-semibold">About</a>
            <a href="#testimonials" class="block text-gray-700 font-semibold">Stories</a>
            <a href="#contact" class="block text-center px-5 py-3 rounded-lg bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-semibold">Start Project</a>
        </div>
    </div>
</nav>

<section class="relative min-h-screen flex items-center justify-center bg-gradient-to-br from-gray-50 via-white to-gray-50 overflow-hidden mt-16">
    <div class="absolute inset-0 opacity-5" style="background-image: url('data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%23000000\' fill-opacity=\'1\'%3E%3Cpath d=\'M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');"></div>
    <div class="max-w-screen-xl mx-auto px-4 py-20 relative z-10">
        <div class="text-center mb-16">
            <div class="inline-flex items-center gap-2 px-5 py-2.5 bg-emerald-100 text-emerald-700 rounded-full text-sm font-semibold mb-8">
                <i class="fas fa-star"></i>
                Restaurant Excellence            </div>
            <h1 class="text-6xl md:text-7xl lg:text-8xl font-black text-gray-900 mb-8 leading-tight">
                Master Restaurant Operations with Frutzenfoods            </h1>
            <p class="text-2xl md:text-3xl text-gray-600 mb-12 max-w-4xl mx-auto leading-relaxed">
                Experience seamless operations and exceptional customer satisfaction with Frutzenfoods's platform.            </p>
            <div class="flex flex-col sm:flex-row gap-6 justify-center mb-20">
                <a href="#contact" class="group px-8 py-4 bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-bold text-lg rounded-full hover:shadow-2xl hover:scale-105 transition-all flex items-center justify-center gap-3">
                    Optimize operations                    <i class="fas fa-arrow-right group-hover:translate-x-2 transition-transform"></i>
                </a>
                <a href="#services" class="px-8 py-4 bg-white border-2 border-gray-300 text-gray-900 font-bold text-lg rounded-full hover:shadow-lg hover:border-emerald-300 transition-all">
                    Learn More
                </a>
            </div>
        </div>
        <div class="relative max-w-6xl mx-auto">
            <div class="absolute -inset-8 bg-gradient-to-r from-emerald-200 via-lime-200 to-emerald-200 rounded-3xl blur-3xl opacity-50"></div>
            <div class="relative">
                <img src="https://images.pexels.com/photos/1267320/pexels-photo-1267320.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Frutzenfoods" class="rounded-3xl shadow-2xl border-8 border-white">
            </div>
        </div>
        <div class="flex justify-center items-center gap-12 mt-16">
            <div class="text-center">
                <div class="text-4xl font-black text-emerald-600 mb-2">10K+</div>
                <div class="text-sm text-gray-600 font-semibold">Users</div>
            </div>
            <div class="w-px h-16 bg-gray-300"></div>
            <div class="text-center">
                <div class="text-4xl font-black text-lime-600 mb-2">500+</div>
                <div class="text-sm text-gray-600 font-semibold">Projects</div>
            </div>
            <div class="w-px h-16 bg-gray-300"></div>
            <div class="text-center">
                <div class="text-4xl font-black text-gray-900 mb-2">98%</div>
                <div class="text-sm text-gray-600 font-semibold">Satisfaction</div>
            </div>
        </div>
    </div>
</section>


<section class="bg-gray-50 py-16">
    <div class="max-w-screen-xl mx-auto px-4">
        <div class="grid md:grid-cols-4 gap-1">
                        <div class="bg-white p-10 text-center hover:shadow-xl transition-all group">
                <div class="text-5xl font-black text-rose-600 mb-3 group-hover:scale-110 transition-transform">
                    18K+                </div>
                <div class="text-gray-600 font-bold uppercase text-sm tracking-wider">
                    Customers                </div>
            </div>
                        <div class="bg-white p-10 text-center hover:shadow-xl transition-all group">
                <div class="text-5xl font-black text-blue-600 mb-3 group-hover:scale-110 transition-transform">
                    250+                </div>
                <div class="text-gray-600 font-bold uppercase text-sm tracking-wider">
                    Partners                </div>
            </div>
                        <div class="bg-white p-10 text-center hover:shadow-xl transition-all group">
                <div class="text-5xl font-black text-green-600 mb-3 group-hover:scale-110 transition-transform">
                    99.9%                </div>
                <div class="text-gray-600 font-bold uppercase text-sm tracking-wider">
                    Uptime                </div>
            </div>
                        <div class="bg-white p-10 text-center hover:shadow-xl transition-all group">
                <div class="text-5xl font-black text-purple-600 mb-3 group-hover:scale-110 transition-transform">
                    24/7                </div>
                <div class="text-gray-600 font-bold uppercase text-sm tracking-wider">
                    Support                </div>
            </div>
                    </div>
    </div>
</section>

<section class="relative bg-gray-900 py-20 overflow-hidden" id="services">
    <div class="absolute inset-0 bg-gradient-to-br from-emerald-900/20 to-lime-900/20"></div>
    
    <div class="max-w-screen-xl mx-auto px-4 relative z-10">
        <div class="text-center mb-16">
            <span class="inline-block px-4 py-2 bg-white/10 text-white rounded-full text-sm font-semibold mb-4">Services</span>
            <h2 class="text-5xl font-extrabold text-white mb-4">Complete Restaurant Solutions</h2>
            <p class="text-xl text-gray-300 max-w-2xl mx-auto">Professional solutions for every need</p>
        </div>
        
        <div class="grid md:grid-cols-3 gap-6">
                        <div class="bg-white/5 backdrop-blur-sm border border-white/10 rounded-2xl p-8 hover:bg-white/10 transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-6">
                    <i class="fas fa-briefcase text-white text-2xl"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-3">Guest Loyalty</h3>
                <p class="text-gray-300 leading-relaxed">Build lasting relationships with loyalty programs, marketing automation, and feedback tools</p>
            </div>
                        <div class="bg-white/5 backdrop-blur-sm border border-white/10 rounded-2xl p-8 hover:bg-white/10 transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-6">
                    <i class="fas fa-chart-line text-white text-2xl"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-3">POS System</h3>
                <p class="text-gray-300 leading-relaxed">Fast, reliable point of sale with integrated payment processing and real-time reporting</p>
            </div>
                        <div class="bg-white/5 backdrop-blur-sm border border-white/10 rounded-2xl p-8 hover:bg-white/10 transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-6">
                    <i class="fas fa-handshake text-white text-2xl"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-3">Inventory Control</h3>
                <p class="text-gray-300 leading-relaxed">Real-time inventory tracking, recipe costing, and automated purchasing to reduce waste</p>
            </div>
                        <div class="bg-white/5 backdrop-blur-sm border border-white/10 rounded-2xl p-8 hover:bg-white/10 transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-6">
                    <i class="fas fa-building text-white text-2xl"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-3">Online Ordering</h3>
                <p class="text-gray-300 leading-relaxed">Seamless online ordering with delivery management and third-party integration</p>
            </div>
                        <div class="bg-white/5 backdrop-blur-sm border border-white/10 rounded-2xl p-8 hover:bg-white/10 transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-6">
                    <i class="fas fa-users text-white text-2xl"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-3">Table Management</h3>
                <p class="text-gray-300 leading-relaxed">Optimize seating, manage reservations, and reduce wait times with intelligent table turnover</p>
            </div>
                        <div class="bg-white/5 backdrop-blur-sm border border-white/10 rounded-2xl p-8 hover:bg-white/10 transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-6">
                    <i class="fas fa-trophy text-white text-2xl"></i>
                </div>
                <h3 class="text-xl font-bold text-white mb-3">Staff Management</h3>
                <p class="text-gray-300 leading-relaxed">Smart scheduling, time tracking, and payroll integration to optimize labor costs</p>
            </div>
                    </div>
    </div>
</section>

<section class="bg-white py-20" id="testimonials">
    <div class="max-w-screen-xl mx-auto px-4">
        <div class="grid lg:grid-cols-2 gap-12 items-center">
            <div>
                <span class="inline-block px-4 py-2 bg-emerald-100 text-emerald-700 rounded-full text-sm font-bold mb-6">
                    Customer Reviews
                </span>
                
                <h2 class="text-5xl font-black text-gray-900 mb-6">
                    Trusted by Leaders Worldwide
                </h2>
                
                <p class="text-xl text-gray-600 mb-8">
                    Join thousands of satisfied clients who have transformed their business with our solutions.
                </p>
                
                <div class="grid grid-cols-3 gap-6">
                    <div class="text-center">
                        <div class="text-4xl font-black text-emerald-600 mb-1">4.9</div>
                        <div class="text-sm text-gray-600">Rating</div>
                    </div>
                    <div class="text-center">
                        <div class="text-4xl font-black text-emerald-600 mb-1">5K+</div>
                        <div class="text-sm text-gray-600">Reviews</div>
                    </div>
                    <div class="text-center">
                        <div class="text-4xl font-black text-emerald-600 mb-1">98%</div>
                        <div class="text-sm text-gray-600">Satisfaction</div>
                    </div>
                </div>
            </div>
            
            <div class="space-y-6">
                                <div class="bg-gradient-to-br from-gray-50 to-white p-8 rounded-2xl border-l-4 border-emerald-600 shadow-md">
                    <div class="flex items-center mb-3">
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                            </div>
                    <p class="text-gray-700 mb-4">"Online ordering integration boosted sales 40%. Customer loyalty program works beautifully."</p>
                    <div class="flex items-center space-x-3">
                        <img src="https://randomuser.me/api/portraits/men/36.jpg" alt="Jennifer Kim" class="w-10 h-10 rounded-full bg-gray-100">
                        <div>
                            <div class="font-bold text-gray-900 text-sm">Jennifer Kim</div>
                            <div class="text-xs text-gray-600">Café Owner</div>
                        </div>
                    </div>
                </div>
                                <div class="bg-gradient-to-br from-gray-50 to-white p-8 rounded-2xl border-l-4 border-emerald-600 shadow-md">
                    <div class="flex items-center mb-3">
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                                <i class="fas fa-star text-yellow-400 text-sm"></i>
                                            </div>
                    <p class="text-gray-700 mb-4">"Managing five locations became manageable. Real-time reporting and analytics are invaluable."</p>
                    <div class="flex items-center space-x-3">
                        <img src="https://randomuser.me/api/portraits/men/89.jpg" alt="Michael O'Brien" class="w-10 h-10 rounded-full bg-gray-100">
                        <div>
                            <div class="font-bold text-gray-900 text-sm">Michael O'Brien</div>
                            <div class="text-xs text-gray-600">Multi-Unit Owner</div>
                        </div>
                    </div>
                </div>
                            </div>
        </div>
    </div>
</section>


<section class="bg-white py-20" id="features">
    <div class="max-w-screen-xl mx-auto px-4">
        <div class="text-center mb-16">
            <span class="inline-block px-6 py-2 bg-emerald-100 text-emerald-800 rounded-full text-sm font-semibold mb-4">Features</span>
            <h2 class="text-5xl font-black text-gray-900 mb-4">Why Choose Us</h2>
            <p class="text-xl text-gray-600">Premium features for exceptional results</p>
        </div>
        
        <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-bolt text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Fast</h3>
                <p class="text-gray-600 text-sm">Lightning speed</p>
            </div>
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-lock text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Secure</h3>
                <p class="text-gray-600 text-sm">Bank security</p>
            </div>
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-mobile-alt text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Mobile</h3>
                <p class="text-gray-600 text-sm">All devices</p>
            </div>
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-sync text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Updated</h3>
                <p class="text-gray-600 text-sm">Always current</p>
            </div>
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-users text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Team</h3>
                <p class="text-gray-600 text-sm">Collaboration</p>
            </div>
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-chart-bar text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Analytics</h3>
                <p class="text-gray-600 text-sm">Insights</p>
            </div>
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-cloud text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Cloud</h3>
                <p class="text-gray-600 text-sm">Anywhere</p>
            </div>
                        <div class="group p-6 bg-gray-50 rounded-2xl hover:bg-white hover:shadow-xl transition-all">
                <div class="w-14 h-14 bg-gradient-to-br from-emerald-500 to-lime-600 rounded-xl flex items-center justify-center mb-4 group-hover:scale-110 transition-transform">
                    <i class="fas fa-cog text-white text-xl"></i>
                </div>
                <h3 class="text-lg font-bold text-gray-900 mb-2">Custom</h3>
                <p class="text-gray-600 text-sm">Tailored</p>
            </div>
                    </div>
    </div>
</section>


<section class="relative py-24 bg-gradient-to-br from-gray-50 to-white overflow-hidden" id="about">
    <div class="max-w-screen-xl mx-auto px-4 relative z-10">
        <div class="text-center mb-16">
            <div class="inline-block px-6 py-3 bg-white border-2 border-emerald-200 text-emerald-700 rounded-lg text-sm font-bold mb-6 shadow-md">
                Restaurant Excellence            </div>
            <h2 class="text-4xl md:text-5xl font-black text-gray-900 mb-6">
                Streamline kitchen operations with real-time orders            </h2>
            <p class="text-xl text-gray-600 max-w-3xl mx-auto">
                Our comprehensive restaurant management platform helps you deliver exceptional dining experiences while streamlining operations. From reservations to inventory, everything in one place.            </p>
        </div>
        <div class="grid lg:grid-cols-2 gap-12 items-center">
            <div class="relative">
                <div class="absolute -inset-4 bg-gradient-to-r from-emerald-200 to-lime-200 rounded-3xl blur-2xl opacity-50"></div>
                <img src="https://images.pexels.com/photos/35527010/pexels-photo-35527010.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="About" class="relative rounded-2xl shadow-xl">
            </div>
            <div class="space-y-6">
                <div class="p-6 bg-white rounded-xl shadow-lg">
                    <div class="flex items-center gap-4 mb-3">
                        <div class="w-12 h-12 bg-emerald-600 rounded-lg flex items-center justify-center">
                            <i class="fas fa-rocket text-white"></i>
                        </div>
                        <h4 class="text-xl font-black text-gray-900">Our Mission</h4>
                    </div>
                    <p class="text-gray-600">Delivering exceptional value and innovation to every client.</p>
                </div>
                <div class="p-6 bg-white rounded-xl shadow-lg">
                    <div class="flex items-center gap-4 mb-3">
                        <div class="w-12 h-12 bg-lime-600 rounded-lg flex items-center justify-center">
                            <i class="fas fa-lightbulb text-white"></i>
                        </div>
                        <h4 class="text-xl font-black text-gray-900">Our Vision</h4>
                    </div>
                    <p class="text-gray-600">Leading the industry with cutting-edge solutions.</p>
                </div>
            </div>
        </div>
        <div class="text-center mt-12">
            <a href="#contact" class="inline-block px-10 py-5 bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-bold rounded-xl hover:shadow-xl transition-all">
                Transform your restaurant            </a>
        </div>
    </div>
</section>


<section class="bg-gradient-to-br from-emerald-50 via-white to-lime-50 py-20" id="blog">
    <div class="max-w-screen-xl mx-auto px-4">
        <div class="text-center mb-16">
            <div class="inline-flex items-center justify-center w-16 h-16 bg-emerald-600 rounded-full mb-6">
                <i class="fas fa-blog text-white text-2xl"></i>
            </div>
            <h2 class="text-4xl md:text-5xl font-extrabold text-gray-900 mb-4">Latest Blog Posts</h2>
            <p class="text-xl text-gray-600 max-w-2xl mx-auto">Insights, tips, and stories from our team</p>
        </div>
        
        <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
                        <article class="bg-white rounded-2xl overflow-hidden shadow-lg hover:shadow-2xl transition-all group border border-gray-100">
                <div class="relative h-64 overflow-hidden">
                    <img src="https://images.pexels.com/photos/3184192/pexels-photo-3184192.jpeg?auto=compress&cs=tinysrgb&h=650&w=940" alt="Zero-Waste Commissary Networks" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
                    <div class="absolute inset-0 bg-gradient-to-t from-emerald-900/80 via-emerald-900/20 to-transparent"></div>
                    <div class="absolute bottom-0 left-0 right-0 p-6">
                        <span class="inline-block px-3 py-1 bg-white text-emerald-600 text-xs font-bold rounded-full mb-2">Sustainability</span>
                        <h3 class="text-xl font-bold text-white group-hover:text-green-200 transition-colors">
                            <a href="/blog/zero-waste-commissary-networks/">Zero-Waste Commissary Networks</a>
                        </h3>
                    </div>
                </div>
                
                <div class="p-6">
                    <div class="flex items-center justify-between text-sm text-gray-500 mb-4">
                        <div class="flex items-center">
                            <i class="far fa-calendar text-emerald-600 mr-2"></i>
                            <span>January 7, 2026</span>
                        </div>
                        <div class="flex items-center">
                            <i class="far fa-user text-emerald-600 mr-2"></i>
                            <span>David Wilson</span>
                        </div>
                    </div>
                    
                    <p class="text-gray-600 mb-5 leading-relaxed">Zero-waste commissary networks redistribute surplus ingredients across brands and donation channels in 2025.</p>
                    
                    <a href="/blog/zero-waste-commissary-networks/" class="inline-flex items-center w-full justify-center px-6 py-3 bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-semibold rounded-lg hover:shadow-lg transition-all">
                        Read Article
                        <i class="fas fa-arrow-right ml-2"></i>
                    </a>
                </div>
            </article>
                        <article class="bg-white rounded-2xl overflow-hidden shadow-lg hover:shadow-2xl transition-all group border border-gray-100">
                <div class="relative h-64 overflow-hidden">
                    <img src="https://images.pexels.com/photos/5779787/pexels-photo-5779787.jpeg?auto=compress&cs=tinysrgb&h=650&w=940" alt="Mastering Restaurant Management: Strategies for Success and Growth" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
                    <div class="absolute inset-0 bg-gradient-to-t from-emerald-900/80 via-emerald-900/20 to-transparent"></div>
                    <div class="absolute bottom-0 left-0 right-0 p-6">
                        <span class="inline-block px-3 py-1 bg-white text-emerald-600 text-xs font-bold rounded-full mb-2">General</span>
                        <h3 class="text-xl font-bold text-white group-hover:text-green-200 transition-colors">
                            <a href="/blog/mastering-restaurant-management-strategies-for-success-and-growth/">Mastering Restaurant Management: Strategies for Success and Growth</a>
                        </h3>
                    </div>
                </div>
                
                <div class="p-6">
                    <div class="flex items-center justify-between text-sm text-gray-500 mb-4">
                        <div class="flex items-center">
                            <i class="far fa-calendar text-emerald-600 mr-2"></i>
                            <span>January 6, 2026</span>
                        </div>
                        <div class="flex items-center">
                            <i class="far fa-user text-emerald-600 mr-2"></i>
                            <span>Dr. Maya Singh</span>
                        </div>
                    </div>
                    
                    <p class="text-gray-600 mb-5 leading-relaxed">In the competitive world of restaurant management, staying ahead requires a blend of strategic planning, operational eff...</p>
                    
                    <a href="/blog/mastering-restaurant-management-strategies-for-success-and-growth/" class="inline-flex items-center w-full justify-center px-6 py-3 bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-semibold rounded-lg hover:shadow-lg transition-all">
                        Read Article
                        <i class="fas fa-arrow-right ml-2"></i>
                    </a>
                </div>
            </article>
                        <article class="bg-white rounded-2xl overflow-hidden shadow-lg hover:shadow-2xl transition-all group border border-gray-100">
                <div class="relative h-64 overflow-hidden">
                    <img src="https://images.pexels.com/photos/3298634/pexels-photo-3298634.jpeg?auto=compress&cs=tinysrgb&h=650&w=940" alt="Chef Collective Innovation Hubs" class="w-full h-full object-cover group-hover:scale-110 transition-transform duration-500">
                    <div class="absolute inset-0 bg-gradient-to-t from-emerald-900/80 via-emerald-900/20 to-transparent"></div>
                    <div class="absolute bottom-0 left-0 right-0 p-6">
                        <span class="inline-block px-3 py-1 bg-white text-emerald-600 text-xs font-bold rounded-full mb-2">Innovation</span>
                        <h3 class="text-xl font-bold text-white group-hover:text-green-200 transition-colors">
                            <a href="/blog/chef-collective-innovation-hubs/">Chef Collective Innovation Hubs</a>
                        </h3>
                    </div>
                </div>
                
                <div class="p-6">
                    <div class="flex items-center justify-between text-sm text-gray-500 mb-4">
                        <div class="flex items-center">
                            <i class="far fa-calendar text-emerald-600 mr-2"></i>
                            <span>January 5, 2026</span>
                        </div>
                        <div class="flex items-center">
                            <i class="far fa-user text-emerald-600 mr-2"></i>
                            <span>Sarah Johnson</span>
                        </div>
                    </div>
                    
                    <p class="text-gray-600 mb-5 leading-relaxed">Chef collective innovation hubs let multi-brand restaurant groups prototype menus, tech, and training in 2025.</p>
                    
                    <a href="/blog/chef-collective-innovation-hubs/" class="inline-flex items-center w-full justify-center px-6 py-3 bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-semibold rounded-lg hover:shadow-lg transition-all">
                        Read Article
                        <i class="fas fa-arrow-right ml-2"></i>
                    </a>
                </div>
            </article>
                    </div>
        
        <div class="text-center mt-12">
            <a href="blog/" class="text-emerald-600 font-bold text-lg hover:text-emerald-700 transition-colors">
                View All Articles →
            </a>
        </div>
    </div>
</section>


<section class="py-20 bg-white">
    <div class="max-w-4xl mx-auto px-4 text-center">
        <div class="inline-block px-6 py-3 bg-emerald-100 text-emerald-800 rounded-full text-sm font-semibold mb-6">
            Get Started Today
        </div>
        <h2 class="text-5xl md:text-6xl font-black text-gray-900 mb-6">Ready to Get Started?</h2>
        <p class="text-xl text-gray-600 mb-10 max-w-2xl mx-auto">Join thousands of satisfied clients and transform your business today</p>
        <div class="flex flex-col sm:flex-row gap-6 justify-center">
            <a href="#contact" class="group px-12 py-6 bg-gradient-to-r from-emerald-600 to-lime-600 text-white font-black text-lg rounded-full hover:shadow-2xl transition-all flex items-center justify-center gap-3">
                Get Started Now
                <i class="fas fa-arrow-right group-hover:translate-x-2 transition-transform"></i>
            </a>
            <a href="#services" class="px-12 py-6 bg-white border-2 border-gray-300 text-gray-900 font-black text-lg rounded-full hover:bg-gray-50 hover:shadow-lg transition-all">
                Learn More
            </a>
        </div>
    </div>
</section>


<section class="relative bg-gradient-to-br from-emerald-600 via-lime-600 to-green-600 py-20 overflow-hidden" id="contact">
    <div class="absolute inset-0 opacity-10">
        <div class="absolute top-0 right-0 w-96 h-96 bg-white rounded-full filter blur-3xl"></div>
        <div class="absolute bottom-0 left-0 w-96 h-96 bg-white rounded-full filter blur-3xl"></div>
    </div>
    
    <div class="max-w-screen-lg mx-auto px-4 relative z-10">
        <div class="text-center mb-12">
            <h2 class="text-4xl md:text-5xl font-extrabold text-white mb-4">Say Hello</h2>
            <p class="text-xl text-white/90">We're here to help. Reach out to us today!</p>
        </div>
        
        <div class="bg-white rounded-3xl shadow-2xl p-8 md:p-12">
            <form action="#" class="space-y-6">
                <div class="grid md:grid-cols-2 gap-6">
                    <div>
                        <label for="name" class="block mb-2 text-sm font-bold text-gray-900">Your Name *</label>
                        <input type="text" id="name" class="bg-gray-50 border-2 border-gray-200 text-gray-900 rounded-xl focus:ring-2 focus:ring-emerald-500 focus:border-transparent block w-full p-4" placeholder="Enter your name" required>
                    </div>
                    <div>
                        <label for="email" class="block mb-2 text-sm font-bold text-gray-900">Email Address *</label>
                        <input type="email" id="email" class="bg-gray-50 border-2 border-gray-200 text-gray-900 rounded-xl focus:ring-2 focus:ring-emerald-500 focus:border-transparent block w-full p-4" placeholder="your@email.com" required>
                    </div>
                </div>
                
                <div class="grid md:grid-cols-2 gap-6">
                    <div>
                        <label for="phone" class="block mb-2 text-sm font-bold text-gray-900">Phone Number</label>
                        <input type="tel" id="phone" class="bg-gray-50 border-2 border-gray-200 text-gray-900 rounded-xl focus:ring-2 focus:ring-emerald-500 focus:border-transparent block w-full p-4" placeholder="+1 (555) 000-0000">
                    </div>
                    <div>
                        <label for="company" class="block mb-2 text-sm font-bold text-gray-900">Company</label>
                        <input type="text" id="company" class="bg-gray-50 border-2 border-gray-200 text-gray-900 rounded-xl focus:ring-2 focus:ring-emerald-500 focus:border-transparent block w-full p-4" placeholder="Your company">
                    </div>
                </div>
                
                <div>
                    <label for="message" class="block mb-2 text-sm font-bold text-gray-900">How can we help? *</label>
                    <textarea id="message" rows="5" class="bg-gray-50 border-2 border-gray-200 text-gray-900 rounded-xl focus:ring-2 focus:ring-emerald-500 focus:border-transparent block w-full p-4" placeholder="Tell us about your project or question..." required></textarea>
                </div>
                
                <div class="flex items-center">
                    <input id="privacy" type="checkbox" class="w-5 h-5 text-emerald-600 bg-gray-100 border-gray-300 rounded focus:ring-emerald-500" required>
                    <label for="privacy" class="ml-3 text-sm text-gray-600">
                        I agree to the <a href="#" class="text-emerald-600 hover:underline font-semibold">Privacy Policy</a> and <a href="#" class="text-emerald-600 hover:underline font-semibold">Terms of Service</a>
                    </label>
                </div>
                
                <button type="submit" class="w-full py-5 text-lg font-bold text-white bg-gradient-to-r from-emerald-600 to-lime-600 rounded-xl hover:shadow-2xl hover:scale-105 transition-all">
                    <i class="fas fa-paper-plane mr-2"></i>
                    Send Your Message
                </button>
            </form>
        </div>
        
        <div class="grid md:grid-cols-3 gap-6 mt-12">
            <div class="bg-white/10 backdrop-blur-sm rounded-2xl p-6 text-center text-white">
                <i class="fas fa-phone text-3xl mb-3"></i>
                <h4 class="font-bold mb-2">Call Us</h4>
                <p class="text-white/80 text-sm">+1-209-879-5074</p>
            </div>
            <div class="bg-white/10 backdrop-blur-sm rounded-2xl p-6 text-center text-white">
                <i class="fas fa-envelope text-3xl mb-3"></i>
                <h4 class="font-bold mb-2">Email Us</h4>
                <p class="text-white/80 text-sm">hello@frutzenfoods.com</p>
            </div>
            <div class="bg-white/10 backdrop-blur-sm rounded-2xl p-6 text-center text-white">
                <i class="fas fa-map-marker-alt text-3xl mb-3"></i>
                <h4 class="font-bold mb-2">Visit Us</h4>
                <p class="text-white/80 text-sm">367 Broad Street, Columbus, OH 43215</p>
            </div>
        </div>
    </div>
</section>


<footer class="bg-white border-t-2 border-gray-200">
    <div class="max-w-screen-xl mx-auto px-4 py-12">
        <div class="grid md:grid-cols-3 gap-8 mb-8">
            <div>
                <a href="./" class="flex items-center space-x-3 mb-4">
                    <div class="w-10 h-10 flex items-center justify-center">
                        <svg width="48" height="48" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
                <defs>
                    <linearGradient id="grad-ca8b4c873720218237f453b55c4f07bd" x1="0%" y1="0%" x2="100%" y2="100%">
                        <stop offset="0%" style="stop-color:#10b981;stop-opacity:1" />
                        <stop offset="50%" style="stop-color:#65a30d;stop-opacity:1" />
                        <stop offset="100%" style="stop-color:#22c55e;stop-opacity:1" />
                    </linearGradient>
                </defs>
                <path d="M 24 4 L 44 4 L 44 40 L 24 40 Z" fill="url(#grad-ca8b4c873720218237f453b55c4f07bd)" />
                <text x="24" y="29" font-family="Arial, sans-serif" font-size="16" font-weight="bold" fill="white" text-anchor="middle" dominant-baseline="central">FR</text>
            </svg>                    </div>
                    <span class="text-xl font-bold text-gray-900">Frutzenfoods</span>
                </a>
                <p class="text-gray-600 text-sm mb-4">Delivering excellence in every project we undertake.</p>
                <div class="flex space-x-3">
                    <a href="#" class="w-10 h-10 bg-gray-100 hover:bg-emerald-600 text-gray-600 hover:text-white rounded-lg flex items-center justify-center transition-all">
                        <i class="fab fa-facebook-f"></i>
                    </a>
                    <a href="#" class="w-10 h-10 bg-gray-100 hover:bg-emerald-600 text-gray-600 hover:text-white rounded-lg flex items-center justify-center transition-all">
                        <i class="fab fa-twitter"></i>
                    </a>
                    <a href="#" class="w-10 h-10 bg-gray-100 hover:bg-emerald-600 text-gray-600 hover:text-white rounded-lg flex items-center justify-center transition-all">
                        <i class="fab fa-linkedin-in"></i>
                    </a>
                </div>
            </div>
            
            <div>
                <h3 class="text-sm font-bold text-gray-900 mb-4 uppercase tracking-wider">Company</h3>
                <ul class="space-y-2 text-sm text-gray-600">
                    <li><a href="./about-us.php" class="hover:text-emerald-600 transition-colors">About</a></li>
                    <li><a href="#services" class="hover:text-emerald-600 transition-colors">Services</a></li>
                    <li><a href="./contact.php" class="hover:text-emerald-600 transition-colors">Contact</a></li>
                    <li><a href="blog/" class="hover:text-emerald-600 transition-colors">Blog</a></li>
                </ul>
            </div>
            
            <div>
                <h3 class="text-sm font-bold text-gray-900 mb-4 uppercase tracking-wider">Legal</h3>
                <ul class="space-y-2 text-sm text-gray-600">
                    <li><a href="./privacy.php" class="hover:text-emerald-600 transition-colors">Privacy Policy</a></li>
                    <li><a href="./terms.php" class="hover:text-emerald-600 transition-colors">Terms of Service</a></li>
                    <li><a href="./disclaimer.php" class="hover:text-emerald-600 transition-colors">Disclaimer</a></li>
                </ul>
            </div>
        </div>
        
        <div class="pt-8 border-t border-gray-200 text-center">
            <p class="text-sm text-gray-600">© 2026 Frutzenfoods. All rights reserved.</p>
        </div>
    </div>
</footer>


<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.0/flowbite.min.js"></script>

<script>
document.addEventListener('DOMContentLoaded', function() {
    const anchorLinks = document.querySelectorAll('a[href^="#"]');

    anchorLinks.forEach(link => {
        link.addEventListener('click', function(e) {
            const href = this.getAttribute('href');
            if (href === '#' || href === '') return;

            const targetId = href.substring(1);
            const targetElement = document.getElementById(targetId);

            if (targetElement) {
                e.preventDefault();
                const headerOffset = 80;
                const elementPosition = targetElement.getBoundingClientRect().top;
                const offsetPosition = elementPosition + window.pageYOffset - headerOffset;

                window.scrollTo({
                    top: offsetPosition,
                    behavior: 'smooth'
                });
            }
        });
    });
});
</script>

</body>
</html>
