   /* --- 1. Global Styles & Variables --- */
        :root {
            --primary-green: #2A402E;
            --secondary-brown: #6B4F4F;
            --background-cream: #F5F5DC;
            --accent-gold: #D4AF37;
            --text-dark: #333;
            --white: #FFFFFF;
            --light-gray: #f9f9f9;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: sans-serif;
            color: var(--secondary-brown);
            background-color: var(--background-cream);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Prevent body scroll when mobile menu is open */
        body.no-scroll {
            overflow: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            color: var(--primary-green);
            font-weight: 600;
        }
        
        section {
            padding: 80px 5%;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            font-weight: 700;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: var(--accent-gold);
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #c5a135;
            transform: translateY(-2px);
        }
        
        /* --- 2. Header & Navigation --- */
        .header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            padding: 0px 5%;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .header.scrolled {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            padding: 10px 0px;
        }
        .logo img{
            height: 60px;
            width: auto;
        }

        .nav-links {
            display: flex;
            align-items: center;
        }
        
        .nav-links a {
            font-family: 'Poppins', sans-serif;
            margin-left: 30px;
            text-decoration: none;
            color: var(--primary-green);
            font-weight: 400;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent-gold);
        }
        
        .nav-links .btn {
            padding: 8px 22px;
            margin-left: 30px;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--primary-green);
            z-index: 1001; /* Must be above nav overlay */
        }
        
        /* --- 3. Hero Section --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            /* Image from Freepik */
            background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../webimg/hero.jpg');
            background-size: cover;
            background-position: center;
            padding: 0 5%;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- 4. Trust Bar --- */
        .trust-bar {
            background-color: var(--light-gray);
            padding: 20px 5%;
        }
        .trust-bar .container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
            color: var(--secondary-brown);
            font-size: 0.9rem;
        }
        .trust-item i {
            font-size: 1.5rem;
            color: var(--primary-green);
        }
        .trust-item img {
            height: 22px;
        }
        
        /* --- 5. About Section --- */
        #about .container {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        .about-image img {
            width: 100%;
            border-radius: 10px;
            /*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
            padding: 40px;
        }
        .about-content {
            flex: 1;
        }
        .about-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        .founder-quote {
            margin-top: 20px;
            padding-left: 20px;
            border-left: 3px solid var(--accent-gold);
            font-style: italic;
        }
        /* ================================================== */
/*        REPLACE your old team section CSS           */
/*           with this simplified block             */
/* ================================================== */

#team {
    /*background-color: var(--light-gray);*/
    background-color: #f1f1f1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
    overflow: hidden;
    border: 4px solid var(--accent-gold);
}

.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-top: 20px; /* Gives space between photo and name */
}

        /* --- 6. Process Section --- */
        #process { background-color: var(--light-gray); }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }
        .process-step .icon { font-size: 3rem; color: var(--accent-gold); margin-bottom: 15px; }
        .process-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
        
        /* --- 7. Benefits Section --- */
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .benefit-item { background-color: var(--white); padding: 30px; text-align: center; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
        .benefit-item:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
        .benefit-item .icon { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 15px; }
        .benefit-item h3 { font-size: 1.2rem; }

        /* --- 8. Pricing Section --- */
        #shop { background-color: var(--light-gray); }
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
        .pricing-card { background-color: var(--white); padding: 40px; border-radius: 10px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; }
        .pricing-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .pricing-card.popular { border: 2px solid var(--accent-gold); transform: scale(1.05); }
        .price { font-size: 2.5rem; font-family: 'Poppins', sans-serif; color: var(--primary-green); margin: 20px 0; }
        .price span { font-size: 1rem; color: var(--secondary-brown); }
        .popular-badge { background-color: var(--accent-gold); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.8rem; padding: 5px 15px; border-radius: 20px; display: inline-block; margin-bottom: 15px; }

        /* --- 9. Gallery Section --- */
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; transition: transform 0.3s, filter 0.3s;aspect-ratio:1/1; }
        .gallery-item img:hover { transform: scale(1.03); filter: brightness(1.1); }
        
        /* --- 10. Recipes Section --- */
        #recipes { background-color: var(--light-gray); }
        .recipes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .recipe-card { background-color: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
        .recipe-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
        .recipe-card img { width: 100%; height: 200px; object-fit: cover; }
        .recipe-content { padding: 25px; }
        .recipe-content h3 { margin-bottom: 10px; }
        .recipe-content a { font-family: 'Poppins', sans-serif; color: var(--accent-gold); text-decoration: none; font-weight: 600; }

        /* --- 11. Footer / Contact --- */
        .footer { background-color: var(--primary-green); color: var(--background-cream); padding: 80px 5% 30px; }
        .footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
        .footer h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 20px; }
        .footer p, .footer a { color: var(--background-cream); text-decoration: none; }
        .footer a:hover { text-decoration: underline; }
        .footer-col i { width: 20px; margin-right: 10px; }
        .newsletter-form { display: flex; margin-top: 10px; }
        .newsletter-form input { flex-grow: 1; padding: 10px; border: none; border-radius: 5px 0 0 5px; outline: none; }
        .newsletter-form button { padding: 10px 15px; border: none; background-color: var(--accent-gold); color: var(--white); border-radius: 0 5px 5px 0; cursor: pointer; }
        .footer-bottom { text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.9rem; }
        .social-icons a { margin: 0 10px; font-size: 1.3rem; }
        .footer-bottom img { height: 40px; vertical-align: middle; margin: 0 10px;  }
        
        
        /* ================================================== */
        /* Step 3: Add this CSS to your main <style> block  */
        /* ================================================== */
        
        /* --- Google Map Section Styles --- */
        #location {
            padding-bottom: 80px;
            background-color: var(--background-cream);
        }
        .map-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        
        /* ========================================================== */
/*  REPLACE your old popup CSS with this UPDATED block      */
/* ========================================================== */

/* --- Floating Contact Popup Styles --- */
.contact-fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fab-toggler {
    width: 60px;
    height: 60px;
    /* CHANGED: Swapped green for gold to make it stand out */
    background-color: var(--accent-gold);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.fab-toggler:hover {
    transform: scale(1.1);
    background-color: #c5a135; /* Darker gold on hover */
}

.fab-toggler .fa-times {
    display: none; /* Hide 'X' icon by default */
}

.contact-fab-container.active .fab-toggler .fa-times {
    display: block; /* Show 'X' icon when active */
}
.contact-fab-container.active .fab-toggler .fa-comment-dots {
    display: none; /* Hide chat icon when active */
}
.contact-fab-container.active .fab-toggler {
    transform: rotate(360deg);
}

.fab-options {
    list-style: none;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Hide options by default */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contact-fab-container.active .fab-options {
    /* Show options when active */
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.fab-options .fab-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* CHANGED: Swapped gold for green for secondary options */
    background-color: #55ca6a; 
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
    
}

.fab-options .fab-link:hover {
    transform: scale(1.15);
}

        /* --- 12. RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%; /* Start off-screen */
                width: 100%;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease-in-out;
            }
            .nav-links.active {
                right: 0; /* Slide in */
            }
            .nav-links a {
                margin: 20px 0;
                font-size: 1.5rem;
            }
            .hamburger {
                display: block;
            }
            .hamburger.active i::before {
                content: '\f00d'; /* Change bars to 'X' icon */
            }
            #about .container {
                flex-direction: column;
            }
            .pricing-card.popular {
                transform: scale(1.0); /* Disable scaling on tablet/mobile */
            }
        }
        
        @media (max-width: 768px) {
            html {
                font-size: 14px;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .trust-bar .container {
                flex-direction: column;
                gap: 15px;
            }
             .footer .container {
                text-align: center;
            }
            .footer-col i {
                display: none; /* Hide icons on mobile for cleaner look */
            }
            .newsletter-form {
                justify-content: center;
            }
        }
        