/* ============================================
   SEETHA ORGANIC FARM - Premium Website CSS
   Forest Green: #2D6A4F
   Earth Brown: #7F5539
   Wheat Gold: #DDA15E
   Cream White: #FEFAE0
   Fresh Mint: #95D5B2
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --green: #2D6A4F;
  --green-dark: #1B4332;
  --green-light: #40916C;
  --brown: #7F5539;
  --brown-light: #9C6644;
  --gold: #DDA15E;
  --gold-light: #E6B87A;
  --cream: #FEFAE0;
  --mint: #95D5B2;
  --mint-light: #B7E4C7;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset & Base ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; }

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

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.gold-text { color: var(--gold); }
.green-text { color: var(--green); }

/* ----- Glassmorphism Utility ----- */
.glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-md);
}

/* ----- Section Dividers (Curved SVG) ----- */
.divider-top, .divider-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}
.divider-top { top: -1px; }
.divider-bottom { bottom: -1px; transform: rotate(180deg); }
.divider-top svg, .divider-bottom svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(221, 161, 94, 0.3);
}
.btn-gold:hover {
  background: #C8923F;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(221, 161, 94, 0.4);
}

/* ----- Floating Leaves Animation ----- */
.leaf {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  font-size: 3rem;
  animation: floatLeaf 12s ease-in-out infinite;
}
.leaf:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.leaf:nth-child(2) { top: 40%; right: 8%; animation-delay: -3s; font-size: 2.5rem; }
.leaf:nth-child(3) { top: 70%; left: 10%; animation-delay: -6s; font-size: 2rem; }
.leaf:nth-child(4) { bottom: 15%; right: 5%; animation-delay: -9s; font-size: 3.5rem; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-20px) rotate(5deg) scale(1.05); }
  50% { transform: translateY(-10px) rotate(-5deg) scale(0.95); }
  75% { transform: translateY(-30px) rotate(3deg) scale(1.02); }
}

/* ----- Fade-In Animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ----- Stagger animation for children ----- */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }
.stagger > *:nth-child(7) { transition-delay: 0.7s; }
.stagger > *:nth-child(8) { transition-delay: 0.8s; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(254, 250, 224, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); }

.nav-cta {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45,106,79,0.3) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(221, 161, 94, 0.35);
}
.hero-btn-primary:hover {
  background: #C8923F;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(221, 161, 94, 0.45);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.hero-btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-image-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-slow);
}
.hero-image-main:hover {
  transform: perspective(1000px) rotateY(0deg);
}
.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

/* ============================================
   FEATURED PRODUCTS SECTION
   ============================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-body {
  padding: 22px;
}

.product-card-body h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.product-card-btn {
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}
.product-card-btn:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================
   STATS / COUNTERS
   ============================================ */
.stats-section {
  background: var(--green-dark);
  color: var(--white);
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

/* ============================================
   SUSTAINABILITY
   ============================================ */
.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sustainability-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.sustain-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.sustain-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--mint-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
}
.sustain-text h4 {
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.sustain-text p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--gray-light);
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--green-dark);
  text-align: left;
}
.testimonial-role {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: left;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dot.active {
  background: var(--green);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   FARM TO TABLE PROCESS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  counter-increment: step;
}

.process-step::before {
  content: counter(step);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  z-index: 2;
}

.process-icon {
  width: 90px;
  height: 90px;
  margin: 30px auto 20px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--green);
  transition: var(--transition);
}
.process-step:hover .process-icon {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.process-step h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.newsletter p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  font-size: 0.95rem;
  background: var(--white);
}

.newsletter-form button {
  padding: 16px 32px;
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.newsletter-form button:hover {
  background: #C8923F;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.65);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulseWhatsApp 2s infinite;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulseWhatsApp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* Mission / Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-card, .vision-card {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.mission-card::before, .vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.mission-card::before { background: var(--green); }
.vision-card::before { background: var(--gold); }

.mission-card h3, .vision-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.mission-card p, .vision-card p {
  color: var(--gray);
  line-height: 1.8;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--mint), var(--green));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 50%;
  border: 4px solid var(--mint-light);
}

.timeline-item h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-item .year {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

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

/* Farmer Profiles */
.farmer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.farmer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.farmer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.farmer-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 4px solid var(--mint-light);
}

.farmer-card h4 {
  font-size: 1.1rem;
  color: var(--green-dark);
  font-weight: 700;
}
.farmer-card .role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin: 4px 0 12px;
}
.farmer-card p {
  font-size: 0.88rem;
  color: var(--gray);
}

/* Impact Numbers */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.impact-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.impact-card h3 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  margin-bottom: 8px;
}
.impact-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  color: var(--gray);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-detail-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.product-detail-card:hover .product-detail-image img {
  transform: scale(1.08);
}

.product-detail-body {
  padding: 28px;
}

.product-detail-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.product-detail-body .category-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--mint-light);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-detail-body .description {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.benefit-tag {
  padding: 4px 12px;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--brown);
  font-weight: 500;
}

.product-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-overlay p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 40px;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* Gallery Tabs */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.gallery-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--white);
  color: var(--gray);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  cursor: pointer;
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--green);
  color: var(--white);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--cream);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--mint-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
}

.contact-info-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  background: var(--white);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover {
  background: var(--cream);
}

.faq-question .faq-icon {
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--green);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-dark);
  z-index: 99999;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s ease;
}
.page-transition.active {
  transform: scaleY(1);
  transform-origin: top;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-image-wrapper { display: none; }
  .sustainability-grid { grid-template-columns: 1fr; gap: 40px; }
  .sustainability-image { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .mobile-cta { display: flex !important; }

  .hero { padding-top: 80px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat h3 { font-size: 1.6rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item h3 { font-size: 2rem; }

  .section { padding: 60px 0; }

  .mission-vision { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 0; }

  .contact-form-wrapper,
  .contact-info-card { padding: 24px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: auto; grid-column: auto; aspect-ratio: 1; }

  .form-row { grid-template-columns: 1fr; }

  .page-hero { padding: 130px 0 60px; }

  .newsletter-form { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-form input { border-radius: 0; }
  .newsletter-form button { border-radius: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .product-card-image { height: 180px; }
  .product-detail-image { height: 200px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
