/* ============================================================
   NOVA ORGANICS — Premium Mango Export Website
   CSS Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
/* Color philosophy:
   Organic/natural tones dominate — warm greens, earthy creams, golden honey.
   Logo colors (blue #2570a7, navy #00367e) appear only at brand touchpoints:
   nav active state, trust/cert elements, footer.
   Logo orange #e2622d doubles as earthy CTA accent (terracotta/clay).        */
:root {
  /* ── Organic Primary: warm golden-amber (mango / honey) ── */
  --primary:        #d4860a;   /* warm honey-amber — CTAs, badges, highlights  */
  --primary-dark:   #b06c00;
  --primary-light:  #f0b84a;

  /* ── Organic Secondary: forest green ── */
  --secondary:      #3a7d44;   /* fresh forest green                           */
  --secondary-light:#5ca86a;
  --secondary-dark: #1d4a2e;   /* deep forest — icons, dark organic accents    */

  /* ── Logo brand: used only at brand touchpoints ── */
  --brand-blue:     #2570a7;   /* nav active/hover, links, cert/trust elements */
  --brand-navy:     #00367e;   /* footer, dark section backgrounds             */
  --brand-orange:   #e2622d;   /* logo orange — seasonal banner, hero tag      */

  /* ── Neutrals: warm earthy organic ── */
  --accent:         #fef8ec;   /* warm honeyed cream                           */
  --white:          #ffffff;
  --cream:          #fffdf6;   /* natural warm white                           */
  --light-bg:       #f6f3eb;   /* earthy warm off-white                        */
  --dark:           #1a1d1b;   /* near-black with slight green warmth          */
  --text:           #252d27;   /* dark forest-tinted text                      */
  --text-muted:     #6b7a6d;   /* muted green-gray                             */
  --border:         #ddd8cc;   /* warm tan border                              */
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:      0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.16);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:      'Playfair Display', Georgia, serif;
  --font-body:      'Poppins', sans-serif;
}

/* ---------- 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(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
.content-link, .footer-links a:hover { color: var(--brand-blue); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: var(--transition);
  background: var(--white);
  color: var(--text);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,134,10,0.18);
}
textarea { resize: vertical; min-height: 130px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.8; color: var(--text-muted); }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-bg { background: var(--light-bg); }
.section-dark { background: var(--secondary-dark); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---------- Section Heading ---------- */
.section-heading { margin-bottom: 3rem; }
.section-heading .tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--primary-dark);
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-heading h2 { margin-bottom: 1rem; color: var(--dark); }
.section-heading p { max-width: 600px; font-size: 1.05rem; }
.section-heading.centered { text-align: center; }
.section-heading.centered p { margin: 0 auto; }
.divider {
  width: 60px; height: 4px; background: var(--primary);
  border-radius: 2px; margin: 1rem 0;
}
.divider.centered { margin: 1rem auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--primary); color: var(--dark);
  box-shadow: 0 4px 15px rgba(212,134,10,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,134,10,0.45);
}
.btn-secondary {
  background: var(--secondary); color: var(--white);
  box-shadow: 0 4px 15px rgba(58,125,68,0.30);
}
.btn-secondary:hover {
  background: var(--secondary-dark); color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary); color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white); color: var(--secondary-dark);
}
.btn-dark {
  background: var(--dark); color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.28);
}
.btn-dark:hover {
  background: #000; color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.40);
}
.btn-whatsapp {
  background: #25d366; color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,0.38);
}
.btn-whatsapp:hover {
  background: #1da851; color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.50);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Badge ---------- */
.badge {
  display: inline-block; padding: 0.25rem 0.75rem;
  border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-primary { background: var(--primary); color: var(--dark); }
.badge-green   { background: var(--secondary); color: var(--white); }
.badge-light   { background: var(--accent); color: var(--primary-dark); }
.badge-seasonal { background: #d62828; color: white; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.7;} }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.nav-brand {
  display: flex; align-items: center;
}
.nav-brand img {
  height: 64px; width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.85rem; font-size: 0.88rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius-sm);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--primary);
  transition: var(--transition); border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { left: 0.85rem; right: 0.85rem; background: var(--brand-blue); }
.nav-links a:hover, .nav-links a.active { color: var(--brand-blue); }
.nav-cta { margin-left: 1rem; }
/* Transparent header state (hero page, at top) — white nav text */
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.88); }
.site-header:not(.scrolled) .nav-links a:hover,
.site-header:not(.scrolled) .nav-links a.active { color: var(--primary-light); }
.site-header:not(.scrolled) .nav-links a:hover::after,
.site-header:not(.scrolled) .nav-links a.active::after { background: var(--primary-light); }
.site-header:not(.scrolled) .hamburger span { background: rgba(255,255,255,0.9); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  cursor: pointer; border-radius: 6px;
}
.hamburger span {
  width: 24px; height: 2.5px; background: var(--secondary-dark);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px;
  height: 100vh; background: var(--white);
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  z-index: 1100; padding: 2rem 1.5rem;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 1.5rem; color: var(--text); cursor: pointer;
  background: var(--light-bg); width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.mobile-nav-logo { margin-bottom: 2.5rem; margin-top: 0.5rem; }
.mobile-nav-logo img { height: 50px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a {
  display: block; padding: 1rem 0; border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 500; color: var(--text);
}
.mobile-nav-links a:hover { color: var(--brand-blue); padding-left: 0.5rem; }
.mobile-nav-links .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 1050;
}
.overlay.open { display: block; }

/* ============================================================
   SEASONAL BANNER (inside header — collapses on scroll)
   ============================================================ */
.seasonal-banner {
  background: linear-gradient(90deg, var(--brand-navy), var(--brand-blue));
  color: var(--white); text-align: center;
  padding: 0.65rem 1rem; font-size: 0.84rem; font-weight: 500;
  overflow: hidden; max-height: 52px;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.28s ease;
  opacity: 1;
}
.seasonal-banner strong { color: var(--primary-light); }
.seasonal-banner a { color: var(--primary-light); font-weight: 600; text-decoration: underline; }
.site-header.scrolled .seasonal-banner {
  max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0;
}

/* ============================================================
   HERO — 2-Column Premium Layout with 3D Mango Visual
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #091710 0%, #112219 30%, #1a3d28 60%, #265438 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 5rem;
}
/* Warm amber glow — top-right */
.hero::before {
  content: ''; position: absolute;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,134,10,0.10) 0%, transparent 65%);
  top: -200px; right: -180px;
  pointer-events: none;
}
/* Cool green glow — bottom-left */
.hero::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(58,125,68,0.13) 0%, transparent 65%);
  bottom: -100px; left: -80px;
  pointer-events: none;
}

/* 2-column grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  position: relative; z-index: 2;
}

/* Left — text */
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.09); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.45rem 1.1rem; border-radius: 50px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--primary-light); margin-bottom: 1.4rem;
}
.hero h1 {
  color: var(--white); margin-bottom: 1.4rem;
  text-shadow: 0 3px 24px rgba(0,0,0,0.35);
  line-height: 1.15;
}
.hero h1 span { color: var(--primary-light); }
.hero-content > p {
  color: rgba(255,255,255,0.80); font-size: 1.02rem;
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.8;
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat-num {
  font-family: var(--font-head); font-size: 1.75rem;
  font-weight: 700; color: var(--primary-light); display: block;
}
.hero-stat-label { font-size: 0.70rem; color: rgba(255,255,255,0.62); text-transform: uppercase; letter-spacing: 0.07em; }

/* Right — 3D mango visual */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-mango-3d {
  perspective: 1000px;
  width: 100%; max-width: 440px;
}
.hero-mango-tilt {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.14s ease-out;
  will-change: transform;
}

/* Ambient glow */
.hero-glow {
  position: absolute; inset: -35px;
  background: radial-gradient(circle at 50% 55%, rgba(212,134,10,0.26) 0%, rgba(38,84,56,0.14) 48%, transparent 68%);
  border-radius: 50%;
  animation: glowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.60; transform: scale(1.10); }
}

/* Organic blob frame */
.hero-mango-blob {
  position: relative;
  width: 360px; height: 360px;
  margin: 0 auto;
  border-radius: 62% 38% 54% 46% / 55% 61% 39% 45%;
  animation: blobMorph 9s ease-in-out infinite;
  overflow: hidden;
  box-shadow: 0 28px 65px rgba(0,0,0,0.55), 0 0 45px rgba(212,134,10,0.16);
}
.hero-mango-blob img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.10);
  transition: transform 0.6s ease;
}
.hero-mango-tilt:hover .hero-mango-blob img { transform: scale(1.16); }
@keyframes blobMorph {
  0%,100% { border-radius: 62% 38% 54% 46% / 55% 61% 39% 45%; }
  20%      { border-radius: 46% 54% 42% 58% / 63% 44% 56% 37%; }
  40%      { border-radius: 57% 43% 68% 32% / 40% 57% 43% 60%; }
  60%      { border-radius: 38% 62% 47% 53% / 57% 38% 62% 43%; }
  80%      { border-radius: 52% 48% 35% 65% / 44% 60% 40% 56%; }
}

/* Floating leaf decorations */
.hero-float-leaf {
  position: absolute;
  font-size: 2.1rem; opacity: 0.55;
  pointer-events: none;
  animation: leafFloat 4.5s ease-in-out infinite;
}
.hero-float-leaf.leaf-1 { top: -22px; right: -6px;  animation-delay: 0s; }
.hero-float-leaf.leaf-2 { bottom: 6px; left: -18px; animation-delay: 1.9s; font-size: 1.6rem; }
.hero-float-leaf.leaf-3 { top: 38%; right: -22px;   animation-delay: 3.4s; font-size: 1.3rem; opacity: 0.40; }
@keyframes leafFloat {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-13px) rotate(9deg); }
}

/* Floating info badges */
.hero-badge {
  position: absolute;
  display: flex; align-items: center; gap: 0.6rem;
  background: rgba(8, 18, 12, 0.60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  white-space: nowrap;
  animation: badgeFloat 5.5s ease-in-out infinite;
}
.hero-badge.badge-top  { top: 10%;    right: -52px; animation-delay: 0s; }
.hero-badge.badge-btm  { bottom: 12%; left:  -52px; animation-delay: 2.6s; }
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
.hero-badge-icon { font-size: 1.4rem; flex-shrink: 0; }
.hero-badge-title { font-size: 0.76rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.hero-badge-sub   { font-size: 0.63rem; font-weight: 400; color: rgba(255,255,255,0.62); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(255,255,255,0.50); font-size: 0.73rem;
  animation: bounce 2.5s infinite; z-index: 2;
}
.hero-scroll i { display: block; font-size: 1.05rem; margin-top: 0.35rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(-8px);} }

/* ============================================================
   HIGHLIGHTS STRIP
   ============================================================ */
.highlights { background: var(--white); padding: 0; }
.highlights-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--primary);
}
.highlight-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.highlight-item:last-child { border-right: none; }
.highlight-item:hover { background: var(--light-bg); }
.highlight-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary-dark); flex-shrink: 0;
  transition: var(--transition);
}
.highlight-item:hover .highlight-icon { background: var(--primary); }
.highlight-text h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; color: var(--dark); margin-bottom: 0.2rem; }
.highlight-text p { font-size: 0.78rem; line-height: 1.4; margin: 0; }

/* ============================================================
   ABOUT SECTION (HOME)
   ============================================================ */
.about-home .about-img-wrap {
  position: relative;
}
.about-home .about-img-main {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-home .about-img-badge {
  position: absolute; bottom: 2rem; left: -1.5rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1rem 1.5rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 1rem;
}
.badge-number {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--primary);
  line-height: 1;
}
.badge-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); line-height: 1.3; }
.about-features { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-md);
  background: var(--light-bg); transition: var(--transition);
}
.about-feature:hover { background: var(--accent); }
.about-feature-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.about-feature h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.82rem; margin: 0; }

/* ============================================================
   PRODUCT CARDS  (used on home page preview + varieties page)
   ============================================================ */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--transition);
  border: 1.5px solid var(--border);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary);
}
.product-card-img {
  position: relative; height: 220px; overflow: hidden; flex-shrink: 0;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .card-badges {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.product-card-img .season-pill {
  position: absolute; bottom: 1rem; right: 1rem;
  background: rgba(0,0,0,0.52); backdrop-filter: blur(6px);
  color: #fff; padding: 0.3rem 0.85rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
}
.product-card-body { padding: 1.5rem 1.5rem 0; flex: 1; }
.product-card-body h3 { font-size: 1.25rem; color: var(--dark); margin-bottom: 0.15rem; }
.product-card-subtitle { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin-bottom: 1rem; }
.product-card-desc {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem; margin-bottom: 1.25rem;
}
.spec-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.spec-item i { color: var(--primary); font-size: 0.78rem; margin-top: 0.22rem; width: 14px; flex-shrink: 0; }
.spec-item span { font-size: 0.8rem; line-height: 1.4; }
.spec-item span strong { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); font-weight: 600; }
.spec-item span em { font-style: normal; color: var(--dark); font-weight: 500; font-size: 0.82rem; }
.taste-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.25rem; }
.taste-tag {
  padding: 0.22rem 0.75rem; border-radius: 50px;
  background: var(--accent); font-size: 0.72rem; font-weight: 500;
  color: var(--secondary-dark); border: 1px solid var(--border);
}
.product-card-footer {
  padding: 1.1rem 1.5rem; border-top: 1px solid var(--border);
  display: flex; gap: 0.75rem; align-items: center; background: var(--cream);
}
.product-card-footer .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 0.65rem 1rem; }
.moq-label { font-size: 0.72rem; color: var(--text-muted); text-align: right; white-space: nowrap; }
.moq-label strong { display: block; color: var(--secondary-dark); font-size: 0.82rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  text-align: center; padding: 2.5rem 2rem;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--primary); transform: scaleX(0);
  transition: var(--transition); transform-origin: left;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--primary-dark);
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--secondary); color: var(--white); }
.why-card h3 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.88rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: var(--white); padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-number {
  font-family: var(--font-head); font-size: 3rem; font-weight: 700;
  color: var(--primary-light); line-height: 1; display: block; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-icon { font-size: 1.5rem; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  position: relative; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-head);
  font-size: 5rem; color: var(--accent); line-height: 1;
  position: absolute; top: -0.5rem; left: 1.5rem; font-weight: 700;
}
.testimonial-body { padding-top: 1.5rem; margin-bottom: 1.5rem; }
.testimonial-body p { font-style: italic; color: var(--text); font-size: 0.92rem; }
.testimonial-stars { color: var(--primary); font-size: 0.9rem; margin-bottom: 0.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); margin-bottom: 0.1rem; }
.testimonial-location { font-size: 0.76rem; color: var(--text-muted); }
.testimonial-flag { font-size: 1.2rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  text-align: center; padding: 80px 0;
}
.cta-section h2 { color: var(--dark); margin-bottom: 1rem; }
.cta-section p { color: rgba(0,0,0,0.65); max-width: 560px; margin: 0 auto 2.5rem; }

/* ============================================================
   CERTIFICATIONS (export page)
   ============================================================ */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cert-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 2px solid transparent;
}
.cert-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cert-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--accent); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--primary-dark);
}
.cert-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.82rem; }

.process-steps { display: flex; gap: 0; flex-wrap: wrap; }
.process-step {
  flex: 1; min-width: 160px; text-align: center;
  padding: 2rem 1rem; position: relative;
}
.process-step:not(:last-child)::after {
  content: '→'; position: absolute; right: -0.5rem; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--primary);
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; font-family: var(--font-head);
  margin: 0 auto 1rem;
}
.process-step h4 { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.78rem; }

.countries-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.country-item {
  text-align: center; padding: 1.2rem 0.75rem;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.country-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.country-flag { font-size: 2rem; margin-bottom: 0.5rem; }
.country-name { font-size: 0.75rem; font-weight: 500; color: var(--text); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter {
  padding: 0.5rem 1.2rem; border-radius: 50px;
  border: 2px solid var(--border); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); color: var(--text); background: var(--white);
}
.gallery-filter:hover, .gallery-filter.active {
  background: var(--primary); border-color: var(--primary); color: var(--dark);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  cursor: pointer; aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(29,74,46,0.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white); font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: white; font-size: 2rem; cursor: pointer; z-index: 1;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border-radius: 50%;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--light-bg); border-radius: var(--radius-md);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { background: var(--accent); }
.contact-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--secondary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-card h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--text); margin: 0; line-height: 1.6; }
.contact-card a:hover { color: var(--primary-dark); }
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card h3 { font-size: 1.5rem; margin-bottom: 1.75rem; color: var(--dark); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 3rem; }
.map-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; cursor: pointer; font-weight: 600;
  font-size: 0.95rem; color: var(--dark); gap: 1rem;
}
.faq-question i { color: var(--primary); font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 1.25rem; }
.faq-answer p { font-size: 0.9rem; margin: 0; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 100%);
  color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero::after {
  content: ''; position: absolute; left: -60px; bottom: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(58,125,68,0.10);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.82rem;
  color: rgba(255,255,255,0.6); margin-top: 1rem; position: relative; z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb i { font-size: 0.65rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-navy); color: rgba(255,255,255,0.75); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 50px; margin-bottom: 1.25rem; filter: brightness(2); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.social-icon:hover { background: var(--primary); color: var(--dark); }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.5rem; position: relative;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: -0.5rem; left: 0;
  width: 28px; height: 2px; background: var(--primary);
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.6;
}
.footer-contact-item i { color: var(--primary); margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-cert-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.cert-badge {
  padding: 0.3rem 0.8rem; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.7rem; color: rgba(255,255,255,0.6); font-weight: 500;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: whatsapp-pulse 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); color: white; }
@keyframes whatsapp-pulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.45);}
  50%{box-shadow:0 6px 32px rgba(37,211,102,0.8);}
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-home > .container > .grid-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .product-cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .countries-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-stats { gap: 1.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { order: -1; }
  .hero-mango-blob { width: 280px; height: 280px; }
  .hero-badge.badge-top { right: -10px; top: 5%; }
  .hero-badge.badge-btm { left: -10px; bottom: 5%; }
  .hero { padding-top: 160px; padding-bottom: 4rem; }
  .process-step:not(:last-child)::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .section { padding: 55px 0; }
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid var(--border); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .product-cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stats > div { flex: 1 1 calc(50% - 0.5rem); }
  .hero-mango-blob { width: 240px; height: 240px; }
  .hero-badge { display: none; }
  .hero-float-leaf { font-size: 1.5rem; }
  .hero { padding-top: 140px; }
  .about-home .about-img-badge { left: 0.5rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .process-steps { flex-direction: column; align-items: center; }
}
