/* --- CSS VARIABLES --- */
:root {
    --primary: #1B4D3E;       /* Deep Jungle Green */
    --accent: #E5B85D;        /* Premium Gold */
    --orange: #B34005;        /* Burnt Orange */
    --text-dark: #2F1F16;     /* Espresso */
    --text-light: #000000;    /* Slate Gray */
    --bg-light: #F9F7F2;      /* Cream */
    --bg-white: #FFFFFF;
    
    /* Layout Variables */
    --radius: 8px; /* Sharper corners for corporate look */
    --glass: rgba(255, 255, 255, 0.95);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
    
    --font-main: "Manrope", sans-serif;
}

/* --- RESET & BASICS --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* --- BACKGROUND IMAGES --- */
.bg-layer-left, .bg-layer-right {
    position: fixed;
    z-index: -1; 
    opacity: 0.15;
    pointer-events: none;
}
.bg-layer-left { bottom: 0; left: 0; width: 350px; max-width: 40vw; }
.bg-layer-right { top: 150px; right: 0; width: 300px; max-width: 40vw; }

img { max-width: 100%; display: block; }

/* --- TYPOGRAPHY --- */
.text-center { text-align: center; }
.text-right-md { text-align: right; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--accent); }
.text-muted { color: var(--text-light); }
.orange-text { color: var(--orange) !important; }
.gold-text { color: var(--accent) !important; }

.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-0 { margin-bottom: 0; }

h1, h2, h3, h4, h5 { font-weight: 800; color: var(--primary); margin-bottom: 1rem; line-height: 1.2; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
    text-align:left;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 30px;
}

/* --- NAVBAR --- */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.container { width: 90%; max-width: 1150px; margin: 0 auto; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 100px; width: auto; }

/* --- BUTTONS --- */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}
/* Shimmer */
.btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
    transform: skewX(-25deg);
    transition: none;
}
.btn:hover::after { animation: shimmer 0.7s; }
@keyframes shimmer { 100% { left: 150%; } }

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--text-dark); color: var(--accent); }
.btn-sm { padding: 16px 45px; font-size: 1rem; }
.btn-lg { padding: 16px 45px; font-size: 1rem; }

/* --- HERO SECTION --- */
.hero-section { padding: 80px 0; min-height: 80vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }

.hero-main-logo { width: 100%; max-width: 350px; margin: 0 auto; }
.glass-circle {
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
}

.hero-title { font-size: 3.5rem; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.8rem; color: var(--orange); font-weight: 500; margin-bottom: 20px; }
.hero-lead { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

/* Tags */
.hero-tags-wrapper { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.tag {
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}
.tag-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}
.divider-left { width: 60px; height: 4px; background: var(--accent); margin: 20px 0; }

/* --- SECTIONS (Shared) --- */
.section-brand, .section-value, .section-usage-pro, .section-nutrition, .section-quality, .section-retail-pro, .section-podcast {
    padding: 80px 0;
}

/* Glass Panels */
.glass-panel {
    background: var(--glass);
    padding: 15px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: var(--shadow-soft);
}

.grid-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.align-center { align-items: center; }

/* Brand Story */
.brand-right { border-left: 1px solid #ddd; padding-left: 40px; }
.story-block { margin-bottom: 30px; }
.story-title { font-size: 1.2rem; color: var(--primary); display: block; margin-bottom: 5px; }

/* Feature Cards (Value Prop) */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.card-line { width: 40px; height: 3px; background: var(--primary); margin-bottom: 15px; }
.card-line.gold { background: var(--accent); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }

/* --- NEW: VERSATILITY PRO SECTION --- */
.section-usage-pro {
    padding: 100px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
.usage-row-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.usage-feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}
.usage-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--accent);
    background: #fff;
}
.usage-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.usage-text-content h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--primary); }
.usage-text-content p { font-size: 0.95rem; color: #666; margin: 0; }

.prep-bar {
    background: var(--primary);
    color: #fff;
    padding: 20px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}
.prep-icon { font-size: 1.5rem; }
.prep-bar span { opacity: 0.9; font-weight: 300; }

/* --- NEW: RETAIL PRO SECTION --- */
.section-retail-pro {
    padding: 100px 0;
    background-color: var(--bg-light);
}
.retail-b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
.b2b-panel { padding: 60px; }
.b2b-panel.dark { background: var(--primary); color: #fff; }
.b2b-panel.dark h4 { color: #fff; }
.b2b-panel.light { background: #fff; color: var(--text-dark); border-left: 1px solid #eee; }

.panel-line { width: 50px; height: 3px; margin: 20px 0 30px 0; }
.panel-line.gold { background: var(--accent); }
.panel-line.green { background: var(--primary); }

.pro-list { list-style: none; padding: 0; margin: 0; }
.pro-list li { margin-bottom: 15px; padding-left: 30px; position: relative; line-height: 1.5; }
.pro-list.light li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; top: 0; font-weight: bold; }
.pro-list.dark li::before { content: "✓"; color: var(--primary); position: absolute; left: 0; top: 0; font-weight: bold; }

/* Nutrition */
.nutri-table-wrapper { background: #f7e08a; padding: 6px; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.nutrition-table { width: 100%; border-collapse: collapse; }
.nutrition-table th { text-align: left; padding: 6px; border-bottom: 2px solid #eee; color: var(--primary); }
.nutrition-table td { padding: 6px; border-bottom: 1px solid #dbcc93; font-size: 0.95rem; }
.dietary-box { background: #f0f7f4; padding: 20px; border-left: 4px solid var(--primary); border-radius: 4px; font-size: 0.9rem; }

/* CTA */
.glass-panel.gold-tint { background: rgba(229, 184, 93, 0.1); border-color: var(--accent); }
.text-left-align { text-align: left; }
.cta-text { font-size: 1.2rem; font-weight: 500; margin-bottom: 0; }
.website-link { margin-top: 10px; font-weight: 800; display: block; font-size: 0.9rem; }

/* Podcast */
.podcast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; }
.podcast-item {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
    transition: 0.3s;
}
.podcast-item:hover { transform: translateX(5px); border-left: 4px solid var(--primary); }
.play-icon { font-size: 2rem; }
.audio-player { width: 100%; height: 35px; margin-top: 10px; }

/* Footer */
.simple-footer {
background-color: #1b4d3e;
    color: #999;
    padding: 15px 0;
    /* border-top: 5px solid #1B4D3E; */
    margin-top: 0;
    color: #fff;
}
.footer-flex { display: flex; justify-content: space-between; }

/* --- ANIMATIONS (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid, .grid-split, .podcast-grid, .retail-b2b-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; margin-bottom: 30px; }
    .hero-main-logo { max-width: 250px; }
    .brand-right { border-left: none; padding-left: 0; margin-top: 30px; }
    .text-right-md { text-align: left; margin-top: 20px; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.5rem; }
}


/* --- SMARTPHONE / MOBILE MEDIA QUERY --- */
@media (max-width: 768px) {
    
    /* Make small buttons bigger on mobile for easier tapping */
    .btn-sm {
        padding: 10px 25px;
        font-size: 1rem;
        /* Optional: Un-comment the line below if you want buttons to fill the screen width on mobile */
        /* width: 100%; */
    }

}

/* --- CONTACT PAGE STYLES --- */
/* --- CONTACT PAGE STYLES --- */

.section-contact {
    padding: 60px 0 100px 0;
    min-height: 85vh;
}

/* 1. Header Styling */
.tag-label {
    display: inline-block;
    background: #e0e0e0; /* Light Grey background */
    color: #555;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-radius: 2px;
}

.centered-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px; /* Prevents text from stretching too wide */
}

.back-link {
    color: #4b3b4d; 
    font-weight: 800; 
    text-decoration: none; 
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.back-link:hover { color: var(--primary); }

/* 2. The Contact Card (White Box) */
.contact-card {
    background: #fff;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    /* GOLD TOP BORDER */
    border-top: 6px solid #E5B85D; 
}

/* 3. Form Layout */
.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 30px; 
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ALIGN LABELS LEFT */
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: span 2;
    margin-top: 20px;
}

/* 4. Labels */
label {
    font-weight: 700;
    color: #1B4D3E; /* Dark Green */
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: block;
    width: 100%;
    text-align: left; /* Strict Left Align */
}

.required {
    color: #1B4D3E;
    margin-left: 3px;
}

/* 5. Inputs */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E6E6E6;
    border-radius: 6px;
    background-color: #FAFAFA;
    font-family: var(--font-main);
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1B4D3E;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(27, 77, 62, 0.1);
}

textarea {
    resize: vertical;
}

/* 6. Submit Button */
.btn-submit {
    background-color: #1B4D3E; /* Brand Green */
    color: #fff;
    padding: 18px 60px;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.btn-submit:hover {
    background-color: #14382d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer Dark */
.simple-footer-dark {
    background-color: #1b4d3e;
    color: #999;
    padding: 15px 0;
    /*border-top: 5px solid #1B4D3E;*/
    margin-top: 0;
    color:#fff;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-card {
        padding: 30px 20px;
    }
}

/* --- AJAX Message Styles --- */
#form-feedback {
    display: none; /* Hidden by default */
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 600;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Disable button while sending */
.btn-submit:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

#form-feedback{background: #f0f7f4;
    padding: 10px;
    border-left: 4px solid #cfaa00;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-top: 20px;}
    
/* --- PRODUCT IMAGE SECTION --- */
.productboximg {
    padding: 80px 0;
    background-color: var(--bg-light); /* Keeps it consistent with theme */
    text-align: center;
}

.productboximg img {
    display: block;
    margin: 30px auto 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Soft shadow for 3D effect */
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.productboximg img:hover {
    transform: scale(1.02); /* Subtle zoom on hover */
}
  
 span.tag-label {text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    border-left: 3px solid var(--accent);
    padding-left: 15px;
    text-align: left;
    color: #b34005; 
    background: transparent;}
    
    
/* --- SCROLL NAVIGATION (TOP / BOTTOM) --- */
.scroll-nav {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    z-index: 9999;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: all 0.4s ease;
}

.scroll-nav.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background-color: var(--primary); /* Deep Green */
    color: #fff;
    border: 2px solid var(--accent); /* Gold Border */
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 0; /* Reset padding for perfect centering */
}

.scroll-btn:hover {
    background-color: var(--accent); /* Gold Background on Hover */
    color: var(--primary); /* Green Arrow on Hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Hide 'Bottom' button when already at the bottom (Optional logic handled in JS) */
.scroll-btn.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

/* Mobile: Make them slightly smaller */
@media (max-width: 768px) {
    .scroll-nav { bottom: 20px; right: 20px; gap: 10px; }
    .scroll-btn { width: 45px; height: 45px; font-size: 1rem; }
}