/* ===================================
   Green Gum - Complete Premium Design
   All Issues Fixed - Fresh Recreation
   =================================== */

:root {
    --primary: #2D5016;
    --primary-light: #4A7C2E;
    --primary-dark: #1F3810;
    --secondary: #8B4513;
    --accent: #7CB342;
    --accent-light: #9CCC65;
    --bg: #F5F5F0;
    --white: #FFFFFF;
    --dark: #2C2C2C;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --gray-lighter: #E5E7EB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(124, 179, 66, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 80, 22, 0.08) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
    animation: backgroundPulse 20s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

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

a {
    text-decoration: none;
    color: inherit;
}

select {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Ultra Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(50px) saturate(200%) brightness(112%);
    -webkit-backdrop-filter: blur(50px) saturate(200%) brightness(112%);
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 10px 40px rgba(45, 80, 22, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        0 20px 60px rgba(124, 179, 66, 0.12);
    position: relative;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

.glass-dark {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px) saturate(180%) brightness(108%);
    -webkit-backdrop-filter: blur(50px) saturate(180%) brightness(108%);
    border: 2.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

/* ENHANCED NAVIGATION - Ultra Frosted Glass */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(60px) saturate(220%) brightness(118%);
    -webkit-backdrop-filter: blur(60px) saturate(220%) brightness(118%);
    border-bottom: 3px solid rgba(124, 179, 66, 0.25);
    box-shadow: 
        0 6px 35px rgba(45, 80, 22, 0.18),
        inset 0 2px 2px rgba(255, 255, 255, 1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(124, 179, 66, 0.6) 25%, 
        rgba(124, 179, 66, 0.9) 50%, 
        rgba(124, 179, 66, 0.6) 75%, 
        transparent
    );
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(70px) saturate(240%) brightness(120%);
    -webkit-backdrop-filter: blur(70px) saturate(240%) brightness(120%);
    box-shadow: 
        0 10px 50px rgba(45, 80, 22, 0.22),
        inset 0 2px 3px rgba(255, 255, 255, 1);
    border-bottom-color: rgba(124, 179, 66, 0.35);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    height: 50px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(45, 80, 22, 0.25));
}

.logo:hover {
    transform: scale(1.1) rotate(-3deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
    background: var(--accent);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

/* FIXED: Simple, Clean Start Demo Button */
.nav-cta {
    padding: 0.7rem 1.8rem !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    border: none !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 10s ease-in-out infinite reverse;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    background: rgba(124, 179, 66, 0.25);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 2.5px solid rgba(124, 179, 66, 0.5);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.25);
    animation: fadeInUp 0.8s ease, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
}

.rotating-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 25px 50px rgba(45, 80, 22, 0.2));
}

.circle-orbit {
    position: absolute;
    border-radius: 50%;
    border: 4px solid rgba(124, 179, 66, 0.3);
    box-shadow: 
        0 0 25px rgba(124, 179, 66, 0.2),
        inset 0 0 25px rgba(124, 179, 66, 0.08);
}

.circle-1 {
    width: 500px;
    height: 500px;
    animation: rotate 30s linear infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(45, 80, 22, 0.35);
    animation: rotate-reverse 25s linear infinite;
}

.circle-3 {
    width: 300px;
    height: 300px;
    border-color: rgba(124, 179, 66, 0.4);
    animation: rotate 20s linear infinite;
}

.logo-center {
    position: relative;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.logo-center:hover {
    animation-play-state: paused;
    transform: scale(1.12) rotate(5deg);
}

.center-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 18px 45px rgba(45, 80, 22, 0.3));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.15rem 2.6rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 13px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 320px;
    height: 320px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 
        0 6px 20px rgba(45, 80, 22, 0.35),
        0 10px 30px rgba(124, 179, 66, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-5px) scale(1.06);
    box-shadow: 
        0 10px 35px rgba(45, 80, 22, 0.45),
        0 15px 50px rgba(124, 179, 66, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    color: var(--dark);
    border: 2.5px solid rgba(124, 179, 66, 0.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px) scale(1.06);
    box-shadow: 
        0 10px 30px rgba(124, 179, 66, 0.25),
        0 15px 45px rgba(45, 80, 22, 0.2);
}

.btn-full {
    width: 100%;
}

/* Marquee */
.marquee-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: hidden;
    position: relative;
}

.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 2rem;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    min-width: 100%;
    animation: scroll 25s linear infinite;
}

.marquee-item {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 3rem)); }
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Problem Solution */
.problem-solution {
    padding: 100px 0;
    background: var(--white);
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-top: 3rem;
}

.ps-card {
    padding: 4rem 3rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ps-card.highlight {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.22), rgba(45, 80, 22, 0.18));
    border: 3px solid var(--accent);
}

.ps-card:hover {
    transform: translateY(-18px) scale(1.04);
    box-shadow: 
        0 30px 70px rgba(124, 179, 66, 0.3),
        0 20px 45px rgba(45, 80, 22, 0.2);
}

.ps-icon {
    font-size: 5rem;
    margin-bottom: 1.8rem;
    animation: iconFloat 3.5s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(6deg); }
}

.ps-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
}

.ps-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 1.2rem 0;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 3px 15px rgba(124, 179, 66, 0.25);
}

.ps-solution {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.ps-bold {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.2rem;
    font-family: 'Playfair Display', serif;
}

/* FIXED: Stats Section - Even Card Sizes */
.stats-section {
    padding: 5rem 0;
}

.stats-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-18px) scale(1.06);
    box-shadow: 
        0 25px 60px rgba(124, 179, 66, 0.3),
        0 35px 80px rgba(45, 80, 22, 0.2);
}

.stat-number {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 5px 20px rgba(124, 179, 66, 0.35);
    line-height: 1.1;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

/* How It Works */
.how-works-section {
    padding: 100px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-card {
    flex: 1;
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-card:hover {
    transform: translateY(-18px) scale(1.04);
    box-shadow: 0 30px 70px rgba(124, 179, 66, 0.3);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 1.8rem;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
}

.step-arrow {
    font-size: 3.5rem;
    color: var(--accent);
    font-weight: 300;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4.5rem;
}

.section-label {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    background: rgba(124, 179, 66, 0.22);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    border: 2.5px solid rgba(124, 179, 66, 0.45);
    box-shadow: 0 5px 18px rgba(124, 179, 66, 0.2);
}

.section-label.light {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.section-header h2 {
    font-size: 3.4rem;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.9;
}

/* Products Section */
.products-section {
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.product-card {
    padding: 4rem 3.5rem;
    border-radius: 32px;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-22px) scale(1.06);
    box-shadow: 
        0 35px 80px rgba(124, 179, 66, 0.35),
        0 20px 50px rgba(45, 80, 22, 0.25);
}

/* FIXED: Product Badge - Properly Visible */
.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--white);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.5);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.product-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.3rem;
    color: var(--primary);
}

.product-desc {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.product-usage {
    background: rgba(124, 179, 66, 0.15);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    color: var(--dark);
    border: 2px solid rgba(124, 179, 66, 0.3);
}

.product-benefits {
    margin-top: 1.8rem;
}

.benefit-item {
    padding: 0.8rem 0;
    color: var(--dark);
    font-size: 1rem;
}

/* Farmers Section */
.farmers-section {
    padding: 100px 0;
    background: var(--white);
}

.farmer-story {
    margin-bottom: 5rem;
}

.story-content {
    padding: 4.5rem 4rem;
    border-radius: 32px;
    max-width: 950px;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.story-content:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 70px rgba(124, 179, 66, 0.25),
        0 20px 45px rgba(45, 80, 22, 0.15);
}

.quote-mark {
    font-size: 7rem;
    color: rgba(124, 179, 66, 0.18);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    position: absolute;
    top: 25px;
    left: 35px;
}

blockquote {
    font-size: 1.35rem;
    line-height: 1.9;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
}

.farmer-info h4 {
    font-size: 1.65rem;
    margin-bottom: 0.5rem;
}

.farmer-info p {
    color: var(--gray);
    font-size: 1.1rem;
}

.farmer-result {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.18), rgba(45, 80, 22, 0.12));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    font-size: 1.15rem;
    border: 2px solid rgba(124, 179, 66, 0.3);
}

.result-highlight {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.farmer-update {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 1.5rem;
}

/* FIXED: Gallery - No White Background */
.farmers-gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 4/3;
    position: relative;
    background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.2), rgba(45, 80, 22, 0.2));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 
        0 25px 60px rgba(45, 80, 22, 0.25),
        0 35px 80px rgba(124, 179, 66, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(124, 179, 66, 0.2);
}

.testimonial-card p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.impact-section .section-header h2 {
    color: var(--white);
    -webkit-text-fill-color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

.impact-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.impact-card:hover {
    transform: translateY(-18px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 35px 80px rgba(255, 255, 255, 0.1);
}

.impact-number {
    font-size: 4.5rem;
    color: var(--accent-light);
    margin-bottom: 1rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.impact-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 500;
}

.impact-vision {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.impact-vision h3 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vision-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.vision-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.22);
}

/* Why Different */
.why-different {
    padding: 100px 0;
    background: var(--bg);
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.diff-card {
    padding: 3rem 2.5rem;
    border-radius: 24px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diff-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(124, 179, 66, 0.2);
}

.diff-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.diff-card p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* FIXED: Partners - Visible Backgrounds */
.partners-section {
    padding: 100px 0;
}

.partners-marquee {
    margin-top: 4.5rem;
    overflow: hidden;
    padding: 2.5rem 0;
}

.partners-track {
    display: flex;
    gap: 5rem;
    animation: marquee-partners 35s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FAFAF8 0%, #F0F0ED 100%);
    border-radius: 16px;
    border: 2px solid rgba(124, 179, 66, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.2);
    border-color: rgba(124, 179, 66, 0.4);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F0 100%);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%) contrast(1.05);
    transition: filter 0.4s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%) contrast(1);
}

@keyframes marquee-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 10 - 5rem * 10)); }
}

/* Contact */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
    margin-bottom: 6rem;
}

.involve-card {
    padding: 4rem 3.5rem;
    border-radius: 28px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.involve-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(124, 179, 66, 0.2);
}

.involve-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
}

.involve-card p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.involve-note {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-light);
}

.contact-form-section {
    margin-top: 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item:hover {
    transform: translateX(12px) scale(1.02);
    box-shadow: 0 12px 35px rgba(124, 179, 66, 0.2);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--gray);
    font-size: 1rem;
}

.contact-form-container {
    padding: 4rem 3.5rem;
    border-radius: 28px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2.5px solid var(--gray-lighter);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(124, 179, 66, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 55px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.9;
}

.footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent-light);
    transform: translateX(6px);
    display: inline-block;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-mission {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    max-width: 850px;
    margin: 2rem auto 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .ps-grid, .products-grid, .different-grid, .involvement-grid { grid-template-columns: 1fr; }
    .stats-grid, .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-direction: column; }
    .step-arrow { transform: rotate(90deg); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active { left: 0; }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .nav-cta {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 1rem 2rem !important;
        margin-top: 1rem;
    }
    
    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 2.5rem; }
    .section-header h2 { font-size: 2.75rem; }
    .stats-grid, .impact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}