/* ============================================
   CHOSOAGRO — Premium Fruit Exporter
   Inspired by ZeusAgro.in design language
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #0e4422;
  --green-mid:    #1a6b36;
  --green-light:  #eaf4ee;
  --orange:       #f26522;
  --orange-dark:  #d4521a;
  --white:        #ffffff;
  --off-white:    #f8f8f4;
  --text:         #1a1a1a;
  --muted:        #666;
  --border:       #e0e0e0;
  --trans:        all .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--trans);
  border: none;
  border-radius: 4px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,101,34,.35); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 4px;
}
.btn-ghost:hover { background: var(--white); color: var(--green); }

.btn-green-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 4px;
}
.btn-green-outline:hover { background: var(--green); color: var(--white); }

/* ─── TOP BAR ─────────────────────────────── */
#topbar {
  background: var(--green);
  padding: 8px 0;
  font-size: .8rem;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-left a {
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.topbar-left a:hover { color: var(--orange); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-strip {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: 'Poppins', sans-serif;
}

.tb-social {
  display: flex;
  gap: 6px;
}
.tb-soc {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: var(--trans);
}
.tb-soc svg { display: block; }
.tb-soc:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ─── NAVBAR ──────────────────────────────── */
#navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.nav-logo-text { line-height: 1.2; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  display: block;
}
.logo-tag {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  display: block;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--orange);
}
.mobile-menu a {
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a:hover { color: var(--orange); padding-left: 28px; }
.mobile-menu.open { display: flex; }

/* ─── HERO ────────────────────────────────── */
#hero {
  position: relative;
  background: var(--green);
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Subtle circle-rings texture — exactly like Zeus */
#hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 28%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 30%, rgba(255,255,255,.03) 31%, transparent 32%),
    radial-gradient(circle, transparent 45%, rgba(255,255,255,.025) 46%, transparent 47%),
    radial-gradient(circle, transparent 60%, rgba(255,255,255,.02) 61%, transparent 62%),
    radial-gradient(circle, transparent 75%, rgba(255,255,255,.015) 76%, transparent 77%);
  pointer-events: none;
  z-index: 1;
}

/* Orange paint-stroke — diagonal blob like Zeus */
.hero-stroke {
  position: absolute;
  bottom: -60px;
  right: 80px;
  width: 520px;
  height: 280px;
  background: var(--orange);
  border-radius: 62% 38% 52% 48% / 46% 55% 45% 54%;
  transform: rotate(-18deg);
  z-index: 2;
}

/* Fruit photo panel — fills right half */
.hero-photo-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 3;
  overflow: hidden;
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Left gradient so photo bleeds into green */
.hero-photo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--green) 0%, rgba(14,68,34,.4) 25%, transparent 55%);
  z-index: 1;
}

/* Hero content layer */
.hero-body {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  flex: 1;
  padding: 60px 0 40px;
  min-height: calc(86vh - 110px);
}

.hero-content {
  max-width: 600px;
}

/* Left-edge slider arrows — exactly like Zeus */
.hero-arrows {
  position: absolute;
  left: -5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.arrow-btn {
  width: 44px; height: 44px;
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.arrow-btn:hover { background: var(--orange); border-color: var(--orange); }

/* Slides */
.hero-slides { position: relative; }

.slide { display: none; animation: slideIn .5s ease; }
.slide.active { display: block; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slide-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cat-icon { font-size: 1.1rem; }

.hero-h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-h1 span { color: var(--orange); display: block; }

.hero-p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Dots */
.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 44px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  transition: var(--trans);
}
.dot.active { background: var(--orange); width: 26px; border-radius: 4px; }

/* Stats bar */
.hero-stats {
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat span {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
  display: block;
}

/* ─── MARQUEE ─────────────────────────────── */
.ticker {
  background: var(--orange);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tick 28s linear infinite;
}
.ticker-track span {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  flex-shrink: 0;
}
.ticker-track .sep { color: rgba(255,255,255,.45); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION SHARED ──────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
  margin-bottom: 12px;
}
.sec-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--orange);
  display: block;
}

.sec-h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}

.sec-p {
  color: var(--muted);
  font-size: .97rem;
  max-width: 560px;
  line-height: 1.8;
}

/* ─── ABOUT ───────────────────────────────── */
#about { padding: 100px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-inner {
  background: var(--green);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.about-img-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
}

.about-img-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,68,34,.6) 0%, transparent 60%);
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  padding: 22px 26px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(242,101,34,.4);
  font-family: 'Poppins', sans-serif;
}
.about-badge strong { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }

.about-text { padding-top: 10px; }
.about-text .sec-p { margin-bottom: 26px; }

.checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 34px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.55;
}
.chk {
  width: 20px; height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--white);
  font-size: .65rem;
  font-weight: 900;
}

/* ─── PRODUCTS ────────────────────────────── */
#products {
  padding: 100px 0;
  background: var(--off-white);
}

.prod-header { text-align: center; margin-bottom: 56px; }
.prod-header .sec-label { justify-content: center; }
.prod-header .sec-label::before { display: none; }
.prod-header .sec-p { margin: 0 auto; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.prod-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--trans);
}
.prod-card:hover { transform: translateY(-7px); box-shadow: 0 18px 50px rgba(0,0,0,.12); border-color: transparent; }

.prod-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.prod-card:hover .prod-img img { transform: scale(1.06); }

.prod-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 50%);
}

.prod-pill {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-family: 'Poppins', sans-serif;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
}

.prod-body { padding: 22px 22px 0; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.prod-name { font-family: 'Poppins', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--green); }
.prod-desc { font-size: .88rem; color: var(--muted); line-height: 1.65; flex: 1; }

.prod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 12px 0;
}
.spec {
  background: var(--green-light);
  color: var(--green);
  font-size: .7rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  padding: 3px 9px;
  border-radius: 3px;
}

.prod-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod-link {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  display: flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.prod-link:hover { gap: 10px; }

/* ─── WHY US ──────────────────────────────── */
#why { padding: 100px 0; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.feats { display: flex; flex-direction: column; gap: 18px; }

.feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--trans);
}
.feat:hover { border-color: var(--orange); box-shadow: 0 6px 22px rgba(242,101,34,.1); }

.feat-ico {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: #fff4ee;
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feat-t { font-family: 'Poppins', sans-serif; font-size: .97rem; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.feat-d { font-size: .87rem; color: var(--muted); line-height: 1.6; }

.cert-panel {
  background: var(--green);
  border-radius: 14px;
  padding: 44px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cert-panel::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .12;
}
.cert-panel h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cert-panel > p { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 28px; }

.certs { display: flex; flex-direction: column; gap: 11px; }
.cert-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 14px 16px;
  transition: var(--trans);
}
.cert-row:hover { background: rgba(255,255,255,.14); }
.cert-ico { font-size: 1.6rem; }
.cert-row strong { display: block; font-family: 'Poppins', sans-serif; font-size: .93rem; font-weight: 700; }
.cert-row small { color: rgba(255,255,255,.55); font-size: .78rem; }

/* ─── PROCESS ─────────────────────────────── */
#process { padding: 100px 0; background: var(--off-white); }
.proc-head { text-align: center; margin-bottom: 56px; }
.proc-head .sec-label { justify-content: center; }
.proc-head .sec-label::before { display: none; }
.proc-head .sec-p { margin: 0 auto; }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.proc-card {
  background: var(--white);
  border-radius: 10px;
  padding: 30px 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.proc-card::before {
  content: attr(data-n);
  position: absolute;
  top: -8px; right: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  pointer-events: none;
  transition: color .3s;
}
.proc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.1); border-color: var(--green); }
.proc-card:hover::before { color: rgba(14,68,34,.08); }

.proc-icon { font-size: 2.2rem; margin-bottom: 14px; }
.proc-t {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}
.proc-d { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ─── CONTACT ─────────────────────────────── */
#contact { padding: 100px 0; background: var(--white); }

.contact-head { text-align: center; margin-bottom: 56px; }
.contact-head .sec-label { justify-content: center; }
.contact-head .sec-label::before { display: none; }
.contact-head .sec-p { margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.contact-info > p { color: var(--muted); font-size: .9rem; margin-bottom: 26px; line-height: 1.7; }

.info-list { display: flex; flex-direction: column; gap: 12px; }

.info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--trans);
}
.info-row:hover { border-color: var(--green); background: var(--green-light); }

.info-ico {
  width: 38px; height: 38px;
  background: var(--green);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.info-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 3px;
}
.info-val { font-size: .92rem; color: var(--text); font-weight: 500; }

/* Form */
.form-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.form-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 24px;
}

.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14,68,34,.1);
}
.fg textarea { resize: vertical; min-height: 120px; }

.f-btn {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--trans);
}
.f-btn:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(242,101,34,.3); }

.f-msg {
  margin-top: 12px;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 600;
  display: none;
}
.f-msg.ok  { background: var(--green-light); color: var(--green); border: 1px solid #a5d6a7; display: block; }
.f-msg.err { background: #fce4ec; color: #b71c1c; border: 1px solid #ef9a9a; display: block; }

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--green);
  color: rgba(255,255,255,.8);
  padding: 70px 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.foot-brand img {
  height: 55px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}
.foot-brand p { font-size: .88rem; color: rgba(255,255,255,.58); line-height: 1.75; max-width: 260px; margin-bottom: 22px; }

.foot-soc { display: flex; gap: 8px; }
.fsoc {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  transition: var(--trans);
}
.fsoc:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

.foot-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--white);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.58);
  transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.foot-col ul li a::before { content: '›'; color: var(--orange); font-size: 1rem; }
.foot-col ul li a:hover { color: var(--orange); }

.foot-col address { font-style: normal; font-size: .88rem; color: rgba(255,255,255,.58); line-height: 1.9; }

.foot-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom p { font-size: .8rem; color: rgba(255,255,255,.38); }
.foot-certs { display: flex; gap: 6px; }
.fcert {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.45);
  font-family: 'Poppins', sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 9px;
  border-radius: 3px;
}

/* ─── SCROLL TOP ──────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(242,101,34,.45);
  display: none;
  align-items: center; justify-content: center;
  z-index: 999;
  transition: var(--trans);
}
#scrollTop:hover { background: var(--orange-dark); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* ─── ANIMATIONS ──────────────────────────── */
.reveal        { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in     { opacity: 1; transform: translateY(0); }
.reveal-l      { opacity: 0; transform: translateX(-28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-l.in   { opacity: 1; transform: translateX(0); }
.reveal-r      { opacity: 0; transform: translateX(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal-r.in   { opacity: 1; transform: translateX(0); }

/* Stagger */
.stagger > *:nth-child(1) { transition-delay: .0s; }
.stagger > *:nth-child(2) { transition-delay: .07s; }
.stagger > *:nth-child(3) { transition-delay: .14s; }
.stagger > *:nth-child(4) { transition-delay: .21s; }
.stagger > *:nth-child(5) { transition-delay: .28s; }
.stagger > *:nth-child(6) { transition-delay: .35s; }
.stagger > *:nth-child(7) { transition-delay: .42s; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1100px) {
  .hero-photo-panel { width: 50%; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Show fruit as full-bleed background behind content on tablet/mobile */
  .hero-photo-panel {
    display: block;
    width: 100%;
    left: 0;
    opacity: .35;
  }
  .hero-photo-panel::before {
    background: linear-gradient(to bottom, var(--green) 0%, rgba(14,68,34,.55) 40%, rgba(14,68,34,.75) 100%);
  }
  /* Move arrows to bottom-right corner so they don't overlap buttons */
  .hero-arrows {
    left: auto;
    right: 16px;
    top: auto;
    bottom: 72px;
    transform: none;
    flex-direction: row;
    gap: 8px;
  }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  /* Reduce hero height on tablet */
  #hero { min-height: 75vh; }
  .hero-body { min-height: 0; padding: 48px 0 100px; }
  /* Shrink blob so it doesn't overflow */
  .hero-stroke { width: 320px; height: 180px; right: -40px; bottom: -40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-wrap > .btn-orange { display: none; }
  .hamburger { display: flex; }
  .nav-logo img { height: 48px; max-width: 130px; }
  .f2 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .topbar-left a:not(:first-child) { display: none; }
  .form-box { padding: 24px; }

  /* Hero: tighter on mobile */
  #hero { min-height: 0; }
  .hero-body { padding: 40px 0 90px; min-height: 0; }
  .hero-h1 { font-size: 2.8rem; }
  .hero-arrows { bottom: 60px; }

  /* Section padding: reduce from 100px to 52px on mobile */
  #about, #products, #why, #process, #contact,
  .testimonials-section, .gallery-slideshow-section,
  .certs-section, .facilities-section, .product-detail,
  section[style*="padding:100px"], section[style*="padding: 100px"] {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .product-detail { padding: 52px 0 !important; }

  /* Reduce inner heading margins on mobile */
  .sec-h2 { font-size: 1.75rem; margin-bottom: 12px; }
  .proc-head, .contact-head { margin-bottom: 32px; }
}

@media (max-width: 540px) {
  .hero-h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .proc-grid { grid-template-columns: 1fr; }
  .nav-logo img { height: 42px; max-width: 110px; }
  /* Dots and arrows — keep arrows in corner, move dots left */
  .hero-dots { margin-top: 20px; }
  .hero-arrows { bottom: 52px; right: 12px; }
  .hero-stroke { display: none; }
}

/* ─── HERO PHOTO SWITCHING ─────────────────────── */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity .7s ease;
}
.hero-photo.active {
  opacity: 1;
}

/* Override hero-stroke so only active shows */
.hero-stroke {
  opacity: 0;
  transition: opacity .5s ease;
}
.hero-stroke.active {
  opacity: 1;
}

/* ─── DROPDOWN MENU ────────────────────────────── */
.has-dropdown { position: relative; }
.dd-arrow { font-size: .6rem; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  border: 1px solid var(--border);
  list-style: none;
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 1000;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text);
  transition: background .15s, color .15s;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown li a::after { display: none; }
.dropdown li a:hover { background: var(--green-light); color: var(--green); padding-left: 22px; }

.nav-links li.active > a { color: var(--orange); }
.nav-links li.active > a::after { transform: scaleX(1); }

/* ─── PAGE INNER BANNER ────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 60%, rgba(0,0,0,.3) 100%),
              var(--bg, none) center/cover no-repeat;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-banner { padding: 40px 0 32px; }
  .page-banner h1 { font-size: 2rem; margin: 8px 0 8px; }
  .page-banner p { font-size: .92rem; }
}
@media (max-width: 540px) {
  .page-banner { padding: 28px 0 24px; }
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,68,34,.72);
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin: 10px 0 12px;
}
.page-banner p {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  max-width: 540px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ─── PRODUCT DETAIL ───────────────────────────── */
.product-detail { padding: 90px 0; background: var(--white); }
.prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.prod-detail-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.prod-detail-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.prod-detail-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,68,34,.15) 0%, transparent 60%);
}

.prod-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.prod-detail-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 14px;
}
.prod-detail-desc {
  color: var(--muted);
  font-size: .97rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: .9rem;
}
.specs-table th {
  background: var(--green);
  color: var(--white);
  text-align: left;
  padding: 11px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.specs-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.specs-table tr:nth-child(even) td { background: var(--off-white); }
.specs-table td:first-child { font-weight: 600; color: var(--green); width: 40%; }

/* Packaging tags */
.pack-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.pack-tag {
  background: var(--green-light);
  color: var(--green);
  border: 1px solid rgba(14,68,34,.15);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
}

/* Applications list */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.app-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .9rem;
  color: var(--text);
}
.app-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.prod-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prod-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Related products */
.related-prods { padding: 80px 0; background: var(--off-white); }
.related-prods h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  text-align: center;
  margin-bottom: 36px;
}

/* ─── CTA BANNER ───────────────────────────────── */
.cta-banner {
  background: var(--green);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .1;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .08;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.75;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── PRODUCTS PAGE FILTER ─────────────────────── */
.prod-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 9px 22px;
  border-radius: 4px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ─── ABOUT PAGE EXTRAS ────────────────────────── */
.timeline {
  position: relative;
  padding-left: 30px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--green));
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange);
}
.timeline-year {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 4px;
}
.timeline-t {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.timeline-d { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ─── RESPONSIVE ADDITIONS ─────────────────────── */
@media (max-width: 900px) {
  .prod-detail-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .dropdown { position: static; opacity: 1; visibility: visible; box-shadow: none; transform: none; display: none; background: var(--off-white); border-radius: 0; border: none; padding: 0; }
}

/* ─── TESTIMONIALS ─────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.testimonials-section .container { position: relative; z-index: 2; }

.testimonials-section .sec-label { color: rgba(255,255,255,.6); }
.testimonials-section .sec-label::before { background: var(--orange); }
.testimonials-section .sec-h2 { color: var(--white); }

.testimonials-carousel {
  position: relative;
  margin-top: 48px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 36px 32px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: .6;
  position: absolute;
  top: 16px; left: 24px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.testimonial-stars span { color: #f1c40f; font-size: 1rem; }
.testimonial-quote {
  font-size: .97rem;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Poppins', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-role {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}
.testimonial-flag {
  margin-left: auto;
  font-size: 1.6rem;
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.tc-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.tc-btn:hover { background: var(--orange); border-color: var(--orange); }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--trans);
}
.tc-dot.active { background: var(--orange); transform: scale(1.3); }

/* ─── CERTIFICATE SLIDESHOW ────────────────────── */
.cert-slideshow-section {
  padding: 60px 0;
  background: var(--off-white);
  overflow: hidden;
}
.cert-slide-label {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 28px;
}
.cert-slide-track-wrap {
  overflow: hidden;
  position: relative;
}
.cert-slide-track-wrap::before,
.cert-slide-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.cert-slide-track-wrap::before { left: 0; background: linear-gradient(to right, var(--off-white), transparent); }
.cert-slide-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--off-white), transparent); }

.cert-slide-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: certScroll 20s linear infinite;
}
.cert-slide-track:hover { animation-play-state: paused; }

@keyframes certScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.cert-badge-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: var(--trans);
}
.cert-badge-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(14,68,34,.12);
  transform: translateY(-2px);
}
.cert-badge-icon { font-size: 1.8rem; line-height: 1; }
.cert-badge-info { line-height: 1.3; }
.cert-badge-name {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
}
.cert-badge-desc {
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
  margin-top: 2px;
}

/* ─── PHOTO GALLERY ────────────────────────────── */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  background: rgba(14,68,34,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: white;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item.gallery-wide { grid-column: span 2; }

/* Gallery caption overlay */
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(transparent, rgba(14,68,34,.8));
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform .3s;
}
.gallery-item:hover .gallery-cap { transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  font-size: 2.2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: white;
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-nav:hover { background: var(--orange); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-caption {
  position: fixed;
  bottom: 24px;
  left: 50%; transform: translateX(-50%);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-card { min-width: calc(100% - 0px); }
  .gallery-item.gallery-wide { grid-column: span 1; }
}

/* ─── TESTIMONIALS V2 (ZeusAgro-style split layout) ─ */
.testi-v2-section {
  overflow: hidden;
  background: var(--white);
}
.testi-v2-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 580px;
}

/* Left image panel */
.testi-v2-img-panel {
  position: relative;
  overflow: hidden;
}
.testi-v2-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.testi-v2-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,68,34,.78) 0%,
    rgba(14,68,34,.42) 60%,
    rgba(0,0,0,.2) 100%
  );
}
/* Decorative angled shape on right edge — mimics ZeusAgro's shape cutout */
.testi-v2-shape {
  position: absolute;
  top: 0; right: -1px; bottom: 0;
  width: 72px;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
/* Floating stat badge */
.testi-v2-badge {
  position: absolute;
  bottom: 52px;
  left: 40px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(230,88,0,.35);
}
.testi-v2-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}
.testi-v2-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
  margin-top: 3px;
  display: block;
}

/* Right content panel */
.testi-v2-content {
  padding: 72px 72px 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--white);
}

/* "Testimonials" pill label */
.testi-v2-pill {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.testi-v2-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 32px;
}

/* Giant decorative quote mark */
.testi-v2-quote-icon {
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: .6;
  color: var(--orange);
  opacity: .18;
  position: absolute;
  top: 130px;
  right: 72px;
  pointer-events: none;
  user-select: none;
  font-weight: 900;
}

/* Slides */
.testi-v2-slides {
  position: relative;
  min-height: 220px;
  margin-bottom: 32px;
}
.testi-v2-slide {
  opacity: 0;
  position: absolute;
  inset: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.testi-v2-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}

/* Quote text */
.testi-v2-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.07rem;
  line-height: 1.88;
  color: #3a3a3a;
  font-style: italic;
  margin-bottom: 24px;
}

/* Author divider */
.testi-v2-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 16px;
}

.testi-v2-stars {
  color: #f5a623;
  font-size: .9rem;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.testi-v2-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testi-flag { font-size: 1.2rem; }
.testi-v2-role {
  font-size: .84rem;
  color: var(--muted);
  font-family: 'Poppins', sans-serif;
}

/* Navigation */
.testi-v2-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.testi-v2-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  flex-shrink: 0;
}
.testi-v2-btn:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.08);
}
.testi-v2-counter {
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .05em;
  min-width: 52px;
  text-align: center;
}

@media (max-width: 960px) {
  .testi-v2-inner { grid-template-columns: 1fr; }
  .testi-v2-img-panel { height: 300px; }
  .testi-v2-shape { clip-path: polygon(0 100%, 100% 100%, 100% 0); width: 100%; height: 52px; top: auto; right: 0; bottom: -1px; left: 0; }
  .testi-v2-content { padding: 48px 28px 52px; }
  .testi-v2-quote-icon { top: 80px; right: 24px; font-size: 6rem; }
}

/* ─ PHOTO GALLERY SLIDESHOW V2 ────────────────────────── */
.gallery-slideshow-section {
  padding: 100px 0 80px;
  background: var(--white);
}

/* Main viewer */
.gs-viewer {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #f6f6f6;
  aspect-ratio: 16/9;
  max-height: 560px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.gs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gs-slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 1;
}
.gs-slide img {
  width: 100%; height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

/* Caption overlay on image */
.gs-caption-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,68,34,.85) 0%, transparent 100%);
  color: var(--white);
  padding: 36px 28px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  transform: translateY(0);
  transition: transform .3s;
  z-index: 2;
}

/* Arrows */
.gs-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  background: rgba(14,68,34,.55);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans);
  backdrop-filter: blur(4px);
}
.gs-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.gs-arrow.prev { left: 16px; }
.gs-arrow.next { right: 16px; }

/* Counter */
.gs-counter {
  position: absolute;
  top: 16px; right: 18px;
  background: rgba(14,68,34,.65);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 3;
  backdrop-filter: blur(4px);
  letter-spacing: .05em;
}

/* Thumbnail strip */
.gs-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) #eee;
}
.gs-thumbs::-webkit-scrollbar { height: 4px; }
.gs-thumbs::-webkit-scrollbar-track { background: #eee; border-radius: 2px; }
.gs-thumbs::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

.gs-thumb {
  flex: 0 0 100px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  opacity: .65;
  position: relative;
}
.gs-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gs-thumb.active {
  border-color: var(--orange);
  opacity: 1;
  box-shadow: 0 4px 14px rgba(230,88,0,.25);
}
.gs-thumb:hover { opacity: 1; }

/* Progress bar */
.gs-progress {
  width: 100%;
  height: 3px;
  background: #eee;
  border-radius: 2px;
  margin-top: 14px;
  overflow: hidden;
}
.gs-progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
  transition: width .3s linear;
}

@media (max-width: 768px) {
  .gs-viewer { aspect-ratio: 4/3; max-height: 320px; }
  .gs-arrow { width: 42px; height: 42px; font-size: 1rem; }
  .gs-thumb { flex: 0 0 76px; height: 52px; }
  .gs-caption-bar { font-size: .88rem; padding: 26px 16px 14px; }
}
