.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #1a4a2e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  z-index: 99999;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
}

/* ============================================================
   VEL FARMS — Global Stylesheet
   Exact match to old tendercoke.com design
   ============================================================ */

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

:root {
  --green: #1a4a2e;
  --green-mid: #2d6a4f;
  --green-light: #e8f5e9;
  --amber: #f5a623;
  --amber-dark: #d4891a;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --text-dark: #1a1a1a;
  --text-mid: #333333;
  --text-muted: #666666;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 8px;
  transition: color 0.4s;
}

nav.solid .nav-brand {
  color: var(--green);
}

.nav-brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s;
}

nav.solid .nav-links a {
  color: var(--text-mid);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--amber) !important;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

nav.solid .nav-toggle span {
  background: var(--green);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(26, 74, 46, 0.97);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 0;
  z-index: 9999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* ============================================================
   HERO — FULL SCREEN
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 900px;
  color: #fff;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
  animation: heroSlideUp 1s ease both;
}

.hero-content p {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  max-width: 650px;
  margin-top: 1.2rem;
  animation: heroSlideUp 1s ease 0.2s both;
}

.hero-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2.2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: background 0.3s, border-color 0.3s;
  animation: heroSlideUp 1s ease 0.4s both;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
}

@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Page heroes (non-home) */
.page-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  padding-left: 4vw;
  color: #fff;
  overflow: hidden;
  width: 100%;
  text-align: left;
}

.page-hero .hero-content h1 {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -3px;
  line-height: 1;
  animation: heroSlideUp 0.9s ease both;
  color: #fff;
  white-space: normal;
  overflow: hidden;
}

.page-hero .hero-content p {
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 0.85;
  max-width: 55vw;
  line-height: 1.6;
}

/* Pollachi badge on contact */
.hero-badge-box {
  position: absolute;
  top: 50%;
  right: 5vw;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.5rem;
  min-width: 240px;
  max-width: 320px;
  color: #fff;
  z-index: 3;
  animation: heroSlideUp 0.9s ease 0.3s both;
}

.hero-badge-box .loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.hero-badge-box p {
  font-size: 0.82rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ============================================================
   AMBER SECTION LABEL (parallelogram style)
   ============================================================ */
.amber-label {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 1.5rem 0.55rem 1rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  margin-bottom: 0.4rem;
  margin-top: 0.8rem;
  letter-spacing: 0.5px;
}

.amber-label-full {
  display: flex;
  align-items: center;
  background: var(--amber);
  color: var(--green);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--amber-dark);
}

/* ============================================================
   SECTION TITLE STYLE
   ============================================================ */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
}

.section-heading span {
  color: var(--amber);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.sr {
  opacity: 1;
  transform: none;
  transition: none;
}

.sr.left {
  opacity: 1;
  transform: none;
}

.sr.right {
  opacity: 1;
  transform: none;
}

.sr.visible {
  opacity: 1;
  transform: none;
}

.sr.d1 {
  transition-delay: 0.1s;
}

.sr.d2 {
  transition-delay: 0.2s;
}

.sr.d3 {
  transition-delay: 0.3s;
}

.sr.d4 {
  transition-delay: 0.4s;
}

.sr.d5 {
  transition-delay: 0.5s;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  overflow: hidden;
  background: #111;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/gallery-6.jpg') center/cover no-repeat;
  opacity: 0.18;
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 3.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-logo img {
  height: 50px;
}

.footer-tagline {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-tagline::before,
.footer-tagline::after {
  content: ' * ';
}

.footer-nav {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
}

.footer-nav a {
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.3s;
}

.footer-nav a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-nav a:hover {
  color: var(--amber);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

.footer-copy strong {
  color: rgba(255, 255, 255, 0.65);
}

/* ============================================================
   ABOUT PAGE — SPLIT ANIMATION
   ============================================================ */
.about-intro-anim {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  display: flex;
}

.anim-left {
  width: 55%;
  height: 100%;
  background: var(--amber);
  transform-origin: left;
  animation: slideLeft 0.9s cubic-bezier(.77, 0, .18, 1) 0.2s both;
}

.anim-right {
  width: 45%;
  height: 100%;
  background: #fff;
  transform-origin: right;
  animation: slideRight 0.9s cubic-bezier(.77, 0, .18, 1) 0.2s both;
}

@keyframes slideLeft {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@keyframes slideRight {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

/* ============================================================
   AGRICULTURAL SUSTAINABILITY
   ============================================================ */
.agri-section {
  padding: 3rem 0;
  background: #fff;
}

.agri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.agri-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.agri-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.agri-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.agri-heading span {
  color: var(--amber);
}

.agri-item {
  margin-bottom: 0.5rem;
}

.agri-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-top: 0;
  margin-bottom: 0.3rem;
}

/* ============================================================
   PRODUCTS SECTION (home)
   ============================================================ */
.products-home {
  padding: 5rem 0;
  background: var(--off-white);
}

.products-home-title {
  text-align: center;
  margin-bottom: 3rem;
}

.products-home-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.products-home-title h2 span {
  color: var(--amber);
}

.prod-category-label {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.5rem 2rem 0.5rem 1.2rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  margin-bottom: 1.5rem;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.prod-grid.two-col {
  grid-template-columns: repeat(2, 340px);
  justify-content: center;
}

/* Product card — old style */
.prod-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.prod-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2.5rem 1rem 0.8rem;
  text-align: center;
  line-height: 1.25;
}

.prod-card-body {
  padding: 1.2rem 1rem;
}

.prod-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.prod-card-body p:last-child {
  margin-bottom: 0;
}

.prod-spec {
  border-top: 1px solid #eee;
  padding-top: 0.6rem;
}

.prod-spec strong {
  color: var(--green);
  font-size: 0.8rem;
}

/* ============================================================
   FARMS ACCORDION
   ============================================================ */
.farms-accordion {
  display: flex;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.farm-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(.4, 0, .2, 1);
  min-width: 60px;
}

.farm-panel.active {
  flex: 5;
}

.farm-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  filter: brightness(0.55);
}

.farm-panel:hover .farm-panel-bg {
  transform: scale(1.04);
}

.farm-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.farm-panel-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 1.5rem 0;
  text-align: center;
  transition: opacity 0.3s;
}

.farm-panel.active .farm-panel-name {
  opacity: 0;
}

.farm-panel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s 0.15s;
}

.farm-panel.active .farm-panel-info {
  opacity: 1;
}

.farm-panel-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.farm-panel-info p {
  font-size: 0.88rem;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Farm label shown on top when active */
.farms-active-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green);
  padding: 1rem 0 0.5rem;
  text-transform: uppercase;
  min-height: 2.5rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* Founder */
.founder-section {
  position: relative;
  padding: 2rem 0;
  background: #fff;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: url('../assets/images/gallery-2.jpg') center/cover no-repeat;
  z-index: 0;
}

.founder-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.founder-section .section-wrap {
  position: relative;
  z-index: 2;
}

.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: #fff;
  border: 2px solid #1a4a2e;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  margin-top: 60px;
}

.founder-photo {
  overflow: hidden;
  max-width: 320px;
  min-width: 280px;
  border-radius: 8px;
}

.founder-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: 8px;
}

.founder-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-box {
  border: 2px solid #1a4a2e;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.2rem;
  border-radius: 4px;
  background: #fff;
}

.founder-info .role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  display: block;
}

.founder-info h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0;
}

.founder-info p {
  font-size: 0.85rem;
  line-height: 1.85;
  color: #444;
  margin-bottom: 0.8rem;
}

/* Story Vision Mission */
.svm-section {
  padding: 2rem 0;
  background: #fff;
}

.svm-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.svm-title span {
  color: #f5a623;
}

.svm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.svm-card {
  background: #1a4a2e;
  color: #fff;
  padding: 1.5rem;
  border-radius: 4px;
}

.svm-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.svm-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  opacity: 0.92;
}

.svm-card.center {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

/* Exports */
.exports-section {
  position: relative;
  padding: 2rem 0;
  color: #fff;
  overflow: hidden;
}

.exports-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/exports-bg.jpg') center/cover no-repeat;
}

.exports-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.exports-inner {
  position: relative;
  z-index: 2;
}

.exports-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  border-left: 4px solid var(--amber);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

.exports-inner p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88);
}

/* About amber sections */
.about-amber {
  padding: 2rem 0;
  background: #fff;
}

.amber-block {
  margin-bottom: 0.8rem;
}

.amber-block p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-top: 1rem;
}

.about-infra {
  margin-top: 0.5rem;
}

.about-infra h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.about-infra ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.about-infra ul li {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.about-infra ul li strong {
  color: var(--green);
}

.about-amber-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.about-amber-imgs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-amber-imgs img {
  border-radius: 8px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============================================================
   PRODUCTS FULL PAGE
   ============================================================ */
.products-page {
  padding: 5rem 0;
  background: #fff;
}

.prod-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.prod-full-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.prod-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.prod-full-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.prod-full-card-body {
  padding: 1.3rem;
}

.prod-full-card-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.prod-full-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* purchase popup */
.purchase-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.purchase-popup.show {
  display: flex;
}

.purchase-box {
  background: #fff;
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.purchase-box img {
  height: 50px;
  margin: 0 auto 1rem;
}

.purchase-box p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.purchase-box .contact-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.75rem 2.5rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.purchase-box .contact-btn:hover {
  background: var(--green-mid);
}

.purchase-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 5rem 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-left h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.3rem;
}

.contact-left .tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.contact-detail {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-detail strong {
  color: var(--text-dark);
}

.contact-mail-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 2rem 0 1.2rem;
}

.contact-form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-form label span {
  color: red;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.mail-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.8rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.3s;
}

.mail-btn:hover {
  background: var(--green-mid);
}

.contact-map {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .agri-grid {
    grid-template-columns: 1fr;
  }

  .agri-img img {
    height: 320px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-photo img {
    height: 360px;
  }
}

@media (max-width: 900px) {
  .founder-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .founder-photo img {
    height: 280px;
    object-position: center 40%;
  }

  .about-amber-grid {
    grid-template-columns: 1fr;
  }

  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prod-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .prod-grid {
    grid-template-columns: 1fr;
  }

  .prod-grid.two-col {
    grid-template-columns: 1fr;
  }

  .prod-grid-full {
    grid-template-columns: 1fr;
  }

  .farms-accordion {
    height: 380px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav a {
    border: none;
    padding: 0.5rem 1rem;
  }

  .hero-badge-box {
    display: none;
  }

  .svm-grid {
    grid-template-columns: 1fr;
  }

  .svm-card.center {
    grid-column: unset;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {

  .sr,
  .sr.left,
  .sr.right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .farm-panel {
    transition: none;
  }

  .hero-content h1,
  .hero-content p,
  .hero-btn,
  .hero-badge {
    animation: none;
    opacity: 1;
    transform: none;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes founderReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FOOTER INFO BAR ===== */
.footer-info-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.4rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0.6rem 0 1rem;
  text-align: center;
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer-contact-group,
.footer-certs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a84b;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-contact-group a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s;
}

.footer-contact-group a:hover {
  color: #fff;
}

.footer-cert-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.5rem;
}

.footer-cert-list span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

@media (max-width: 600px) {
  .footer-info-bar {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
  }
}

/* FOOTER INFO BAR */
.footer-info-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.4rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0.6rem 0 1rem;
  text-align: center;
  width: 100%;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer-contact-group,
.footer-certs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.footer-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4a84b;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-contact-group a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s;
}

.footer-contact-group a:hover {
  color: #fff;
}

.footer-cert-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer-cert-list span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

@media(max-width:600px) {
  .footer-info-bar {
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
  }
}

/* WHATSAPP FLOATING BUTTON */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

@media(max-width:600px) {
  .wa-float {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}