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

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Colors - Green & Red from reference */
  --primary-green: #4CAF50;
  --primary-green-dark: #2E7D32;
  --primary-green-light: #81C784;
  --accent-green: #8BC34A;
  --lime-green: #7CB342;

  --primary-red: #E53935;
  --primary-red-dark: #C62828;
  --primary-red-light: #EF5350;

  /* Logo Colors */
  --logo-yellow: #FFD600;
  --logo-blue: #1A237E;
  --logo-red: #D32F2F;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFDF7;
  --light-gray: #F5F5F5;
  --gray: #9E9E9E;
  --dark-gray: #424242;
  --black: #212121;

  /* Gradients */
  --gradient-green: linear-gradient(135deg, #4CAF50, #8BC34A);
  --gradient-red: linear-gradient(135deg, #E53935, #FF5722);
  --gradient-hero: linear-gradient(135deg, #2E7D32 0%, #4CAF50 40%, #E53935 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
  overflow-x: clip;
}

body {
  font-family: var(--font-secondary);
  color: var(--black);
  background-color: var(--white);
  position: relative;
  isolation: isolate;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 255px;
  background-image: url('../images/bg image adhi.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}

.home-page::before {
  display: none;
}

.about-page::before {
  background-image: url('../images/adhi about bg image.png');
  height: 100vh;
  min-height: 650px;
}

.about-page .section-tag {
  background: var(--white) !important;
  color: var(--primary-green-dark) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(46, 125, 50, 0.15) !important;
}

.about-page .section-title {
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9), 0 1px 2px rgba(255, 255, 255, 0.9) !important;
}

.about-page .mobile-toggle span {
  background: var(--white);
}

.about-page .banner-image {
  height: calc(100vh - 134px);
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-page .banner-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding-left: max(10px, calc(50% - 610px));
}

.about-hero-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  min-height: 42px;
  padding: 6px 18px;
  background: rgba(19, 93, 35, 0.94);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(18, 54, 25, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
}

.about-hero-title {
  width: calc(100% - 160px);
  margin: 0;
  color: transparent;
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.double-stroke-text {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: transparent;
  -webkit-text-stroke: 3px rgba(255, 255, 255, 0.98);
  paint-order: stroke fill;
  filter: drop-shadow(0 2px 2px rgba(18, 47, 24, 0.38));
}

.double-stroke-text::before,
.double-stroke-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  pointer-events: none;
}

.double-stroke-text::before {
  -webkit-text-stroke: 1.6px rgba(58, 70, 58, 0.82);
}

.double-stroke-text::after {
  -webkit-text-stroke: 0.6px var(--white);
}

.about-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 134px;
  min-height: 42px;
  padding: 6px 8px;
  background: #0a5b24;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(18, 54, 25, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
}

.about-hero-button:hover {
  background: #07491c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(18, 54, 25, 0.25);
}

.about-intro-content {
  width: 100%;
  margin-top: -1px;
  padding: 64px 0;
  background-image: url('../images/bg about us pagee.png');
  background-size: 100% calc(100% + 12px);
  background-position: center -12px;
  background-repeat: no-repeat;
  scroll-margin-top: 80px;
}

.about-intro-content .container {
  width: calc(100% - 40px);
  max-width: 1100px;
  padding: 36px 40px;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-intro-title {
  margin: 0 0 22px;
  color: var(--primary-green-dark);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.about-intro-content p {
  margin-bottom: 18px;
  color: #303a32;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.9;
  text-align: justify;
}

.about-intro-content p:last-child {
  margin-bottom: 0;
}

.about-who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 550px;
  gap: 24px;
  align-items: start;
}

.about-intro-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  background: var(--primary-green-dark);
  border-radius: 50%;
  font-size: 0.9rem;
}

.about-who-copy>p {
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: left;
}

.about-who-copy {
  margin-left: calc(-1 * max(0px, 50vw - 600px));
  width: calc(100% + max(0px, 50vw - 600px));
}

.about-reference-photo {
  background-image: url('../images/about-content-reference.png');
  background-repeat: no-repeat;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(28, 53, 31, 0.18);
}

.about-reference-photo-plant {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: none;
  box-shadow: none;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.about-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(85, 131, 57, 0.18);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(35, 62, 38, 0.08);
}

.about-benefit>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--white);
  background: var(--primary-green-dark);
  border-radius: 50%;
  font-size: 1.15rem;
}

.about-benefit strong,
.about-benefit small {
  display: block;
  line-height: 1.25;
}

.about-benefit strong {
  color: #315c2c;
  font-size: 1.1rem;
}

.about-benefit small {
  color: #4e5b4f;
  font-size: 0.95rem;
}

.ceo-message {
  display: grid;
  grid-template-columns: 215px 1fr;
  gap: 30px;
  align-items: stretch;
  margin-top: 34px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(85, 131, 57, 0.2);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(28, 52, 30, 0.12);
}

.ceo-profile {
  display: flex;
  flex-direction: column;
}

.about-reference-photo-ceo {
  width: 211px;
  height: 264px;
  background-size: 794.2px 831.6px;
  background-position: -35px -275px;
  border-radius: 16px 16px 0 0;
  border-bottom: 0;
}

.ceo-name {
  width: 211px;
  padding: 10px 8px;
  color: var(--white);
  background: linear-gradient(135deg, #447d2e, #245f2c);
  border-radius: 0 0 14px 14px;
  text-align: center;
}

.ceo-name strong,
.ceo-name span {
  display: block;
}

.ceo-name strong {
  font-family: var(--font-primary);
  font-size: 1rem;
}

.ceo-name span {
  margin-top: 2px;
  font-size: 0.72rem;
}

.ceo-copy h2 {
  margin-bottom: 12px;
  color: var(--primary-red-dark);
  font-size: 1.8rem;
}

.ceo-copy p {
  margin-bottom: 10px;
  color: #39443a;
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: left;
}

.ceo-copy .ceo-commitment {
  color: var(--primary-green-dark);
  font-weight: 700;
}

.about-expertise {
  margin-top: 34px;
  width: calc(100% + 2 * max(0px, 50vw - 600px));
  margin-left: calc(-1 * max(0px, 50vw - 600px));
  padding-left: max(20px, 2vw);
  padding-right: max(20px, 2vw);
}

.about-expertise > h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  text-align: center;
}

.about-expertise > h2 i {
  color: #78a936;
  font-size: 0.9rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.expertise-card {
  min-height: 220px;
  padding: 24px 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(80, 125, 55, 0.17);
  border-top: 3px solid currentColor;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(31, 58, 34, 0.08);
  text-align: center;
}

.expertise-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 1.35rem;
}

.expertise-card h3 {
  min-height: auto;
  margin-bottom: 10px;
  color: currentColor;
  font-size: 1.2rem;
  line-height: 1.3;
}

.expertise-card p {
  margin: 0;
  color: #4b554c;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

.expertise-green {
  color: #2e7d32;
}

.expertise-lime {
  color: #6b8e23;
}

.expertise-olive {
  color: #4f772d;
}

.expertise-red {
  color: #c62828;
}

.expertise-orange {
  color: #c86b17;
}

.expertise-blue {
  color: #287878;
}


.footer-company-details {
  align-items: flex-start;
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer-company-details strong {
  color: var(--logo-yellow);
  font-weight: 700;
}

.footer-helpline a {
  color: var(--logo-yellow);
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: transparent;
  color: var(--white);
  padding: 0;
  min-height: 44px;
  font-size: 0.85rem;
  font-family: var(--font-secondary);
  position: relative;
  z-index: 1001;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 44px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  padding: 6px 16px;
  background: linear-gradient(105deg, rgba(27, 58, 34, 0.44), rgba(35, 75, 43, 0.25));
  -webkit-backdrop-filter: blur(12px) saturate(135%);
  backdrop-filter: blur(12px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.top-bar-left a,
.top-bar-left .top-location {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 400;
}

.top-bar-left a:hover {
  color: var(--logo-yellow);
}

.top-divider {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.top-bar-right {
  display: none;
  align-items: center;
  gap: 12px;
}

.follow-label {
  font-weight: 500;
  font-size: 0.85rem;
  margin-right: 4px;
}

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  transition: var(--transition);
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--white);
  color: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 10px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.header.scrolled {
  /* removed padding to prevent page jump */
}

.header.scrolled .logo {
  top: -10px !important;
}

/* Long rounded glass navigation bar matching the reference header. */
.header::before {
  content: '';
  position: absolute;
  top: 10px;
  left: max(205px, calc(50% - 445px));
  right: max(20px, calc(50% - 600px));
  height: 70px;
  background: linear-gradient(105deg, rgba(79, 91, 77, 0.38), rgba(38, 99, 49, 0.30));
  -webkit-backdrop-filter: blur(3px) saturate(108%);
  backdrop-filter: blur(3px) saturate(108%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 10px 28px rgba(25, 57, 29, 0.14);
  border-radius: 22px 22px 22px 4px;
  z-index: -1;
}

/* The logo now supplies its own compact overlapping badge. */
.header::after {
  display: none;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: static;
  /* Let .logo position relative to .header */
  padding: 0 20px 0 150px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header>.container>.logo {
  position: absolute;
  left: max(10px, calc(50% - 610px));
  top: -23px;
  width: 140px;
  height: 140px;
  padding: 10px;
  background: linear-gradient(105deg, rgba(79, 91, 77, 0.38), rgba(38, 99, 49, 0.30));
  -webkit-backdrop-filter: blur(3px) saturate(108%);
  backdrop-filter: blur(3px) saturate(108%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(25, 59, 28, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  z-index: 10;
}

.header>.container>.logo img {
  height: 120px;
  width: 100%;
  object-fit: contain;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

/* Keep the background artwork attached to the header instead of restarting it. */
.banner-image {
  height: 121px;
  position: relative;
  z-index: 1;
}

.banner-image img {
  display: none;
}

body:not(.about-page) > .banner-image {
  height: auto;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

body:not(.about-page) > .banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex: 1 1 auto;
  min-width: 0;
  gap: 0;
  margin: 0 18px 0 12px;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  padding: 10px 12px;
  /* Slightly reduced padding to fit better */
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  /* Prevent "ABOUT US" from wrapping to a second line */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}


.nav-icon {
  color: var(--primary-green);
  font-size: 0.85rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Dropdown */
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--primary-green);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--dark-gray);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(76, 175, 80, 0.08);
  color: var(--primary-green-dark);
  padding-left: 28px;
}

/* Nested Dropdown Submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .submenu-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-submenu .submenu-arrow {
  font-size: 0.65rem;
  transition: var(--transition);
}

.submenu-content {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  z-index: 101;
  border-left: 3px solid var(--primary-green);
}

.dropdown-submenu:hover .submenu-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.scrollable-menu {
  max-height: 400px;
  overflow-y: auto;
}

/* Custom Scrollbar for submenu */
.scrollable-menu::-webkit-scrollbar {
  width: 6px;
}
.scrollable-menu::-webkit-scrollbar-track {
  background: var(--light-gray);
}
.scrollable-menu::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 3px;
}

.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: var(--transition);
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Header Actions (ORDER NOW, Cart, User) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.btn-order {
  background: var(--primary-red);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-order:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
}

.header-icon:hover {
  background: var(--white);
  color: var(--primary-green-dark);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
}

/* Search Icon (legacy, hidden) */
.search-btn {
  display: none;
}

/* Enquiry Button (legacy, keep for other pages) */
.btn-enquiry {
  background: var(--primary-red);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-enquiry:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

.btn-enquiry span {
  transition: var(--transition);
}

.btn-enquiry:hover span {
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-green-dark);
  border-radius: 2px;
  transition: var(--transition);
}


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Diagonal Green & Red Stripes - matching reference image 2 */
.hero-bg .stripe-green {
  position: absolute;
  top: 0;
  left: -5%;
  width: 65%;
  height: 100%;
  background: var(--primary-green);
  transform: skewX(-12deg);
  transform-origin: top left;
  z-index: 1;
}

.hero-bg .stripe-lime {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 55%;
  height: 80%;
  background: var(--accent-green);
  transform: skewX(-12deg);
  transform-origin: top left;
  z-index: 2;
}

.hero-bg .stripe-red {
  position: absolute;
  top: 0;
  right: -20%;
  width: 65%;
  height: 100%;
  background: var(--primary-red);
  transform: skewX(-12deg);
  transform-origin: top right;
  z-index: 1;
}

.hero-bg .stripe-cream {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 60%;
  height: 20%;
  background: var(--off-white);
  transform: skewX(-12deg);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  max-width: 550px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--logo-yellow);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-title .highlight {
  color: var(--logo-yellow);
  position: relative;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-green-dark);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  z-index: 10;
}

.hero-logo-large {
  width: 380px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* ===== MARQUEE / RUNNING TEXT ===== */
.marquee-bar {
  background: var(--primary-green-dark);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-content span {
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-content span::before {
  content: '🌱';
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-green);
  transform: scaleX(0);
  transition: var(--transition-slow);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-item:hover {
  background: var(--off-white);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-green-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION HEADINGS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.1);
  color: var(--primary-green-dark);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title .text-green {
  color: var(--primary-green-dark);
}

.section-title .text-red {
  color: var(--primary-red);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-red);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.about-accent .years {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.about-accent .years-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--black);
}

.about-content .text-highlight {
  color: var(--primary-green-dark);
}

.about-content p {
  font-size: 1rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.about-feature .check-icon {
  width: 24px;
  height: 24px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-red);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-body {
  padding: 24px;
}

.product-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-link {
  color: var(--primary-green-dark);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-link:hover {
  color: var(--primary-red);
  gap: 12px;
}

/* ===== CROPS SECTION ===== */
.crops-section {
  padding: var(--section-padding);
  background: var(--white);
}

.crops-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.crop-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--border-radius);
  background: var(--off-white);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.crop-card:hover {
  border-color: var(--primary-green);
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.crop-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.crop-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crop-name {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  display: none;
  padding: var(--section-padding);
  background: var(--primary-green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(229, 57, 53, 0.1);
  border-radius: 50%;
}

.why-section .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-red);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--primary-green);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info .name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}

.testimonial-info .role {
  font-size: 0.8rem;
  color: var(--gray);
}

.testimonial-stars {
  color: var(--logo-yellow);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg .cta-stripe-green {
  position: absolute;
  inset: 0;
  width: 55%;
  background: var(--primary-green);
  transform: skewX(-12deg);
  transform-origin: top left;
  left: -5%;
}

.cta-banner-bg .cta-stripe-red {
  position: absolute;
  inset: 0;
  width: 65%;
  right: -15%;
  left: auto;
  background: var(--primary-red);
  transform: skewX(-12deg);
  transform-origin: top right;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .cta-banner-bg .cta-stripe-green {
    width: 80%;
    left: -10%;
  }
  .cta-banner-bg .cta-stripe-red {
    width: 80%;
    right: -30%;
  }
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-white {
  background: var(--white);
  color: var(--primary-green-dark);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-green-dark);
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  text-align: left;
}

.footer-brand .logo {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  margin-bottom: 22px;
}

.footer-brand .logo img {
  height: 200px;
  width: 150px;
  object-fit: contain;
}

.footer-brand .logo-text .company-name {
  display: block;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.footer-brand .logo-text .company-subtitle {
  display: block;
  color: var(--primary-green-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--primary-green-light);
  transform: translateX(5px);
}

.footer-col ul li a::before {
  content: '›';
  color: var(--primary-green);
  font-weight: 700;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-contact li .contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-contact li a::before {
  display: none;
}

.footer-contact li a:hover {
  transform: none;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary-green-light);
}

/* ===== ENQUIRY FORM (MODAL) ===== */
.enquiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-modal.active {
  display: flex;
}

.enquiry-form-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 560px;
  padding: 40px;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

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

.enquiry-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.enquiry-close:hover {
  background: var(--primary-red);
  color: var(--white);
}

.enquiry-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--primary-green-dark);
}

.enquiry-form-container .form-subtitle {
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--primary-green);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* ===== PAGE BANNER (Inner Pages) ===== */
.page-banner {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
}

.page-banner-bg .pb-stripe-green {
  position: absolute;
  inset: 0;
  width: 60%;
  background: var(--primary-green);
  transform: skewX(-12deg);
  transform-origin: top left;
  left: -5%;
}

.page-banner-bg .pb-stripe-red {
  position: absolute;
  inset: 0;
  width: 65%;
  background: var(--primary-red);
  transform: skewX(-12deg);
  right: -15%;
  left: auto;
  transform-origin: top right;
}

.page-banner-content {
  position: relative;
  z-index: 10;
  color: var(--white);
}

.page-banner-content h1 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .separator {
  opacity: 0.5;
}

.vm-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-green);
  transition: var(--transition);
}

.vm-card:nth-child(2) {
  border-top-color: var(--primary-red);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.vm-card .vm-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary-green-dark);
}

.vm-card:nth-child(2) h3 {
  color: var(--primary-red);
}

.vm-card p {
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ===== PRODUCTS PAGE ===== */
.products-page {
  padding: var(--section-padding);
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--light-gray);
  border: 2px solid transparent;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark-gray);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

/* ===== CONTACT / ENQUIRY PAGE ===== */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
  border-left: 4px solid var(--primary-green);
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary-green-dark);
}

.contact-form .form-subtitle {
  color: var(--gray);
  margin-bottom: 24px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-green-dark);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-logo-large {
    width: 280px;
  }

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

  .crops-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  body:not(.about-page) > .banner-image {
    height: auto;
    aspect-ratio: 1672 / 941;
  }

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

@media (min-width: 769px) and (max-width: 1100px) {
  .header .container {
    padding-left: 205px;
  }

  .nav-link {
    padding: 10px 6px;
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-order {
    padding: 10px 18px;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .header-actions .btn-order {
    display: none;
  }
}

@media (min-width: 800px) and (max-width: 1251px) {

  .about-hero-label {
    top: calc(200px - clamp(68px, 6.53vw, 102px) - clamp(34px, 3.265vw, 51px));
  }

  .about-hero-button {
    top: calc(241px + clamp(68px, 6.53vw, 102px) + clamp(34px, 3.265vw, 51px) + 20px);
  }
}

@media (min-width: 800px) and (max-width: 852px) {
  .about-hero-label {
    top: calc(200px - clamp(68px, 6.53vw, 102px) - (2 * clamp(34px, 3.265vw, 51px)));
  }

  .about-hero-button {
    top: calc(241px + clamp(68px, 6.53vw, 102px) + (2 * clamp(34px, 3.265vw, 51px)) + 20px);
  }
}

@media (min-width: 769px) and (max-width: 799px) {

  .about-hero-label {
    top: calc(200px - (2 * clamp(68px, 6.53vw, 102px)));
  }

  .about-hero-button {
    top: calc(241px + (2 * clamp(68px, 6.53vw, 102px)) + 20px);
  }
}

@media (max-width: 480px) {
  .about-benefits, .expertise-grid { grid-template-columns: 1fr; }
  .about-reference-photo-plant { height: 150px !important; }
  .expertise-card { min-height: 150px; }
}
@media (max-width: 768px) {

  .mobile-toggle {
    display: flex;
  }

  .header-actions .btn-order {
    display: none;
  }

  .top-bar-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 6px 10px;
    width: 100%;
    border-radius: 0 0 12px 12px;
  }
  
  .top-divider {
    display: none;
  }
  
  .top-bar-left a, .top-bar-left .top-location {
    font-size: 0.75rem;
  }

  .header::before {
    left: 90px !important;
    right: 10px !important;
    border-radius: 20px !important;
  }

  .header>.container>.logo {
    width: 70px !important;
    height: 70px !important;
    top: 10px !important;
    border-radius: 20px !important;
    padding: 6px !important;
  }

  .header>.container>.logo img {
    height: 58px !important;
  }

  .header .container {
    padding-left: 105px !important;
    padding-right: 20px !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    backdrop-filter: blur(22px) saturate(145%);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    transform: translateX(110%);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active,
  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 14px 20px;
    color: var(--dark-gray);
    text-shadow: none;
    justify-content: flex-start;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary-green);
  }

  .nav-link::after {
    left: 20px;
    transform: none;
  }

  .nav-link:hover::after,
  .nav-link.active::after {
    width: calc(100% - 40px);
  }

  /* Hamburger to X animation */
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Dropdown & submenu accordion styles for mobile */
  .dropdown-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(0, 0, 0, 0.02) !important;
    padding-left: 15px !important;
    border-top: none !important;
    width: 100% !important;
  }
  
  .dropdown-menu.active {
    display: block !important;
  }
  
  .dropdown-submenu .submenu-content {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: rgba(0, 0, 0, 0.02) !important;
    padding-left: 15px !important;
    border-left: none !important;
    width: 100% !important;
  }
  
  .dropdown-submenu .submenu-content.active {
    display: block !important;
  }
  
  .dropdown-arrow.rotate,
  .submenu-arrow.rotate {
    transform: rotate(180deg) !important;
  }

  .btn-enquiry {
    width: 100%;
    justify-content: center;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-logo-large {
    width: 200px;
  }

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


  .footer-brand .logo-text .company-name { font-size: 1.35rem; line-height: 1.25; }
  .footer-brand .logo-text .company-subtitle { font-size: 1.12rem; line-height: 1.3; }

  .footer {
    padding-top: 30px;
  }

  .cta-banner {
    padding-bottom: 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-banner-content h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

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

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

  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
/* About page: justify the three Who We Are paragraphs. */
.about-who-copy > p {
  text-align: left !important;
  text-justify: auto;
  word-spacing: normal;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .about-page .banner-image {
    height: auto;
    min-height: auto;
    padding: 100px 20px 40px;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .about-hero-content {
    align-items: center;
    padding-left: 0;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .double-stroke-text {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.98);
  }

  .double-stroke-text::before {
    -webkit-text-stroke: 0.8px rgba(58, 70, 58, 0.82);
  }

  .double-stroke-text::after {
    -webkit-text-stroke: 0.3px var(--white);
  }

  .about-intro-content .container {
    width: calc(100% - 28px) !important;
  }

  .about-who-grid {
    display: block !important;
    width: 100% !important;
  }

  .about-who-copy {
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .about-who-copy > p {
    width: 100% !important;
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: left !important;
  }

  .about-who-right {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}
/* Give the About page product image a small, proportional size increase. */
.ceo-story img[alt="Our Key Products Image"] {
  max-height: 540px !important;
}
/* Final alignment for the requested About copy. */
.about-who-copy > p { text-align: justify !important; text-justify: inter-word; }
@media (max-width: 768px) {
  .about-who-copy > p { text-align: justify !important; }
}

/* Tablet & Mobile layout adjustments for About Page breakout sections */
@media (max-width: 1200px) {
  .about-intro-content div[style*="margin-left"] {
    margin-left: 0 !important;
    width: 100% !important;
    padding-right: 0 !important;
    flex-direction: column !important;
    gap: 30px !important;
  }
  .about-who-right {
    width: 100% !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
  .ceo-block {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    text-align: center;
  }
  .ceo-block img {
    margin: 0 auto 20px !important;
  }
  .ceo-story {
    flex: 1 1 100% !important;
    min-width: 0 !important;
  }
}
.farmer-strength-highlight {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #4d8b32, #1f672f);
  box-shadow: 0 6px 14px rgba(31, 103, 47, 0.22);
  letter-spacing: 0.01em;
}
/* Clean 4-column grid layout for product catalog. */
.compact-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.compact-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.compact-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 125, 50, 0.24);
  box-shadow: 0 8px 24px rgba(36, 81, 40, 0.08);
}

.compact-product-image {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 6px;
  background: #fafcfa;
  border-radius: 6px;
}

.compact-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.compact-product-image-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compact-product-card:hover .compact-product-image img {
  transform: scale(1.04);
}

.compact-product-card h3 {
  margin: 6px 0 8px;
  color: #1f672f;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.compact-product-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.compact-product-title-link:hover {
  color: #2e7d32;
}

.compact-product-card p {
  flex: 1;
  margin: 0 0 10px;
  color: #59645a;
  font-size: 0.78rem;
  line-height: 1.4;
  min-height: 44px;
}

.compact-product-card strong {
  display: block;
  color: #566255;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.compact-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #edf1eb;
}

.compact-product-footer > span {
  color: #1f672f;
  font-size: 0.95rem;
  font-weight: 700;
}

.compact-add-btn,
.compact-details-btn {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
  background: #1f672f;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.compact-add-btn:hover,
.compact-details-btn:hover {
  background: #174d24;
  color: #fff;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .compact-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .compact-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .compact-product-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .compact-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .compact-product-image {
    height: 140px;
  }
  .compact-product-card {
    padding: 10px;
  }
  .compact-product-card h3 {
    font-size: 0.95rem;
  }
  .compact-product-card p {
    font-size: 0.7rem;
    min-height: auto;
  }
  .compact-product-footer {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .compact-product-footer > span {
    font-size: 0.85rem;
  }
  .compact-add-btn,
  .compact-details-btn {
    width: 100%;
    text-align: center;
    padding: 5px 8px;
    font-size: 0.7rem;
  }
}
/* Products page uses a clean header without the global field background. */
.products-page-body::before { display: none; }
/* Products page background artwork. */
.products-page {
  background-image: url('../images/product page.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Continue the Products artwork behind the navigation header. */
.products-page-body .header {
  background-image: url('../images/product page.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
/* Use one continuous artwork layer across the entire Products page. */
.products-page-body {
  background-image: url('../images/product page.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.products-page-body .header,
.products-page-body .products-page {
  background-image: none;
}
/* Smooth scrolling for Products page navigation and product anchors. */
html:has(body.products-page-body) {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
.products-page-body {
  scroll-behavior: smooth;
}
.product-category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px auto 34px;
}
.product-category-tab {
  border: 1px solid rgba(46, 125, 50, 0.16);
  border-radius: 999px;
  padding: 10px 22px;
  color: #315a37;
  background: rgba(255, 255, 255, 0.88);
  font: 600 0.9rem var(--font-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-category-tab:hover,
.product-category-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  border-color: transparent;
  box-shadow: 0 5px 12px rgba(46, 125, 50, 0.2);
}
.compact-product-card[hidden] { display: none !important; }
@media (max-width: 520px) {
  .product-category-tabs { gap: 8px; margin-bottom: 24px; }
  .product-category-tab { padding: 8px 13px; font-size: 0.78rem; }
}
/* Product category image showcase */
.product-category-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 8px auto 42px;
}

.product-category-feature {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-primary);
  text-align: center;
  cursor: pointer;
}

.product-category-feature-image {
  position: relative;
  display: block;
  aspect-ratio: 1.3 / 1;
  overflow: hidden;
  border-radius: 11px;
  background: #dfead9;
  box-shadow: 0 10px 26px rgba(27, 73, 35, 0.14);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.product-category-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 420ms ease, transform 520ms ease;
}

.product-category-leaf {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 90%;
  height: 68%;
  display: block;
  background: url('../images/category-leaf-overlay-cropped.png') left top / contain no-repeat;
  opacity: 0;
  transform: translate(-14%, -110%) scale(0.82);
  transform-origin: top left;
  transition: opacity 280ms ease, transform 480ms cubic-bezier(0.2, 0.75, 0.25, 1);
  z-index: 2;
}

.product-category-leaf strong {
  position: absolute;
  top: 31%;
  left: 15%;
  color: #fff;
  font-size: clamp(1rem, 1.55vw, 1.42rem);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  z-index: 1;
}

.product-category-arrow {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #b9dd20;
  box-shadow: 0 7px 18px rgba(40, 89, 20, 0.26);
  opacity: 0;
  transform: translate(-50%, -24px) scale(0.65);
  transition: opacity 260ms ease 80ms, transform 380ms cubic-bezier(0.2, 0.75, 0.25, 1) 80ms;
  z-index: 3;
}

.product-category-feature-label {
  display: block;
  margin-top: 12px;
  color: #111;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 800;
  line-height: 1.2;
  transition: color 200ms ease;
}

.product-category-feature:hover .product-category-feature-image,
.product-category-feature:focus-visible .product-category-feature-image {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(27, 73, 35, 0.22);
}

.product-category-feature:hover .product-category-feature-image img,
.product-category-feature:focus-visible .product-category-feature-image img {
  filter: brightness(0.58) saturate(1.05);
  transform: scale(1.045);
}

.product-category-feature:hover .product-category-leaf,
.product-category-feature:focus-visible .product-category-leaf {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.product-category-feature:hover .product-category-arrow,
.product-category-feature:focus-visible .product-category-arrow {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.product-category-feature:hover .product-category-feature-label,
.product-category-feature:focus-visible .product-category-feature-label,
.product-category-feature.is-active .product-category-feature-label {
  color: #18833b;
}

.product-category-feature.is-active .product-category-feature-image {
  outline: 4px solid rgba(80, 167, 47, 0.28);
  outline-offset: 3px;
}

.product-category-feature:focus-visible {
  outline: 3px solid rgba(49, 141, 58, 0.42);
  outline-offset: 6px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .product-category-showcase { gap: 16px; }
  .product-category-arrow { width: 48px; height: 48px; }
}

@media (max-width: 680px) {
  .product-category-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
  }

  .product-category-feature-image { aspect-ratio: 1.42 / 1; }
  .product-category-leaf strong { font-size: 1.25rem; }
}
/* Tighter footer columns for a more compact layout. */
.footer-grid { column-gap: 24px; }
@media (max-width: 1024px) {
  .footer-grid { column-gap: 18px; row-gap: 24px; }
}
@media (max-width: 768px) {
  .footer-grid { gap: 20px; }
}
/* Compact footer spacing requested for the link columns. */
.footer-grid { gap: 12px; }
@media (max-width: 1024px) { .footer-grid { gap: 12px; } }
@media (max-width: 768px) { .footer-grid { gap: 10px; } }
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 18px;
  }
  .footer-brand,
  .footer-grid > .footer-col:last-child {
    grid-column: 1 / -1;
  }
}
/* ===== GALLERY ===== */
.gallery-grid {
  display: block;
  columns: 3 280px;
  column-gap: 24px;
}

.gallery-item {
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f8f2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}


/* ===== HOME HERO ===== */
.home-hero {
  position: relative;
  width: 100%;
  height: 800px;
  display: flex;
  align-items: center;
  background-color: #f9faf5;
  background-image: url('../images/bg image adhi.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: -134px;
  padding-top: 134px;
}

/* Arrows — pinned to left/right edges of the section */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(119, 203, 161, 0.92);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.prev-arrow {
  left: 16px;
}

.next-arrow {
  right: 16px;
}

.hero-arrow:hover {
  background: #00a651;
  transform: translateY(-50%) scale(1.1);
}

/* Hero Slider container and slide visibility */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-slide {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  height: 100%;
  overflow: visible;
}

/* Inner two-column layout */
.hero-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 550px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 60px;
  gap: 20px;
}

/* LEFT: Text column */
.hero-text-col {
  flex: 0 0 45%;
  max-width: 500px;
  z-index: 2;
  text-align: left;
  margin-left: 40px;
}

.hero-text-col h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  font-style: italic;
  color: #00a651;
  line-height: 1.18;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-text-col p {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
}

.btn-know-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c3d937;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(195, 217, 55, 0.35);
}

.btn-know-more:hover {
  background: #acc12a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(195, 217, 55, 0.5);
  color: #fff;
}

/* RIGHT: Farmer image column */
.hero-image-col {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 500px;
}

.hero-farmer-img {
  position: relative;
  z-index: 1;
  max-height: 640px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.12));
}

.hero-banner22-img {
  width: 85% !important;
  max-height: none !important;
}

.hero-banner3-img {
  width: 75% !important;
  max-height: none !important;
}


/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .hero-inner {
    padding: 40px 60px;
  }
  .hero-blob {
    width: 320px;
    height: 320px;
  }
  .hero-farmer-img {
    max-height: 480px;
  }
}

@media (max-width: 992px) {
  .home-hero {
    height: auto;
    min-height: auto;
  }
  .hero-inner {
    flex-direction: column;
    text-align: left;
    padding: 40px 30px 0;
    gap: 30px;
    min-height: auto;
  }
  .hero-text-col {
    flex: none;
    max-width: 100%;
    margin-left: 0;
  }
  .hero-text-col h1 {
    font-size: 2rem;
  }
  .hero-image-col {
    min-height: auto;
  }
  .hero-blob {
    width: 280px;
    height: 280px;
  }
  .hero-farmer-img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .prev-arrow { left: 8px; }
  .next-arrow { right: 8px; }
  
  .hero-inner {
    padding: 30px 20px 0;
    gap: 20px;
  }
  .hero-text-col h1 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .hero-text-col p {
    font-size: 0.9rem;
    margin-bottom: 22px;
  }
  .hero-image-col {
    min-height: auto;
  }
  .hero-farmer-img {
    max-height: 440px;
  }
  .hero-banner22-img {
    width: 90% !important;
  }
  .hero-banner3-img {
    width: 85% !important;
  }
}

@media (max-width: 480px) {
  .hero-arrow {
    display: none;
  }
  .hero-inner {
    padding: 20px 15px 0;
    gap: 15px;
  }
  .hero-text-col h1 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.25;
  }
  .hero-text-col p {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }
  .btn-know-more {
    padding: 10px 24px;
    font-size: 0.85rem;
  }
  .hero-image-col {
    min-height: auto;
  }
  .hero-farmer-img {
    max-height: 380px;
  }
  .hero-banner22-img {
    width: 95% !important;
  }
  .hero-banner3-img {
    width: 90% !important;
  }
}


/* ===== HOME ABOUT ===== */
.home-about {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.home-about-container {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.home-about-image-col {
  flex: 0 0 42%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.home-about-image-col img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  display: block;
}

.home-about-text-col {
  flex: 0 0 58%;
  padding: 60px 80px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.home-about-text-col .section-tag {
  margin-bottom: 16px;
  color: var(--primary-green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-about-text-col h2 {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--black);
  margin-bottom: 24px;
}

.home-about-text-col p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 10px 0 30px;
  width: 100%;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.about-feature-item .feature-icon {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green-dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-read-more:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
}

/* DESIGN BANNER (Infographic) */
.home-design-banner {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

.home-design-banner img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .home-design-banner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Optional: add a subtle inner shadow or visual cue that it scrolls */
  }
  .home-design-banner img {
    width: 200%;
    max-width: 1000px;
  }
}

@media (max-width: 992px) {
  .home-about-container {
    flex-direction: column;
  }
  .home-about-image-col {
    flex: none;
    width: 100%;
    height: 350px;
    min-height: auto;
  }
  .home-about-text-col {
    flex: none;
    width: 100%;
    padding: 60px 20px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Special scaling and position for Slide 2 image */
.hero-image-col .hero-banner22-img {
  width: 130%;
  max-width: none;
  max-height: none;
  height: auto;
  transform: translate(7%, -70px);
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.18));
}

@media (max-width: 1100px) {
  .hero-image-col .hero-banner22-img {
    width: 130%;
    max-width: none;
    max-height: none;
    transform: translate(5%, -60px);
  }
}

@media (max-width: 992px) {
  .hero-image-col .hero-banner22-img {
    width: min(720px, 110vw);
    max-width: none;
    max-height: none;
    transform: translateY(0);
  }
}

/* Special scaling and position for Slide 3 image */
.hero-image-col .hero-banner3-img {
  max-height: 820px;
  transform: translateY(-15px);
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.18));
}

@media (max-width: 1100px) {
  .hero-image-col .hero-banner3-img {
    max-height: 660px;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .hero-image-col .hero-banner3-img {
    max-height: 480px;
    transform: translateY(0);
  }
}

/* ===== HOME DESIGN BANNER ===== */
.home-design-banner {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  line-height: 0;
  background: var(--white);
}

.home-design-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== NEW WHY CHOOSE US SECTION ===== */
.why-section-new {
  position: relative;
  width: 100%;
  background: var(--white);
  padding-bottom: 80px;
}

/* Background Banner (Tractor image) */
.why-banner-top {
  position: relative;
  width: 100%;
  height: 480px;
  background-image: url('../images/aerial_crop_field.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  z-index: 1;
}

.why-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 1;
}

.why-banner-top h2 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* White overlapping card container */
.why-content-container {
  position: relative;
  z-index: 3;
  margin-top: -240px;
  max-width: 1200px;
}

.why-inner-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 60px;
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* LEFT COLUMN */
.why-left-col {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-tag {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.why-left-col h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-left-col p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.why-left-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: auto;
}

.why-left-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.why-left-image:hover img {
  transform: scale(1.05);
}

/* RIGHT COLUMN: 4 GRID CARDS */
.why-right-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-content: center;
}

.why-grid-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card-icon-circle {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #f1f8f4;
  color: #2b7a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Inner thin circle border */
.why-card-icon-circle::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(43, 122, 62, 0.2);
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Leaf decoration on top-right of inner circle */
.why-card-icon-circle::after {
  content: '';
  position: absolute;
  top: 9px;
  right: 9px;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%232b7a3e' d='M512 64c0 113.6-84.6 207.5-194.2 222.4C302.2 314.7 271.8 336 240 336c-13.8 0-27.1-4.2-38.3-12L96 432v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32v-32c0-17.7 14.3-32 32-32h16L159.2 277.6c-7.8-11.2-12-24.5-12-38.3 0-31.8 21.3-62.2 49.6-77.8C211.7 52.6 305.6-32 419.2-32c17.7 0 32 14.3 32 32v64z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(45deg);
  transition: background-image 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-grid-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.35;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hovering turns cards green */
.why-grid-card:hover {
  transform: translateY(-5px);
  background: #2b7a3e;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 20px 45px rgba(43, 122, 62, 0.3);
}

.why-grid-card:hover h4 {
  color: var(--white);
}

.why-grid-card:hover .why-card-icon-circle {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.why-grid-card:hover .why-card-icon-circle::before {
  border-color: rgba(255, 255, 255, 0.35);
}

.why-grid-card:hover .why-card-icon-circle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M512 64c0 113.6-84.6 207.5-194.2 222.4C302.2 314.7 271.8 336 240 336c-13.8 0-27.1-4.2-38.3-12L96 432v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32v-32c0-17.7 14.3-32 32-32h16L159.2 277.6c-7.8-11.2-12-24.5-12-38.3 0-31.8 21.3-62.2 49.6-77.8C211.7 52.6 305.6-32 419.2-32c17.7 0 32 14.3 32 32v64z'/%3E%3C/svg%3E");
}

/* Active solid state holds green style */
.why-grid-card.active-card {
  background: #2b7a3e;
  color: var(--white);
  border: none;
  box-shadow: 0 15px 35px rgba(43, 122, 62, 0.25);
}

.why-grid-card.active-card h4 {
  color: var(--white);
}

.why-grid-card.active-card .why-card-icon-circle {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.why-grid-card.active-card .why-card-icon-circle::before {
  border-color: rgba(255, 255, 255, 0.35);
}

.why-grid-card.active-card .why-card-icon-circle::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M512 64c0 113.6-84.6 207.5-194.2 222.4C302.2 314.7 271.8 336 240 336c-13.8 0-27.1-4.2-38.3-12L96 432v48c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32v-32c0-17.7 14.3-32 32-32h16L159.2 277.6c-7.8-11.2-12-24.5-12-38.3 0-31.8 21.3-62.2 49.6-77.8C211.7 52.6 305.6-32 419.2-32c17.7 0 32 14.3 32 32v64z'/%3E%3C/svg%3E");
}

.why-grid-card.active-card:hover {
  box-shadow: 0 20px 45px rgba(43, 122, 62, 0.35);
}

@media (max-width: 992px) {
  .why-banner-top {
    height: 320px;
  }
  .why-content-container {
    margin-top: -140px;
  }
  .why-inner-card {
    flex-direction: column;
    padding: 40px 30px;
    gap: 40px;
  }
  .why-left-col {
    flex: none;
    width: 100%;
  }
  .why-right-grid {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .why-inner-card {
    padding: 30px 15px;
  }
  .why-right-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .why-grid-card {
    padding: 20px 12px;
    min-height: 180px;
  }
}

/* Inline SVG styles for why choose us cards */
.why-icon {
  width: 42px;
  height: 42px;
  display: block;
}

/* Advanced CSS filters to blend generated JPG icons and handle hover states */
.why-card-icon-circle img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: all 0.35s ease;
}

/* Hover/Active states - invert black/white and use screen blend mode to make white lines */
.why-grid-card:hover .why-card-icon-circle img,
.why-grid-card.active-card .why-card-icon-circle img {
  filter: invert(1) grayscale(1) brightness(2.5);
  mix-blend-mode: screen;
}

/* ===== REFERENCE-STYLE WHY FEATURE CARDS ===== */
.why-right-grid {
  gap: 24px;
}

.why-grid-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 32px 34px 28px;
  text-align: left;
  background-color: #f8f7f2;
  background-image: url('../images/why-card-farm-sketch.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(38, 122, 67, 0.04);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(42, 74, 50, 0.045);
}

.why-card-icon-circle {
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
  border: 1.5px solid #09a94f;
  background: rgba(255, 255, 255, 0.58);
  color: #09a94f;
}

.why-card-icon-circle::before,
.why-card-icon-circle::after {
  display: none;
}

.why-icon {
  width: 46px;
  height: 46px;
}

.why-grid-card h4 {
  max-width: 220px;
  margin-top: auto;
  color: #101310;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
}

.why-grid-card:hover,
.why-grid-card.active-card,
.why-grid-card.active-card:hover {
  transform: translateY(-5px);
  color: inherit;
  background-color: #f8f7f2;
  background-image: url('../images/why-card-farm-sketch.png');
  border-color: rgba(9, 169, 79, 0.18);
  box-shadow: 0 18px 38px rgba(34, 91, 52, 0.13);
}

.why-grid-card:hover h4,
.why-grid-card.active-card h4 {
  color: #101310;
}

.why-grid-card:hover .why-card-icon-circle,
.why-grid-card.active-card .why-card-icon-circle {
  color: #09a94f;
  background: rgba(255, 255, 255, 0.72);
  border-color: #09a94f;
}

@media (max-width: 576px) {
  .why-banner-top {
    height: 380px;
    padding-top: 50px;
  }

  .why-banner-top h2 {
    font-size: 2.2rem;
    padding: 0 15px;
  }

  .why-grid-card {
    min-height: 210px;
    padding: 28px 28px 24px;
  }

  .why-grid-card h4 {
    font-size: 1.15rem;
  }
}
.why-card-icon-circle img.why-generated-icon {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  transition: transform 0.3s ease;
}

.why-grid-card:hover .why-card-icon-circle img.why-generated-icon,
.why-grid-card.active-card .why-card-icon-circle img.why-generated-icon {
  mix-blend-mode: normal;
  filter: none;
  transform: scale(1.04);
}
/* ===== REFERENCE-STYLE HOME PRODUCTS SHOWCASE ===== */
.home-products-showcase {
  position: relative;
  overflow: hidden;
  padding: 88px 0 100px;
  background-color: #eef9c8;
  background-image: url('../images/bg image adhi.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.home-products-shell {
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
}

.home-products-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}

.home-products-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #08a950;
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.home-products-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.home-products-heading-row h2 {
  max-width: 790px;
  margin: 0;
  color: #070907;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.35rem, 3.4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.home-products-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  padding-bottom: 7px;
}

.home-products-arrow {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #00a94f;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 112, 50, 0.14);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.home-products-arrow:hover,
.home-products-arrow:focus-visible {
  background: #087a3c;
  transform: translateY(-2px);
}

.home-products-arrow:focus-visible {
  outline: 3px solid rgba(0, 169, 79, 0.25);
  outline-offset: 3px;
}

.home-products-viewport {
  overflow: hidden;
}

.home-products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  transition: transform 0.48s cubic-bezier(0.22, 0.7, 0.25, 1);
  will-change: transform;
}

.home-product-card {
  position: relative;
  min-width: 0;
  height: 500px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 9px 26px rgba(40, 81, 45, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-product-card:hover,
.home-product-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(40, 81, 45, 0.14);
}

.home-product-image {
  position: relative;
  display: flex;
  height: 300px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e9f5f0;
}

.home-product-image::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 30px;
  background:
    linear-gradient(72deg, transparent 49%, #fff 51%) 0 100% / 11px 25px repeat-x,
    linear-gradient(108deg, transparent 49%, #fff 51%) 5px 100% / 13px 22px repeat-x;
  pointer-events: none;
}

.home-product-image img {
  width: 78%;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 14px 11px rgba(30, 47, 37, 0.2));
  transition: transform 0.4s ease;
}

.home-product-card:hover .home-product-image img,
.home-product-card:focus-within .home-product-image img {
  transform: scale(1.045);
}

.home-product-content {
  height: 200px;
  padding: 17px 15px 56px;
  background: #fff;
}

.home-product-content h3 {
  overflow: hidden;
  margin: 0 0 12px;
  color: #181918;
  font-family: 'Outfit', sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-product-content h3 a {
  color: inherit;
  text-decoration: none;
}

.home-product-content p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #60656a;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.home-product-read-more {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #b8dc21;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s ease, background-color 0.25s ease;
}

.home-product-card.is-active .home-product-read-more,
.home-product-card:hover .home-product-read-more,
.home-product-card:focus-within .home-product-read-more {
  transform: translateY(0);
}

.home-product-read-more:hover {
  background: #9fc516;
  color: #fff;
}

@media (max-width: 1050px) {
  .home-products-track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }
}

@media (max-width: 780px) {
  .home-products-showcase {
    padding: 70px 0 78px;
  }

  .home-products-heading-row {
    align-items: center;
    margin-bottom: 34px;
  }

  .home-products-heading-row h2 br {
    display: none;
  }

  .home-products-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
}

@media (max-width: 560px) {
  .home-products-shell {
    width: min(100% - 28px, 420px);
  }

  .home-products-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .home-products-heading-row h2 {
    font-size: 2rem;
  }

  .home-products-controls {
    gap: 7px;
  }

  .home-products-arrow {
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
  }

  .home-products-track {
    grid-auto-columns: 100%;
  }

  .home-product-card {
    height: 490px;
  }

  .home-product-read-more {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-products-track,
  .home-product-card,
  .home-product-image img,
  .home-product-read-more {
    transition: none;
  }
}
/* ===== REFERENCE-STYLE CUSTOMER FEEDBACK ===== */
.customer-feedback-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0 115px;
  background-color: #fff9a9;
  background-image: url('../images/customer-feedback-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.customer-feedback-shell {
  display: grid;
  width: min(1220px, calc(100% - 44px));
  margin: 0 auto;
  grid-template-columns: 355px minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.customer-feedback-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #00a94f;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.customer-feedback-eyebrow img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.customer-feedback-intro h2 {
  margin: 0 0 24px;
  color: #050705;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 3.8vw, 3.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.customer-feedback-intro > p {
  margin: 0 0 34px;
  color: #575b4b;
  font-size: 1rem;
  line-height: 1.55;
}

.customer-feedback-controls {
  display: flex;
  gap: 9px;
}

.customer-feedback-controls button {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #00a94f;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 112, 50, 0.13);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.customer-feedback-controls button:hover,
.customer-feedback-controls button:focus-visible {
  background: #087a3c;
  transform: translateY(-2px);
}

.customer-feedback-controls button:focus-visible {
  outline: 3px solid rgba(0, 169, 79, 0.25);
  outline-offset: 3px;
}

.customer-feedback-viewport {
  overflow: hidden;
  padding: 8px 2px;
}

.customer-feedback-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  transition: transform 0.48s cubic-bezier(0.22, 0.7, 0.25, 1);
  will-change: transform;
}

.customer-feedback-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 480px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 43px 48px 58px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(84, 97, 50, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customer-feedback-card:hover,
.customer-feedback-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 19px 36px rgba(84, 97, 50, 0.14);
}

.customer-feedback-card::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54px;
  opacity: 0.72;
  background:
    linear-gradient(77deg, transparent 48%, #f4f4ee 51%) 0 100% / 12px 43px repeat-x,
    linear-gradient(103deg, transparent 48%, #f4f4ee 51%) 6px 100% / 13px 36px repeat-x;
  pointer-events: none;
}

.customer-feedback-quote {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: #5f646b;
  font-size: 1.16rem;
  line-height: 1.74;
  text-align: justify;
}

.customer-feedback-author {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 18px;
}

.customer-quote-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #00a94f;
  color: #fff;
  font-size: 1.1rem;
}

.customer-feedback-author h3 {
  margin: 0 0 7px;
  color: #171917;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.customer-feedback-author p {
  margin: 0;
  color: #00a94f;
  font-size: 1.08rem;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .customer-feedback-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }

  .customer-feedback-card {
    min-height: 465px;
    padding: 36px 34px 55px;
  }

  .customer-feedback-quote {
    font-size: 1.05rem;
  }
}

@media (max-width: 850px) {
  .customer-feedback-section {
    padding: 76px 0 84px;
  }

  .customer-feedback-shell {
    display: block;
  }

  .customer-feedback-intro {
    display: grid;
    margin-bottom: 38px;
    grid-template-columns: 1fr auto;
    column-gap: 24px;
  }

  .customer-feedback-eyebrow,
  .customer-feedback-intro h2,
  .customer-feedback-intro > p {
    grid-column: 1;
  }

  .customer-feedback-intro h2 br {
    display: none;
  }

  .customer-feedback-controls {
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: end;
    padding-bottom: 4px;
  }
}

@media (max-width: 620px) {
  .customer-feedback-shell {
    width: min(100% - 28px, 430px);
  }

  .customer-feedback-intro {
    display: block;
  }

  .customer-feedback-intro h2 {
    font-size: 2.35rem;
  }

  .customer-feedback-controls button {
    width: 46px;
    height: 46px;
  }

  .customer-feedback-track {
    grid-auto-columns: 100%;
  }

  .customer-feedback-card {
    min-height: 455px;
    padding: 34px 30px 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-feedback-track,
  .customer-feedback-card {
    transition: none;
  }
}
/* ===== REFERENCE-STYLE TRUSTED FARMERS ===== */
.trusted-farmers-section {
  position: relative;
  overflow: hidden;
  padding: 42px 0 74px;
  background-color: #fbfaf2;
  background-image: url('../images/trusted-farmers-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.trusted-farmers-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
}

.trusted-farmers-heading {
  margin: 0 auto 24px;
  text-align: center;
}

.trusted-farmers-heading > i {
  margin-bottom: 5px;
  color: #5c9532;
  font-size: 2rem;
}

.trusted-farmers-heading h2 {
  margin: 0 0 5px;
  color: #06492c;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 4.6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

.trusted-farmers-heading p {
  margin: 0;
  color: #666b70;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.32;
}

.trusted-farmers-grid {
  display: grid;
  grid-template-columns: minmax(285px, 1fr) minmax(440px, 1.48fr) minmax(285px, 1fr);
  align-items: start;
  gap: 18px;
}

.trusted-cards-carousel,
.trusted-cards-track {
  display: contents;
}

.trusted-cards-controls {
  display: none;
}

.trusted-customer-left {
  grid-column: 1;
  grid-row: 1;
}

.trusted-customer-right {
  grid-column: 3;
  grid-row: 1;
}

.trusted-customer-column {
  display: grid;
  grid-template-rows: repeat(3, 200px);
  gap: 12px;
}

.trusted-customer-card {
  display: grid;
  min-width: 0;
  height: 200px;
  min-height: 0;
  overflow: hidden;
  grid-template-columns: var(--photo-column, 160px) minmax(0, 1fr);
  border: 1px solid rgba(54, 91, 41, 0.08);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(44, 73, 35, 0.11);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trusted-customer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(44, 73, 35, 0.16);
}

.trusted-customer-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #dfe7d7;
}

.trusted-customer-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 0.35s ease;
}

.trusted-customer-card:hover .trusted-customer-photo img {
  transform: scale(1.035);
}

.trusted-customer-photo > span {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  max-width: calc(100% - 16px);
  min-height: 28px;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 247, 0.94);
  color: #126026;
  font-family: 'Outfit', sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.trusted-customer-photo > span i {
  font-size: 0.9rem;
}

.trusted-customer-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 17px 16px 12px;
}

.trusted-customer-copy > i {
  margin-bottom: 12px;
  color: #74a438;
  font-size: 1.3rem;
}

.trusted-customer-copy strong {
  color: #171b17;
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.35;
}

.trusted-card-rule {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: auto;
  color: #94b45f;
  font-size: 0.62rem;
}

.trusted-card-rule::before,
.trusted-card-rule::after {
  content: '';
  height: 1px;
  flex: 1;
  background: #dce5cc;
}

.trusted-card-dots {
  margin-top: 4px;
  color: #66a23a;
  font-size: 0.72rem;
  letter-spacing: 1px;
}

.trusted-product-poster {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: 624px;
  min-height: 0;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  background-color: #e3f2d3;
  background-image: url('../images/bahubali-poster-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0 8px 24px rgba(31, 70, 43, 0.18);
}

.trusted-poster-title {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.trusted-poster-title > div:last-child {
  text-align: right;
}

.trusted-poster-title h3 {
  margin: 0;
  color: #ffe229;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 2px 2px 0 #6d2205, 0 3px 7px rgba(0, 0, 0, 0.35);
}

.trusted-poster-title p {
  margin: 7px 0 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: #c32420;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trusted-poster-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.trusted-poster-brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
}

.trusted-poster-brand div {
  display: flex;
  flex-direction: column;
}

.trusted-poster-brand strong {
  color: #ffdc26;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  max-width: 250px;
  text-transform: uppercase;
}

.trusted-poster-brand span {
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trusted-poster-product {
  position: absolute;
  z-index: 4;
  top: 110px;
  left: 4%;
  width: 47%;
  height: auto;
  max-height: 65%;
  object-fit: contain;
  filter: drop-shadow(0 17px 14px rgba(0, 0, 0, 0.28));
}

.trusted-poster-nutrients,
.trusted-poster-benefits {
  position: absolute;
  z-index: 3;
  right: 5%;
  display: flex;
  width: 44%;
  flex-direction: column;
  padding: 10px 13px;
  border: 1px solid #16743d;
  border-radius: 9px;
  background: #fdfdf9;
  color: #1f2e22;
  font-size: 0.68rem;
  line-height: 1.38;
  box-shadow: 0 4px 12px rgba(25, 56, 31, 0.12);
}

.trusted-poster-nutrients {
  top: 145px;
}

.trusted-poster-benefits {
  top: 275px;
}

.trusted-poster-nutrients > strong,
.trusted-poster-benefits > strong {
  margin: -10px -13px 7px;
  padding: 5px 12px;
  border-radius: 8px 8px 0 0;
  background: #16743d;
  color: #fff;
  font-size: 0.67rem;
  text-transform: uppercase;
}

.trusted-poster-nutrients span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px dotted #a0a892;
  margin-bottom: 4px;
  padding-bottom: 2px;
}

.trusted-poster-nutrients span:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.trusted-poster-benefits span {
  display: flex;
  margin-bottom: 3px;
}

.trusted-poster-benefits span::before {
  content: '•';
  margin-right: 5px;
  color: #c41d22;
  font-weight: 900;
}

.trusted-poster-suitable {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  background: #0d6b33;
  color: #fff;
  padding: 7px 22px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.trusted-poster-footer {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: -4px;
  left: 18px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 0.61rem;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.trusted-poster-footer strong {
  font-size: 0.73rem;
}

.trusted-farmers-stats {
  display: grid;
  min-height: 94px;
  margin-top: 20px;
  padding: 12px 16px;
  grid-template-columns: repeat(4, minmax(135px, 1fr)) minmax(205px, 1.35fr) minmax(170px, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(88, 116, 57, 0.16);
  border-radius: 16px;
  background: rgba(252, 253, 242, 0.94);
  box-shadow: 0 7px 20px rgba(50, 73, 31, 0.1);
}

.trusted-stat {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  border-right: 1px dashed #c8d2b5;
}

.trusted-stat > span {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  place-items: center;
  border: 1px solid #d3dfbd;
  border-radius: 50%;
  color: #2c842f;
  font-size: 1.35rem;
}

.trusted-stat div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.trusted-stat strong {
  color: #125a2b;
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.05;
}

.trusted-stat small {
  margin-top: 5px;
  color: #303530;
  font-size: 0.76rem;
  line-height: 1.25;
}

.trusted-view-product,
.trusted-contact {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.trusted-view-product {
  background: linear-gradient(180deg, #3d9c23, #247914);
  color: #fff;
  box-shadow: 0 8px 17px rgba(29, 111, 25, 0.2);
}

.trusted-contact {
  border: 1.5px solid #398847;
  background: rgba(255, 255, 255, 0.62);
  color: #176030;
}

.trusted-view-product:hover,
.trusted-contact:hover {
  transform: translateY(-2px);
}

.trusted-view-product:hover {
  background: #1f6d17;
  color: #fff;
}

.trusted-contact:hover {
  background: #edf6e6;
  color: #176030;
}

@media (max-width: 1160px) {
  .trusted-farmers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trusted-product-poster {
    width: min(650px, 100%);
    height: 624px;
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .trusted-customer-left {
    grid-column: 1;
    grid-row: 2;
  }

  .trusted-customer-right {
    grid-column: 2;
    grid-row: 2;
  }

  .trusted-farmers-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .trusted-view-product,
  .trusted-contact {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .trusted-farmers-section {
    padding: 48px 0 64px;
  }

  .trusted-farmers-shell {
    width: min(100% - 24px, 520px);
  }

  .trusted-farmers-heading h2 {
    font-size: 2.55rem;
  }

  .trusted-farmers-heading p br {
    display: none;
  }

  .trusted-farmers-grid {
    grid-template-columns: 1fr;
  }

  .trusted-product-poster {
    grid-column: 1;
    height: 590px;
    grid-row: 1;
  }

  .trusted-cards-carousel {
    display: block;
    grid-column: 1;
    grid-row: 2;
    position: relative;
    width: 100%;
    margin-top: 15px;
  }

  .trusted-cards-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .trusted-cards-track::-webkit-scrollbar {
    display: none;
  }

  .trusted-customer-column {
    display: contents;
  }

  .trusted-customer-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 188px;
  }

  .trusted-cards-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
    margin-bottom: 20px;
  }

  .trusted-cards-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e3f2d3;
    color: #1a5b2e;
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

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

  .trusted-stat {
    border-right: 0;
  }

  .trusted-view-product,
  .trusted-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 440px) {
  .trusted-customer-card {
    grid-template-columns: min(44%, var(--photo-column, 160px)) minmax(0, 1fr);
  }

  .trusted-customer-photo > span {
    padding: 5px 7px;
    font-size: 0.68rem;
  }

  .trusted-product-poster {
    height: 545px;
  }

  .trusted-poster-title h3 {
    font-size: 1.85rem;
  }

  .trusted-poster-brand span,
  .trusted-poster-title p {
    display: none;
  }

  .trusted-poster-product {
    top: 110px;
    width: 38%;
  }

  .trusted-poster-nutrients,
  .trusted-poster-benefits {
    right: 3%;
    width: 54%;
    font-size: 0.58rem;
  }

  .trusted-poster-benefits {
    top: 270px;
  }

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

  .trusted-view-product,
  .trusted-contact {
    grid-column: 1 / -1;
  }
}
/* ===== CUSTOMER PHOTO FOCAL FIT ===== */
.trusted-customer-photo {
  isolation: isolate;
}

.trusted-customer-photo::before,
.trusted-customer-photo::after {
  content: '';
  position: absolute;
  inset: -9px;
  pointer-events: none;
}

.trusted-customer-photo::before {
  z-index: 0;
  background-image: var(--customer-photo);
  background-repeat: no-repeat;
  background-position: center var(--photo-origin, 50%);
  background-size: cover;
  filter: blur(8px) saturate(0.82);
  transform: scale(1.08);
}

.trusted-customer-photo::after {
  z-index: 1;
  background: rgba(226, 235, 219, 0.2);
}

.trusted-customer-photo img {
  position: relative;
  z-index: 2;
  object-fit: contain;
  object-position: center center;
  transform: scale(var(--photo-scale, 1));
  transform-origin: center var(--photo-origin, 50%);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.18));
}

.trusted-customer-card:hover .trusted-customer-photo img {
  transform: scale(var(--photo-scale, 1));
  filter: brightness(1.035) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.18));
}

.trusted-customer-photo > span {
  z-index: 4;
}
/* ===== POSTER CONTENT ALIGNMENT FIX ===== */
.trusted-product-poster::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 138px;
  right: 3.5%;
  width: 47%;
  height: 314px;
  border: 1px solid rgba(32, 103, 52, 0.24);
  border-radius: 16px;
  background: #fffef0;
  box-shadow: 0 7px 18px rgba(31, 71, 38, 0.12);
  pointer-events: none;
}

.trusted-poster-nutrients,
.trusted-poster-benefits {
  right: 5%;
  width: 44%;
  padding: 11px 13px;
  border-color: rgba(25, 88, 43, 0.5);
  background: rgba(255, 254, 241, 0.97);
  font-size: 0.7rem;
  line-height: 1.34;
}

.trusted-poster-nutrients {
  top: 151px;
}

.trusted-poster-benefits {
  top: 278px;
}

.trusted-poster-benefits span {
  display: flex;
  align-items: flex-start;
}

.trusted-poster-benefits span::before {
  content: '\2022';
  flex: 0 0 auto;
  margin-right: 6px;
}

.trusted-poster-suitable {
  position: absolute;
  z-index: 4;
  bottom: 121px;
  left: 50%;
  padding: 5px 18px;
  border-radius: 14px;
  background: #16743d;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(23, 78, 37, 0.2);
  white-space: nowrap;
}

.trusted-poster-footer {
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 70px;
  justify-content: center;
  padding: 8px 16px 7px;
  border-top: 2px solid #e6c33b;
  background: linear-gradient(90deg, rgba(135, 16, 9, 0.92), rgba(177, 25, 13, 0.88));
  font-size: 0.6rem;
  line-height: 1.32;
}

.trusted-poster-footer strong {
  margin-bottom: 2px;
  font-size: 0.74rem;
}

.trusted-poster-footer span {
  display: block;
}

@media (max-width: 720px) {
  .trusted-product-poster::after {
    top: 132px;
    right: 3%;
    width: 49%;
    height: 320px;
  }

  .trusted-poster-nutrients,
  .trusted-poster-benefits {
    right: 4%;
    width: 47%;
  }

  .trusted-poster-benefits {
    top: 276px;
  }
}

@media (max-width: 440px) {
  .trusted-product-poster::after {
    top: 126px;
    height: 300px;
  }

  .trusted-poster-nutrients {
    top: 140px;
  }

  .trusted-poster-benefits {
    top: 268px;
  }

  .trusted-poster-suitable {
    bottom: 108px;
    padding-inline: 12px;
    font-size: 0.56rem;
  }

  .trusted-poster-footer {
    min-height: 65px;
    padding-inline: 10px;
    font-size: 0.5rem;
  }

  .trusted-poster-footer strong {
    font-size: 0.58rem;
  }
}
/* ===== HOME TITLE TYPOGRAPHY SYSTEM ===== */
.home-style-title {
  color: #202322;
  font-family: 'Outfit', sans-serif;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-transform: none;
}

.home-style-title .home-title-green {
  color: #318d3a;
}

.why-banner-top .home-style-title {
  padding: 10px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  box-shadow: none;
}

.why-left-col .home-style-title {
  color: #202322;
}

@media (max-width: 576px) {
  .why-banner-top .home-style-title {
    padding: 8px 16px;
  }
}

/* ===== FAQ SECTION ===== */
.home-faq-section {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}
.home-faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.home-faq-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #E8F5E9;
  color: var(--primary-green-dark);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.home-faq-section .section-tag i {
  color: var(--primary-green-dark);
  font-size: 0.9rem;
}
.home-faq-section .home-style-title {
  margin-bottom: 40px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--primary-green-dark);
}
.faq-icon {
  color: var(--primary-green);
  transition: transform 0.3s ease;
  font-size: 1rem;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  background-color: var(--white);
}
.faq-answer p {
  padding: 0 24px 24px 24px;
  margin: 0;
  color: var(--dark-gray);
  line-height: 1.6;
  font-family: var(--font-secondary);
}