/* =============================================
   KRUSHIQO EXPORT PVT LTD – MAIN STYLESHEET
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --primary: #0a4c2a;
  --primary-light: #136b3c;
  --primary-dark: #062e19;
  --gold: #c8973a;
  --gold-light: #e8b55a;
  --gold-dark: #a67c28;
  --accent: #4caf50;
  --accent-light: #81c784;
  --white: #ffffff;
  --off-white: #f8f9f4;
  --light-bg: #f0f4ed;
  --text-dark: #1a1a1a;
  --text-medium: #3d3d3d;
  --text-light: #6b7280;
  --border: #e2e8d5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(200,151,58,0.25);
  --shadow-green: 0 8px 30px rgba(10,76,42,0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Montserrat', 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-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============ SELECTION ============ */
::selection { background: var(--gold); color: var(--white); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; }

.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-tag::before {
  content: ''; width: 24px; height: 2px; background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--primary-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: .9rem; color: var(--text-light);
  max-width: 600px; line-height: 1.8;
}

/* ============ UTILITY CLASSES ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }
.text-center .section-tag::after { content: ''; width: 24px; height: 2px; background: var(--gold); }

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px;
  transition: var(--transition); position: relative; overflow: hidden;
}

.btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: rgba(255,255,255,0.15); transition: var(--transition);
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white); box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(10,76,42,0.4); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
  color: var(--white); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200,151,58,0.4); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: var(--white); color: var(--primary); transform: translateY(-3px); }

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

.btn-sm { padding: 10px 24px; font-size: 0.82rem; }
.btn-lg { padding: 12px 34px; font-size: 15px; }

.btn-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--light-bg); color: var(--primary); transition: var(--transition);
}
.btn-icon:hover { background: var(--primary); color: var(--white); transform: scale(1.1); }

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 40px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 0 40px;
}

.nav-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

.nav-logo-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--shadow-green); transition: var(--transition);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-5deg) scale(1.05); }

.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--white); line-height: 1.1; transition: var(--transition);
}
.navbar.scrolled .nav-logo-name { color: var(--primary-dark); }
.nav-logo-tagline {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light); transition: var(--transition);
}
.navbar.scrolled .nav-logo-tagline { color: var(--gold); }

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

.nav-link {
  padding: 8px 16px; border-radius: 8px;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.9); letter-spacing: 0.3px;
  transition: var(--transition); position: relative;
}
.navbar.scrolled .nav-link { color: var(--text-medium); }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--primary); background: var(--light-bg); }

.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold); transition: var(--transition); border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after { width: 20px; }

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 26px; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .nav-hamburger span { background: var(--primary); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg); z-index: 999;
  padding: 24px; flex-direction: column; gap: 8px;
  border-top: 3px solid var(--gold);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  color: var(--text-medium); padding: 12px 20px; border-radius: 10px;
}
.mobile-menu .nav-link:hover { background: var(--light-bg); color: var(--primary); }

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 40%, #1a6b3a 70%, #0d4a28 100%);
}

#particles-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}

.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,151,58,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  z-index: 2;
}

.hero-content { position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; padding: 120px 40px 100px; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,151,58,0.15); border: 1px solid rgba(200,151,58,0.3);
  border-radius: 50px; padding: 8px 20px; margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); animation: pulse 2s infinite; }
.hero-badge-text { font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

.hero-title {
  font-size: clamp(2.8rem, 5vw, 3.5rem); font-weight: 800;
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.hero-title .accent-word { color: var(--gold-light); display: block; }

.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  line-height: 1.9; margin-bottom: 40px; max-width: 540px;
}

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

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }

.hero-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stat:last-child { border-right: none; padding-right: 0; }

.hero-stat-number {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--gold-light); line-height: 1;
}

.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.hero-globe {
  width: 380px; height: 380px; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 35% 35%, rgba(200,151,58,0.2), transparent 60%),
              linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(200,151,58,0.15) 50%, rgba(10,76,42,0.3) 100%);
  border: 1px solid rgba(200,151,58,0.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 80px rgba(200,151,58,0.15), inset 0 0 80px rgba(10,76,42,0.2);
  animation: globeFloat 6s ease-in-out infinite;
}

.hero-globe-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(200,151,58,0.2);
}
.ring-1 { width: 440px; height: 440px; animation: ringRotate 20s linear infinite; }
.ring-2 { width: 500px; height: 500px; animation: ringRotate 30s linear infinite reverse; border-style: dashed; }
.ring-3 { width: 560px; height: 560px; animation: ringRotate 40s linear infinite; border-color: rgba(255,255,255,0.08); }

.hero-globe-icon {
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.earth-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 28px rgba(64,168,255,0.55))
          drop-shadow(0 0 60px rgba(64,168,255,0.18));
  animation: earthWobble 11s ease-in-out infinite,
             earthGlowPulse 5s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes earthWobble {
  0%   { transform: perspective(900px) rotateY(-10deg) rotateX(4deg); }
  50%  { transform: perspective(900px) rotateY(10deg)  rotateX(-4deg); }
  100% { transform: perspective(900px) rotateY(-10deg) rotateX(4deg); }
}

@keyframes earthGlowPulse {
  0%, 100% {
    filter: drop-shadow(0 0 24px rgba(64,168,255,0.50))
            drop-shadow(0 0 55px rgba(64,168,255,0.16));
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(64,168,255,0.75))
            drop-shadow(0 0 80px rgba(64,168,255,0.28));
  }
}

.hero-floating-card {
  position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; min-width: 170px;
  border: 1px solid rgba(255,255,255,0.5);
}
.card-1 { top: 10%; right: -10%; animation: cardFloat1 4s ease-in-out infinite; }
.card-2 { bottom: 15%; left: -10%; animation: cardFloat2 5s ease-in-out infinite; }
.card-3 { top: 45%; right: -15%; animation: cardFloat1 6s ease-in-out infinite reverse; }

.floating-card-icon { font-size: 1.8rem; }
.floating-card-info { display: flex; flex-direction: column; gap: 2px; }
.floating-card-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); }
.floating-card-value { font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: var(--primary); }

/* ============ HERO BACKGROUND SWIPER ============ */
.hero-bg-swiper {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
}

.hero-bg-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
  transform: scale(1.08);
}

/* Ken Burns zoom-out on active slide */
.swiper-slide-active .hero-bg-slide {
  transform: scale(1.0);
  transition: transform 8000ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Per-slide dark overlay – keeps text legible over any image */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(3,24,12,0.90) 0%, rgba(8,50,26,0.80) 45%, rgba(3,24,12,0.74) 100%),
    linear-gradient(to right, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 60%);
}

/* Pagination bullets – pill style */
.hero-swiper-dots {
  bottom: 76px !important;
  z-index: 4 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-swiper-dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: rgba(255,255,255,0.38);
  opacity: 1;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1),
              background 0.4s ease;
  margin: 0 !important;
}

.hero-swiper-dots .swiper-pagination-bullet-active {
  width: 32px;
  height: 8px;
  border-radius: 50px;
  background: var(--gold);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  z-index: 3; cursor: pointer; transition: var(--transition);
}
.hero-scroll:hover { color: var(--gold-light); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ============ SECTIONS COMMON ============ */
.section-header { margin-bottom: 60px; }

/* ============ MARQUEE / TICKER ============ */
.marquee-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 14px 0; overflow: hidden;
}
.marquee-inner { display: flex; gap: 0; }
.marquee-track {
  display: flex; gap: 0; animation: marquee 30s linear infinite; white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); padding: 0 30px;
}
.marquee-item span { color: var(--gold-light); }
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ============ ABOUT SECTION ============ */
.about-section { background: var(--white); }

.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 4/5;
}

.about-img-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img-main:hover .about-img-photo { transform: scale(1.04); }

.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border: 3px solid var(--gold);
}
.about-badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.about-badge-txt { font-size: 0.75rem; font-weight: 600; color: var(--text-light); text-align: center; letter-spacing: 0.5px; }

.about-content { padding: 20px 0; }

.about-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }

.about-feature {
  display: flex; gap: 14px; padding: 18px; border-radius: var(--radius-md);
  background: var(--off-white); border: 1px solid var(--border);
  transition: var(--transition);
}
.about-feature:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); }

.about-feature-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.45rem;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}
.about-feature-text h4 { font-size: 0.88rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 2px; font-family: var(--font-display); }
.about-feature-text p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ============ PRODUCTS PREVIEW ============ */
.products-section { background: var(--light-bg); }

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

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

.product-card-img {
  height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.product-card-img-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
  transition: var(--transition);
}
.product-card:hover .product-card-img-bg { transform: scale(1.05); }
.product-icon-large { font-size: 4rem; position: relative; z-index: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); transition: var(--transition); }
.product-card:hover .product-icon-large { transform: scale(1.1) rotate(-5deg); }

.product-card-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--primary); color: var(--white);
  border-radius: 50px; padding: 4px 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.product-card-badge.gold { background: var(--gold); }

.product-card-body { padding: 24px; }
.product-card-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.product-card-name { font-size: 1.15rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; font-family: var(--font-display); }
.product-card-botanical { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-bottom: 12px; }
.product-card-desc { font-size: 0.83rem; color: var(--text-medium); line-height: 1.6; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.product-card-specs { display: flex; gap: 12px; }
.spec-tag { font-size: 0.68rem; font-weight: 600; color: var(--primary); background: var(--light-bg); padding: 4px 10px; border-radius: 20px; }

/* ============ WHY CHOOSE US ============ */
.why-section { background: transparent; position: relative; isolation: isolate; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.why-card {
  padding: 28px 24px 26px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.82);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  position: relative; overflow: hidden;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 4px 20px rgba(10,50,20,0.09), 0 1px 4px rgba(0,0,0,0.05);
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(10,50,20,0.16), 0 4px 12px rgba(0,0,0,0.07); border-color: rgba(255,255,255,0.98); }
.why-card:hover::after { transform: scaleX(1); }

/* Highlighted/featured tile – dark green */
.why-card.highlight {
  background: rgba(8,60,30,0.91);
  border-color: rgba(200,151,58,0.45);
  box-shadow: 0 12px 40px rgba(8,60,30,0.35), 0 2px 8px rgba(0,0,0,0.12);
}
.why-card.highlight::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--gold), #e8b84b);
}
.why-card.highlight .why-title { color: var(--white); }
.why-card.highlight .why-text { color: rgba(255,255,255,0.72); }
.why-card.highlight .why-icon {
  background: rgba(200,151,58,0.18);
  border: 1px solid rgba(200,151,58,0.38);
}
.why-card.highlight:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(8,60,30,0.45); }

.why-icon {
  width: 58px; height: 58px; border-radius: 14px; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(10,76,42,0.07), rgba(10,76,42,0.03));
  border: 1px solid rgba(10,76,42,0.10);
  display: flex; align-items: center; justify-content: center; font-size: 1.75rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(4deg); background: linear-gradient(135deg, var(--primary), var(--primary-light)); }

.why-title { font-family: var(--font-display); font-size: 0.96rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; line-height: 1.3; }
.why-text { font-size: 0.81rem; color: var(--text-light); line-height: 1.7; }

/* ============ FARMER SECTION ============ */
.farmer-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1e6b3a 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}

.farmer-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,58,0.12) 0%, transparent 70%);
}

.farmer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

.farmer-content .section-tag { color: var(--gold-light); }
.farmer-content .section-tag::before { background: var(--gold-light); }
.farmer-content .section-title { color: var(--white); }
.farmer-content .section-subtitle { color: rgba(255,255,255,0.75); max-width: 100%; }

.farmer-stats-row { display: flex; gap: 40px; margin: 40px 0; }

.farmer-stat-item { display: flex; flex-direction: column; gap: 4px; }
.farmer-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold-light); }
.farmer-stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

.farmer-visual { position: relative; display: flex; justify-content: center; }

.farmer-card-main {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-xl);
  padding: 40px; text-align: center;
  position: relative;
}

.farmer-icon-big { font-size: 6rem; margin-bottom: 16px; }
.farmer-card-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.farmer-card-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.farmer-mini-cards { display: flex; gap: 12px; margin-top: 20px; }
.farmer-mini-card {
  flex: 1; background: rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 16px 12px; text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.farmer-mini-icon { font-size: 1.6rem; margin-bottom: 6px; }
.farmer-mini-label { font-size: 0.72rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ============ QUALITY HIGHLIGHT ============ */
.quality-section { background: var(--off-white); }

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.quality-steps { display: flex; flex-direction: column; gap: 0; }
.quality-step {
  display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.quality-step:last-child { border-bottom: none; }
.quality-step:hover { padding-left: 8px; }

.quality-step-num {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
}

.quality-step-content h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.quality-step-content p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

.quality-visual {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-xl); padding: 50px; display: flex; flex-direction: column; gap: 28px;
  position: relative; overflow: hidden;
}
.quality-visual::before {
  content: ''; position: absolute; bottom: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(200,151,58,0.1);
}

.quality-cert {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15); transition: var(--transition);
}
.quality-cert:hover { background: rgba(255,255,255,0.15); transform: translateX(6px); }
.quality-cert-icon { font-size: 1.6rem; }
.quality-cert-name { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--white); }
.quality-cert-desc { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ============ GLOBAL PRESENCE — WORLD MAP ============ */
.global-section { background: var(--white); }

/* Map wrapper */
.world-map-wrapper {
  position: relative;
  margin-top: 48px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 8px 40px rgba(10,76,42,0.10), 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid rgba(10,76,42,0.12); */
}

.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
}

.world-map-svg > rect {
  fill: #fff;
}

/* Canvas overlay sits on top */
.map-canvas-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Loading placeholder */
.wm-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(10,76,42,0.4); font-size: 0.82rem; letter-spacing: 1px;
}

/* ── Graticule grid ── */
.wm-graticule {
  fill: none;
  stroke: transparent;
  stroke-width: 0;
}

/* ── Continent land ── */
.wm-land {
  fill: #c9e4d0;
  transition: fill 0.25s;
}
.wm-land:hover { fill: #aed4b8; }
/* Destination countries – brand primary tint */
.wm-dest {
  fill: #85b898;
}
/* India highlighted in brand gold */
.wm-india {
  fill: #c8973a;
  filter: drop-shadow(0 0 6px rgba(200,151,58,0.45));
}
/* Country borders */
.wm-borders {
  fill: none;
  stroke: rgba(255,255,255,0.9);
  stroke-width: 0.6;
  stroke-linejoin: round;
}

/* ── Arc routes ── */
.wm-arc {
  stroke-width: 1.6;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawArc 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.arc-gold { stroke: url(#arcGrad); }
.arc-grn  { stroke: url(#arcGreen); }

/* Stagger each arc */
#arc-usa { animation-delay: 0.2s; }
#arc-can { animation-delay: 0.4s; }
#arc-uk  { animation-delay: 0.6s; }
#arc-deu { animation-delay: 0.8s; }
#arc-uae { animation-delay: 1.0s; }
#arc-sau { animation-delay: 1.1s; }
#arc-chn { animation-delay: 1.2s; }
#arc-jpn { animation-delay: 1.4s; }
#arc-bgd { animation-delay: 1.5s; }
#arc-zaf { animation-delay: 1.6s; }

@keyframes drawArc {
  to { stroke-dashoffset: 0; }
}

/* ── Destination markers ── */
.wm-dot {
  fill: #0a4c2a;
  filter: drop-shadow(0 0 3px rgba(10,76,42,0.5));
}
.wm-pulse {
  fill: rgba(10,76,42,0.10);
  stroke: rgba(10,76,42,0.35);
  stroke-width: 1;
  animation: markerPulse 2.4s ease-out infinite;
}
@keyframes markerPulse {
  0%   { r: 6;  opacity: 0.8; }
  60%  { r: 14; opacity: 0;   }
  100% { r: 6;  opacity: 0;   }
}

.wm-label {
  font-size: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  fill: #0a4c2a;
  text-anchor: middle;
  pointer-events: none;
}

/* ── India origin ── */
.wm-origin-dot {
  fill: #c8973a;
  filter: drop-shadow(0 0 7px rgba(200,151,58,0.8));
}
.wm-origin-ring {
  fill: none;
  stroke: rgba(200,151,58,0.50);
  stroke-width: 1.5;
  animation: originPulse 2s ease-out infinite;
}
.wm-ring2 { animation-delay: 0.5s; }
@keyframes originPulse {
  0%   { opacity: 1; r: 14; }
  100% { opacity: 0; r: 28; }
}
.wm-origin-label {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  fill: #7a4800;
  text-anchor: middle;
}

/* ── Country chips ── */
.export-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}
.export-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: var(--font-display);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  cursor: default;
}
.export-chip:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.world-map-container { margin-top: 60px; text-align: center; }
.map-placeholder {
  background: linear-gradient(135deg, var(--light-bg), var(--off-white));
  border-radius: var(--radius-xl); padding: 60px; border: 2px dashed var(--border);
  position: relative; overflow: hidden;
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #030f07 100%);
  color: rgba(255,255,255,0.8); padding: 80px 0 0;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; }

.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer-logo-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--white); }

.footer-desc { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 300px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--white); transform: translateY(-3px); }

.footer-col h4 {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 700;
  color: var(--white); letter-spacing: 1px; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid rgba(200,151,58,0.3);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-link::before { content: '→'; font-size: 0.7rem; color: var(--gold); transition: var(--transition); }
.footer-link:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-icon { font-size: 1rem; color: var(--gold); margin-top: 2px; }
.contact-text { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.contact-text strong { color: var(--white); display: block; font-size: 0.78rem; margin-bottom: 2px; }

.footer-bottom {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-copyright strong { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-link:hover { color: var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition); text-decoration: none;
  animation: wabounce 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 10px 30px rgba(37,211,102,0.5); animation: none; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 50%, #1e6b3a 100%);
  padding: 160px 0 80px; position: relative; overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: var(--white); clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
  justify-content: center; margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ============ ABOUT PAGE ============ */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.service-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }

.service-card {
  padding: 32px 24px; border-radius: var(--radius-lg); text-align: center;
  background: var(--white); border: 1px solid var(--border); transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--gold); }
.service-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.service-card-text { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.team-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.team-card-avatar {
  height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--light-bg), #c8e6c9);
  position: relative; overflow: hidden;
}
.avatar-icon { font-size: 4.5rem; }
.avatar-initials {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--primary); opacity: 0.45; letter-spacing: -1px;
}
.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border: 4px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.35s ease;
}
.team-card:hover .team-photo { transform: scale(1.05); }
.team-card-body { padding: 24px; }
.team-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.team-title { font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; margin-bottom: 10px; text-transform: uppercase; }
.team-bio { font-size: 0.8rem; color: var(--text-light); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.value-card {
  padding: 36px 28px; border-radius: var(--radius-lg); text-align: center;
  background: var(--white); border: 2px solid var(--border); transition: var(--transition);
  position: relative; overflow: hidden;
}
.value-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold)); opacity: 0; transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gold); }
.value-card:hover::after { opacity: 1; }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.value-text { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

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

.filter-btn {
  padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  background: var(--white); color: var(--text-medium); border: 2px solid var(--border);
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}

.product-detail-card {
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 32px;
  border: 1px solid var(--border);
}

.product-detail-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 40px 48px; display: flex; gap: 32px; align-items: center;
}
.product-detail-icon { font-size: 4.5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.product-detail-intro h2 { font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.product-detail-intro .botanical { font-size: 0.88rem; color: rgba(255,255,255,0.65); font-style: italic; margin-bottom: 12px; }
.product-detail-intro p { font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 600px; }

.product-detail-body { padding: 40px 48px; }

.product-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.specs-group h4 {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border);
}

.spec-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--off-white);
  font-size: 0.83rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-light); font-weight: 500; }
.spec-value { color: var(--primary-dark); font-weight: 600; text-align: right; max-width: 60%; }

.product-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.product-tag {
  padding: 6px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  background: var(--light-bg); color: var(--primary); border: 1px solid var(--border);
}
.product-tag.green { background: #e8f5e9; color: #2e7d32; border-color: #c8e6c9; }
.product-tag.gold { background: #fff8e1; color: #e65100; border-color: #ffcc02; }

/* ============ QUALITY PAGE ============ */
.quality-process-section { background: var(--white); }
.quality-step-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.qstep-card {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  border: 1px solid var(--border); transition: var(--transition); position: relative;
}
.qstep-card:hover { background: var(--white); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.qstep-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold)); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.qstep-icon { font-size: 2.5rem; margin-bottom: 16px; margin-top: 8px; }
.qstep-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.qstep-text { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* ============ CERTIFICATIONS PAGE ============ */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.cert-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 36px 28px; text-align: center;
  box-shadow: var(--shadow-sm); border: 2px solid var(--border); transition: var(--transition);
}
.cert-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); border-color: var(--gold); }
.cert-badge-icon {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--light-bg), #fff); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  box-shadow: var(--shadow-gold);
}
.cert-name { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.cert-full { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.cert-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ============ EXPORT PROCESS PAGE ============ */
.timeline-section { background: var(--white); }

.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--gold));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 24px; margin-bottom: 60px; align-items: center;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-content {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gold); }
.timeline-item:nth-child(even) .timeline-content:first-child { order: 3; }
.timeline-item:nth-child(even) .timeline-content:last-child { order: 1; }

.timeline-icon-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1;
}
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: var(--shadow-green); border: 4px solid var(--white);
}

.timeline-step-num { font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

.timeline-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.timeline-content p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }
.timeline-empty { /* empty grid cell */ }

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

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  display: flex; gap: 20px; background: var(--white); border-radius: var(--radius-lg);
  padding: 24px; border: 1px solid var(--border); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); transform: translateX(6px); border-color: var(--gold); }
.contact-card-icon {
  width: 50px; height: 50px; min-width: 50px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-card-content h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.contact-card-content p { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; }
.contact-card-content a { color: var(--primary); font-weight: 600; transition: var(--transition); }
.contact-card-content a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl); padding: 48px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.6rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.contact-form-wrap p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 32px; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--primary-dark); letter-spacing: 0.3px; }
.form-group input, .form-group textarea, .form-group select {
  padding: 13px 18px; border-radius: var(--radius-sm);
  border: 2px solid var(--border); background: var(--off-white);
  font-family: var(--font-body); font-size: 0.88rem; color: var(--text-dark);
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(10,76,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============ ANIMATIONS ============ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

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

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

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

@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0px) rotate(2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

/* AOS-like reveal classes — spring easing */
[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="scale"] { transform: scale(0.88); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ============ COUNTER ANIMATION ============ */
.count-number { display: inline-block; }

/* ============ PROGRESS BARS ============ */
.progress-bar-wrap { display: flex; flex-direction: column; gap: 16px; }
.progress-item { display: flex; flex-direction: column; gap: 8px; }
.progress-header { display: flex; justify-content: space-between; align-items: center; }
.progress-label { font-size: 0.83rem; font-weight: 600; color: var(--primary-dark); }
.progress-value { font-size: 0.83rem; font-weight: 700; color: var(--gold); }
.progress-track { height: 6px; border-radius: 3px; background: var(--light-bg); overflow: hidden; }
.progress-fill {
  height: 100%; border-radius: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid .team-card:last-child:nth-child(odd) { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 48px; }
  .hero-globe { width: 300px; height: 300px; }
  .ring-1 { width: 360px; height: 360px; }
  .ring-2 { width: 420px; height: 420px; }
  .ring-3 { width: 480px; height: 480px; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .farmer-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid { grid-template-columns: 1fr 1fr; }
  .quality-step-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 28px; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 60px; }
  .timeline-icon-wrap { position: absolute; left: 0; }
  .timeline { padding-left: 0; position: relative; }
  .navbar { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .product-specs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 70px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid .team-card:last-child:nth-child(odd) { grid-column: span 1; max-width: 100%; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-feature-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat { padding-right: 20px; }
  .hero-buttons { flex-direction: column; }
  .hero-content { padding: 120px 20px 80px; }
  .container { padding: 0 16px; }
  .form-row { grid-template-columns: 1fr; }
  .product-detail-header { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 28px 20px; }
  .farmer-stats-row { gap: 20px; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .quality-step-cards { grid-template-columns: 1fr; }
}

/* ============ CUSTOM SPICE BG WITH IMAGE OVERLAY ============ */
.spice-bg { position: relative; overflow: hidden; }
/* Image layer */
.spice-bg::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('../assets/images/spices-spoons-wooden-table.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: saturate(1.18) brightness(1.04) contrast(1.06);
  transform: scale(1.04);
  animation: spiceDrift 32s ease-in-out infinite alternate;
}
/* Minimal edge-fade overlay – image stays fully visible */
.spice-bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 18%, rgba(255,255,255,0) 82%, rgba(255,255,255,0.14) 100%);
}
.spice-bg > * { position: relative; z-index: 1; }

@keyframes spiceDrift {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.08) translateY(-8px); }
}

/* ============ NOTICE / ALERT ============ */
.notice-bar {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  color: var(--white); text-align: center; padding: 10px 20px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  position: relative; z-index: 1001;
}
.notice-bar a { color: var(--white); text-decoration: underline; }

/* ============ FAQ / DETAILS ACCORDION ============ */
details {
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
details[open] {
  border-color: var(--gold) !important;
  box-shadow: 0 8px 32px rgba(200, 151, 58, 0.14) !important;
}
details summary {
  user-select: none;
  transition: color 0.25s ease;
}
details summary::-webkit-details-marker { display: none; }
details[open] summary { color: var(--primary) !important; }

/* Slide + fade the revealed content */
details[open] > *:not(summary) {
  animation: faqContentReveal 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes faqContentReveal {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ PRODUCT SECTION BLOCK TRANSITION ============ */
.product-section-block {
  transition: opacity 0.3s ease;
}
.product-section-block[style*="display: none"] {
  opacity: 0;
}

/* ============ PAGE LOAD FADE IN ============ */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
body {
  animation: pageFadeIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.navbar {
  animation: navSlideDown 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* .page-hero and .hero inherit body fade-in — no separate animation needed */

/* ============ IMAGE / CARD HOVER LIFT ============ */
.team-card:hover .team-card-avatar { background: linear-gradient(135deg, #c8e6c9, #81c784) !important; }

.pcard .pcard-header {
  overflow: hidden;
  will-change: transform, filter;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.pcard:hover .pcard-header {
  transform: scale(1.09);
  filter: brightness(1.06) saturate(1.15);
}
/* Also smooth the whole card lift */
.pcard {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ SELECTION INDICATOR – nav active line ============ */
.nav-link.active::after { width: 20px !important; }

/* ============ GLOBAL STATS BAR RESPONSIVE ============ */
@media (max-width: 640px) {
  #scrollTopBtn { bottom: 80px !important; right: 16px !important; }
}


.team-card-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 4px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ============ PRODUCTS MEGA DROPDOWN ============ */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-drop-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
}
.drop-arrow {
  font-size: 0.62rem;
  opacity: 0.65;
  transition: transform 0.22s ease;
  line-height: 1;
}
.nav-dropdown-wrap:hover .drop-arrow { transform: rotate(-180deg); }
.nav-dropdown-wrap::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 18px;
}

.nav-mega-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 14px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  display: flex;
  min-width: 460px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  overflow: hidden;
}
.nav-dropdown-wrap:hover .nav-mega-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-cats-col {
  min-width: 188px;
  background: var(--light-bg);
  padding: 10px 0;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
  border-left: 2px solid transparent;
  white-space: nowrap;
}
.mega-cat:hover, .mega-cat.is-active {
  background: var(--white);
  color: var(--primary-dark);
  border-left-color: var(--primary);
}
.mega-cat-arr { margin-left: auto; font-size: 0.82rem; opacity: 0.3; }
.mega-prods-col {
  flex: 1;
  padding: 14px;
  min-width: 220px;
}
.mega-panel { display: none; flex-direction: column; gap: 1px; }
.mega-panel.is-active { display: flex; }
.mega-plink {
  display: block;
  padding: 6px 10px;
  border-radius: 7px;
  font-size: 0.8rem;
  color: var(--text-medium);
  text-decoration: none;
  transition: all 0.12s ease;
}
.mega-plink:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 15px;
}
.mega-view-all {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 14px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}
.mega-view-all:hover { background: var(--gold) !important; color: var(--white) !important; }

/* ============ MOBILE PRODUCTS ACCORDION ============ */
.mobile-products-section { width: 100%; }
.mobile-prod-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  user-select: none;
}
.mobile-prod-arrow { transition: transform 0.25s ease; font-size: 0.72rem; opacity: 0.7; }
.mobile-prod-trigger.open .mobile-prod-arrow { transform: rotate(-180deg); }
.mobile-prod-body {
  display: none;
  flex-direction: column;
  padding: 6px 0 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-prod-body.open { display: flex; }
.mobile-cat-group { padding: 4px 0; }
.mobile-cat-label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 5px 12px 3px;
}
.mobile-cat-group a {
  display: block;
  padding: 5px 20px;
  font-size: 0.83rem;
  color: var(--text-medium);
  text-decoration: none;
}
.mobile-cat-group a:hover { color: var(--primary); }

.navbar .nav-inner .nav-logo img {
    filter: brightness(100);
    width: 120px;
}

.navbar.scrolled .nav-inner .nav-logo img {
    filter: inherit;
}

.cert-card.revealed .btn-outline{
      background: #1c5b31;
    color: #fff !important;
    border: 0px solid rgba(255, 255, 255, 0.7);
}