/* ============================================
   BKB Trading & Consultants - Stylesheet
   A fresh, earthy design for agricultural excellence
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Rustic Earth Tones */
    --green-deep: #3D5A3D;
    --green-medium: #5B7355;
    --green-light: #7A9473;
    --green-pale: #E5EDE3;
    
    /* Accent Colors - Harvest & Terracotta */
    --orange-primary: #C67B4E;
    --orange-light: #DBA17A;
    --orange-pale: #F5E6D8;
    
    --tomato: #A64B2A;
    --tomato-light: #C46E4D;
    --tomato-pale: #F2E0D6;
    
    /* Rustic Neutral Palette */
    --cream: #FAF6F0;
    --cream-dark: #EDE6DA;
    --brown-dark: #2C1810;
    --brown-medium: #5C4A3D;
    --brown-light: #8B7355;
    
    /* Earthy Utility Colors */
    --blue-accent: #4A6B8A;
    --purple-accent: #7B5B6A;
    --white: #FFFEF9;
    --black: #1A1510;
    
    /* New Rustic Colors */
    --burlap: #D4C4A8;
    --soil: #3E2C1C;
    --wheat: #E8D4B8;
    --sage: #9CAF88;
    --terracotta: #C45C3E;
    --bark: #4A3728;
    
    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-medium: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(61, 46, 31, 0.08);
    --shadow-md: 0 4px 20px rgba(61, 46, 31, 0.12);
    --shadow-lg: 0 8px 40px rgba(61, 46, 31, 0.16);
    --shadow-xl: 0 16px 60px rgba(61, 46, 31, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--brown-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4c4a8' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    width: 48px;
    height: 48px;
    transition: transform var(--transition-medium);
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-deep);
    line-height: 1;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--brown-medium);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--brown-dark);
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-medium);
    transition: width var(--transition-medium);
}

.nav-menu a:hover {
    color: var(--green-deep);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--green-deep) !important;
    color: var(--white) !important;
    padding: var(--space-sm) var(--space-lg) !important;
    border-radius: var(--radius-full);
    transition: all var(--transition-medium) !important;
}

.nav-cta:hover {
    background: var(--green-medium) !important;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    border-radius: 2px;
    transition: all var(--transition-medium);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(61, 90, 61, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(198, 123, 78, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 60%, rgba(166, 75, 42, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, var(--cream) 0%, var(--wheat) 100%);
    background-image: 
        radial-gradient(ellipse at 20% 80%, rgba(61, 90, 61, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(198, 123, 78, 0.15) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%235b7355' fill-opacity='0.05'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brown-medium);
    margin-bottom: var(--space-xl);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--green-deep);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--brown-medium);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* Buttons - Rustic Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    text-decoration: none;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-medium) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(61, 90, 61, 0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 2px solid var(--green-deep);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-deep) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(61, 90, 61, 0.45);
}

.btn-secondary {
    background: var(--wheat);
    color: var(--brown-dark);
    border: 2px solid var(--burlap);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: var(--cream);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--brown-dark);
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    animation: fadeSlideUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--green-deep);
    line-height: 1;
}

.stat-plus, .stat-slash {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--orange-primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--brown-medium);
    margin-top: var(--space-xs);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: 1;
}

.floating-produce {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 80%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
    animation: fadeSlideUp 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.produce-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

.produce-1 { top: 5%; left: 10%; animation-delay: 0s; width: 70px; height: 70px; }
.produce-2 { top: 20%; left: 75%; animation-delay: 0.5s; width: 65px; height: 65px; }
.produce-3 { top: 70%; left: 5%; animation-delay: 1s; width: 60px; height: 60px; }
.produce-5 { top: 75%; left: 70%; animation-delay: 2s; width: 75px; height: 75px; }
.produce-6 { top: 40%; left: 85%; animation-delay: 2.5s; width: 70px; height: 70px; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--wheat) 0%, var(--burlap) 100%);
    color: var(--brown-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    border: 1px solid var(--burlap);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown-dark);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--green-deep);
}

.section-description {
    font-size: 1.1rem;
    color: var(--brown-medium);
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c67b4e' fill-opacity='0.06'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about-text {
    margin-bottom: var(--space-xl);
}

.about-text p {
    margin-bottom: var(--space-md);
    color: var(--brown-medium);
}

.about-text .lead {
    font-size: 1.15rem;
    color: var(--brown-dark);
}

.about-text strong {
    color: var(--green-deep);
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--cream);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--green-medium);
}

.info-icon {
    font-size: 1.5rem;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brown-light);
    margin-bottom: var(--space-xs);
}

.info-value {
    font-weight: 500;
    color: var(--brown-dark);
    font-size: 0.95rem;
}

/* Feature Cards */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    padding: var(--space-xl);
    background: linear-gradient(145deg, var(--cream) 0%, var(--wheat) 100%);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    border: 1px solid var(--burlap);
    box-shadow: 0 2px 8px rgba(60, 40, 20, 0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--brown-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--brown-medium);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--wheat) 100%);
    background-image: 
        linear-gradient(180deg, var(--cream) 0%, var(--wheat) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%233d5a3d' fill-opacity='0.04'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0l28-28v2L54 40h-2zm4 0l24-24v2L58 40h-2zm4 0l20-20v2L62 40h-2zm4 0l16-16v2L66 40h-2zm4 0l12-12v2L70 40h-2zm4 0l8-8v2l-6 6h-2zm4 0l4-4v2l-2 2h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--burlap);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary), var(--terracotta));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-primary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--brown-dark);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--brown-medium);
    margin-bottom: var(--space-lg);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--green-deep);
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--green-pale);
    border-radius: 50%;
    font-size: 0.7rem;
}

/* ============================================
   Products Section
   ============================================ */
.products {
    background: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235b7355' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.tab-btn {
    padding: var(--space-md) var(--space-xl);
    background: var(--wheat);
    border: 2px solid var(--burlap);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--brown-medium);
    cursor: pointer;
    transition: all var(--transition-medium);
}

.tab-btn:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: var(--cream);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-medium) 100%);
    border-color: var(--green-deep);
    color: var(--white);
}

.product-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.product-grid.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    background: linear-gradient(145deg, var(--cream) 0%, var(--wheat) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    border: 2px solid var(--burlap);
    box-shadow: 0 2px 8px rgba(60, 40, 20, 0.1);
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-primary);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-card.organic {
    background: linear-gradient(145deg, var(--green-pale) 0%, var(--cream) 100%);
    border: 2px solid var(--sage);
}

.product-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium);
    border: 3px solid var(--white);
}

.product-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: var(--space-xs);
}

.product-card p {
    font-size: 0.8rem;
    color: var(--brown-light);
}

.organic-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: linear-gradient(135deg, var(--sage) 0%, var(--green-medium) 100%);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-md);
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid var(--green-deep);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ============================================
   Operations Section
   ============================================ */
.operations {
    background: linear-gradient(180deg, var(--wheat) 0%, var(--cream) 100%);
    background-image: 
        linear-gradient(180deg, var(--wheat) 0%, var(--cream) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23c67b4e' fill-opacity='0.04'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.operations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.operations-description {
    font-size: 1.1rem;
    color: var(--brown-medium);
    margin-bottom: var(--space-2xl);
}

.operations-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.op-stat {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--burlap);
}

.op-stat-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.op-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--green-deep);
    line-height: 1;
}

.op-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--brown-medium);
}

.operations-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.op-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--brown-dark);
}

.op-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--green-deep) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.8rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Coverage Map */
.coverage-map {
    background: linear-gradient(145deg, var(--cream) 0%, var(--wheat) 100%);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--burlap);
}

.coverage-map h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.map-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.india-map {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.state {
    transition: all var(--transition-medium);
    cursor: pointer;
}

.state:hover {
    opacity: 1 !important;
    filter: brightness(1.1);
}

.state-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    fill: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.city-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    fill: var(--brown-dark);
}

.farmer-icon circle {
    fill: var(--white);
    stroke: var(--orange-primary);
    stroke-width: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--brown-medium);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--soil) 0%, var(--bark) 100%);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(198, 123, 78, 0.15) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--orange-primary) 100%);
    box-shadow: 0 4px 20px rgba(196, 92, 62, 0.5);
    border: 2px solid var(--terracotta);
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--terracotta) 100%);
    color: var(--white);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: linear-gradient(145deg, var(--cream) 0%, var(--wheat) 100%);
    border-radius: var(--radius-lg);
    transition: all var(--transition-medium);
    border: 1px solid var(--burlap);
}

.contact-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--orange-primary);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 50%;
    color: var(--green-deep);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: var(--space-sm);
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--brown-medium);
    line-height: 1.6;
}

.contact-details a {
    color: var(--green-deep);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--green-medium);
}

.highlight-text {
    color: var(--green-deep);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(145deg, var(--cream) 0%, var(--wheat) 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid var(--burlap);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--brown-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brown-dark);
    background: var(--white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-medium);
    box-shadow: 0 0 0 3px var(--green-pale);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--brown-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--soil) 0%, var(--black) 100%);
    color: var(--cream);
    padding: var(--space-4xl) 0 var(--space-xl);
    background-image: 
        linear-gradient(180deg, var(--soil) 0%, var(--black) 100%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-main {
    color: var(--cream);
}

.footer-brand .logo-sub {
    color: var(--brown-light);
}

.footer-description {
    font-size: 0.95rem;
    color: var(--brown-light);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--brown-light);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--brown-light);
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--orange-primary);
}

.footer-contact a {
    color: var(--orange-primary);
}

.footer-contact a:hover {
    color: var(--orange-light);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--brown-light);
}

.footer-bottom .cin {
    font-size: 0.8rem;
    margin-top: var(--space-sm);
    opacity: 0.7;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-visual {
        width: 45%;
        right: -10%;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-4xl) var(--space-xl);
        gap: var(--space-lg);
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .about-grid,
    .operations-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 var(--space-lg);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-tabs {
        flex-wrap: wrap;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .operations-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
        --space-3xl: 2.5rem;
        --space-4xl: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        padding: var(--space-sm) var(--space-lg);
    }
    
    .map-legend {
        flex-direction: column;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-visual,
    .cta-section,
    .contact-form-wrapper {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    section {
        page-break-inside: avoid;
    }
}
