/* ==========================================
   Strong Beings LLC - Main Stylesheet
   Modern, minimalist corporate design
   ========================================== */

/* ==========================================
   CSS Variables
   ========================================== */
:root {
    /* Colors */
    --primary-gold: #BBD665;
    --secondary-gold: #3F8444;
    --primary-green: #3F8444;
    --secondary-green: #BBD665;
    --light-green: #BBD665;
    
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-gray: #666666;
    --dark-gray: #333333;
    --black: #1A1A1A;
    
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-serif: 'Cairo', sans-serif;
    --font-sans: 'Cairo', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-small: 60px 0;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force body consistency across all pages */
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Ensure consistent body across all pages */
body, html {
    width: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-small);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    width: 100%;
    min-height: 80px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-serif);
    height: 60px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    white-space: nowrap;
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--primary-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li a {
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition-smooth);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-green);
}

/* Logo in nav menu */
.nav-logo-item {
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.nav-logo-image {
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo-image:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    box-shadow: var(--shadow-small);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    gap: 2rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.bottle-placeholder {
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    animation: pulse 4s ease-in-out infinite;
}

.ginger-decoration {
    position: absolute;
    bottom: -20px;
    right: -30px;
}

.ginger-root {
    width: 60px;
    height: 30px;
    background: var(--secondary-gold);
    border-radius: 50%;
    opacity: 0.3;
    margin-bottom: 10px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   Natural & Pure Section
   ========================================== */
.natural-section {
    background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.natural-content {
    text-align: center;
}

.natural-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.natural-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.natural-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.natural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.natural-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.natural-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.natural-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(63, 132, 68, 0.15);
}

.natural-item:hover::before {
    transform: scaleX(1);
}

.natural-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.natural-item:hover .natural-icon {
    transform: scale(1.1) rotate(5deg);
}

.natural-item h3 {
    font-size: 1.25rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.natural-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.natural-banner {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.natural-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(187, 214, 101, 0.1);
    border-radius: 50%;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.natural-banner h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.natural-banner p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.95;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    background-color: var(--off-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-small);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(187, 214, 101, 0.1), transparent);
    transition: left 0.7s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--white) 0%, rgba(249, 249, 249, 1) 100%);
}

.feature-icon {
    margin-bottom: 1.5rem;
    transition: all 0.6s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 214, 101, 0.2) 0%, transparent 70%);
    z-index: -1;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(360deg);
}

.feature-card:hover .feature-icon::after {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(187, 214, 101, 0.4) 0%, transparent 70%);
}

.feature-icon svg {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 8px 16px rgba(63, 132, 68, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-green));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.feature-card:hover h3 {
    color: var(--primary-gold);
    transform: translateY(-5px);
}

.feature-card:hover h3::after {
    width: 100%;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: var(--dark-gray);
    transform: translateY(5px);
}

/* ==========================================
   Product Highlight
   ========================================== */
.product-highlight {
    background-color: var(--white);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.product-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.product-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.spec-badge {
    padding: 0.5rem 1rem;
    background-color: var(--off-white);
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.supplement-facts {
    background-color: var(--off-white);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-small);
}

.supplement-facts h4 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
}

.facts-content {
    font-family: var(--font-sans);
}

.fact-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.fact-row.highlight {
    font-weight: 600;
    color: var(--primary-green);
}

.fact-subrow {
    font-size: 0.875rem;
    color: var(--text-gray);
    padding: 0.25rem 0 0.75rem 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

/* ==========================================
   Science Section
   ========================================== */
.science-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--off-white) 100%);
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.science-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: var(--shadow-small);
}

.science-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.science-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonials {
    background-color: var(--off-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stars {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--black);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
}

.cta-section .btn-primary:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-green);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.footer-col a {
    color: var(--medium-gray);
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-badges span {
    padding: 0.5rem 1rem;
    background-color: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-gold);
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
}

/* ==========================================
   Page Header
   ========================================== */
/* ==========================================
   Hero Section with Cover Image
   ========================================== */
.hero-section.about-hero,
.hero-section.product-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(63, 132, 68, 0.85), rgba(63, 132, 68, 0.7));
    z-index: 2;
}

.hero-section .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 100px 20px 80px;
}

.hero-section .hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

/* Breadcrumb Styling */
.hero-section .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    backdrop-filter: blur(10px);
}

.hero-section .breadcrumb-item {
    color: var(--white);
}

.hero-section .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-section .breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

.hero-section .breadcrumb-item.active {
    color: var(--primary-gold);
    font-weight: 600;
}

.hero-section .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--white);
    padding: 0 0.5rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    text-align: center;
    padding: 100px 0 80px;
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ==========================================
   Product Page Styles
   ========================================== */
.product-hero {
    padding: 80px 0;
    background-color: var(--off-white);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-gallery {
    text-align: center;
}

.main-image {
    margin-bottom: 2rem;
}

.quality-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.quality-badge {
    padding: 0.5rem 1rem;
    background-color: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
}

.product-details h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rating .stars {
    color: var(--primary-gold);
    font-size: 1.125rem;
}

.rating span {
    color: var(--text-gray);
}

.product-price {
    margin-bottom: 2rem;
}

.key-features {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
}

.key-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.key-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.key-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1rem;
    color: var(--black);
}

.trust-item span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* ==========================================
   Product Info Tabs
   ========================================== */
.product-info-section {
    padding: 80px 0;
}

.tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--medium-gray);
}

.tab-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-gold);
}

.tab-btn:hover {
    color: var(--primary-green);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.tab-content h2 {
    margin-bottom: 2rem;
}

.formula-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.supplement-facts-detailed {
    background-color: var(--off-white);
    border: 3px solid var(--primary-gold);
    border-radius: 12px;
    padding: 2rem;
}

.supplement-facts-detailed h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.serving-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--black);
}

.serving-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.ingredients-table th,
.ingredients-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.ingredients-table th {
    background-color: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

.highlight-row {
    background-color: rgba(74, 124, 47, 0.05);
}

.ingredient-detail {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.daily-value-note {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.other-ingredients {
    padding: 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.formula-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    padding: 1.5rem;
    background-color: var(--off-white);
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
}

.highlight-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.usage-suggestions {
    padding: 2rem;
    background-color: var(--light-green);
    border-radius: 12px;
}

.usage-suggestions h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.usage-suggestions ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.usage-suggestions li {
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
}

.quality-process {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 12px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-serif);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.usage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.instruction-box,
.warning-box {
    padding: 1.5rem;
    background-color: var(--light-green);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.warning-box {
    background-color: rgba(212, 175, 55, 0.1);
}

.warning-box h4 {
    color: var(--primary-gold);
}

.usage-tips h4,
.allergy-info h4 {
    margin-bottom: 1rem;
}

.usage-tips ul,
.warning-box ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.usage-tips li,
.warning-box li {
    margin-bottom: 0.75rem;
}

.allergy-info {
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: 8px;
}

/* ==========================================
   Quality Page Styles
   ========================================== */
.quality-promise {
    background-color: var(--white);
}

.promise-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-align: center;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.promise-card {
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 12px;
}

.promise-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.manufacturing-process {
    background-color: var(--off-white);
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, var(--primary-gold), var(--primary-green));
}

.timeline-icon {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
}

.timeline-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.testing-standards {
    background-color: var(--white);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.standard-card {
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 12px;
}

.standard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.standard-badge {
    padding: 0.375rem 0.75rem;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

.standard-spec {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-left: 3px solid var(--primary-green);
    border-radius: 4px;
}

.certifications-detailed {
    background-color: var(--off-white);
}

.cert-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.cert-detailed-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-small);
}

.cert-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.cert-detailed-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.transparency-section {
    background-color: var(--white);
}

.transparency-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.transparency-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transparency-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.document-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--off-white), var(--white));
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    font-weight: 600;
    color: var(--primary-green);
}

/* ==========================================
   About Page Styles
   ========================================== */
.story-section {
    background-color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-text .tagline {
    font-size: 1.125rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0;
}

.story-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.story-img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.image-placeholder {
    background-color: var(--off-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.mission-section {
    background-color: var(--off-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-gold), var(--primary-green));
    background-size: 200% auto;
    animation: gradientShift 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.mission-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    transition: all 0.6s ease;
    position: relative;
}

.mission-icon::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(187, 214, 101, 0.2) 0%, transparent 70%);
    z-index: -1;
    transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
    transform: rotateY(360deg) scale(1.15);
}

.mission-card:hover .mission-icon::after {
    transform: scale(1.5);
    opacity: 0;
}

.mission-card:hover .mission-icon svg {
    filter: drop-shadow(0 8px 20px rgba(63, 132, 68, 0.4));
}

.mission-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
}

.mission-card h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-green));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.mission-card:hover h3 {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.mission-card:hover h3::before {
    width: 100%;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
}

.values-list li:before {
    content: "✓";
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-gold));
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 0.875rem;
}

.values-list li:hover {
    background-color: var(--light-green);
    transform: translateX(10px);
    padding-left: 3rem;
}

.values-list li:hover:before {
    transform: rotate(360deg) scale(1.2);
}

.values-list li strong {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.values-list li:hover strong {
    color: var(--primary-gold);
}

.founder-section {
    background-color: var(--white);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.founder-photo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-green));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.founder-photo:hover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.founder-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--light-green);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.founder-tag:hover {
    transform: scale(1.1);
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(63, 132, 68, 0.3);
}

.founder-bio h2 {
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.125rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.credential-item:hover {
    background-color: var(--light-green);
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.credential-item svg {
    transition: transform 0.3s ease;
}

.credential-item:hover svg {
    transform: rotate(360deg) scale(1.2);
}

.founder-quote {
    background-color: var(--light-green);
    border-left: 4px solid var(--primary-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    position: relative;
    transition: all 0.4s ease;
}

.founder-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(187, 214, 101, 0.3) 100%);
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.founder-quote p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--dark-gray);
}

.certifications-section {
    background-color: var(--off-white);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.cert-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(187, 214, 101, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.cert-card:hover::before {
    left: 100%;
}

.cert-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
}

.cert-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    transition: transform 0.6s ease;
}

.cert-card:hover .cert-icon {
    transform: rotateY(360deg) scale(1.1);
}

.cert-card:hover .cert-icon svg {
    filter: drop-shadow(0 5px 15px rgba(63, 132, 68, 0.3));
}

.cert-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.commitment-section {
    background-color: var(--white);
}

.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.commitment-item {
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.commitment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-gold));
    transition: left 0.5s ease;
}

.commitment-item:hover::before {
    left: 0;
}

.commitment-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-gold);
    background-color: var(--white);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.commitment-item h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.4s ease;
}

.commitment-item:hover h3 {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.commitment-item:hover h3::after {
    width: 100%;
}

/* ==========================================
   Contact Page Styles
   ========================================== */
.contact-options {
    background-color: var(--white);
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.contact-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-gold);
    font-size: 1.125rem;
}

.contact-form-section {
    background-color: var(--off-white);
    padding: 80px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.form-intro h2 {
    margin-bottom: 1.5rem;
}

.form-intro p {
    font-size: 1.0625rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.partnership-benefits {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 12px;
}

.partnership-benefits h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.partnership-benefits ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partnership-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background-color: var(--light-green);
    color: var(--primary-green);
    display: block;
}

.form-message.error {
    background-color: #FFEBEE;
    color: #C62828;
    display: block;
}

.partnership-types {
    background-color: var(--white);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partnership-card {
    background-color: var(--off-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.partnership-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.partnership-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.faq-section {
    background-color: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.faq-item h3 {
    color: var(--primary-green);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-gray);
}

/* ==========================================
   Blog Styles
   ========================================== */
.blog-section {
    padding: var(--section-padding);
    background-color: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-category {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h2 {
    margin-bottom: 1rem;
}

.blog-content h2 a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-content h2 a:hover {
    color: var(--primary-green);
}

.blog-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
    font-size: 0.875rem;
    color: var(--text-gray);
}

.read-more {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.read-more:hover {
    color: var(--secondary-green);
}

.newsletter-section {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.newsletter-content h3 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

/* ==========================================
   FAQ Styles
   ========================================== */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    gap: 3rem;
}

.faq-category h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-gold);
}

.faq-item {
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: var(--off-white);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 300;
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.contact-box h3 {
    margin-bottom: 1rem;
}

.contact-box p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content,
    .product-content,
    .product-hero-content,
    .story-content,
    .founder-content,
    .transparency-content,
    .form-wrapper,
    .formula-details,
    .usage-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    /* Natural Section Mobile */
    .natural-title {
        font-size: 2rem;
    }
    
    .natural-subtitle {
        font-size: 1.1rem;
    }
    
    .natural-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .natural-banner {
        padding: 2rem 1.5rem;
    }
    
    .natural-banner h3 {
        font-size: 1.5rem;
    }
    
    .natural-banner p {
        font-size: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    /* Hero Section Mobile */
    .hero-section.about-hero,
    .hero-section.product-hero {
        min-height: 400px;
    }
    
    .hero-section .hero-content {
        padding: 80px 20px 60px;
    }
    
    .hero-section .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-section .hero-content p {
        font-size: 1rem;
    }
    
    .hero-section .breadcrumb {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tabs {
        overflow-x: auto;
    }
    
    .tab-btn {
        flex-shrink: 0;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .science-grid,
    .testimonial-grid,
    .mission-grid,
    .certifications-grid,
    .standards-grid,
    .cert-detailed-grid,
    .benefits-grid,
    .partnership-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-step,
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .founder-photo {
        width: 250px;
        height: 250px;
    }
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .cta-section,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    h3 {
        font-size: 16pt;
    }
}

/* ==========================================
   Inline CSS from HTML Pages - Consolidated
   ========================================== */

/* Trust Badges Icons Styling (from index.html) */
.trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: #F9F9F9;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
}

.trust-badges .badge:hover {
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(63, 132, 68, 0.15);
    transform: translateY(-2px);
    border-color: #BBD665;
}

.trust-badges .badge svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.trust-badges .badge:hover svg {
    transform: scale(1.1);
}

.trust-badges .badge span {
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
}

/* Feature Icons Styling (from index.html) */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(187, 214, 101, 0.1) 0%, rgba(63, 132, 68, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(187, 214, 101, 0.2) 0%, rgba(63, 132, 68, 0.2) 100%);
    border-color: #BBD665;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(63, 132, 68, 0.2);
}

.feature-icon svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1) rotate(5deg);
}

/* Product Spec Icons (from index.html) */
.product-specs .spec-item svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.product-specs .spec-item:hover svg {
    transform: scale(1.2);
}

/* Page Header Colors (from product.html, feature.html, contact.html) */
.page-header {
    background: linear-gradient(rgba(63, 132, 68, 0.9), rgba(63, 132, 68, 0.9)), url(img/hero-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header h1 {
    color: #FFFFFF !important;
}

.breadcrumb-item a {
    color: #BBD665 !important;
}

.breadcrumb-item.active {
    color: #FFFFFF !important;
}

/* Site Color Utilities (from feature.html) */
.text-primary {
    color: #3F8444 !important;
}

.text-secondary {
    color: #BBD665 !important;
}

.bg-primary {
    background-color: #3F8444 !important;
}

.bg-secondary {
    background-color: #BBD665 !important;
}

.border-primary {
    border-color: #3F8444 !important;
}

.border-secondary {
    border-color: #BBD665 !important;
}

.btn-primary {
    background-color: #3F8444 !important;
    border-color: #3F8444 !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2d6333 !important;
    border-color: #2d6333 !important;
    color: #FFFFFF !important;
}

.btn-secondary {
    background-color: #BBD665 !important;
    border-color: #BBD665 !important;
    color: #1A1A1A !important;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #a8c554 !important;
    border-color: #a8c554 !important;
    color: #1A1A1A !important;
}

.btn-outline-light:hover {
    background-color: #FFFFFF !important;
    color: #3F8444 !important;
}

/* Icon colors (from feature.html) */
.fa-seedling.text-primary,
.fa-industry.text-primary,
.fa-flask.text-primary,
.fa-certificate.text-primary,
.fa-vial.text-primary {
    color: #3F8444 !important;
}

.fa-microscope.text-secondary,
.fa-capsules.text-secondary,
.fa-shipping-fast.text-secondary,
.fa-check-double.text-secondary,
.fa-book-medical.text-secondary,
.fa-check.text-secondary {
    color: #BBD665 !important;
}

h5.text-primary,
h5.text-primary i {
    color: #3F8444 !important;
}

.border-primary h1.text-primary {
    color: #3F8444 !important;
}

.border-secondary h1.text-secondary {
    color: #BBD665 !important;
}

/* Contact Form Styling (from contact.html) */
.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    background-color: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #3F8444;
    box-shadow: 0 0 0 3px rgba(63, 132, 68, 0.1);
    background-color: #FFFFFF;
}

.form-control::placeholder {
    color: transparent;
}

.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 1rem;
    pointer-events: none;
    border: 2px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #666666;
    font-size: 1rem;
    font-weight: 400;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: #3F8444;
    font-weight: 500;
}

.form-floating > .form-control:focus ~ label {
    color: #3F8444;
    opacity: 1;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233F8444' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-control:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-control:valid:not(:focus):not(:placeholder-shown) {
    border-color: #BBD665;
}

/* Form Button (from contact.html) */
.contact-form .btn-primary {
    background: linear-gradient(135deg, #3F8444 0%, #2d6333 100%);
    border: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 132, 68, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #2d6333 0%, #3F8444 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 132, 68, 0.4);
}

.contact-form .btn-primary:active {
    transform: translateY(0);
}

/* Form Row Spacing (from contact.html) */
.row.g-3 > [class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.row.g-3 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

/* 404 Error Page Styling */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f8f9fa;
}

.error-content h1 {
    font-size: 3rem;
    color: #BBD665;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.error-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links .btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.error-links .btn-primary {
    background-color: #BBD665;
    color: white;
}

.error-links .btn-secondary {
    background-color: #3F8444;
    color: white;
}

.error-links .btn:hover {
    transform: translateY(-2px);
}

/* ==========================================
   Bootstrap Override for Navbar Consistency
   ========================================== */
/* Force navbar to use our custom styles on all pages */
nav.navbar {
    background-color: var(--white) !important;
    box-shadow: var(--shadow-small) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
    min-height: 80px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.navbar .container {
    max-width: var(--container-max-width) !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

.navbar .nav-wrapper {
    height: 80px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.navbar .logo {
    height: 60px !important;
}

.navbar .logo img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}

/* Ensure nav-menu is consistent */
.navbar .nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================
   Bootstrap Replacement - Grid System
   Custom Grid System to replace Bootstrap
   ========================================== */

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1.5rem;
}

.container-xxl {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Row and Columns */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

/* Column Base */
[class*="col-"] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Column Sizes */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Large Screen (Desktop) */
@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Medium Screen (Tablet) */
@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Small Screen (Mobile) */
@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Gap Classes */
.g-0 { margin-left: 0; margin-right: 0; }
.g-0 > [class*="col-"] { padding-left: 0; padding-right: 0; }

.g-1 { margin-left: -0.25rem; margin-right: -0.25rem; }
.g-1 > [class*="col-"] { padding-left: 0.25rem; padding-right: 0.25rem; }

.g-2 { margin-left: -0.5rem; margin-right: -0.5rem; }
.g-2 > [class*="col-"] { padding-left: 0.5rem; padding-right: 0.5rem; }

.g-3 { margin-left: -0.75rem; margin-right: -0.75rem; }
.g-3 > [class*="col-"] { padding-left: 0.75rem; padding-right: 0.75rem; }

.g-4 { margin-left: -1rem; margin-right: -1rem; }
.g-4 > [class*="col-"] { padding-left: 1rem; padding-right: 1rem; }

.g-5 { margin-left: -1.5rem; margin-right: -1.5rem; }
.g-5 > [class*="col-"] { padding-left: 1.5rem; padding-right: 1.5rem; }

/* ==========================================
   Bootstrap Replacement - Utility Classes
   ========================================== */

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

/* Flex Utilities */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

/* Margin */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }
.m-auto { margin: auto !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

.mx-auto { margin-left: auto !important; margin-right: auto !important; }

/* Padding */
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.ps-0 { padding-left: 0 !important; }
.ps-1 { padding-left: 0.25rem !important; }
.ps-2 { padding-left: 0.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-5 { padding-left: 3rem !important; }

.pe-0 { padding-right: 0 !important; }
.pe-1 { padding-right: 0.25rem !important; }
.pe-2 { padding-right: 0.5rem !important; }
.pe-3 { padding-right: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }
.pe-5 { padding-right: 3rem !important; }

.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.p-xl-5 { padding: 3rem !important; }

/* Text Alignment */
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 768px) {
    .text-md-start { text-align: left !important; }
    .text-md-end { text-align: right !important; }
    .text-md-center { text-align: center !important; }
}

/* Text Colors */
.text-primary { color: var(--primary-green) !important; }
.text-secondary { color: var(--secondary-green) !important; }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--text-gray) !important; }
.text-dark { color: var(--dark-gray) !important; }
.text-body { color: var(--dark-gray) !important; }

/* Background Colors */
.bg-primary { background-color: var(--primary-green) !important; }
.bg-secondary { background-color: var(--secondary-green) !important; }
.bg-light { background-color: var(--light-gray) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-icon { background: var(--light-gray); }

/* Border */
.border { border: 1px solid var(--medium-gray) !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid var(--medium-gray) !important; }
.border-bottom { border-bottom: 1px solid var(--medium-gray) !important; }
.border-start { border-left: 1px solid var(--medium-gray) !important; }
.border-end { border-right: 1px solid var(--medium-gray) !important; }

.border-primary { border-color: var(--primary-green) !important; }
.border-secondary { border-color: var(--secondary-green) !important; }

.border-1 { border-width: 1px !important; }
.border-2 { border-width: 2px !important; }
.border-3 { border-width: 3px !important; }
.border-4 { border-width: 4px !important; }
.border-5 { border-width: 5px !important; }

/* Rounded */
.rounded { border-radius: 0.375rem !important; }
.rounded-0 { border-radius: 0 !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }

/* Width & Height */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: #2d6333;
    border-color: #2d6333;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-green);
    color: var(--black);
    border-color: var(--secondary-green);
}

.btn-secondary:hover {
    background-color: #a8c554;
    border-color: #a8c554;
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Typography Sizes */
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }

.display-1 { font-size: 5rem; font-weight: 700; }
.display-2 { font-size: 4.5rem; font-weight: 700; }
.display-3 { font-size: 4rem; font-weight: 700; }
.display-4 { font-size: 3.5rem; font-weight: 700; }
.display-5 { font-size: 3rem; font-weight: 700; }
.display-6 { font-size: 2.5rem; font-weight: 700; }

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-header h1,
.section-header h2 {
    font-family: var(--font-serif);
    color: var(--black);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Max Width */
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(63, 132, 68, 0.9), rgba(63, 132, 68, 0.9)), url(img/hero-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: var(--white);
}

.breadcrumb-item a {
    color: var(--secondary-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-item a:hover {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--white);
}

/* Animations (WOW.js replacement) */
.fadeIn,
.fadeInUp,
.slideInDown {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn { animation-name: fadeIn; }
.fadeInUp { animation-name: fadeInUp; }
.slideInDown { animation-name: slideInDown; }

/* Wow classes replacement */
.wow {
    visibility: visible !important;
    animation-name: fadeIn;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.bg-secondary.text-white {
    background-color: var(--secondary-green) !important;
    color: var(--black) !important;
}

/* ==========================================
   Enhanced Animation Effects
   ========================================== */

/* Features Section Specific Animations */
.features {
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(187, 214, 101, 0.03), transparent);
    animation: slideRight 15s linear infinite;
}

@keyframes slideRight {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Stagger animation for feature cards */
.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Pulse animation for icons */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Button hover animations */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth scroll reveal */
[data-aos] {
    pointer-events: auto;
}

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

.product-visual img,
.bottle-placeholder {
    animation: float 6s ease-in-out infinite;
}

/* Glow effect */
@keyframes glow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.bottle-glow {
    animation: glow 3s ease-in-out infinite;
}

/* Badge animations */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Trust badges hover */
.trust-badges .badge:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Product specs animation */
.spec-badge {
    transition: all 0.3s ease;
}

.spec-badge:hover {
    transform: scale(1.1);
    background-color: var(--secondary-green);
    color: white;
}

/* Smooth transitions for all interactive elements */
a, button, .card, .feature-card, .product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Fade in animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.5s both;
}

/* Scale on hover for images */
.product-visual img,
.hero-image img {
    transition: transform 0.5s ease;
}

.product-visual:hover img,
.hero-image:hover img {
    transform: scale(1.05);
}

/* Founder Section Advanced Animations */
.founder-bio h2 {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-gold), var(--primary-green));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Fade in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bounce effect for credentials */
.credential-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.credential-item:nth-child(1) {
    animation-delay: 0.8s;
}

.credential-item:nth-child(2) {
    animation-delay: 0.9s;
}

.credential-item:nth-child(3) {
    animation-delay: 1s;
}

/* Certifications Section Advanced Animations */
.certifications-section .section-title {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Commitment Section Heading Glow */
.commitment-content h2 {
    position: relative;
    text-shadow: 0 0 30px rgba(187, 214, 101, 0.3);
    transition: all 0.5s ease;
}

.commitment-content h2:hover {
    text-shadow: 0 0 40px rgba(187, 214, 101, 0.6);
    transform: scale(1.05);
}

/* Counter animation for numbers */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for commitment items */
.commitment-item:nth-child(1) {
    animation-delay: 0.2s;
}

.commitment-item:nth-child(2) {
    animation-delay: 0.3s;
}

.commitment-item:nth-child(3) {
    animation-delay: 0.4s;
}

.commitment-item:nth-child(4) {
    animation-delay: 0.5s;
}

.commitment-item:nth-child(5) {
    animation-delay: 0.6s;
}

/* Mission Section Advanced Animations */
.mission-section {
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(187, 214, 101, 0.05) 0%, transparent 70%);
    animation: rotateBackground 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mission Card Specific Animations */
.mission-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mission-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mission-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Values list item sequential animation - only when AOS triggers */
.values-list li {
    /* Remove automatic animation, let AOS handle it */
    opacity: 1;
    transform: translateX(0);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mission card paragraph fade in */
.mission-card p {
    opacity: 1;
}
.mission-card p {
    animation: fadeIn 1s ease-out 0.5s both;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================
   Product Page Specific Animations
   ========================================== */

/* Benefits Section */
.container-fluid.bg-icon {
    position: relative;
    overflow: hidden;
}

.bg-white.text-center.h-100 {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.bg-white.text-center.h-100::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(187, 214, 101, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.bg-white.text-center.h-100:hover::before {
    opacity: 1;
    top: 100%;
    left: 100%;
}

.bg-white.text-center.h-100:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.bg-white.text-center.h-100:hover i {
    transform: scale(1.2) rotateY(360deg);
    transition: transform 0.6s ease;
}

.bg-white.text-center.h-100 h4 {
    transition: all 0.3s ease;
}

.bg-white.text-center.h-100:hover h4 {
    color: var(--primary-gold);
}

/* Quality Features Section */
.text-center i.fa-3x {
    transition: all 0.5s ease;
    display: inline-block;
}

.text-center:hover i.fa-3x {
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 5px 15px rgba(63, 132, 68, 0.3));
}

.text-center h5 {
    transition: all 0.3s ease;
}

.text-center:hover h5 {
    color: var(--primary-gold);
    transform: translateY(-5px);
}

/* Expanding Product Line Section */
.bg-light.p-5.rounded {
    transition: all 0.5s ease;
    border: 2px solid transparent;
    position: relative;
}

.bg-light.p-5.rounded::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-gold));
    transition: width 0.5s ease;
}

.bg-light.p-5.rounded:hover::after {
    width: 100%;
}

.bg-light.p-5.rounded:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.bg-light.p-5.rounded:hover i {
    transform: scale(1.2);
    transition: transform 0.4s ease;
}






