/* ===== HAPPY VALLEY KRISHI FARM — Premium Design System V2 ===== */
/* Inspired by bbhardware.com.np — modern, animated, premium, glassmorphism */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* — Colors — */
  --green-900: #0b3d0b;
  --green-800: #145a14;
  --green-700: #1a7a1a;
  --green-600: #228b22;
  --green-500: #2ea043;
  --green-400: #4caf50;
  --green-300: #81c784;
  --green-200: #a5d6a7;
  --green-100: #c8e6c9;
  --green-50:  #e8f5e9;

  --earth-900: #3e2723;
  --earth-800: #4e342e;
  --earth-700: #5d4037;
  --earth-600: #6d4c41;
  --earth-500: #795548;

  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-300: #fcd34d;

  --cream: #fefce8;
  --off-white: #f8faf5;
  --warm-white: #fdfcf7;
  --text-dark: #1a1a2e;
  --text-body: #374151;
  --text-muted: #6b7280;
  --white: #ffffff;

  /* — Typography — */
  --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-nepali: 'Mukta', 'Noto Sans Devanagari', system-ui, sans-serif;

  /* — Spacing — */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1280px;
  --container-pad: clamp(16px, 4vw, 40px);

  /* — Animations — */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;

  /* — Shadows — */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 40px rgba(46,160,67,0.2);
  --shadow-green: 0 8px 32px rgba(34,139,34,0.25);

  /* — Glassmorphism — */
  --glass-bg: rgba(255,255,255,0.7);
  --glass-border: rgba(255,255,255,0.2);
  --glass-blur: blur(20px) saturate(180%);

  /* — Border Radius — */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;          /* stop off-screen decor (hero bg, marquee, particles) */
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--warm-white);
  line-height: 1.7;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration-fast) ease; }
ul, ol { list-style: none; }

.np { font-family: var(--font-nepali); }
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ===== UTILITY ===== */
.grad-text {
  background: linear-gradient(135deg, var(--green-400), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-green { color: var(--green-500); }
.text-gold { color: var(--gold-400); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after { transform: translateX(100%); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s var(--ease-spring); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: var(--white);
  padding: 14px 32px;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(34,139,34,0.30);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(34,139,34,0.40);
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
  padding: 12px 28px;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-600);
  padding: 12px 24px;
  font-size: 0.9rem;
  border: 2px solid var(--green-200);
}
.btn-ghost:hover {
  background: var(--green-50);
  border-color: var(--green-400);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(90deg, var(--green-900), #0a3209);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
}
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: topbarShimmer 6s infinite linear;
}
@keyframes topbarShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-right span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-right svg { width: 14px; height: 14px; }
.topbar-right a { color: var(--gold-400); font-weight: 600; transition: color 0.3s ease; }
.topbar-right a:hover { color: var(--gold-300); }

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-right { width: 100%; justify-content: center; flex-wrap: wrap; }
}

/* ===== NAV ===== */
.nav-wrap {
  background: rgba(255,255,255,0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out);
}
.nav-wrap.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.95);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-800);
  transition: transform 0.3s var(--ease-spring);
}
.logo:hover { transform: scale(1.02); }
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(46,160,67,0.25);
  transition: box-shadow 0.3s ease;
}
.logo:hover .logo-icon { box-shadow: 0 6px 20px rgba(46,160,67,0.35); }
.logo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
  transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
  color: var(--green-600);
  background: var(--green-50);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 50%;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7.5px); }

@media (max-width: 900px) {
  .nav-menu, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.m-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
  width: 100%;
  max-width: 320px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav.open .m-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.open .m-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open .m-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open .m-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open .m-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open .m-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open .m-link:nth-child(6) { transition-delay: 0.3s; }
.m-link:hover { background: var(--green-50); color: var(--green-600); }
.m-link span { float: right; opacity: 0.4; transition: transform 0.3s ease; }
.m-link:hover span { transform: translateX(4px); opacity: 1; }
.m-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-nav.open .m-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: brightness(0.55) saturate(1.2);
  transition: transform 15s linear;
  will-change: transform;
}
.hero:hover .hero-bg { transform: scale(1.08); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(11,61,11,0.88) 0%,
      rgba(11,61,11,0.65) 35%,
      rgba(34,139,34,0.35) 70%,
      rgba(11,61,11,0.5) 100%
    );
}
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(251,191,36,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(76,175,80,0.1) 0%, transparent 50%);
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s infinite ease-in-out;
  will-change: transform, opacity;
}
@keyframes floatParticle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  10% { opacity: 0.5; }
  50% { opacity: 0.25; transform: translateY(-200px) scale(1); }
  90% { opacity: 0; }
  100% { transform: translateY(-400px) scale(0.5); }
}

/* Leaf floating */
.leaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0;
  pointer-events: none;
  animation: leafFall 12s infinite ease-in-out;
}
@keyframes leafFall {
  0% { opacity: 0; transform: translateY(-20px) rotate(0deg) translateX(0); }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(50vh) rotate(180deg) translateX(80px); }
  90% { opacity: 0; }
  100% { opacity: 0; transform: translateY(100vh) rotate(360deg) translateX(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 100px;
  padding-bottom: 60px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 6px;
  font-size: 0.85rem;
  backdrop-filter: blur(12px);
  margin-bottom: 28px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0); }
  50% { box-shadow: 0 0 20px rgba(251,191,36,0.15); }
}
.pill {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  animation: pillGlow 2s ease-in-out infinite;
}
@keyframes pillGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(251,191,36,0); }
  50% { box-shadow: 0 0 12px rgba(251,191,36,0.4); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* Text rotator */
.rotator {
  display: inline-block;
  position: relative;
  color: var(--gold-400);
  padding: 0 4px;
}
.rotator::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-400);
  border-radius: 2px;
  opacity: 0.4;
}
.rotator .word {
  display: inline-block;
  transition: all 0.4s var(--ease-spring);
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 36px;
  line-height: 1.85;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.tc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.tc:hover { color: rgba(255,255,255,0.9); }
.tc svg { width: 16px; height: 16px; color: var(--green-300); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { transition: transform 0.3s var(--ease-spring); }
.stat:hover { transform: scale(1.05); }
.stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.stat .lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  animation: bobUpDown 2.5s infinite ease-in-out;
}
.mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}
@keyframes bobUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== FLOATING IMAGES ===== */
.floating-images {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translate(var(--mouse-x, 0px), calc(-50% + var(--mouse-y, 0px)));
  transition: transform 0.2s ease-out;
  z-index: 1;
  width: 500px;
  height: 500px;
  pointer-events: none;
}
.float-img {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: box-shadow 0.5s ease;
}
.float-img img { width: 100%; height: 100%; object-fit: cover; }
.float-1 {
  width: 260px; height: 180px;
  top: 8%; right: 5%;
  animation: float1 6s infinite ease-in-out;
}
.float-2 {
  width: 200px; height: 240px;
  top: 38%; right: 25%;
  animation: float2 7s infinite ease-in-out 0.5s;
}
.float-3 {
  width: 220px; height: 150px;
  bottom: 5%; right: 10%;
  animation: float3 5.5s infinite ease-in-out 1s;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-22px) rotate(-1deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}

@media (max-width: 1100px) {
  .floating-images { display: none; }
}

/* ===== SECTION GLOBAL ===== */
.section-pad { padding-block: var(--section-pad); }
.bg-soft { background: var(--off-white); }
.bg-green {
  background: linear-gradient(160deg, var(--green-900) 0%, #0d4a0d 50%, var(--green-800) 100%);
  color: var(--white);
  position: relative;
}
.bg-green::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(76,175,80,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(251,191,36,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section-head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 720px; position: relative; }
.section-head.center { text-align: center; margin-inline: auto; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 12px;
  background: var(--green-50);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--green-100);
}
.bg-green .eyebrow {
  background: rgba(255,255,255,0.08);
  color: var(--green-300);
  border-color: rgba(255,255,255,0.1);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.bg-green .section-title { color: var(--white); }

.section-lead {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.8;
}
.bg-green .section-lead { color: rgba(255,255,255,0.65); }

/* ===== MARQUEE (Brand Scroll) ===== */
.marquee {
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--green-50), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--green-50), transparent); }

.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-800);
  opacity: 0.5;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}
.marquee-item:hover { opacity: 0.9; }
.marquee-item span { color: var(--green-500); }
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-300);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PRODUCTS / CATEGORIES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-100);
}
.cat-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.cat-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.05));
  pointer-events: none;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.cat-card:hover .cat-img img { transform: scale(1.08); }
.cat-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green-600);
  background: var(--green-50);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  width: fit-content;
  border: 1px solid var(--green-100);
}
.cat-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.cat-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-600);
  transition: all 0.3s var(--ease-out);
}
.cat-card:hover .cat-link { gap: 10px; color: var(--green-700); }
.cat-link svg { width: 16px; height: 16px; }

@media (max-width: 680px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* ===== WHY CHOOSE / FEATURES ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  position: relative;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  transition: all 0.5s var(--ease-out);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.feature-ico {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(46,160,67,0.3);
  transition: transform 0.4s var(--ease-spring);
}
.feature-card:hover .feature-ico { transform: scale(1.1) rotate(-5deg); }
.feature-ico svg { width: 26px; height: 26px; color: var(--white); }
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== ABOUT / SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.split-media img {
  width: 100%;
  border-radius: var(--radius-xl);
  transition: transform 0.8s var(--ease-out);
}
.split-media:hover img { transform: scale(1.03); }
.badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: transform 0.3s var(--ease-spring);
}
.badge-float:hover { transform: translateY(-4px); }
.badge-float .yr {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-600);
}
.badge-float p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}
.check-list { margin: 24px 0; }
.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
  transition: transform 0.3s ease;
}
.check-list li:hover { transform: translateX(4px); }
.ck {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid var(--green-200);
}
.ck svg { width: 14px; height: 14px; color: var(--green-600); }

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== SERVICES ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.svc-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s var(--ease-spring);
  border: 1px solid var(--green-100);
}
.svc-card:hover .svc-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  box-shadow: 0 8px 24px rgba(46,160,67,0.15);
}
.svc-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
/* Masonry via CSS columns — tiles keep their own aspect ratio */
.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item.g-tall   { aspect-ratio: 3 / 4; }
.gallery-item.g-square { aspect-ratio: 1 / 1; }
.gallery-item.g-wide   { aspect-ratio: 16 / 10; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); filter: brightness(0.82); }
.gallery-item::after {
  content: '⤢';
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1rem;
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-spring);
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.gallery-item:hover::after { opacity: 0.9; transform: scale(1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover .gallery-overlay h4 { transform: translateY(0); }
.gallery-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  margin-top: 4px;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out) 0.05s;
}
.gallery-item:hover .gallery-overlay p { transform: translateY(0); }

@media (max-width: 768px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 480px) {
  .gallery-grid { column-count: 1; }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8,20,8,0.92);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  max-width: min(900px, 92vw);
  max-height: 86vh;
  text-align: center;
  transform: scale(0.94);
  transition: transform 0.35s var(--ease-spring);
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox img {
  max-width: 100%;
  max-height: 74vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-cap { color: #fff; margin-top: 14px; }
.lightbox-cap h4 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; }
.lightbox-cap p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-top: 2px; }
.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}
.lightbox-close {
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); transform: rotate(90deg); }
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
@media (max-width: 560px) {
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ===== CONTACT FORM VALIDATION ===== */
.field-error {
  display: block;
  min-height: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #d23b3b;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.field-error:not(:empty) { opacity: 1; transform: translateY(0); }
.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: #e06464 !important;
  background: #fdf3f3;
  box-shadow: 0 0 0 3px rgba(224,100,100,0.12);
}
.form-status {
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}
.form-status.ok { color: var(--green-600); }

/* ===== LATEST UPDATES ===== */
.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.update-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--green-50);
  border-left: 4px solid var(--green-400);
  border-radius: var(--radius-lg);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
              box-shadow 0.35s ease, border-color 0.35s ease;
}
.update-card.in { opacity: 1; transform: translateY(0); }
.update-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-left-color: var(--gold-400);
}
.update-cover {
  display: block;
  width: calc(100% + 44px);
  margin: -22px -22px 14px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.update-cover img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.update-cover:hover img { transform: scale(1.05); }
.update-photos { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.update-photo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.update-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.update-photo:hover img { transform: scale(1.08); }
.update-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.update-emoji {
  font-size: 1.7rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: var(--radius-md);
  animation: prodGrow 5s ease-in-out infinite;
}
.update-meta { display: flex; flex-direction: column; gap: 3px; }
.update-date { font-size: 0.72rem; font-weight: 700; color: var(--green-600); }
.update-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-500);
  text-transform: uppercase;
}
.update-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.update-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.update-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-600);
  transition: gap 0.25s ease, color 0.25s ease;
}
.update-link:hover { gap: 10px; color: var(--green-700); }
.update-link svg { flex-shrink: 0; }
.updates-more { text-align: center; margin-top: 32px; }

/* keep reveal-hidden cards visible under reduced motion */
@media (prefers-reduced-motion: reduce) {
  .update-card { opacity: 1; transform: none; }
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--green-50), transparent);
  border-radius: 0 var(--radius-xl) 0 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.testi-card:hover::before { opacity: 1; }
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-100);
}
.quote-mark {
  font-size: 3.5rem;
  font-family: Georgia, serif;
  color: var(--green-200);
  line-height: 0.8;
  margin-bottom: 8px;
}
.stars {
  color: var(--gold-500);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card > p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.av {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(46,160,67,0.2);
}
.testi-author .nm {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.testi-author .rl {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-600), var(--green-700));
  background-size: 200% 200%;
  animation: ctaGradient 8s ease infinite;
}
@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(251,191,36,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.contact-info { padding-top: 8px; }
.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}
.contact-item:hover {
  background: var(--green-50);
  transform: translateX(4px);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--green-100);
  transition: all 0.3s var(--ease-spring);
}
.contact-item:hover .contact-icon {
  background: var(--green-500);
  border-color: var(--green-500);
}
.contact-icon svg { width: 20px; height: 20px; color: var(--green-600); transition: color 0.3s ease; }
.contact-item:hover .contact-icon svg { color: var(--white); }
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.contact-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contact-item a {
  color: var(--green-600);
  font-weight: 500;
  transition: color 0.2s ease;
}
.contact-item a:hover { color: var(--green-700); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-400), var(--green-400));
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1.5px solid var(--green-100);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--text-dark);
  transition: all 0.3s var(--ease-out);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(46,160,67,0.1);
  background: var(--white);
  transform: translateY(-1px);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show {
  display: block;
  animation: fadeInScale 0.5s var(--ease-spring);
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--green-900), #071f07);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-500), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-spring);
}
.footer-social a:hover {
  background: var(--green-500);
  border-color: var(--green-500);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46,160,67,0.3);
}
.footer-social svg { width: 18px; height: 18px; color: var(--white); }

.footer h5 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.footer-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--green-400);
  transition: width 0.3s var(--ease-out);
  margin-right: 0;
}
.footer-links a:hover {
  color: var(--green-300);
  padding-left: 0;
}
.footer-links a:hover::before {
  width: 12px;
  margin-right: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) !important;
}
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="left"].revealed { transform: translateX(0) !important; }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="right"].revealed { transform: translateX(0) !important; }
[data-reveal="scale"] { transform: scale(0.9); }
[data-reveal="scale"].revealed { transform: scale(1) !important; }
[data-delay="1"] { transition-delay: 120ms; }
[data-delay="2"] { transition-delay: 240ms; }
[data-delay="3"] { transition-delay: 360ms; }
[data-delay="4"] { transition-delay: 480ms; }
[data-delay="5"] { transition-delay: 600ms; }

/* ===== COUNTER ANIMATION ===== */
[data-count] {
  display: inline-block;
  min-width: 2ch;
}

/* ===== BACK TO TOP ===== */
/* discreet admin gear — static, in the footer bottom row */
.footer-end { display: inline-flex; align-items: center; gap: 12px; }
.admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease-spring);
}
.admin-link svg { width: 16px; height: 16px; flex: none; }
.admin-link:hover {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-green);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
  z-index: 100;
}
.back-to-top.visible { transform: translateY(0); opacity: 1; }
.back-to-top:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(34,139,34,0.35);
}
.back-to-top svg { width: 22px; height: 22px; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 100;
  animation: pulseWa 2.5s infinite;
  transition: all 0.3s var(--ease-spring);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 30px; height: 30px; color: var(--white); }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
}

/* WhatsApp tooltip */
.wa-tooltip {
  position: fixed;
  bottom: 88px;
  left: 24px;
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
  pointer-events: none;
  z-index: 101;
  white-space: nowrap;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 20px;
  width: 12px; height: 12px;
  background: var(--white);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}
.wa-tooltip.show { opacity: 1; transform: translateY(0); }

/* ===== LOADING / PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--green-400), var(--gold-400));
  border-radius: 2px;
  animation: loadBar 1.2s infinite ease-in-out;
}
@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ===== SMOOTH SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-50); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--green-300), var(--green-400));
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--green-500); }

/* ===== CURSOR GLOW (desktop only) ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,160,67,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ===== RESPONSIVE FINE TUNING ===== */
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat .num { font-size: 1.5rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .section-title { font-size: 1.6rem; }
  .hero-badge { font-size: 0.75rem; }
  .hero-sub { font-size: 0.95rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
}

/* ===== SELECTION ===== */
::selection {
  background: var(--green-200);
  color: var(--green-900);
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 2px;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .product-card { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ============================================================
   DYNAMIC PRODUCTS  (built on top of base theme — same palette)
   ============================================================ */
.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 4px 0 38px;
}
.filter-chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--white);
  border: 1.5px solid var(--green-100);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.25s var(--ease-out);
}
.filter-chip:hover {
  border-color: var(--green-400);
  background: var(--green-50);
  transform: translateY(-2px);
}
.filter-chip.active {
  color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(34,139,34,0.28);
}
.filter-chip .cnt {
  font-size: 0.7rem;
  opacity: 0.75;
  background: rgba(0,0,0,0.06);
  padding: 1px 7px;
  border-radius: var(--radius-full);
}
.filter-chip.active .cnt { background: rgba(255,255,255,0.22); opacity: 0.95; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--green-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.product-card.in { opacity: 1; transform: translateY(0); }
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-200);
}
.product-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media .tile {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 18%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(150deg, var(--g1, var(--green-50)), var(--g2, var(--green-100)));
}
.product-media .tile::before {
  content: '';
  position: absolute;
  width: 170%;
  height: 170%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.45), transparent 45%);
  animation: tileGlow 7s ease-in-out infinite;
}
@keyframes tileGlow {
  0%, 100% { transform: translate(-13%, -9%); }
  50%      { transform: translate(13%, 9%); }
}
.product-media .emoji {
  position: relative;
  font-size: 4.2rem;
  line-height: 1;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
  transform-origin: 50% 90%;
  animation: prodGrow 4s ease-in-out infinite;
}
@keyframes prodGrow {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50%      { transform: scale(1.12) rotate(2deg); }
}
.product-card:hover .product-media .emoji { animation: prodFloat 1.6s ease-in-out infinite; }
@keyframes prodFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-10px) rotate(3deg); }
}
.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.product-card:hover .product-media img { transform: scale(1.09); }
.product-media .ptag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--green-800);
  background: rgba(255,255,255,0.92);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  backdrop-filter: blur(4px);
}
.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.product-body .en-sub {
  font-size: 0.78rem;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-700);
}
.product-price .per {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.product-price.ask {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-500);
}
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.product-actions a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 12px;
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
}
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37,211,102,0.30);
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-call {
  background: var(--green-50);
  color: var(--green-700);
  border: 1.5px solid var(--green-200);
}
.btn-call:hover { background: var(--green-100); border-color: var(--green-400); transform: translateY(-2px); }
.product-actions svg { width: 16px; height: 16px; }

.product-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-media { height: 180px; }
}

/* ===== LANGUAGE TOGGLE PILL (top-right) ===== */
.lang-toggle {
  position: relative;
  flex-shrink: 0;
  width: 62px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--green-100);
  border: 1px solid var(--green-200);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.lang-toggle:hover { background: var(--green-200); }
.lang-knob {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.22);
  transition: transform 0.32s var(--ease-spring);
  z-index: 1;
}
.lang-toggle.en .lang-knob { transform: translate(32px, -50%); }
.lang-alt {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 800;
  color: var(--green-700);
  pointer-events: none;
}
.lang-toggle.en .lang-alt { left: 10px; right: auto; }
/* readable over the transparent (pre-scroll) nav on the hero */
.nav-wrap:not(.scrolled) .lang-toggle {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}
.nav-wrap:not(.scrolled) .lang-alt { color: rgba(255,255,255,0.9); }
