/* =========================================================
   SHANARA ORGANICS — DESIGN TOKENS
   (Structured to be easily ported to SCSS: each block below
   maps 1:1 to a partial — _variables, _header, _hero, etc.)
   ========================================================= */
:root {
  /* Colors */
  --color-primary: #1F3D1A;
  /* deep forest green */
  --color-primary-dark: #14290F;
  --color-primary-light: #3B6B32;
  --color-accent: #8AA968;
  /* soft leaf green */
  --color-cream: #FAF6EE;
  /* warm cream background */
  --color-cream-2: #F3EEE1;
  --color-white: #FFFFFF;
  --color-text: #2B2B26;
  --color-text-muted: #6B6B60;
  --color-border: #E4DFD1;

  /* Typography */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, Segoe UI, sans-serif;

  /* Radius / Shadow */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 12px 32px rgba(31, 61, 26, 0.08);
  --shadow-card: 0 8px 24px rgba(31, 61, 26, 0.10);

  /* Spacing */
  --section-py: 5.5rem;
  --section-py-sm: 3.5rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  font-size: 1rem;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
.font-display {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section {
  padding-block: var(--section-py);
}

.section-sm {
  padding-block: var(--section-py-sm);
}

.bg-cream {
  background-color: var(--color-cream);
}

.bg-cream-2 {
  background-color: var(--color-cream-2);
}

.bg-primary-brand {
  background-color: var(--color-primary);
}

.text-primary-brand {
  color: var(--color-primary);
}

.text-accent-brand {
  color: var(--color-accent);
}

.text-muted-brand {
  color: var(--color-text-muted);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.btn-primary-brand {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  transition: background-color .2s ease, transform .2s ease;
}

.btn-primary-brand:hover,
.btn-primary-brand:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.navbar-brand img {
  width: 220px;
}

.btn-outline-brand {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  transition: background-color .2s ease, color .2s ease;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background-color: var(--color-primary);
  color: var(--color-white);
}

:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header {
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--color-white);
}

.brand-leaf {
  font-size: 1.6rem;
  color: var(--color-primary);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.navbar-nav .nav-link {
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-primary);
}

.nav-dropdown-hover .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  margin-top: 0;
}

@media (min-width: 992px) {

  .nav-dropdown-hover:hover .dropdown-menu,
  .nav-dropdown-hover .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--color-cream);
  color: var(--color-primary);
}

.call-us-link {
  color: var(--color-text);
}

.call-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-primary);
}

.call-text small {
  color: var(--color-text-muted);
  font-size: 0.72rem;
}

.call-text strong {
  font-size: 0.95rem;
  color: var(--color-primary);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background-image: url(../images/banner3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-block: 3.5rem 2.5rem;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--color-text);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.trust-strip {
  margin-top: 2.75rem;
}

.trust-item {
  text-align: center;
}

.trust-item .icon-circle {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-primary);
  margin: 0 auto 0.6rem;
  font-size: 1.25rem;
}

.trust-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* =========================================================
   ABOUT / FROM FARM SECTION
   ========================================================= */
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-media img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--color-white);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.about-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.about-badge span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  color: var(--color-text);
}

.about-list i {
  color: var(--color-primary);
  margin-top: 0.2rem;
}

.stats-row {
  margin-top: 4rem;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-white) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 2.25rem 1rem;
  position: relative;
  transition: background-color .25s ease, transform .25s ease;
}

/* vertical dividers between columns on md+, horizontal on mobile pairs */
.stat-item:not(:nth-child(6))::after {
  content: "";
  position: absolute;
  top: 20%;
  bottom: 20%;
  right: 0;
  width: 1px;
  background: var(--color-border);
  display: none;
}

@media (min-width: 768px) {
  .stat-item:not(:nth-child(6))::after {
    display: block;
  }
}

@media (max-width: 767.98px) {
  .stat-item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 20%;
    bottom: 20%;
    right: 0;
    width: 1px;
    background: var(--color-border);
    display: block;
  }

  .stat-item:nth-child(-n+4) {
    border-bottom: 1px solid var(--color-border);
  }
}

.stat-item:hover {
  background-color: var(--color-white);
  transform: translateY(-4px);
}

.stat-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 1.4rem;
  margin: 0 auto 0.9rem;
  box-shadow: 0 4px 10px rgba(31, 61, 26, 0.06);
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.stat-item:hover .stat-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.06);
}

.stat-item strong {
  display: flex;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.stat-item .stat-plus {
  font-size: 1.1rem;
  color: var(--color-accent);
  font-weight: 600;
}

.stat-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.stat-item span.counter {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.stat-item span.stat-plus {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-card-body {
  padding: 1.25rem;
}

.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.product-link {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
}

.product-link i {
  transition: transform .2s ease;
  display: inline-block;
}

.product-card:hover .product-link i {
  transform: translateX(4px);
}

/* =========================================================
   FEATURE STRIP (why choose us)
   ========================================================= */
.feature-strip {
  background: var(--color-primary);
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.05) 0, transparent 45%),
    radial-gradient(circle at 92% 82%, rgba(255, 255, 255, 0.05) 0, transparent 45%);
  color: var(--color-white);
  padding-block: var(--section-py);
}

.feature-strip .eyebrow {
  color: var(--color-accent);
}

.feature-strip-title {
  color: var(--color-white);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-bottom: 0;
}

.feature-card {
  height: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem 1rem;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-5px);
}

.feature-card .icon-circle {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto 1rem;
  font-size: 1.35rem;
  color: var(--color-accent);
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.feature-card:hover .icon-circle {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  transform: scale(1.08) rotate(-4deg);
}

.feature-card span {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.spotlight-section {
  position: relative;
  overflow: hidden;
}

.spotlight-media {
  position: relative;
}

.spotlight-blob {
  position: absolute;
  inset: -6% -6% auto auto;
  width: 88%;
  aspect-ratio: 1/1;
  /* background: radial-gradient(circle, var(--color-cream) 0%, transparent 70%);
  border-radius: 50%; */
  z-index: 0;
}

.spotlight-media img {
  position: relative;
  z-index: 1;
  /* border-radius: var(--radius-lg); */
  width: 100%;
  /* box-shadow: var(--shadow-soft); */
}

.spotlight-tag {
  position: absolute;
  z-index: 2;
  bottom: -1rem;
  right: -0.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 190px;
}

.spotlight-tag i {
  color: var(--color-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.spotlight-tag span {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.benefit-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  height: 100%;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.benefit-chip:hover {
  background: var(--color-white);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
}

.benefit-chip i {
  color: var(--color-primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.benefit-chip span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.25;
}

/* =========================================================
   PROCESS (soil to superfood)
   ========================================================= */
.process-track {
  position: relative;
}

.process-line {
  position: absolute;
  top: 44px;
  left: 6%;
  right: 6%;
  height: 1px;
  background-image: linear-gradient(to right, var(--color-accent) 40%, transparent 0%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
  display: none;
}

@media (min-width: 992px) {
  .process-line {
    display: block;
  }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.process-step .icon-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  color: var(--color-primary);
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.process-step:hover .icon-circle {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-4px);
}

.process-step h3 {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 700;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  padding-inline: 0.25rem;
}


/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  color: var(--color-white);
}

.cta-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner h2 {
  color: var(--color-white);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-brand .brand-text {
  color: var(--color-white);
}

.footer-brand .brand-leaf {
  color: var(--color-accent);
}

.footer-about {
  font-size: 0.9rem;
  max-width: 22rem;
}

.footer-heading {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-contact i {
  color: var(--color-accent);
  margin-right: 0.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  transition: background-color .2s ease;
}

.social-icon:hover {
  background-color: var(--color-primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .section {
    padding-block: var(--section-py-sm);
  }

  .about-badge {
    position: static;
    margin-top: -3rem;
    margin-left: 1rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .trust-strip .trust-item {
    margin-bottom: 1.5rem;
  }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
  z-index: 999;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsapp-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .5);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width:576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 18px;
    right: 18px;
  }
}

/* =========================================================
   SHANARA ORGANICS — EXTRA PAGES STYLESHEET
   For: about, product detail pages, quality, our-farm,
   exports, contact. Relies on tokens/utilities already
   defined in the main stylesheet (:root vars, .section,
   .btn-primary-brand, .btn-outline-brand, .eyebrow,
   .section-title, .icon-circle, .product-link, etc).
   ========================================================= */

/* ---------- PAGE HEADER / BREADCRUMB ---------- */
.page-header {
  background: var(--color-primary);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.06) 0, transparent 45%),
    radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.06) 0, transparent 45%);
  padding-block: 3.25rem;
  text-align: center;
  color: var(--color-white);
}

.page-header h1 {
  color: var(--color-white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.page-header-breadcrumb {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.page-header-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.page-header-breadcrumb a:hover {
  color: var(--color-accent);
}

.page-header-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- GENERIC VALUE / INFO CARD ---------- */
.value-card {
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.value-card .icon-circle {
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---------- ABOUT: STORY TIMELINE ---------- */
.story-timeline {
  position: relative;
  padding-left: 1.75rem;
  border-left: 2px dashed var(--color-border);
}

.story-step {
  position: relative;
  padding-bottom: 2rem;
}

.story-step:last-child {
  padding-bottom: 0;
}

.story-step::before {
  content: "";
  position: absolute;
  left: -2.28rem;
  top: 0.15rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-cream);
}

.story-step h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.story-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---------- ABOUT: MISSION / VISION SPLIT ---------- */
.mv-card {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
}

.mv-card i {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.mv-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.mv-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---------- PRODUCT DETAIL: HERO ---------- */
.product-hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.product-hero-media img {
  width: 100%;
  object-fit: cover;
}

.product-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 1.5rem;
}

.product-hero-badges span {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ---------- PRODUCT DETAIL: SPEC TABLE ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--color-border);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table td {
  padding: 0.85rem 0.5rem;
  font-size: 0.9rem;
}

.spec-table td:first-child {
  color: var(--color-text-muted);
  font-weight: 600;
  width: 40%;
}

.spec-table td:last-child {
  color: var(--color-text);
}

/* ---------- PRODUCT DETAIL: USAGE STEPS ---------- */
.usage-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  height: 100%;
}

.usage-step .icon-circle {
  margin: 0 auto 0.9rem;
  justify-content: center;
    display: flex;
}
.usage-step .icon-circle i {
      font-size: 32px;
    background-color: #1f3d1a;
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
}

.usage-step h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.usage-step p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---------- PRODUCT DETAIL: RELATED PRODUCTS ---------- */
.related-products .product-card {
  height: 100%;
}

/* ---------- QUALITY PAGE ---------- */
.cert-card {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.cert-card .icon-circle {
  margin: 0 auto 1rem;
}

.cert-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.cert-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.quality-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quality-check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.quality-check-list li:last-child {
  border-bottom: none;
}

.quality-check-list i {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-top: 0.1rem;
}

.quality-check-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
}

.quality-check-list span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- OUR FARM PAGE ---------- */
.farm-gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.farm-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .35s ease;
}

.farm-gallery-item:hover img {
  transform: scale(1.06);
}

.farmer-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  height: 100%;
}

.farmer-card .icon-circle {
  flex-shrink: 0;
}

.farmer-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.farmer-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---------- EXPORTS PAGE ---------- */
.export-country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.country-chip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.country-chip i {
  color: var(--color-accent);
}

.export-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
}

.export-step:last-child {
  border-bottom: none;
}

.export-step .step-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-cream);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.export-step h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.export-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ---------- CONTACT PAGE ---------- */
.contact-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.contact-info-card .icon-circle {
  margin: 0 auto 1rem;
}

.contact-info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--color-text-muted);
}

.contact-form-wrap {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.contact-form-wrap .form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  background: var(--color-white);
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(31, 61, 26, 0.08);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  line-height: 0;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 767.98px) {
  .contact-form-wrap {
    padding: 1.5rem;
  }
}

/* =========================================================
   REQUEST A QUOTE — MODAL STYLES
   Add this to extra-pages.css, or link as its own file.
   Depends on the :root design tokens already defined in
   the main stylesheet.
   ========================================================= */

.quote-modal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.quote-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  background-color: var(--color-white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  opacity: 1;
  box-shadow: var(--shadow-card);
}

/* ---------- LEFT BRAND PANEL ---------- */
.quote-modal-side {
  background: var(--color-primary);
  background-image:
    radial-gradient(circle at 10% 15%, rgba(255,255,255,0.06) 0, transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.06) 0, transparent 45%);
  color: var(--color-white);
  padding: 2.75rem 2.25rem;
  align-items: center;
}
.quote-modal-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}
.quote-modal-side h3 {
  color: var(--color-white);
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}
.quote-modal-side p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}
.quote-modal-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quote-modal-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.75rem;
}
.quote-modal-points li i { color: var(--color-accent); }

/* ---------- RIGHT FORM PANEL ---------- */
.quote-modal-body {
  padding: 2.5rem;
}
.quote-modal-title-mobile {
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.quote-modal-body .form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text);
}
.quote-modal-body .form-control,
.quote-modal-body .form-select {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  background: var(--color-cream);
}
.quote-modal-body .form-control:focus,
.quote-modal-body .form-select:focus {
  border-color: var(--color-primary-light);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(31, 61, 26, 0.08);
}
.quote-modal-note {
  font-size: 0.76rem;
  color: var(--color-text-muted);
}

/* ---------- SUCCESS STATE ---------- */
.quote-modal-success {
  text-align: center;
  padding: 2.5rem 1rem;
}
.quote-modal-success .icon-circle {
  width: 68px; height: 68px;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  background: var(--color-cream);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}
.quote-modal-success h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.quote-modal-success p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 26rem;
  margin: 0 auto 1.5rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .quote-modal-body { padding: 2rem 1.5rem; }
}
@media (max-width: 575.98px) {
  .quote-modal .modal-dialog { margin: 0.75rem; }
  .quote-modal-body { padding: 1.75rem 1.25rem; }
  .quote-modal-body .btn { width: 100%; }
}

/* ---------- LAUNCHING SOON CARDS ---------- */
.coming-soon-card {
  position: relative;
}

.coming-soon-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}

.coming-soon-card img {
  filter: saturate(0.85);
}

.coming-soon-card .product-card-body h3 {
  margin-bottom: 0.4rem;
}