/* Import modern font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
:root {
  --green: #006C35;
  --white: #fff;
  --gray: #f5f5f5;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --radius: 2.2rem;
  --shadow: 0 8px 32px rgba(0,108,53,0.10), 0 1.5px 8px rgba(0,0,0,0.04);
}

html {
  scroll-behavior: smooth;
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  max-width: 400px;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  border-left: 4px solid #28a745;
}

.toast.error {
  border-left: 4px solid #dc3545;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  font-size: 20px;
}

.toast.success .toast-icon {
  color: #28a745;
}

.toast.error .toast-icon {
  color: #dc3545;
}

.toast-message {
  flex: 1;
  font-weight: 500;
}

.toast-close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #666;
  padding: 0;
  margin-left: 8px;
}

.toast-close:hover {
  color: #333;
}
body {
  font-family: 'Inter', 'Segoe UI', Arial, system-ui, sans-serif;
  background: var(--white);
  color: #1a2b22;
  line-height: 1.7;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  min-height: 100vh;
  position: relative;
  margin: 0 !important;
}
.logo-placeholder.navbar-logo-hidden {
  display: none !important;
}
.logo-placeholder {
  transition: opacity 0.3s;
}
/* Floating blurred gradient background */
body::before {
  content: '';
  position: fixed;
  top: 10vh; left: 50vw;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle at 30% 30%, #b6ffd0 0%, #006C35 60%, transparent 100%);
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
header {
  width: 100vw;
  max-width: none;
  margin: 0;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.01) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s cubic-bezier(.4,0,.2,1);
}
header.navbar-bg {
  background: rgba(255, 255, 255, 0.98) !important;
}
.header-flex {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-logo {
  max-height: 64px;
  width: auto;
  max-width: 100vw;
  height: 64px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}
.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 64px;
  background: none !important;
  border-radius: 0;
  box-shadow: none;
  margin-right: 1.5rem;
  letter-spacing: 2px;
  animation: fadeIn 1s;
  border: none;
  padding: 0;
}
nav ul {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  display: flex;
  gap: 2.5rem;
  list-style: none;
  justify-content: center;
  align-items: center;
}
nav a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: color var(--transition), transform var(--transition);
  position: relative;
  padding: 0.3rem 0.7rem;
  border-radius: 1.2rem;
  background: transparent;
}
nav a:hover {
  background: #eafff3;
  transform: scale(1.08);
}
nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #00b86b 0%, #b6ffd0 100%);
  transition: width var(--transition);
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
}
nav a:hover::after {
  width: 100%;
}
/* HERO BACKGROUND FADE */
.hero {
  position: relative;
  overflow: hidden;
  background: #b6ffd0;
  min-height: 80vh;
  height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem; /* adjust to navbar height + spacing */
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 150px !important;
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
  animation: none !important;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.hero::before {
  transform: translateY(var(--scroll-slow, 0px));
}

.hero::after {
  transform: translateY(var(--scroll-medium, 0px));
  background: rgba(255, 255, 255, 0.1);
}
/* Agriculture-themed hero backgrounds with Pexels images */
.hero-bg-0::before { 
  background-image: url('pexels-pixabay-265216.jpg'); 
}
.hero-bg-1::before { 
  background-image: url('pexels-nc-farm-bureau-mark-2252584.jpg'); 
}
.hero-bg-2::before { 
  background-image: url('pexels-nc-farm-bureau-mark-2255801.jpg'); 
}
.hero-bg-0::before { opacity: 1; }
.hero-bg-1::after { 
  background-image: url('pexels-nc-farm-bureau-mark-2252584.jpg'); 
  opacity: 1; 
}
.hero-bg-2::after { 
  background-image: url('pexels-nc-farm-bureau-mark-2255801.jpg'); 
  opacity: 1; 
}
/* HERO CONTAINER TRANSPARENT */
.hero .container {
  position: relative;
  z-index: 2;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 2.5rem 2rem 4rem 2rem;
  display: inline-block;
}
.hero::before, .hero::after {
  z-index: 1;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.hero h3 {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.cta-btn {
  background: linear-gradient(90deg, #006C35 60%, #00b86b 100%);
  color: #fff;
  padding: 1.1rem 2.8rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 16px #00b86b33;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  animation: ctaFloat 3s ease-in-out infinite alternate;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #00b86b 60%, #006C35 100%);
  color: #fff;
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 8px 32px #00b86b33;
  animation: ctaPulse 0.6s ease-in-out infinite alternate;
}

/* Product CTA buttons - smaller version for cards */
.product-cta-btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  margin-top: auto;
  width: auto;
  display: inline-block;
}
/* Futuristic animated section backgrounds */
section {
  padding: 6rem 0 4.5rem 0;
  position: relative;
  background: linear-gradient(120deg, #eafff3 0%, #b6ffd0 60%, #fff 100%);
  overflow: hidden;
  animation: fadeInUp 1s;
}

/* Parallax layers */
.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: transform;
}

.parallax-slow {
  transform: translateY(var(--scroll-slow, 0px));
}

.parallax-medium {
  transform: translateY(var(--scroll-medium, 0px));
}

.parallax-fast {
  transform: translateY(var(--scroll-fast, 0px));
}
section:not(.hero)::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  width: 600px; height: 300px;
  background: radial-gradient(circle at 30% 30%, #00b86b33 0%, transparent 80%);
  filter: blur(60px);
  opacity: 0.18;
  z-index: 0;
  transform: translateX(-50%);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(30px); }
}
.section-icon svg {
  filter: drop-shadow(0 0 16px #00b86b88);
  animation: iconPulse 2.5s infinite alternate;
}
@keyframes iconPulse {
  0% { filter: drop-shadow(0 0 8px #00b86b44); }
  100% { filter: drop-shadow(0 0 24px #00b86bcc); }
}
.section-subtitle {
  color: #00b86b;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.8;
}
.about
{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.about, .consulting, .logistics, .products {
  background: rgba(255,255,255,0.92);
  border-radius: 2.5rem;
  box-shadow: 0 16px 48px #00b86b22, 0 2px 12px #006C3522;
  border: none;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
  padding: 4rem 2.5rem 3rem 2.5rem;
  transition: none !important;
  animation: none !important;
}
.about:hover, .consulting:hover, .logistics:hover, .products:hover {
  transform: none !important;
  box-shadow: 0 16px 48px #00b86b22, 0 2px 12px #006C3522;
}
.about h2, .consulting h2, .logistics h2, .products h2 {
  color: var(--green);
  margin-bottom: 1.2rem;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-shadow: 0 2px 12px #b6ffd044;
  animation: headingIn 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes headingIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.product-list {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
/* PRODUCT CARD POPUP ONLY */
.product-card {
  background: rgba(255,255,255,0.97);
  border-radius: 2.5rem;
  box-shadow: 0 16px 48px #00b86b22, 0 2px 12px #006C3522;
  border: none;
  padding: 3.2rem 2.5rem;
  min-width: 260px;
  max-width: 340px;
  margin: 2.2rem 0;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s cubic-bezier(.4,0,.2,1);
  animation: none !important;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}
.product-card:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 48px #00b86b33, 0 2px 12px #006C3522;
}
.product-card h3, .product-card h4 {
  margin-bottom: 0.5rem;
}
.product-card ul {
  margin-top: 1.2rem;
  color: #00b86b;
  font-size: 1.05rem;
  padding-left: 1.2rem;
}
.testimonial-list {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: rgba(255,255,255,0.92);
  border-radius: 2.2rem;
  box-shadow: 0 12px 36px #00b86b22, 0 2px 12px #006C3522;
  border: none;
  padding: 2.5rem 2rem;
  min-width: 260px;
  max-width: 340px;
  margin: 2rem 0;
  font-style: italic;
  animation: cardAppear 1.1s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.testimonial-card:hover {
  transform: perspective(800px) rotateY(-6deg) scale(1.08) translateY(-10px);
  box-shadow: 0 24px 64px #00b86b33, 0 4px 16px #006C3522;
  background: rgba(255,255,255,0.98);
}
.testimonial-card span {
  display: block;
  margin-top: 1.2rem;
  color: var(--green);
  font-weight: 700;
  font-style: normal;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 420px;
  margin: 0 auto;
}
.contact input, .contact textarea {
  padding: 1.1rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  background: rgba(0,108,53,0.06);
  color: #1a2b22;
  box-shadow: 0 2px 8px #00b86b11;
  transition: box-shadow var(--transition), background var(--transition);
  resize: none;
}
.contact input:focus, .contact textarea:focus {
  box-shadow: 0 4px 16px #00b86b22;
  background: #fff;
  outline: none;
}
.contact button {
  background: linear-gradient(90deg, #006C35 60%, #00b86b 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 1.1rem 2.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 16px #00b86b33;
  margin-top: 0.5rem;
}
.contact button:hover {
  background: linear-gradient(90deg, #00b86b 60%, #006C35 100%);
  color: #fff;
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 8px 32px #00b86b33;
}
footer {
  background: rgba(255,255,255,0.7);
  color: var(--green);
  text-align: center;
  padding: 1.5rem 0;
  font-size: 1.1rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
}
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes ctaFloat {
  0% { 
    transform: translateY(0px);
    box-shadow: 0 2px 16px #00b86b33;
  }
  100% { 
    transform: translateY(-8px);
    box-shadow: 0 8px 24px #00b86b44;
  }
}
@keyframes ctaPulse {
  0% { 
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 8px 32px #00b86b33;
  }
  100% { 
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 40px #00b86b55;
  }
}
@keyframes pulseCard {
  0% { transform: scale(1); box-shadow: 0 8px 32px #00b86b22; }
  50% { transform: scale(1.05); box-shadow: 0 16px 48px #00b86b33; }
  100% { transform: scale(1); box-shadow: 0 8px 32px #00b86b22; }
}
/* HERO CAROUSEL FADE EFFECT */
.hero-carousel {
  width: 420px;
  height: 260px;
  margin: 0 auto 2.5rem auto;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px #00b86b33, 0 2px 12px #006C3522;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #b6ffd0;
  animation: carouselGlow 3s infinite alternate;
}
.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.carousel-img.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
/* Responsive Styles */
@media (max-width: 900px) {
  .product-list, .testimonial-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .header-flex {
    flex-direction: column;
    gap: 1.2rem;
  }
  header {
    padding: 0.7rem 0.5rem;
  }
}
@media (max-width: 600px) {
  .container {
    width: 99%;
    padding: 0 0.2rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 0.5rem;
  }
  section {
    padding: 2.5rem 0.2rem;
  }
  .about, .products, .testimonials, .contact {
    border-radius: 1.2rem;
  }
  footer {
    border-radius: 0 0 1.2rem 1.2rem;
  }
  .hero-carousel {
    width: 98vw;
    height: 38vw;
    min-height: 160px;
    border-radius: 1.2rem;
  }
  .carousel-img {
    border-radius: 1.2rem;
  }
  .hero {
    padding-top: 5.5rem;
    margin-bottom: 8rem;
  }
}
#language-switcher {
  background: #fff;
  color: var(--green);
  border: none;
  border-radius: 1.2rem;
  padding: 0.3rem 15px 0 15px;
  font-size: 1.05rem;
  font-family: inherit;
  font-weight: 600;
  box-shadow: 0 1px 4px #00b86b11;
  appearance: none;
  outline: none;
  cursor: pointer;
  background-image: none;
  transition: background 0.2s, color 0.2s;
}
#language-switcher:focus {
  background: #eafff3;
}
#language-switcher option {
  color: #222;
  font-weight: 600;
  font-size: 1.05rem;
}
.lang-switcher-wrapper {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  gap: 0.3rem;
  position: relative;
  cursor: pointer;
  border-radius: 1.2rem;
  transition: background 0.2s;
  padding: 0.2rem 0.8rem;
}
.lang-switcher-wrapper:hover,
.lang-switcher-wrapper:focus-within {
  background: #fff;
}
.lang-switcher-wrapper svg {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.7;
}
.lang-switcher-arrow {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  opacity: 0.6;
  flex-shrink: 0;
}
#language-switcher {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.custom-lang-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  outline: none;
}
.custom-lang-selected {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 1.2rem;
  padding: 0.3rem 15px;
  font-size: 1.05rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  color: var(--green);
  transition: background 0.2s;
  outline: none;
  width: 100%;
  justify-content: flex-start;
}
.custom-lang-label {
  margin-right: 0;
}
.custom-lang-dropdown:focus .custom-lang-selected,
.custom-lang-dropdown:focus-within .custom-lang-selected,
.custom-lang-selected:focus {
  background: #fff;
}
.custom-lang-options {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 100%;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px #00b86b22;
  z-index: 10;
  margin-top: 0.2rem;
}
.lang-switcher-wrapper.open .custom-lang-options {
  display: block;
}
.custom-lang-option {
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  color: var(--green);
  font-weight: 600;
  font-size: 1.05rem;
  background: transparent;
  border: none;
  outline: none;
  transition: background 0.15s, color 0.15s;
}
.custom-lang-option:hover,
.custom-lang-option:focus {
  background: #eafff3;
  color: #004d26;
}
.custom-lang-option[aria-selected="true"] {
  background: #b6ffd0;
  color: #006C35;
}
.about-aspect-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0 0 0;
}
.about-aspect-card,
.consulting-aspect-card,
.logistics-aspect-card,
.product-aspect-card {
  background: rgba(255,255,255,0.96);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px #00b86b22;
  padding: 2rem 1.5rem 2.5rem 1.5rem;
  /* min-width: 220px; */
  max-width: 320px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .about-aspect-card,
  .consulting-aspect-card,
  .logistics-aspect-card,
  .product-aspect-card {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}
.about-aspect-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.about-aspect-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.about-aspect-desc {
  font-size: 1.05rem;
  color: #1a2b22;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .about-aspect-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .about-aspect-card {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}
@media (max-width: 900px) {
  .header-flex {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  #mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.6);
    border: none;
    font-size: 2rem;
    color: var(--green);
    cursor: pointer;
    z-index: 2000;
    margin-left: auto;
    margin-right: 1rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.7rem;
    transition: background 0.2s;
  }
  #mobile-nav-toggle:active, #mobile-nav-toggle:focus {
    background: #eafff3;
  }
  nav ul {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    background: #fff !important;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 0 2rem 0;
    box-shadow: 0 8px 32px #00b86b22;
    z-index: 1200;
    border-radius: 0 0 2rem 2rem;
    animation: mobileNavFadeIn 0.3s;
  }
  header.mobile-nav-open nav ul {
    display: flex;
  }
  @keyframes mobileNavFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  nav ul li {
    width: 100%;
    text-align: center;
  }
  .lang-switcher-wrapper {
    position: absolute;
    left: 50%;
    bottom: 0.7rem;
    top: auto;
    transform: translateX(-50%);
    z-index: 3001;
    width: auto;
    margin: 0;
    float: none !important;
    display: flex; 
    justify-content: center;
    align-items: center;
  }
}
#mobile-nav-toggle {
  display: none;
}
.hero-logo {
  display: block;
  margin: 10rem auto 0 auto;
  max-width: 400px;
  min-width: 180px;
  width: 60vw;
  height: auto;
}
.consulting-aspect-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0 0 0;
}
.consulting-aspect-card {
  background: rgba(255,255,255,0.96);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px #00b86b22;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.consulting-aspect-card:hover {
  box-shadow: 0 8px 32px #00b86b33;
  transform: translateY(-4px) scale(1.03);
}
.consulting-aspect-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.consulting-aspect-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.consulting-aspect-desc {
  font-size: 1.05rem;
  color: #1a2b22;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .consulting-aspect-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .consulting-aspect-card {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}
.logistics-aspect-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0 0 0;
}
.logistics-aspect-card {
  background: rgba(255,255,255,0.96);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px #00b86b22;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.logistics-aspect-card:hover {
  box-shadow: 0 8px 32px #00b86b33;
  transform: translateY(-4px) scale(1.03);
}
.logistics-aspect-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.logistics-aspect-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.logistics-aspect-desc {
  font-size: 1.05rem;
  color: #1a2b22;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .logistics-aspect-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .logistics-aspect-card {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}
.product-aspect-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2.5rem 0 0 0;
}
.product-aspect-card {
  background: rgba(255,255,255,0.96);
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px #00b86b22;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-aspect-card:hover {
  box-shadow: 0 8px 32px #00b86b33;
  transform: translateY(-4px) scale(1.03);
}
.product-aspect-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.product-aspect-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.product-aspect-desc {
  font-size: 1.05rem;
  color: #1a2b22;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .product-aspect-list {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .product-aspect-card {
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
  .product-cta-btn {
    margin-top: 1.5rem;
  }
}

/* Alternating Product Layout */
.product-alternating-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin: 3rem 0;
}

.product-alternating-card {
  background: rgba(255,255,255,0.96);
  border-radius: 2rem;
  box-shadow: 0 8px 32px #00b86b22;
  padding: 3rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-alternating-card:hover {
  box-shadow: 0 12px 40px #00b86b33;
  transform: translateY(-4px) scale(1.02);
}

.product-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-height: 200px;
}

.product-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-right .product-content {
  flex-direction: row;
}

.product-left .product-content {
  flex-direction: row-reverse;
}

.product-alternating-card .product-aspect-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #eafff3 0%, #b6ffd0 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px #00b86b22;
}

.product-alternating-card .product-aspect-icon .animated-icon {
  width: 48px;
  height: 48px;
}

.product-alternating-card .product-cta-btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  margin-top: 1rem;
  width: auto;
  display: inline-block;
  align-self: flex-start;
  background: transparent !important;
  color: #006C35 !important;
  border: 2px solid #006C35 !important;
  border-radius: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 108, 53, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transform-origin: center;
  animation: none !important;
}

.product-alternating-card .product-cta-btn:hover {
  background: linear-gradient(135deg, #00b86b 0%, #006C35 100%) !important;
  color: #fff !important;
  transform: scale(1.05) translateY(-3px) !important;
  box-shadow: 0 12px 28px rgba(0, 108, 53, 0.25) !important;
  border-color: #00b86b !important;
  animation: none !important;
}

/* Mobile responsive for alternating layout */
@media (max-width: 900px) {
  .product-alternating-list {
    gap: 2rem;
  }
  
  .product-alternating-card {
    padding: 1.5rem;
  }
  
  .product-content {
    gap: 1.5rem;
    min-height: auto;
  }
  
  .product-text {
    text-align: left;
  }
  
  .product-right .product-content {
    flex-direction: row;
  }
  
  .product-left .product-content {
    flex-direction: row-reverse;
  }
  
  .product-alternating-card .product-aspect-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  
  .product-alternating-card .product-aspect-icon .animated-icon {
    width: 32px;
    height: 32px;
  }
  
  .product-alternating-card .product-cta-btn {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

/* FOOTER STYLES */
.footer {
  background: linear-gradient(135deg, #006C35 0%, #004d28 100%);
  color: #fff;
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  width: 60px;
  height: auto;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.footer-tagline {
  font-size: 1rem;
  color: #b6ffd0;
  font-weight: 500;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #eafff3;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 1.2rem;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: #006C35;
  background: #eafff3;
  transform: scale(1.08);
}

.footer-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #00b86b 0%, #b6ffd0 100%);
  transition: width 0.3s ease;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-cta-btn {
  background: linear-gradient(90deg, #b6ffd0 0%, #eafff3 100%);
  color: #006C35;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(182, 255, 208, 0.3);
}

.footer-cta-btn:hover {
  background: linear-gradient(90deg, #eafff3 0%, #b6ffd0 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(182, 255, 208, 0.4);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(182, 255, 208, 0.2);
  border-radius: 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #eafff3;
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #eafff3;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #b6ffd0;
}

/* Mobile Footer */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.gdpr-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 3000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
}
.gdpr-modal.show {
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn 0.45s;
}
.gdpr-modal.hide {
  opacity: 0;
  pointer-events: none;
  animation: fadeOut 0.45s;
}
@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.gdpr-modal-content {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px #00b86b22, 0 2px 12px #006C3522;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 320px;
  max-width: 720px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: fadeInUp 0.6s;
  margin: auto;
  min-height: fit-content;
  box-sizing: border-box;
}
.gdpr-modal-content h3 {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.gdpr-modal-content p, .gdpr-modal-content label, .gdpr-modal-content div, .gdpr-modal-content textarea {
  color: #1a2b22;
  font-size: 1.08rem;
}
.gdpr-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 2rem;
  color: #006C35;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10;
  transition: color 0.2s;
}
.gdpr-modal-close:hover {
  color: #00b86b;
}
.gdpr-btn {
  background: linear-gradient(90deg, #006C35 60%, #00b86b 100%);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.5rem 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 16px #00b86b33;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.gdpr-btn:hover {
  background: linear-gradient(90deg, #00b86b 60%, #006C35 100%);
  color: #fff;
  transform: scale(1.06);
}
.gdpr-contact-consent {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 1rem;
  text-align: left;
  background: none;
  flex-wrap: wrap;
}
.gdpr-contact-consent input[type="checkbox"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
#gdpr-contact-form input:not([type="checkbox"]), #gdpr-contact-form textarea {
  padding: 1rem;
  border: 1.5px solid #b6ffd0;
  border-radius: 1.2rem;
  font-size: 1.08rem;
  margin-bottom: 1.1rem;
  background: #f5f5f5;
  color: #1a2b22;
  box-shadow: 0 2px 8px #00b86b11;
  transition: box-shadow 0.2s, border 0.2s;
}
#gdpr-contact-form input:not([type="checkbox"]):focus, #gdpr-contact-form textarea:focus {
  border: 1.5px solid #00b86b;
  box-shadow: 0 4px 16px #00b86b22;
  outline: none;
  background: #fff;
}
#gdpr-contact-form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}
#gdpr-learn-more {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.5rem 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 16px #00b86b33;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
#gdpr-learn-more:hover {
  background: #00b86b;
  color: #fff;
  transform: scale(1.06);
}
@media (max-width: 600px) {
  .gdpr-modal {
    padding: 1rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  
  .gdpr-modal-content {
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 2rem);
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 1.2rem;
    margin: 0 auto;
  }
}
/* Cookie consent modal width: 50% desktop, 95% mobile */
#gdpr-cookie-modal .gdpr-modal-content {
  min-width: 0;
  width: 50vw;
  max-width: 50vw;
}
@media (max-width: 700px) {
  #gdpr-cookie-modal .gdpr-modal-content {
    width: 100%;
    max-width: calc(100vw - 2rem);
    min-width: 0;
    padding: 2.5rem 2rem 2rem 2rem;
  }
}
/* Contact modal simple styling */
#gdpr-contact-modal .gdpr-modal-content {
  background: #fff;
  max-width: 420px;
  width: 100%;
  min-width: 0;
  box-shadow: 0 4px 24px #00b86b22;
  padding: 1.5rem;
  border-radius: 1.2rem;
}
@media (max-width: 700px) {
  #gdpr-contact-modal .gdpr-modal-content {
    max-width: calc(100vw - 2rem);
    width: 100%;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 1.2rem;
  }
}
#gdpr-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.5rem;
}
#gdpr-contact-form label {
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.2rem;
  text-align: left;
}
#gdpr-contact-form input,
#gdpr-contact-form textarea {
  background: #f5f5f5;
  border: 1.5px solid #b6ffd0;
  border-radius: 0.7rem;
  font-size: 1.08rem;
  color: #1a2b22;
  box-shadow: none;
  padding: 0.8rem 1rem;
  margin-bottom: 0;
  transition: box-shadow 0.2s, border 0.2s;
  box-sizing: border-box;
}
#gdpr-contact-form textarea {
  width: 100% !important;
}
#gdpr-contact-form input:focus,
#gdpr-contact-form textarea:focus {
  border: 1.5px solid #00b86b;
  outline: none;
  background: #fff;
}
#gdpr-contact-form button[type="submit"] {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 0.7rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px #00b86b22;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
#gdpr-contact-form button[type="submit"]:hover {
  background: #00b86b;
  color: #fff;
  transform: scale(1.03);
}
#gdpr-contact-form button[type="submit"]:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  transform: none;
}
.gdpr-contact-consent label {
  font-weight: 400;
  color: #1a2b22;
  margin: 0;
  line-height: 1.4;
  flex: 1;
  font-size: 0.95rem;
}
.animated-leaf {
  pointer-events: none;
  z-index: 1;
  animation: floatLeaf 4s ease-in-out infinite alternate;
}
.animated-leaf:nth-of-type(2) {
  animation-delay: 1.2s;
  animation-duration: 5s;
}
.animated-leaf:nth-of-type(3) {
  animation-delay: 2.1s;
  animation-duration: 6s;
}
@keyframes floatLeaf {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  50% { transform: translateY(-10px) scale(1.04) rotate(-3deg); }
  100% { transform: translateY(0) scale(1) rotate(0deg); }
}
.animated-vine {
  pointer-events: none;
  z-index: 1;
  animation: waveVine 6s ease-in-out infinite alternate;
}
@keyframes waveVine {
  0% { transform: translateX(-50%) scaleY(1); }
  50% { transform: translateX(-50%) scaleY(1.08); }
  100% { transform: translateX(-50%) scaleY(1); }
}
.section-divider {
  pointer-events: none;
  z-index: 2;
  animation: dividerWave 7s ease-in-out infinite alternate;
  bottom: -1px !important;
  will-change: transform;
  transform: translateY(var(--scroll-slow, 0px));
}

@media (max-width: 900px) {
  .section-divider {
    bottom: -35px !important;
    z-index: 1;
  }
}
@keyframes dividerWave {
  0% { transform: none; }
  50% { transform: translateY(8px); }
  100% { transform: none; }
}
.animated-icon {
  display: inline-block;
  vertical-align: middle;
  pointer-events: none;
  will-change: transform;
}

/* Parallax effects for animated icons - DISABLED to prevent SVG icons from being pushed off-screen */
.about-aspect-icon .animated-icon {
  /* transform: translateY(var(--scroll-medium, 0px)); */
}

.consulting-aspect-icon .animated-icon {
  /* transform: translateY(var(--scroll-slow, 0px)); */
}

.logistics-aspect-icon .animated-icon {
  /* transform: translateY(var(--scroll-fast, 0px)); */
}

.product-aspect-icon .animated-icon {
  /* transform: translateY(var(--scroll-medium, 0px)); */
}
#icon-seed ellipse {
  transform-origin: 18px 28px;
  animation: seedGrow 1.8s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes seedGrow {
  0% { transform: scaleY(0.7); }
  100% { transform: scaleY(1); }
}
#icon-sun #rays {
  transform-origin: 18px 18px;
  animation: sunRays 3.5s linear infinite;
}
@keyframes sunRays {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#icon-water path, #icon-water2 path {
  transform-origin: 18px 18px;
  animation: waterFloat 2.8s ease-in-out infinite alternate;
}
@keyframes waterFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-7px); }
}
#icon-plant ellipse {
  transform-origin: 18px 32px;
  animation: plantGrow 2.2s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes plantGrow {
  0% { transform: scaleY(0.7); }
  100% { transform: scaleY(1); }
}
#icon-tractor circle {
  transform-origin: center;
  animation: tractorWheel 2.2s linear infinite;
}
#icon-tractor circle:nth-of-type(1) {
  animation-delay: 0s;
}
#icon-tractor circle:nth-of-type(2) {
  animation-delay: 0.5s;
}
@keyframes tractorWheel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#icon-bag ellipse {
  animation: bagPulse 1.8s ease-in-out infinite alternate;
}
@keyframes bagPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
#icon-globe {
  animation: globeSpin 6s linear infinite;
  transform-origin: 18px 18px;
}
@keyframes globeSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#icon-rain line {
  animation: rainDrop 1.2s cubic-bezier(.4,0,.2,1) infinite alternate;
}
#icon-rain line:nth-of-type(1) { animation-delay: 0s; }
#icon-rain line:nth-of-type(2) { animation-delay: 0.3s; }
#icon-rain line:nth-of-type(3) { animation-delay: 0.6s; }
@keyframes rainDrop {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0.7; }
}
#icon-roots path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: rootsGrow 2.2s cubic-bezier(.4,0,.2,1) forwards;
}
#icon-roots path:nth-of-type(1) { animation-delay: 0.2s; }
#icon-roots path:nth-of-type(2) { animation-delay: 0.5s; }
#icon-roots path:nth-of-type(3) { animation-delay: 0.8s; }
@keyframes rootsGrow {
  to { stroke-dashoffset: 0; }
}
#icon-field path {
  animation: fieldWave 2.5s ease-in-out infinite alternate;
}
@keyframes fieldWave {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}
#icon-sprout ellipse {
  transform-origin: 18px 32px;
  animation: sproutGrow 2.2s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes sproutGrow {
  0% { transform: scaleY(0.7); }
  100% { transform: scaleY(1); }
}
#icon-wind path {
  animation: windMove 2.2s ease-in-out infinite alternate;
}
#icon-wind path:nth-of-type(1) { animation-delay: 0s; }
#icon-wind path:nth-of-type(2) { animation-delay: 0.5s; }
@keyframes windMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(8px); }
}
#icon-box rect:nth-of-type(2) {
  transform-origin: 18px 13px;
  animation: boxLidBounce 1.6s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes boxLidBounce {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-8deg); }
}
#icon-gears #gear1 {
  transform-origin: 12px 24px;
  animation: gearSpin1 2.5s linear infinite;
}
#icon-gears #gear2 {
  transform-origin: 24px 12px;
  animation: gearSpin2 2.5s linear infinite reverse;
}
@keyframes gearSpin1 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes gearSpin2 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#icon-truck circle {
  transform-origin: center;
  animation: truckWheel 2.2s linear infinite;
}
#icon-truck circle:nth-of-type(1) { animation-delay: 0s; }
#icon-truck circle:nth-of-type(2) { animation-delay: 0.5s; }
@keyframes truckWheel {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#icon-warehouse polygon {
  transform-origin: 18px 11px;
  animation: warehouseRoof 1.7s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes warehouseRoof {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}
#icon-warning polygon {
  animation: warningPulse 1.2s cubic-bezier(.4,0,.2,1) infinite alternate;
}
@keyframes warningPulse {
  0% { filter: drop-shadow(0 0 0 #ffe066); }
  100% { filter: drop-shadow(0 0 8px #ffe066); }
}
/* Card appear animation with bloom effect */
.card-appear {
  opacity: 0;
  transform: scale(0.85) translateY(40px) rotateX(15deg);
  filter: blur(2px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1), filter 0.8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform, filter;
}
.card-appear.visible {
  opacity: 1;
  transform: scale(1) translateY(0) rotateX(0deg);
  filter: blur(0px);
}
/* Staggered animation for multiple cards */
.card-appear:nth-child(1) { transition-delay: 0ms; }
.card-appear:nth-child(2) { transition-delay: 150ms; }
.card-appear:nth-child(3) { transition-delay: 300ms; }
.card-appear:nth-child(4) { transition-delay: 450ms; }
.card-appear:nth-child(5) { transition-delay: 600ms; }

#product1-cta {
  width: 100%;
}
#product2-cta {
  width: 100%;
}
#product3-cta {
  width: 100%;
}

#close-cookie-modal {
  display: none;
}