/* style.css */
:root {
  --green-900: #1f5f2e;
  --green-800: #2d7a3b;
  --green-700: #2f8a41;
  --green-600: #2ea44f;
  --green-500: #35b75b;

  --mint-100: #e9f6ea;
  --mint-200: #def2df;

  --cream-100: #fbfbf6;
  --cream-200: #f6f6ee;

  --text-900: #0f2a17;
  --text-700: #31533b;
  --text-600: #4f6f58;

  --card: #ffffff;
  --border: rgba(35, 98, 54, 0.12);
  --shadow: 0 14px 30px rgba(16, 64, 34, 0.10);
  --shadow2: 0 10px 24px rgba(16, 64, 34, 0.08);

  --radius: 18px;
  --radius-lg: 26px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-900);
  background: var(--cream-100);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {

  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.mt-28 {
  margin-top: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background 18s ease, border-color .18s ease, color .18s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {

  color: white;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background-color: #2ea44f;
  border-radius: var(--radius);
  white-space: nowrap;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  height: 3rem;
  display: inline-flex;
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(46, 164, 79, 0.85), rgba(47, 138, 65, 0.85));
  box-shadow: 0 10px 20px rgba(46, 164, 79, 0.15);
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(46, 164, 79, 0.35);
  color: var(--green-800);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
}

.btn-soft {

  animation-duration: .3s;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  /* transition-duration: .15s; */
  --tw-ring-offset-color: #fbfbf8;
  color: #389438;
  font-weight: 600;
  font-size: .875rem;
  line-height: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: transparent;
  border-color: #389438;
  border-width: 2px;
  border-radius: calc(var(--radius) - 2px);
  white-space: nowrap;
  gap: .5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.25rem;
  display: inline-flex;

}


.btn-soft:hover {
  background: var(--green-600);
  color: white;
  border-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 164, 79, 0.25);
}

.btn-light {
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.10);
}

.btn-light:hover {
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(251, 251, 246, 0.66);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(35, 98, 54, 0.08);
  transition: box-shadow .2s ease, background .2s ease;
}

.site-header.scrolled {
  background: rgba(251, 251, 246, 0.86);
  box-shadow: 0 10px 26px rgba(16, 64, 34, 0.10);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green-900);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(46, 164, 79, 0.14);
  display: grid;
  place-items: center;
  /* color: var(--green-800); */
}

.brand-text {
  font-size: 18px;
  letter-spacing: .2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 14px;
  color: rgba(15, 42, 23, 0.78);
  font-weight: 500;
  padding: 8px 6px;
  border-radius: 10px;
  transition: background .18s ease, color .18s ease;
}

.nav-link:hover {
  background: rgba(46, 164, 79, 0.10);
  color: var(--green-900);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(35, 98, 54, 0.18);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(15, 42, 23, 0.8);
  border-radius: 2px;
}

.nav-toggle span+span {
  margin-top: 6px;
}

/* Hero */
.hero {
  position: relative;
  padding-top: 96px;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--cream-200);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/hero-fruits-0hY-V9PY.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 26% 30%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 42%, rgba(255, 255, 255, 0.15) 70%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(251, 251, 246, 0.86));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 62px 0 84px;
}

.hero-content {
  max-width: 620px;
}

.badge {
  /* display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(46, 164, 79, 0.20);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(31, 95, 46, 0.92);
  box-shadow: var(--shadow2); */

  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #f9f5c8de;
  border-radius: 9999px;
  gap: .5rem;
  align-items: center;
  animation: fade-in .6s ease-out forwards;
  display: inline-flex;
  margin-bottom: 2rem;
  font-weight: 600;
}


.badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-600);
  box-shadow: 0 0 0 6px rgba(46, 164, 79, 0.15);
}

.hero-title {
  margin: 18px 0 12px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.5px;
  font-family: Playfair Display, serif;

}

.hero-title .accent {
  color: var(--green-800);
  font-family: Playfair Display, serif;

}

.hero-sub {
  margin: 0 0 20px;
  color: rgba(15, 42, 23, 0.70);
  font-size: 15.5px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}

.stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.stat {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: auto;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-value {
  font-weight: 700;
  color: var(--text-900);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-600);
  margin-top: 2px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.9;
}

.scroll-indicator .mouse {
  display: block;
  width: 28px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(31, 95, 46, 0.38);
  background: rgba(255, 255, 255, 0.55);
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(31, 95, 46, 0.55);
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: wheel 1.4s ease-in-out infinite;
}

@keyframes wheel {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateX(-50%) translateY(10px);
    opacity: .35;
  }

  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-cream {
  background: var(--cream-100);
}

.section-mint {
  background: linear-gradient(180deg, var(--mint-100), var(--mint-200));
}

.section-head {
  margin-bottom: 34px;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: rgba(46, 164, 79, 0.9);
}

.section-title {
  margin: 10px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.4px;
  line-height: 1.15;
  font-family: Playfair Display, serif;

}

.section-sub {
  margin: 0 auto;
  max-width: 650px;
  color: rgba(15, 42, 23, 0.62);
  font-size: 14.5px;
}

/* Cards / Grids */
.grid {
  display: grid;
  gap: 22px;
}

.products {
  grid-template-columns: repeat(4, 1fr);
}

.features {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow: hidden;
}

/* Product cards */
.product {
  transition: transform .18s ease, box-shadow .18s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid rgba(35, 98, 54, 0.08);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.product-media img:hover {
  transform: scale(0.95);
}

.chip {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(15, 42, 23, 0.82);
  background: #f9f5c8de;
  border: 1px solid rgba(35, 98, 54, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.product-body {
  padding: 16px 16px 18px;
}

.product-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-family: Playfair Display, serif;
}

.product-body p {
  margin: 0 0 14px;
  font-size: 12.8px;
  color: rgba(15, 42, 23, 0.62);
}

/* Feature cards */
.feature {
  padding: 18px 18px 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(46, 164, 79, 0.12);
  display: grid;
  place-items: center;
  color: var(--green-800);
  margin-bottom: 12px;
}

.feature .icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-family: Playfair Display, serif;
}

.feature p {
  margin: 0;
  font-size: 12.8px;
  color: rgba(15, 42, 23, 0.62);
}

/* Testimonials */
.testimonial {
  padding: 18px 18px 18px;
}

.stars {
  color: #d7a800;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 10px;
}

.quote {
  margin: 0 0 14px;
  color: rgba(15, 42, 23, 0.70);
  font-size: 13.4px;
}

.person-name {
  font-weight: 700;
  font-size: 13.5px;
}

.person-title {
  font-size: 12px;
  color: rgba(15, 42, 23, 0.58);
  margin-top: 2px;
}

/* CTA */
.cta {
  position: relative;
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(46, 164, 79, 0.92), rgba(35, 140, 70, 0.92));
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: -50px -50px -50px -50px;
  background-image: radial-gradient(600px 400px at 18% 30%, rgba(255, 255, 255, 0.18), transparent 60%),
    radial-gradient(680px 420px at 78% 45%, rgba(0, 0, 0, 0.18), transparent 60%),
    url("https://source.unsplash.com/1600x800/?fresh,fruit,market");
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  opacity: .55;
  transform: scale(1.02);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.4px;
  font-family: Playfair Display, serif;

}

.cta p {
  margin: 0 auto 18px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 14.5px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1f5f2e, #184b24);
  color: rgba(255, 255, 255, 0.92);
  padding: 54px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.footer-brand {
  color: #fff;
  margin-bottom: 10px;
}

.footer-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  max-width: 360px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .2px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  padding: 6px 0;
  transition: color .18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  margin: 8px 0;
}

.contact-ic {
  width: 18px;
}

.mini-form {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.mini-form input {
  flex: 1;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  padding: 12px 12px;
  color: #fff;
  outline: none;
}

.mini-form input::placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
}

/* Responsive */
@media (max-width: 1100px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 680px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    background: rgba(251, 251, 246, 0.92);
    border: 1px solid rgba(35, 98, 54, 0.14);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 10px 12px;
  }

  .hero-inner {
    padding: 50px 0 84px;
  }

  .stat {
    min-width: 140px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* About us - mobile: stack text above image and place badge inside image */
  .about-hero {
    padding: 60px 0;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-hero-text h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .about-hero-text p {
    font-size: 15px;
  }

  .image-placeholder {
    overflow: visible; /* allow badge shadow to show */
  }

  .image-placeholder img {
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }


  .badge-value {
    font-size: 28px;
    font-weight: 700;
  }

  .badge-label {
    font-size: 12px;
  }
}



/* ORDER TYPES SECTION */
.order-types {
  padding: 80px 0;
  background: var(--mint-100);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.order-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow2);
}

.order-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.order-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
}

.order-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-900);
  margin: 12px 0;
  font-family: Playfair Display, serif;

}

.order-card p {
  font-size: 14px;
  color: var(--text-600);
  line-height: 1.6;
  margin: 12px 0 16px;
}

.order-info {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
}

.order-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.order-icon svg {
  width: 48px;
  height: 48px;
}

/* REQUEST QUOTE SECTION */
.request-quote {
  padding: 80px 0;
  background: var(--cream-100);
}

.quote-header {
  text-align: center;
  margin-bottom: 48px;
}

.quote-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0 0 12px 0;
  font-family: Playfair Display, serif;

}

.quote-header p {
  font-size: 16px;
  color: var(--text-600);
  max-width: 600px;
  margin: 0 auto;
}

.quote-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-900);
  margin-bottom: 10px;
  display: block;
  font-family: Playfair Display, serif;

}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: "Poppins", inherit;
  font-size: 14px;
  color: var(--text-900);
  background: #fafbfa;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(15, 42, 23, 0.45);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232f8a41' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(47, 138, 65, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  font-family: "Poppins", inherit;
}

.btn-submit {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(180deg, var(--green-600), var(--green-700));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
  box-shadow: 0 8px 20px rgba(46, 164, 79, 0.25);
}

.btn-submit:hover {
  background: linear-gradient(180deg, var(--green-700), var(--green-800));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(46, 164, 79, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(46, 164, 79, 0.25);
}

@media (max-width: 1000px) {
  .order-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .order-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .order-types {
    padding: 60px 0;
  }

  .quote-form {
    padding: 32px 24px;
  }

  .quote-header h2 {
    font-size: 28px;
  }

  .request-quote {
    padding: 60px 0;
  }
}

/* Quality Assurance Page */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-900);
  margin: 0 0 16px 0;
  font-family: Playfair Display, serif;
}

.section-header p {
  font-size: 16px;
  color: var(--text-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Certifications Section */
.certifications-section {
  padding: 80px 0;
  background: var(--cream-100);
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cert-badge {
  background: #fffde7;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cert-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(47, 138, 65, 0.15);
}

.badge-icon {
  font-size: 18px;
  color: var(--green-700);
  font-weight: 600;
}

.badge-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-900);
}

/* Quality Control Section */
.quality-control-section {
  padding: 80px 0;
  background: white;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.quality-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow2);
}

.quality-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--green-600);
}

.quality-icon {
  /* width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e9f6ea 0%, #def2df 100%);
  border-radius: 12px;
  margin: 0 auto 16px;
  color: var(--green-700); */
  color: var(--green-700);
  background-color: #3894381a;
  border-radius: .75rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.quality-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 16px 0 12px 0;
  color: var(--text-900);
  font-family: Playfair Display, serif;
}

.quality-card p {
  font-size: 14px;
  color: var(--text-600);
  margin: 0;
  line-height: 1.6;
}

/* Cold Storage Section */
.cold-storage-section {
  padding: 80px 0;
  background: var(--green-700);
  color: white;
}

.cold-storage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cold-storage-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: white;
  font-family: Playfair Display, serif;
}

.cold-storage-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.cold-storage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cold-storage-list li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.cold-storage-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-weight: bold;
}

.cold-storage-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 24px;
  /* background: rgba(255, 255, 255, 0.1); */
  /* border-radius: 12px; */
  backdrop-filter: blur(10px);
}

.stat-value {
  font-size: 40px;
  font-weight: 700;
  color: #f9f5c8;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #fbfbf8cc;
}

/* Responsive Quality Assurance */
@media (max-width: 1000px) {
  .cert-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cold-storage-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cold-storage-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-header h2 {
    font-size: 28px;
  }

  .cold-storage-text h2 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .cert-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .quality-card {
    padding: 24px 16px;
  }

  .cold-storage-section {
    padding: 60px 0;
  }

  .cold-storage-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat {
    padding: 16px;
  }

  .stat-value {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .cert-badge {
    padding: 12px 8px;
  }

  .badge-icon {
    font-size: 20px;
  }

  .badge-text {
    font-size: 12px;
  }
}

/* About Us Page */
.about-hero {
  padding: 150px 0;
  background: #f9f5c8;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 16px 0 24px 0;
  color: var(--text-900);
  line-height: 1.2;
  font-family: Playfair Display, serif;
}

.about-hero-text p {
  font-size: 16px;
  color: var(--text-600);
  margin-bottom: 32px;
  line-height: 1.8;
}

.about-hero-text .label {
  color: #389438;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: .875rem;
  line-height: 1.25rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.about-hero-image {
  position: relative;
}

.image-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  box-shadow: var(--shadow);
}

.image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.image-badge {
  position: absolute;
  top: 95%;
  left: -60px;
  transform: translateY(-50%);
  background: var(--green-600);
  color: white;
  padding: 25px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(46, 164, 79, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  z-index: 10;
}

.badge-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-label {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* Our Story Section */
.our-story {
  padding: 80px 0;
  background: white;
}

.our-story .section-header {
  max-width: 900px;
  text-align: center;
  margin: 0 auto 48px;
}

.our-story .section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-900);
  margin: 0 0 16px 0;
  font-family: Playfair Display, serif;
}

.story-text {
  font-size: 16px;
  color: var(--text-600);
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto 24px;
  text-align: center;
}

margin-bottom: 24px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

/* Core Values Section */
.core-values {
  padding: 80px 0;
  background: var(--mint-100);
}

.core-values .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.core-values .section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-900);
  margin: 0 0 16px 0;
  font-family: Playfair Display, serif;
}

.core-values .section-header p {
  font-size: 16px;
  color: var(--text-600);
  max-width: 700px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow2);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.value-icon {
  /* width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint-200);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--green-700);
  font-size: 36px;
} */
    background-color: #3894381a;
    border-radius: 9999px;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    display: flex;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.value-icon svg {
    color: #389438;
    width: 2rem;
    height: 2rem;

}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-900);
  font-family: Playfair Display, serif;
}

.value-card p {
  font-size: 14px;
  color: var(--text-600);
  margin: 0;
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: white;
}

.why-choose .section-header {
  margin-bottom: 48px;
}

.why-choose .section-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--text-900);
  margin: 0 0 16px 0;
  font-family: Playfair Display, serif;
}

.why-choose .section-header p {
  font-size: 16px;
  color: var(--text-600);
  max-width: 600px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-choose-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-600);
  line-height: 1.5;
}

.check-icon {
  color: var(--green-600);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-choose-right {
  display: flex;
  justify-content: flex-end;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 380px;
}

.stat-box {
  background: var(--mint-100);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: none;
  box-shadow: var(--shadow2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-600);
  font-weight: 500;
}

/* Responsive About Us */
@media (max-width: 1000px) {

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-text h1 {
    font-size: 36px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .stat-box {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-desc {
    font-size: 13px;
  }
}

@media (max-width: 600px) {

  .filters .pill{
    margin-bottom: 5px;
    margin-top:5px;
  }

  .about-hero-text{
    padding-top: 80px;

  }
  .about-hero {
    padding: 60px 0;
  }

  .about-hero-text h1 {
    font-size: 28px;
  }

  .about-hero-text p {
    font-size: 15px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 24px 16px;
  }

  .why-choose {
    padding: 60px 0;
  }

  .why-choose-left {
    gap: 12px;
  }

  .why-item {
    font-size: 14px;
    gap: 12px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-box {
    padding: 16px 12px;
  }

  .stat-number {
    font-size: 24px;
  }

  .core-values {
    padding: 60px 0;
  }

  .our-story {
    padding: 60px 0;
  }


}


@media (max-width: 767px) {
  .image-badge {
        bottom: 12px;
        left: -16px;
        right: 12px;
        font-size: 12px;
        padding: 8px 14px;
        width: 170px;
        height: 100px;
  }

  .badge-value {
    font-size: 24px; 
    line-height: 1;
  }

  .badge-label {
    font-size: 14px;    
    margin-top: 2px;
  }
}



@media (max-width: 560px) {
  .products {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .order-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 700px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats {
    gap: 12px;
  }

  .stat {
margin: 8px;
/*background-color: #f6f6ee;*/
  }
}


/* home page  */
@media (max-width: 600px) {
  .product-media {
    height: 300px;
  }