/* =============================
   CSS Design Tokens — Follium Green Theme
   Derived from the Follium leaf logo:
     · Bright lime-green highlight: #a8e05a / hsl(86, 67%, 62%)
     · Primary logo green:          #7dc734 / hsl(88, 60%, 49%)
     · Medium green:                #4a9c1e / hsl(100, 67%, 36%)
     · Dark stem green:             #2d6e1a / hsl(108, 62%, 27%)
     · Deep forest bg:              hsl(120, 40%, 7%)
   ============================= */
:root {
  /* ── Backgrounds ── */
  --clr-bg-deep:      hsl(130, 38%, 6%);
  --clr-bg-dark:      hsl(128, 32%, 9%);
  --clr-bg-card:      hsl(126, 26%, 12%);
  --clr-bg-card-hover:hsl(124, 24%, 15%);
  --clr-bg-glass:     hsla(120, 35%, 14%, 0.55);

  /* ── Brand greens ── */
  --clr-lime:         hsl(86, 67%, 62%);   /* logo highlight */
  --clr-green-mid:    hsl(88, 60%, 49%);   /* logo primary  */
  --clr-green-deep:   hsl(100, 67%, 36%);  /* logo medium   */
  --clr-green-stem:   hsl(108, 62%, 27%);  /* logo stem     */
  --clr-green-glow:   hsla(88, 68%, 55%, 0.15);

  /* ── Text ── */
  --clr-text-primary:   hsl(120, 20%, 95%);
  --clr-text-secondary: hsl(120, 12%, 72%);
  --clr-text-muted:     hsl(120, 8%, 52%);

  /* ── Borders ── */
  --clr-border:         hsla(120, 30%, 50%, 0.14);
  --clr-border-accent:  hsla(88, 68%, 55%, 0.32);

  /* ── Gradients ── */
  --gradient-primary:  linear-gradient(135deg, var(--clr-lime), var(--clr-green-deep));
  --gradient-subtle:   linear-gradient(135deg, hsla(88, 68%, 55%, 0.1), hsla(100, 67%, 36%, 0.05));
  --gradient-card:     linear-gradient(145deg, hsl(126, 26%, 12%), hsl(124, 24%, 14%));
  --gradient-hero-overlay: linear-gradient(
    to bottom,
    hsla(130, 45%, 5%, 0.5) 0%,
    hsla(128, 42%, 5%, 0.72) 45%,
    hsla(128, 42%, 5%, 0.94) 100%
  );

  /* ── Typography ── */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Spacing ── */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* ── Radii ── */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:        0 2px 12px hsla(130, 50%, 4%, 0.45);
  --shadow-md:        0 8px 32px hsla(130, 50%, 4%, 0.55);
  --shadow-glow:      0 0 40px hsla(88, 68%, 50%, 0.14);
  --shadow-glow-strong: 0 0 60px hsla(88, 68%, 50%, 0.22);

  /* ── Transitions ── */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-normal:  300ms;
  --dur-slow:    500ms;
}

/* =============================
   Base Reset
   ============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--clr-bg-deep);
  color: var(--clr-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================
   Utilities
   ============================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================
   Navigation
   ============================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0.75rem 0;
  transition: background var(--dur-normal), padding var(--dur-normal), backdrop-filter var(--dur-normal);
}
.navbar.scrolled {
  padding: 0.45rem 0;
  background: hsla(130, 38%, 6%, 0.93);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .logo-leaf-wrap { height: 50px; }
.navbar.scrolled .logo-leaf-img { max-height: 50px; min-width: 150px; }

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md);
  display: flex; align-items: center; justify-content: flex-start; gap: var(--space-md);
}
.nav-logo { display: flex; align-items: flex-start; gap: 0.75rem; flex-shrink: 0; height: 100%; margin-right: auto; }

.logo-leaf-wrap {
  height: 64px; max-height: 100%; width: auto; flex-shrink: 0;
  display: flex; align-items: flex-start; justify-content: flex-start;
  filter: drop-shadow(0 0 8px hsla(88, 68%, 55%, 0.45));
  transition: filter var(--dur-normal), height var(--dur-normal);
}
.logo-leaf-wrap:hover { filter: drop-shadow(0 0 16px hsla(88, 68%, 55%, 0.7)); }
.logo-leaf-img { height: 100%; max-height: 64px; min-width: 180px; width: auto; object-fit: contain; }
.logo-leaf-fallback { height: 100%; width: auto; align-items: center; justify-content: center; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-primary {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; letter-spacing: 0.08em;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-secondary {
  font-size: 0.65rem; font-weight: 500; color: var(--clr-text-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: var(--space-sm); }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--clr-text-secondary);
  padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%; height: 2px; background: var(--gradient-primary);
  border-radius: 2px; transition: transform var(--dur-normal) var(--ease-smooth);
}
.nav-link:hover { color: var(--clr-text-primary); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-cta {
  background: var(--gradient-primary);
  color: hsl(130, 38%, 6%) !important;
  font-weight: 700; padding: 0.6rem 1.25rem; border-radius: var(--radius-full);
  box-shadow: 0 0 20px hsla(88, 68%, 50%, 0.28);
  transition: box-shadow var(--dur-normal), transform var(--dur-fast) var(--ease-bounce) !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { box-shadow: 0 0 36px hsla(88, 68%, 50%, 0.55) !important; transform: translateY(-2px) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.4rem; border-radius: var(--radius-sm); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--clr-text-primary); border-radius: 2px; transition: transform var(--dur-normal), opacity var(--dur-normal); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 1rem var(--space-md);
  background: hsla(130, 38%, 6%, 0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
}
.mobile-menu.open { display: flex; }
.mobile-link { padding: 0.85rem 1rem; font-weight: 500; color: var(--clr-text-secondary); border-radius: var(--radius-sm); transition: color var(--dur-fast), background var(--dur-fast); }
.mobile-link:hover { color: var(--clr-text-primary); background: var(--gradient-subtle); }

/* =============================
   Hero Section
   ============================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem var(--space-md) 5rem; overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('../images/hero/hero-green.jpg');
  background-size: cover; background-position: center;
  z-index: 0; transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

/* Leaf vein decorative SVG */
.hero-leaf-decor {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.6;
}
.hero-leaf-decor svg { width: 100%; height: 100%; }

.particle {
  position: absolute; border-radius: 50%; background: var(--clr-lime); opacity: 0;
  animation: floatUp var(--duration, 8s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  15% { opacity: var(--max-opacity, 0.5); transform: translateY(-20px) scale(1); }
  85% { opacity: var(--max-opacity, 0.5); transform: translateY(-100px) scale(0.6); }
}

/* Drop particle (water droplet shaped) */
.particle.drop-particle {
  border-radius: 50% 50% 50% 0;
  transform-origin: center;
}

.hero-content { position: relative; z-index: 3; max-width: 840px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: hsla(120, 35%, 12%, 0.65);
  border: 1px solid var(--clr-border-accent); border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 500; color: var(--clr-lime);
  margin-bottom: 2rem; backdrop-filter: blur(12px);
  animation: fadeDown 0.8s var(--ease-smooth) both;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--clr-lime); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 hsla(86, 67%, 62%, 0.5); }
  50%       { box-shadow: 0 0 0 6px hsla(86, 67%, 62%, 0); }
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.08; margin-bottom: 1.5rem;
}
.hero-title-line { display: block; animation: fadeUp 0.8s var(--ease-smooth) both; }
.hero-title-line:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line:nth-child(2) { animation-delay: 0.25s; }
.hero-title-line:nth-child(3) { animation-delay: 0.4s; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--clr-text-secondary);
  max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.75;
  animation: fadeUp 0.8s 0.55s var(--ease-smooth) both;
}

/* Buttons */
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem; animation: fadeUp 0.8s 0.7s var(--ease-smooth) both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--gradient-primary);
  color: hsl(130, 38%, 6%); font-weight: 700; font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px hsla(88, 68%, 50%, 0.35);
  transition: transform var(--dur-fast) var(--ease-bounce), box-shadow var(--dur-normal);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 40px hsla(88, 68%, 50%, 0.55); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-leaf-icon { font-size: 1rem; }

.btn-outline {
  display: inline-flex; align-items: center;
  padding: 0.9rem 2rem;
  background: transparent; color: var(--clr-text-primary); font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid var(--clr-border-accent); border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  transition: background var(--dur-normal), border-color var(--dur-normal), transform var(--dur-fast) var(--ease-bounce);
}
.btn-outline:hover { background: var(--clr-green-glow); border-color: var(--clr-green-mid); transform: translateY(-3px); }

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: hsla(128, 35%, 9%, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border); border-radius: var(--radius-xl);
  animation: fadeUp 0.8s 0.85s var(--ease-smooth) both;
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0.5rem 1.5rem; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: 0.75rem; color: var(--clr-text-muted); font-weight: 500; margin-top: 0.25rem; letter-spacing: 0.05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 48px; background: var(--clr-border); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 3;
  animation: fadeUp 1s 1.2s var(--ease-smooth) both, scrollBob 2s 2s ease-in-out infinite;
}
@keyframes scrollBob { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
.scroll-icon { width: 28px; height: 44px; border: 2px solid var(--clr-border-accent); border-radius: 14px; position: relative; }
.scroll-icon::after {
  content: ''; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); width: 4px; height: 8px;
  background: var(--clr-green-mid); border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot { 0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; } 100% { transform: translateX(-50%) translateY(14px); opacity: 0; } }

/* =============================
   Section Shared Styles
   ============================= */
.section { padding: var(--space-2xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-xl); }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--clr-green-mid);
  margin-bottom: 1rem; padding: 0.3rem 1rem;
  background: hsla(88, 60%, 49%, 0.09);
  border: 1px solid hsla(88, 60%, 49%, 0.22); border-radius: var(--radius-full);
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.section-subtitle { font-size: 1.05rem; color: var(--clr-text-secondary); max-width: 600px; margin: 0 auto; }

/* =============================
   About Section
   ============================= */
.about-section {
  background: linear-gradient(180deg, var(--clr-bg-deep) 0%, var(--clr-bg-dark) 50%, var(--clr-bg-deep) 100%);
  position: relative; overflow: hidden;
}

/* Water drop decorations */
.section-drops { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.drop {
  position: absolute; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: radial-gradient(circle at 35% 35%, hsla(86, 67%, 70%, 0.15), hsla(88, 60%, 49%, 0.06));
  border: 1px solid hsla(88, 60%, 49%, 0.1);
}
.drop-1 { width: 200px; height: 200px; top: -60px; right: 10%; animation: floatDrop 8s ease-in-out infinite; }
.drop-2 { width: 120px; height: 120px; bottom: 10%; left: 5%; animation: floatDrop 10s 2s ease-in-out infinite; }
.drop-3 { width: 80px; height: 80px; top: 40%; right: 3%; animation: floatDrop 7s 4s ease-in-out infinite; }
@keyframes floatDrop { 0%, 100% { transform: rotate(-45deg) translateY(0); } 50% { transform: rotate(-45deg) translateY(-12px); } }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.about-lead { font-size: 1.15rem; color: var(--clr-text-primary); line-height: 1.75; margin-bottom: 1.25rem; }
.about-body { font-size: 1rem; color: var(--clr-text-secondary); line-height: 1.75; margin-bottom: 2rem; }

.mv-cards { display: flex; flex-direction: column; gap: 1rem; }
.mv-card {
  display: flex; gap: 1rem; padding: 1.25rem;
  background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal), transform var(--dur-normal);
}
.mv-card:hover { border-color: var(--clr-border-accent); box-shadow: var(--shadow-glow); transform: translateX(4px); }
.mv-icon { width: 40px; height: 40px; flex-shrink: 0; padding: 0.5rem; border-radius: var(--radius-sm); color: var(--clr-green-mid); }
.mission-icon { background: hsla(88, 60%, 49%, 0.1); }
.vision-icon  { background: hsla(100, 67%, 36%, 0.1); }
.mv-title { font-weight: 700; margin-bottom: 0.4rem; font-size: 0.95rem; }
.mv-text  { font-size: 0.88rem; color: var(--clr-text-secondary); line-height: 1.6; }

.about-visual { position: relative; }
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}
.about-slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0;
  transform: translateX(40px) scale(1.04);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.about-img.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}
.about-img.exit-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.96);
}
.about-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.4rem;
  z-index: 10;
  background: hsla(130, 38%, 6%, 0.65);
  backdrop-filter: blur(12px);
  padding: 0.35rem 0.65rem;
  border-radius: 50rem;
  border: 1px solid var(--clr-border-accent);
}
.about-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.about-dot:hover { background: rgba(255, 255, 255, 0.7); }
.about-dot.active {
  background: var(--clr-lime);
  width: 1.25rem;
  border-radius: 50rem;
  box-shadow: 0 0 10px hsla(88, 68%, 55%, 0.6);
}
.about-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  padding: 0.75rem 1.25rem;
  background: hsla(130, 38%, 6%, 0.88); backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border-accent); border-radius: var(--radius-lg); text-align: center;
}
.badge-number {
  display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.badge-label { font-size: 0.7rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.img-leaf-corner {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 2rem; opacity: 0.7;
  filter: drop-shadow(0 2px 8px hsla(88, 68%, 50%, 0.4));
}

/* =============================
   Products Section
   ============================= */
.products-section {
  background: var(--clr-bg-deep); position: relative; overflow: hidden;
}
.products-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, hsla(88, 68%, 50%, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Product Tabs */
.product-tabs { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-lg); }
.tab-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-radius: var(--radius-full);
  font-size: 0.9rem; font-weight: 600; color: var(--clr-text-secondary);
  background: var(--clr-bg-card); border: 1.5px solid var(--clr-border);
  transition: all var(--dur-normal) var(--ease-smooth);
}
.tab-btn:hover { color: var(--clr-text-primary); border-color: var(--clr-border-accent); }
.tab-btn.active {
  background: var(--gradient-primary); color: hsl(130, 38%, 6%);
  border-color: transparent; box-shadow: 0 4px 20px hsla(88, 68%, 50%, 0.35);
}
.tab-icon { font-size: 1rem; }
.tab-panel[hidden] { display: none; }
.tab-panel { display: block; }

/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-bottom: var(--space-xl); }
.product-card {
  background: var(--gradient-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.875rem;
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal), transform var(--dur-normal) var(--ease-smooth);
}
.product-card:hover { border-color: var(--clr-border-accent); box-shadow: var(--shadow-glow), var(--shadow-md); transform: translateY(-6px); }
.product-card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.product-icon-wrap {
  width: 44px; height: 44px;
  background: hsla(88, 68%, 50%, 0.09); border: 1px solid hsla(88, 68%, 50%, 0.18);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.product-badge {
  font-size: 0.68rem; font-weight: 700; color: var(--clr-green-mid);
  background: hsla(88, 60%, 49%, 0.1); border: 1px solid hsla(88, 60%, 49%, 0.22);
  padding: 0.2rem 0.6rem; border-radius: var(--radius-full); letter-spacing: 0.04em; white-space: nowrap;
}
.product-badge.featured { background: linear-gradient(135deg, hsla(86, 67%, 62%, 0.18), hsla(100, 67%, 36%, 0.18)); color: var(--clr-lime); border-color: var(--clr-border-accent); }
.product-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
.product-desc { font-size: 0.875rem; color: var(--clr-text-secondary); line-height: 1.6; }
.product-applications {
  background: hsla(88, 68%, 50%, 0.04); border: 1px solid hsla(88, 68%, 50%, 0.1);
  border-radius: var(--radius-sm); padding: 0.625rem 0.875rem;
}
.app-label { font-size: 0.7rem; font-weight: 700; color: var(--clr-green-mid); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.25rem; }
.app-text  { font-size: 0.8rem; color: var(--clr-text-secondary); line-height: 1.5; }
.product-sizes { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: auto; }
.size-tag {
  font-size: 0.7rem; font-weight: 600; color: var(--clr-text-muted);
  background: var(--clr-bg-card-hover); border: 1px solid var(--clr-border);
  padding: 0.2rem 0.55rem; border-radius: var(--radius-full);
}

/* Products Showcase */
.products-image-showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  max-height: 420px;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-lg);
}
.showcase-slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.products-showcase-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(40px) scale(1.04);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.products-showcase-img.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}
.products-showcase-img.exit-left {
  opacity: 0;
  transform: translateX(-40px) scale(0.96);
}
.showcase-slider-dots {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: 0.4rem;
  z-index: 10;
  background: hsla(130, 38%, 6%, 0.65);
  backdrop-filter: blur(12px);
  padding: 0.35rem 0.65rem;
  border-radius: 50rem;
  border: 1px solid var(--clr-border-accent);
}
.showcase-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--dur-fast);
}
.showcase-dot:hover { background: rgba(255, 255, 255, 0.7); }
.showcase-dot.active {
  background: var(--clr-lime);
  width: 1.25rem;
  border-radius: 50rem;
  box-shadow: 0 0 10px hsla(88, 68%, 55%, 0.6);
}
.showcase-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem;
  background: linear-gradient(to top, hsla(130, 38%, 6%, 0.95) 0%, transparent 100%);
  z-index: 5;
}
.showcase-text { color: var(--clr-text-secondary); font-size: 0.95rem; font-weight: 500; font-style: italic; }

/* =============================
   Facilities Section
   ============================= */
.facilities-section { background: var(--clr-bg-dark); }
.facilities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); margin-bottom: var(--space-xl); }
.facility-map {
  background: var(--gradient-card); border: 1px solid var(--clr-border); border-radius: var(--radius-xl); padding: 2rem;
}
.facility-map-title, .equipment-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--clr-border);
}
.compound-map { display: flex; flex-direction: column; gap: 0.75rem; }
.compound-block {
  display: flex; align-items: center; gap: 1rem; padding: 0.875rem 1rem;
  border-radius: var(--radius-md); border: 1px solid transparent;
  transition: border-color var(--dur-normal), background var(--dur-normal);
}
.compound-block:hover { border-color: var(--clr-border-accent); background: var(--gradient-subtle); }
.compound-icon { font-size: 1.5rem; }
.compound-name { flex: 1; font-weight: 500; font-size: 0.9rem; }
.compound-size {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.production { background: hsla(88, 68%, 50%, 0.05); }
.plastic    { background: hsla(100, 67%, 36%, 0.05); }
.raw        { background: hsla(108, 62%, 27%, 0.08); }
.warehouse  { background: hsla(86, 67%, 62%, 0.06); }
.parking    { background: hsla(44, 76%, 56%, 0.07); }

.facility-support-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.25rem; }
.facility-support-photo { position: relative; min-height: 135px; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--clr-border); }
.facility-support-photo::after { content: ''; position: absolute; inset: 35% 0 0; background: linear-gradient(to top, hsla(130, 38%, 6%, 0.88), transparent); pointer-events: none; }
.facility-support-photo img { width: 100%; height: 100%; min-height: 135px; object-fit: cover; transition: transform var(--dur-normal); }
.facility-support-photo:hover img { transform: scale(1.05); }
.facility-support-photo figcaption { position: absolute; z-index: 1; left: 0.75rem; bottom: 0.6rem; color: var(--clr-text-primary); font-size: 0.78rem; font-weight: 700; }

.equipment-cards { background: var(--gradient-card); border: 1px solid var(--clr-border); border-radius: var(--radius-xl); padding: 2rem; }
.equip-grid { display: flex; flex-direction: column; gap: 0.75rem; }
.equip-card {
  display: flex; align-items: center; gap: 1rem; padding: 0.875rem 1rem;
  background: var(--clr-bg-card-hover); border: 1px solid var(--clr-border); border-radius: var(--radius-md);
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal), transform var(--dur-normal);
}
.equip-card:hover { border-color: var(--clr-border-accent); box-shadow: var(--shadow-glow); transform: translateX(4px); }
.equip-icon  { font-size: 1.5rem; width: 40px; text-align: center; flex-shrink: 0; }
.equip-info  { display: flex; flex-direction: column; gap: 0.2rem; }
.equip-name  { font-weight: 600; font-size: 0.9rem; }
.equip-spec  { font-size: 0.78rem; color: var(--clr-text-muted); }

/* Packaging */
.packaging-section {
  background: hsla(88, 68%, 50%, 0.04); border: 1px solid var(--clr-border-accent);
  border-radius: var(--radius-xl); padding: 2.5rem;
}
.packaging-header { text-align: center; margin-bottom: 2rem; }
.packaging-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.packaging-subtitle { font-size: 0.95rem; color: var(--clr-text-secondary); max-width: 500px; margin: 0 auto; }
.packaging-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.packaging-card {
  background: var(--clr-bg-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center;
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal), transform var(--dur-normal) var(--ease-bounce);
}
.packaging-card:hover { border-color: var(--clr-border-accent); box-shadow: var(--shadow-glow-strong); transform: translateY(-8px); }
.pkg-photo-wrap { position: relative; height: 150px; overflow: hidden; border-radius: var(--radius-md); margin: -0.5rem -0.5rem 1.25rem; }
.pkg-photo { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-normal); }
.pkg-photo-secondary { position: absolute; right: 0.65rem; top: 0.65rem; width: 58px; height: 58px; object-fit: cover; border: 2px solid var(--clr-text-primary); border-radius: var(--radius-sm); box-shadow: var(--shadow-md); }
.packaging-card:hover .pkg-photo { transform: scale(1.05); }
.pkg-photo-label { position: absolute; left: 0.75rem; bottom: 0.65rem; padding: 0.25rem 0.55rem; border-radius: var(--radius-full); background: hsla(130, 38%, 6%, 0.75); color: var(--clr-lime); font-size: 0.7rem; font-weight: 700; }
.pkg-name   { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.75rem; line-height: 1.3; }
.pkg-description { min-height: 2.6rem; color: var(--clr-text-muted); font-size: 0.78rem; line-height: 1.45; margin-bottom: 1rem; }
.pkg-rate   {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
}
.pkg-rate span { font-size: 0.8rem; color: var(--clr-text-muted); -webkit-text-fill-color: var(--clr-text-muted); display: block; margin-top: 0.25rem; font-weight: 500; }

/* =============================
   Clients Section
   ============================= */
.clients-section { background: var(--clr-bg-deep); }
.clients-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; margin-bottom: var(--space-xl); }
.client-card {
  display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem;
  background: var(--gradient-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal), transform var(--dur-normal);
}
.client-card:hover { border-color: var(--clr-border-accent); box-shadow: var(--shadow-glow); transform: translateY(-4px); }
.client-logo-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--gradient-primary); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.client-abbr { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; color: hsl(130, 38%, 6%); letter-spacing: 0.05em; }
.client-name { font-weight: 700; font-size: 0.9rem; line-height: 1.3; margin-bottom: 0.35rem; }
.client-supply { font-size: 0.78rem; color: var(--clr-green-mid); font-weight: 500; }

.delivery-banner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, hsla(88, 68%, 50%, 0.09), hsla(100, 67%, 36%, 0.05));
  border: 1px solid var(--clr-border-accent); border-radius: var(--radius-xl);
}
.delivery-icon { font-size: 2.5rem; flex-shrink: 0; }
.delivery-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.delivery-text  { font-size: 0.9rem; color: var(--clr-text-secondary); }
.delivery-btn   { margin-left: auto; white-space: nowrap; }

/* =============================
   Contact Section
   ============================= */
.contact-section { background: var(--clr-bg-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.contact-detail {
  display: flex; gap: 1rem; padding: 1.25rem; border-radius: var(--radius-md);
  transition: background var(--dur-normal); margin-bottom: 0.5rem;
}
.contact-detail:hover { background: var(--gradient-subtle); }
.contact-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  background: hsla(88, 68%, 50%, 0.09); border: 1px solid hsla(88, 68%, 50%, 0.18);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--clr-green-mid); padding: 0.5rem;
}
.contact-detail-title { font-weight: 700; font-size: 0.85rem; color: var(--clr-text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.contact-detail-text  { color: var(--clr-text-secondary); font-size: 0.9rem; line-height: 1.6; }
.phone-list  { display: flex; flex-direction: column; gap: 0.2rem; }
.phone-link, .email-link { display: block; color: var(--clr-text-secondary); font-size: 0.9rem; transition: color var(--dur-fast); }
.phone-link:hover, .email-link:hover { color: var(--clr-green-mid); }

.kc-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--clr-border); }
.contact-form-wrap { padding: 1.5rem; background: var(--gradient-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { color: var(--clr-text-muted); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; }
.form-field input, .form-field textarea {
  width: 100%; padding: 0.8rem 0.9rem; color: var(--clr-text-primary); background: hsla(130, 38%, 6%, 0.7);
  border: 1px solid var(--clr-border); border-radius: var(--radius-sm); font: inherit; font-size: 0.9rem;
  resize: vertical; transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--clr-green-mid); box-shadow: 0 0 0 3px hsla(88, 68%, 50%, 0.12); }
.form-submit { align-self: flex-start; border: 0; cursor: pointer; }
.kc-card {
  display: flex; gap: 1rem; padding: 1.25rem;
  background: var(--gradient-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: border-color var(--dur-normal), box-shadow var(--dur-normal), transform var(--dur-normal);
}
.kc-card:hover { border-color: var(--clr-border-accent); box-shadow: var(--shadow-glow); transform: translateX(4px); }
.kc-avatar {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: hsl(130, 38%, 6%); flex-shrink: 0;
}
.gm-avatar { background: linear-gradient(135deg, hsl(86, 67%, 62%), hsl(100, 67%, 36%)); }
.fm-avatar { background: linear-gradient(135deg, hsl(100, 67%, 50%), hsl(88, 60%, 38%)); }
.mm-avatar { background: linear-gradient(135deg, hsl(88, 60%, 49%), hsl(108, 62%, 32%)); }
.kc-info   { display: flex; flex-direction: column; gap: 0.2rem; }
.kc-name   { font-weight: 700; font-size: 0.95rem; line-height: 1.2; }
.kc-credential { font-size: 0.72rem; color: var(--clr-green-mid); font-weight: 600; }
.kc-role   { font-size: 0.8rem; color: var(--clr-text-muted); margin-bottom: 0.4rem; }
.kc-phone, .kc-email { font-size: 0.82rem; color: var(--clr-text-secondary); transition: color var(--dur-fast); }
.kc-phone:hover, .kc-email:hover { color: var(--clr-green-mid); }

/* =============================
   Footer
   ============================= */
.footer {
  background: hsl(130, 40%, 4%);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0 0;
  position: relative; overflow: hidden;
}
.footer-leaf-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, hsla(88, 68%, 50%, 0.04), transparent);
}
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md);
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: var(--space-xl);
  padding-bottom: var(--space-xl); position: relative;
}
.footer-brand { max-width: 340px; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 6px hsla(88, 68%, 50%, 0.35)); }
.footer-tagline { font-size: 0.875rem; color: var(--clr-text-muted); line-height: 1.7; }
.footer-links-title { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--clr-text-muted); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link { font-size: 0.875rem; color: var(--clr-text-secondary); transition: color var(--dur-fast); display: block; }
.footer-link:hover { color: var(--clr-green-mid); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-text { font-size: 0.875rem; color: var(--clr-text-secondary); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--clr-border); padding: 1.25rem var(--space-md);
  text-align: center; max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: var(--clr-text-muted); }

/* =============================
   Responsive
   ============================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about-visual { order: -1; }
  /* Do NOT set aspect-ratio on .about-img — they use position:absolute and need inset:0 */
  .about-img-wrapper { aspect-ratio: unset; height: 400px; }
  .products-image-showcase { height: 340px; max-height: 340px; }
  .facilities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --space-2xl: 4rem; --space-xl: 2.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* keep header logo compact on small screens */
  .logo-leaf-wrap { height: 50px; max-height: 100%; }
  .logo-leaf-img  { height: 100%; max-height: 50px; min-width: 140px; width: auto; }
  .logo-leaf-fallback { height: 44px; width: auto; }
  .about-img-wrapper { height: 320px; }
  .products-image-showcase { height: 280px; max-height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; }
  .packaging-grid { grid-template-columns: 1fr; }
  .delivery-banner { flex-direction: column; text-align: center; }
  .delivery-btn { margin-left: 0; }
  .footer-container { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--clr-border-accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-green-mid); }
