﻿/* ===========deleted the file ====== */
/* ============================================================
   INDOIN THEME - Agricultural Solutions E-commerce
   Color Palette:
   - Primary Green: #4CAF50
   - Dark Green: #2E7D32
   - Light Green: #E8F5E9
   - Accent Green: #81C784
   - Dark: #1a1a1a
   - Text: #333333
   - Muted: #666666
   - Border: #e0e0e0
   - Background: #f9f9f9
   ============================================================ */

/* === LOCAL FONTS === */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #4caf50;
  --color-primary-dark: #2e7d32;
  --color-primary-light: #e8f5e9;
  --color-primary-lighter: #f0f7e6;
  --color-accent: #81c784;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-muted: #666666;
  --color-border: #e0e0e0;
  --color-bg: #f9f9f9;
  --color-white: #ffffff;
  --color-danger: #c62828;
  --color-whatsapp: #25d366;
  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Poppins", "Inter", sans-serif;
  --container-max: 1200px;
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark);
}

ul {
  list-style: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.custom-container {
  margin-left: 60px;
  margin-right: 60px;
}

.text-center {
  text-align: center;
}
.mt-20 {
  margin-top: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-47 {
  margin-top: 47px;
}
.mt-35 {
  margin-top: 35px;
}
.mt-65 {
  margin-top: 65px;
}
.m-0 {
  margin: 0;
}

.header-logo {
  max-width: 160px;
}

.section {
  padding: 30px 0;
}
.section-header {
  margin-bottom: 40px;
}
.section-brands .section-header {
  margin-bottom: 0px;
}

.section-title {
  margin-bottom: 12px;
  text-align: center;
  color: #005737;
  font-family: Inter;
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
}

.custom-container.pests-container {
  box-shadow: 0px 10px 15px -3px #0000001a;
  padding: 40px;
}
.custom-container.application-container {
  color: var(--color-white);
  background: linear-gradient(180deg, #92c83e 0%, #005737 100%);
  padding: 60px 40px;
  border-radius: 5px;
}
.section-title-sm {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 620px;
  margin: 0 auto;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0px;
  text-align: center;
  color: #4a5565;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}

.btn-primary {
  background: #005737;
  color: var(--color-white);
  border-color: #005737;
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}
.btn-dark {
  background: #005737;
  color: var(--color-white);
  border-color: var(--color-dark);
  border: 0;
  border-radius: 3px;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
}
.btn-dark:hover {
  background: #333;
  border-color: #333;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: #005737;
  border-color: #005737;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}
.btn-outline:hover {
  background: #005737;
  color: var(--color-white);
}

.btn-outline-dark {
  background: #005737;
  color: #fff;
  border-color: #005737;
  border-radius: 3px;
  padding: 14px 28px;
  min-width: 226px;
  justify-content: center;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  box-shadow: 0px 4px 6px -1px #0000001a;
}
.btn-outline-dark:hover {
  background: #143d25;
  color: #fff;
  border-color: #143d25;
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}
.btn-outline-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-whatsapp-cta {
  background: var(--color-white);
  color: #005737;
  border-color: var(--color-white);
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 500;
}
.btn-whatsapp-cta:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #005737;
}

.btn-whatsapp-cta svg {
  color: #005737;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  /* background: #000; */
  box-shadow: none;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.logo-ind {
  color: var(--color-primary-dark);
}
.logo-o {
  color: #ffb300;
}
.logo-in {
  color: var(--color-primary-dark);
}

.logo-tagline {
  font-size: 8px;
  font-weight: 600;
  color: var(--color-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav {
  flex: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-family: "Inter";
}

.nav-menu .menu-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  /* color: #fff; */
  color: #000000;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: left;
}

.nav-menu .menu-item > a:hover,
.nav-menu .menu-item.current-menu-item > a {
  color: var(--color-dark);
  background: rgba(0, 0, 0, 0.09);
}

.nav-menu .menu-item-has-children {
  position: relative;
}

/* Hide hardcoded SVG spans Ã¢â‚¬â€ chevron is handled by ::after */
.nav-menu .menu-item-has-children > a span {
  display: none;
}

/* Chevron for all parent menu items */
.nav-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 5px;
  margin-left: 5px;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.583374 0.583332L4.08337 4.08333L7.58337 0.583332' stroke='%23333' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    visibility 0s linear 0.2s,
    transform 0.2s ease;
  z-index: 100;
}

/* top-level: hover opens dropdown */
.nav-menu > .menu-item-has-children:hover > .sub-menu,
.nav-menu > .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    visibility 0s linear 0s,
    transform 0.2s ease;
}

/* 3rd-level submenu — expands inline inside the dropdown, toggled by JS click */
.nav-menu .sub-menu .sub-menu {
  position: static;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 12px;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
  display: none;
}
.nav-menu .sub-menu .menu-item-has-children.is-open > .sub-menu {
  display: block;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
}

.nav-menu .sub-menu a:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.nav-menu .menu-item-disabled > a {
  opacity: 0.45;
  cursor: default;
}
.nav-menu .menu-item-disabled > a:hover {
  background: transparent;
  color: inherit;
}

.nav-menu .sub-menu .submenu-label {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text);
  cursor: default;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-action-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
}
.header-action-link:hover {
  color: var(--color-dark);
  background: rgba(0, 0, 0, 0.09);
}

.country-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  background: transparent;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.country-selector:hover {
  background: rgba(0, 0, 0, 0.09);
  color: var(--color-dark);
}

.country-selector .flag-emoji {
  font-size: 16px;
  line-height: 1;
}

.country-selector svg {
  transition: transform var(--transition);
}

.country-selector.open svg:last-of-type {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 200;
}

.country-selector.open .country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.country-dropdown li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition);
}

.country-dropdown li:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.country-dropdown li.selected {
  font-weight: 600;
  color: var(--color-primary-dark);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-dark);
}

/* Side drawer overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Side drawer panel */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  background: #fff;
  padding: 24px 20px;
  overflow-y: auto;
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
  transform: translateX(0);
}

/* Close button inside drawer */
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.mobile-nav-close button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--color-dark);
  line-height: 1;
  top: 48px;
  position: relative;
}

/* Logo inside drawer */
.mobile-nav-logo {
  display: block;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-logo img {
  width: 120px;
  height: auto;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav-menu .menu-item {
  width: 100%;
}

/* Parent items with submenus — row layout for label + chevron */
.mobile-nav-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  color: var(--color-text);
  text-decoration: none;
  cursor: default;
}

.mobile-nav-menu .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='5' viewBox='0 0 9 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.583374 0.583332L4.08337 4.08333L7.58337 0.583332' stroke='%23333' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  padding-right: 28px;
}

.mobile-nav-menu .menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}

.mobile-nav-menu .menu-item a {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  color: var(--color-text);
  text-decoration: none;
  text-align: left;
}

.mobile-nav-menu .menu-item a:hover {
  color: var(--color-primary-dark);
}

.mobile-nav-menu .sub-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  padding: 0 0 0 16px;
  margin: 0;
  width: 100%;
}

.mobile-nav-menu .menu-item-has-children.open > .sub-menu {
  display: flex;
}

.mobile-nav-menu .sub-menu .menu-item a {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 0;
  color: var(--color-muted);
  border-bottom: none;
}

/* Disabled sub-items in mobile nav */
.mobile-nav-menu .menu-item-disabled > a {
  opacity: 0.45;
  cursor: default;
}
.mobile-nav-menu .menu-item-disabled > a:hover {
  color: var(--color-muted);
}

.mobile-nav-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-country-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
}

.mobile-country-selector svg {
  transition: transform var(--transition);
}

.mobile-country-selector.open svg:last-of-type {
  transform: rotate(180deg);
}

.mobile-country-dropdown {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 200;
}

.mobile-country-selector.open .mobile-country-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-country-dropdown li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: background var(--transition);
}

.mobile-country-dropdown li:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.mobile-country-dropdown li.selected {
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: calc(100vh - var(--header-height));
}

.hero-slides-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s ease;
}

.hero-slide {
  min-width: 100%;
  position: relative;
  height: 100%;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.62) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
}

.hero-slide-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 2;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 60px;
  font-family: "Inter";
}
.hero-slide-right {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide-right img,
.hero-slide-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-subtitle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  margin-bottom: 32px;
  font-family: Inter;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  letter-spacing: 0px;
  color: #ffffff;
}
.hero-title span {
  display: block;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  color: #000;
  background: #a1d55d;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  align-self: flex-start;
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
}
.btn-hero:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* === FLAGSHIP BRANDS === */
.section-brands {
  background: #f0f7ec;
  padding-top: 60px;
}
.brands-carousel {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-track {
  display: flex;
  gap: 5px;
  transition: transform 2s ease;
  padding: 10px 0;
}

.brand-card {
  flex: 0 0 calc((100% - 30px) / 7);
  text-align: center;
  overflow: visible;
  padding-top: 80px;
  transition: transform 0.3s ease;
}

.brand-card:hover {
  transform: scale(1.06);
}

.brand-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 0 16px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform var(--transition);
  min-height: 220px;
  justify-content: flex-end;
}

.brand-card a:hover {
  transform: none;
  box-shadow: none;
}

/* Teardrop shape: sharp top-left, fully rounded on all other corners */
.brand-card a::before {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  aspect-ratio: 1;
  border-radius: 0 50% 50% 50%;
  background: linear-gradient(180deg, #9ccc65 0%, #2e7d32 100%);
  z-index: 0;
}

/* Per-brand circle gradients */
.brand-card[data-brand="fastdone"] a::before {
  background: linear-gradient(180deg, #ffed5d 0%, #827200 100%);
}
.brand-card[data-brand="indoboom"] a::before {
  background: linear-gradient(180deg, #afc100 0%, #006735 100%);
}
.brand-card[data-brand="ferterra"] a::before {
  background: linear-gradient(180deg, #b39a70 0%, #6a4411 100%);
}
.brand-card[data-brand="goldmine"] a::before {
  background: linear-gradient(180deg, #f3e48f 0%, #9f702a 100%);
}
.brand-card[data-brand="emperor"] a::before {
  background: linear-gradient(180deg, #9ac44a 0%, #52a055 100%);
}
.brand-card[data-brand="indoone"] a::before {
  background: linear-gradient(180deg, #e6d86e 0%, #622a24 100%);
}
.brand-card[data-brand="senate"] a::before {
  background: linear-gradient(180deg, #e3b14f 0%, #8b4520 100%);
}
.brand-card[data-brand="magicon"] a::before {
  background: linear-gradient(180deg, #c9689c 0%, #6a043a 100%);
}
.brand-card[data-brand="lamtador"] a::before {
  background: linear-gradient(180deg, #ebb436 0%, #775200 100%);
}

.brand-card-img-wrap {
  position: absolute;
  z-index: 1;
  width: 75%;
  left: 50%;
  transform: translateX(-50%);
  top: -34px;
  bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  height: 174px;
  margin-top: 0;
  flex-direction: column;
}

.brand-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.brand-bottle {
  display: none;
}

.brand-card-logo {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: auto;
  object-fit: contain;
}

.brand-label {
  position: relative;
  z-index: 1;
  margin-top: 135px;
  text-transform: uppercase;
  color: #000000;
  font-family: Inter;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 55px);
  line-height: 1.25;
  letter-spacing: 0px;
  text-align: center;
  width: 100%;
  padding: 57px 6px 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  top: 26px;
  font-size: 20px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.section-brands .carousel-btn {
  display: none;
}

.section-brands .carousel-controls {
  justify-content: center;
  gap: 0;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  transition: all var(--transition);
  background: #d1d5dc;
}
button.carousel-btn.carousel-next {
  /* position: relative; */
  z-index: 9;
}
.carousel-btn:hover {
  border-color: var(--color-primary);
  color: #f9f9f9;
  background: var(--color-primary-light);
  background: #005737;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots:empty {
  display: none;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dots .dot.active {
  background: #005737;
  width: 32px;
  border-radius: 4px;
  height: 8px;
}

/* === PRODUCT CATEGORIES === */
.section-categories {
  background: #ffffff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.category-card {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 324px;
  text-decoration: none;
}
.category-info span {
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff;
}
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: opacity 0.3s ease;
  box-shadow: 0px 4px 6px -1px #0000001a;
}

.category-card:hover::after {
  opacity: 0.85;
}

.category-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.category-card:hover .category-image img {
  transform: scale(1.06);
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.category-info svg {
  color: #fff;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* === WELCOME SECTION === */
.section-welcome {
  background: #f7f2f2;
  padding-top: 89px;
  padding-bottom: 50px;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 0;
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .welcome-grid{
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 1199px) and (min-width: 1000px) {
  .welcome-grid{
    grid-template-columns: 1.2fr 1fr;
  }
}

.welcome-heading {
  color: #000000;
  margin-bottom: 20px;
  font-family: Inter;
  font-weight: 700;
  font-size: 41px;
  line-height: 48px;
  letter-spacing: 0px;
  max-width: 74%;
}

.welcome-content p {
  margin-bottom: 28px;
  color: #1e2939;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  letter-spacing: 0px;
}
/* Accordion */
.divisions-accordion {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.divisions-accordion h3 {
  margin-bottom: 16px;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #000000;
}
.accordion-item {
  margin-bottom: 8px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  color: #364153;
}

.accordion-item.active .accordion-header {
  color: #fff;
  border-color: #005737;
  border-radius: 16px 16px 0 0;
  background: #005737;
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
}

.accordion-item.active .accordion-header svg {
  color: #fff;
  transform: rotate(180deg);
}

.accordion-item:not(.active) .accordion-header:hover {
  background: #f5f5f5;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--color-white);
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.accordion-item.active .accordion-body {
  max-height: 400px;
}

.accordion-body p {
  color: #364153;
  padding: 16px 18px;
  margin: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.75px;
  letter-spacing: 0px;
  background: #f9fafb;
}

.welcome-image {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 100px;
  align-self: start;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  max-height: 699px;
  border-radius: 15px;
  object-fit: fill;
  display: block;
  box-shadow: 0px 25px 50px -12px #00000040;
  transition: opacity 0.2s ease;
}

@media (max-width: 1300px) and (min-width: 1000px) {
  .welcome-image img{
    height: auto;
  }
}

/* === CEO & ACHIEVEMENTS === */
.section-ceo-achievements {
  background: #fdf6ee;
}

.ceo-achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: #ffffff;
}

.ceo-achievements-heading {
  color: #000000;
  margin-bottom: 33px;
  font-family: Inter;
  font-weight: 700;
  font-size: 41px;
  line-height: 40px;
  letter-spacing: 0px;
}

.ceo-section {
  background: transparent;
  padding: 100px 0px 100px 57px;
  min-width: 0;
}

.ceo-quote p {
  color: #1e2939;
  margin-bottom: 28px;
  font-style: normal;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  letter-spacing: 0px;
}

.ceo-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ceo-quote footer strong {
  color: #000000;
  font-family: Inter;
  font-weight: 600;
  font-style: Italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
.ceo-quote footer span {
  color: #364153;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.achievements-section {
  background: #fff;
  padding: 100px 46px 0;
  min-width: 0;
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievements-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.achievement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #0057371a;
  border-radius: 10px;
}

.achievement-icon svg {
  color: #005737;
  width: 22px;
  height: 22px;
}

.achievement-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.achievement-text strong {
  color: #101828;
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}

.achievement-text span {
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
}

/* Achievements carousel */
.achievements-carousel {
  position: relative;
  width: 100%;
}

.achievements-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.achievements-carousel .carousel-track {
  gap: 0;
  padding: 0;
  transition: transform 0.8s ease-in-out;
}

.achievements-slide {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
}

/* === TESTIMONIALS VIDEO === */
.section-testimonials-video {
  background: #b4d97f;
  padding: 100px 0 80px 0;
}
.testimonials-video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
h2#testimonials-heading {
  padding-bottom: 13px;
}
.testimonial-video-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 9/14;
  cursor: pointer;
  background: linear-gradient(180deg, #2e7a11 0%, #44630f 100%);
}

.testimonial-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-placeholder {
  background: #2d6e2d;
}

.play-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  border: 1px solid #ffffff;
  border-radius: 3px;
  height: 26px;
  width: 44px;
}

.play-btn svg {
  width: 14px;
  height: 14px;
}

/* ===== Video Lightbox ===== */
#video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#video-lightbox.active {
  display: flex;
}
.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.video-lightbox-inner {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 900px;
}
.video-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}
.video-lightbox-close:hover {
  color: #ccc;
}
.video-lightbox-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
}
.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.45);
}

/* === CUSTOMER REVIEWS === */
.section-reviews {
  background: var(--color-white);
  padding-top: 30px;
  padding-bottom: 30px;
}
.section-reviews .section-header {
  margin-bottom: 20px;
}

.reviews-heading {
  color: #1a1a1a;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 60px;
}

.reviews-carousel-wrap {
  position: relative;
}

.reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-dark);
  transition: all var(--transition);
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.reviews-prev {
  left: -18px;
}
.reviews-next {
  right: -18px;
}

.reviews-nav:hover {
  border-color: var(--color-dark);
  background: #f5f5f5;
}

.reviews-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.4s ease;
}

.review-card {
  background: #b4d97f;
  padding: 30px 30px 30px 30px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
  box-shadow: 0px 10px 15px -3px #0000001a;
  margin: 0 0px 23px 0;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
}
.review-card.is-linked {
  cursor: pointer;
}
.review-card.is-linked:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.review-product-badge {
  display: inline-block;
  background: #005737;
  color: #fff;
  font-family: Inter;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.review-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #364153;
  font-size: 12px;
  font-family: Inter;
  font-weight: 400;
}
.review-card h3 {
  color: #101828;
  margin-bottom: 16px;
  font-family: Inter;
  font-weight: 700;
  font-size: 19px;
  line-height: 28.5px;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.review-card p {
  color: #364153;
  margin-bottom: 28px;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  height: auto;
}

.review-author {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.author-info {
  display: flex;
  gap: 5px;
}

.author-info strong {
  color: #101828;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.author-info span {
  color: #4a5565;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: Inter;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0px;
}

.author-info span svg {
  width: 13px;
  height: 13px;
  color: #2d6a2d;
}

.review-yt-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  line-height: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s ease;
  z-index: 1;
}
.review-card.is-linked:hover .review-yt-badge {
  transform: scale(1.15);
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  flex-shrink: 0;
  align-self: flex-end;
  position: absolute;
  right: -2px;
  bottom: -4px;
  background: linear-gradient(180deg, #92c83e 0%, #7ab32e 100%);
  border: 4px solid #ffffff;
  box-shadow: 0px 10px 15px -3px #0000001a;
}

/* ============================================================
   ARCHIVE / COLLECTION PAGE
   ============================================================ */

.archive-hero {
  position: relative;
  padding: 56px 0 40px;
  background-image: url("../images/archive-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  min-height: 342px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(249, 250, 251, 0.7);
  display: block;
}

.archive-hero .custom-container {
  position: relative;
  z-index: 1;
}

.archive-hero-title {
  color: #101828;
  margin-bottom: 14px;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}

.archive-hero-subtitle {
  color: #4a5565;
  max-width: 774px;
  margin: 0 auto 28px;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  letter-spacing: 0px;
  text-align: center;
}

.archive-hero .cat-tab {
  border-color: #000000;
  color: #364153;
  background: unset;
  border-top: 2px solid #000000;
  font-family: Inter;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  border-radius: 3px;
}

.archive-hero .cat-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.archive-hero .cat-tab.active {
  color: #ffffff;
  background: #005737;
  border-radius: 0;
  border: 0;
}

/* Category Tabs */
.category-tabs-section {
  display: none;
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cat-tab {
  padding: 10px 24px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
}

.cat-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.cat-tab.active {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

/* Product Search */

div#search-icon-bubble {
  cursor: pointer;
  border: 2px solid #000;
  width: max-content;
  min-width: 227px;
  border-radius: 10px;
}

.product-search-section {
  padding: 16px 0;
  background: #f9fafb;
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
section.section.section-products-archive {
  background: #f9fafb;
  padding-top: 30px;
}
.product-search-form {
  max-width: 100%;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 3px;
  background: var(--color-white);
  transition: border-color var(--transition);
  border: 2px solid #000000;
  max-width: 680px;
  margin: 0 auto;
}

.search-input-wrap:focus-within {
  border-color: var(--color-primary);
}

.search-input-wrap svg {
  color: var(--color-muted);
  flex-shrink: 0;
}

.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-primary);
  color: var(--color-text);
  background: transparent;
}

/* Search suggestions dropdown */
.product-search-form {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.search-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  overflow: hidden;
}
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.search-suggestion-item:last-child {
  border-bottom: none;
}
.search-suggestion-item:hover {
  background: #f5faf0;
}
.search-suggestion-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.suggestion-no-img {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 3px;
  flex-shrink: 0;
  display: block;
}
.suggestion-title {
  font-weight: 500;
}

/* Archive Layout */
.archive-layout {
  display: grid;
  grid-template-columns: 343px 1fr;
  gap: 30px;
  align-items: start;
}

/* Sidebar */
.archive-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border: 1px solid #e5e7eb;
  padding: 20px;
  background: #fff;
}
.sidebar-title {
  margin-bottom: 20px;
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.filter-toggle-btn {
  display: none;
}
.filter-body {
  display: block;
}

.filter-title {
  color: #101828;
  margin-bottom: 12px;
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-list-crops {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: #005737 #f0f0f0;
}

.filter-list-crops::-webkit-scrollbar {
  width: 4px;
}
.filter-list-crops::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.filter-list-crops::-webkit-scrollbar-thumb {
  background: #005737;
  border-radius: 2px;
}

.filter-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--color-text);
}

.filter-link:hover {
  color: var(--color-primary-dark);
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #005737;
  border-radius: 0;
  flex-shrink: 0;
  position: relative;
}

.filter-checkbox.checked {
  background: var(--color-dark);
  border-color: var(--color-dark);
}
.filter-group {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}
.filter-checkbox.checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-name {
  flex: 1;
}

.filter-count {
  font-size: 12px;
  color: var(--color-muted);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--color-border);
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card-link {
  display: block;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #ffffff;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  background: transparent;
  padding: 12px;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

/* View Details overlay button */
.product-card-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  bottom: -123px;
}
.product-card:hover .product-card-image-overlay {
  opacity: 1;
  pointer-events: auto;
}
.product-card-image-overlay .btn {
  background: #005737;
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  pointer-events: auto;
  text-decoration: none;
}

/* Category-based badge colors */
[data-category="insecticide"] .product-badge    { background: #e08028; }
[data-category="acaricide"] .product-badge      { background: #e08028; }
[data-category="fumigant"] .product-badge       { background: #e08028; }
[data-category="rodenticide"] .product-badge    { background: #e08028; }
[data-category="molluscicide"] .product-badge    { background: #e08028; }
[data-category="fungicide"] .product-badge      { background: #93bc56; color: #1a1a1a; }
[data-category="bactericide"] .product-badge    { background: #93bc56; color: #1a1a1a; }
[data-category="pgr"] .product-badge            { background: #007033; }
[data-category="fertilizer"] .product-badge     { background: #007033; }
[data-category="fertilizers"] .product-badge    { background: #007033; }
[data-category="herbicide"] .product-badge      { background: #dd231b; }
[data-category="crop-nutrition"] .product-badge { background: #007033; }
[data-category="spreader"] .product-badge       { background: #e1a809; color: #1a1a1a; }

/* Category-based card border colors */
[data-category="insecticide"].product-card    { border-color: #e08028; }
[data-category="acaricide"].product-card      { border-color: #e08028; }
[data-category="fumigant"].product-card       { border-color: #e08028; }
[data-category="rodenticide"].product-card    { border-color: #e08028; }
[data-category="molluscicide"].product-card    { border-color: #e08028; }
[data-category="fungicide"].product-card      { border-color: #93bc56; }
[data-category="bactericide"].product-card    { border-color: #93bc56; }
[data-category="pgr"].product-card            { border-color: #007033; }
[data-category="fertilizer"].product-card     { border-color: #007033; }
[data-category="fertilizers"].product-card    { border-color: #007033; }
[data-category="herbicide"].product-card      { border-color: #dd231b; }
[data-category="crop-nutrition"].product-card { border-color: #007033; }
[data-category="spreader"].product-card       { border-color: #e1a809; }

.gallery-main .product-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  padding: 12px 12px;
  background: #e2f0cd;
  color: #000000;
  border-radius: 30px;
  z-index: 1;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
}
.product-card-info {
  padding: 16px 20px 8px;
}
section.section.product-hero-section {
  padding-top: 15px;
}
.product-card-title {
  color: #101828;
  margin-bottom: 4px;
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0px;
}
.product-card-desc {
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

/* No Products */
.no-products {
  text-align: center;
  padding: 60px 20px;
}

.no-products p {
  margin-bottom: 20px;
  color: var(--color-muted);
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */

/* Breadcrumb */
.breadcrumb-nav {
  padding: 16px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "\203A";
  margin-left: 8px;
  color: var(--color-muted);
}

.breadcrumb a {
  color: var(--color-muted);
}
.breadcrumb a:hover {
  color: var(--color-primary-dark);
}
.breadcrumb li:last-child {
  color: var(--color-dark);
  font-weight: 500;
}

/* Product Title */
.product-title-main {
  font-size: 42px;
  font-weight: 800;
  padding: 24px 0 16px;
  color: #005737;
}

/* Product Hero */
.product-hero-grid {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 38px;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
}

.gallery-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 1;
  flex: 1;
  margin: 0 auto;
  box-shadow: 0px 0px 1px 1px #00000040;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-premium {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: #92c83e;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  z-index: 2;
}

.gallery-nav {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  transition: all var(--transition);
}

.gallery-nav:hover {
  background: #005737;
  color: var(--color-white);
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  order: -1;
  justify-content: flex-start;
  max-height: 470px;
  overflow-y: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  flex-shrink: 0;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--color-primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Product Info Card */
.product-info-card {
  border-radius: 20px;
  padding: 25px;
  background: #f5faeb;
  box-shadow: 0px 0px 1px 1px #00000040;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-heading {
  margin-bottom: 6px;
  color: #005737;
  font-family: Inter;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 0px;
}
.info-subheading {
  margin-bottom: 4px;
  color: #005737;
  font-family: Inter;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0px;
}
.packaging-value {
  margin: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 21.13px;
  letter-spacing: 0px;
  color: #000000;
}

.product-description {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.product-description p {
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 21.13px;
  letter-spacing: 0px;
  color: #000000;
}
.product-info-card hr {
  border: none;
  margin: 20px 0;
  border-top: 1px solid #000000;
}
.gallery-thumb.active button.gallery-nav.gallery-next {
  background: #005737;
  color: #fff;
}
.ingredients-list {
  font-size: 15px;
  color: var(--color-text);
}

.ingredients-list li {
  padding: 4px 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 17px;
  line-height: 21.13px;
  letter-spacing: 0px;
  color: #000000;
}

/* Key Benefits */
.section-benefits {
  background: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
  margin-top: 36px;
}
.benefit-container {
  padding: 25px 60px;
  background: #fff;
}
.benefit-card {
  text-align: center;
  padding: 32px 20px 28px;
  background: #f3f4f6;
  border-radius: 20px;
  transition: box-shadow var(--transition);
  border-top: 1px solid #f3f4f6;
}

.benefit-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #92c83e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.benefit-icon svg {
  color: #ffffff;
  width: 30px;
  height: 30px;
}

.benefit-card p {
  color: #000000;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 82%;
  margin: 0 auto;
}

.benefit-card--hidden {
  display: none;
}

.benefits-readmore-wrap {
  text-align: center;
  margin-top: 28px;
}

.benefits-readmore-btn {
  border: 2px solid #005737;
  color: #fff !important;
  padding: 10px 32px;
  font-family: Inter;
  font-size: 15px;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
  background: #a8c96a;
  border-color: #a8c96a;
  border-radius: 14px;
  font-weight: 600;
}

.benefits-readmore-btn:hover {
  background: #005737;
  color: #fff;
}

/* Application & Usage */
.section-application {
  color: var(--color-white);
}
h2#application-heading {
  font-family: Inter;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: 0px;
  text-align: left;
  margin-left: auto;
}
.section-application .section-title {
  color: var(--color-white);
}

.application-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.application-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 20px 24px;
}

.app-label {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.app-value {
  color: var(--color-white);
  margin-bottom: 0;
  font-family: Inter;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}

/* Pests Table */
/* Application Recommendations */
.section-app-rec {
  background: var(--color-white);
  padding-top: 30px;
  padding-bottom: 30px;
}

.app-rec-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid #d1d5db;
  overflow: hidden;
}

.app-rec-table {
  width: 100%;
  border-collapse: collapse;
}

.app-rec-table th {
  padding: 14px 20px;
  font-family: Inter;
  font-weight: 700;
  font-size: 17px;
  color: #005737;
  text-align: center;
  background: #f3f4f6;
  border-bottom: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
}

.app-rec-table th:last-child {
  border-right: none;
}

/* Body cells */
.app-rec-table td {
  padding: 13px 20px;
  color: #000000;
  background: #f7f9fa;
  border-bottom: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  vertical-align: middle;
  font-family: Inter;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.app-rec-table tbody tr:last-child td {
  border-bottom: none;
}

.arc-crop-cell {
  font-weight: 500;
  text-align: center;
  width: 12%;
  white-space: nowrap;
}

.arc-pest-cell {
  width: 73%;
  text-align: left;
}

.arc-dosage-cell {
  font-weight: 500;
  text-align: center;
  width: 15%;
  white-space: nowrap;
}

/* Antidote footer row */
.arc-antidote-row td {
  background: #fff2f2;
  color: #b91c1c;
  border-top: 1px solid #fecaca;
  border-bottom: none;
  border-right: none;
  font-size: 14px;
  padding: 12px 20px;
  border: 1px solid #821719;
}

.arc-antidote-row td strong {
  color: #821719;
  margin-right: 4px;
}
/* Product Testimonials */
.section-product-testimonials {
  background: #f9fafb;
  padding-top: 30px;
  padding-bottom: 30px;
}
/* Product tabs — top level (same pill style as crop tabs) */
.testimonial-product-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 20px;
}
.testimonial-product-tab {
  padding: 7px 20px;
  border-radius: 999px;
  color: #364153;
  background: #f3f4f6;
  border: 0;
  cursor: pointer;
  transition: all var(--transition);
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
.testimonial-product-tab:hover {
  color: #005737;
}
.testimonial-product-tab.active {
  background: #005737;
  color: #fff;
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.testimonial-product-panel {
  margin-top: 24px;
}
.testimonials-heading {
  color: #005737;
  margin-bottom: 30px;
  font-family: Inter;
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.testimonial-tab {
  padding: 10px 24px;
  border-radius: 999px;
  color: #364153;
  background: #f3f4f6;
  cursor: pointer;
  transition: all var(--transition);
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  border: 0;
}

.testimonial-tab {
  padding: 7px 20px;
  border-radius: 999px;
  color: #364153;
  background: #f3f4f6;
  cursor: pointer;
  transition: all var(--transition);
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  border: 0;
}

.testimonial-tab:hover {
  border-color: #005737;
  color: #005737;
}

.testimonial-tab.active {
  background: #005737;
  border-color: #005737;
  color: var(--color-white);
  box-shadow: 0px 10px 15px -3px #0000001a;
}

.product-testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  margin: 0;
}

.product-testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(146, 200, 62, 0.1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border: 1.5px solid #005737;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  width: 100%;
  border-left: 4px solid #005737;
  display: block;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.product-testimonial-card.is-linked {
  cursor: pointer;
}
.product-testimonial-card.is-linked:hover {
  box-shadow: 0 6px 24px rgba(0, 87, 55, 0.15);
  transform: translateY(-2px);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.testimonial-yt-icon {
  display: flex;
  align-items: center;
  opacity: 0.85;
}

.testimonial-crop-badge {
  display: inline-block;
  padding: 3px 12px;
  background: #005737;
  color: #ffffff;
  border-radius: 999px;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.star-rating {
  display: flex;
  gap: 2px;
}

.star-rating svg {
  color: #ffb627;
}

.product-testimonial-card blockquote p {
  color: #364153;
  margin-bottom: 8px;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}

.product-testimonial-card footer {
  color: #000000;
  font-weight: 600;
  font-family: Inter;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.product-testimonial-card footer strong {
  color: #1a1a1a;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

/* Related Products */
.section-related {
  background: var(--color-white);
}

.related-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.related-carousel {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.related-carousel .carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.related-product-card {
  flex: 0 0 calc(33.333% - 11px);
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
}

/* Related carousel nav arrows */
.section-related .carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  color: #111827;
  border: 1.5px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.section-related .carousel-btn:hover {
  background: #005737;
  border-color: #005737;
  color: #ffffff;
}
.related-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.related-product-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.15); */
  pointer-events: none;
  z-index: 1;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  padding: 3px 8px;
  background: #92c83e;
  color: #ffffff;
  border-radius: 30px;
  z-index: 1;
  font-family: Inter;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0px;
  top: 14px;
  left: 14px;
}
.related-card-body {
  padding: 14px 16px 10px;
  flex: 1;
}

.related-product-card h3 {
  color: #101828;
  margin-bottom: 6px;
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
}

.related-comp {
  color: #4a5565;
  margin-bottom: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0px;
  padding-bottom: 25px;
}

.related-card-footer {
  padding: 0 16px 16px;
}
.btn-related {
  display: block;
  width: 100%;
  background: #005737;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  transition: background var(--transition);
  text-decoration: none;
  font-family: Inter;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
}

.btn-related:hover {
  background: #003d27;
  color: #ffffff;
}

.carousel-dots-center {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

/* WhatsApp CTA */
.section-whatsapp-cta {
  padding: 50px 0;
  background: linear-gradient(180deg, #005737 0%, #003d25 100%);
}

.whatsapp-cta-box {
  text-align: center;
}

.whatsapp-cta-box h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-family: Inter;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
}

.whatsapp-cta-box p {
  color: #e5e7eb;
  margin-bottom: 24px;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
}

.footer-main {
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr 1.3fr;
  gap: 40px;
}

.footer-brand .footer-logo {
  margin-bottom: 18px;
}

.footer-tagline {
  margin-bottom: 24px;
  color: #99a1af;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  letter-spacing: 0px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition);
  background: #ffffff1a;
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid #2e7a11;
  border-radius: 3px;
  box-shadow: 0px 10px 15px -3px #0000001a;
  color: #2e7a11;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  background: #ffffff;
}
.btn-whatsapp:hover {
  background: #4caf50;
  color: #fff;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
}

.footer-links h4,
.footer-offices h4 {
  color: #ffffff;
  margin-bottom: 22px;
  font-family: Inter;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #99a1af;
  transition: color var(--transition);
  text-decoration: none;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-link-disabled {
  color: #99a1af;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  cursor: default;
}

.footer-offices h5 {
  color: #ffffff;
  margin-bottom: 8px;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.office-item {
  margin-bottom: 20px;
}

.office-item p {
  color: #99a1af;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.office-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #4caf50;
}

.office-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  text-decoration: none;
}

.office-contact svg {
  color: #4caf50;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #ffffff1a;
  padding: 30px 0 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  color: #99a1af;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: #fff;
}

/* ============================================================
   BLOG / NEWS SECTION
   ============================================================ */

.section-blog {
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.blog-card-img-link {
  display: block;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.blog-card-img-placeholder {
  background: #f3f4f6;
  aspect-ratio: 16/10;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-cat {
  font-family: Inter;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 8px;
  display: block;
}

.blog-card-title {
  font-family: Inter;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #005737;
}

.blog-card-excerpt {
  font-family: Inter;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-readmore {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  color: #005737;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.blog-card-readmore:hover {
  gap: 8px;
  color: #003d27;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â HEADER TOGGLE (ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤991px)
   ============================================================ */
@media (max-width: 991px) {
  .main-nav,
  .header-actions {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ============================================================
   RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â TABLET (ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .custom-container {
    margin-left: 40px;
    margin-right: 40px;
  }

  /* Section titles ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â consistent scale */
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 15px;
  }
  .section-header {
    margin-bottom: 32px;
  }

  /* Hero */
  .hero-slider {
    height: 400px;
  }
  .hero-slide-left {
    padding: 0 40px;
    width: 60%;
  }
  .hero-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 10px;
  }

  /* Brands ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â keep desktop card size */
  .brand-card {
    flex: 0 0 calc((100% - 16px) / 3);
    padding-top: 90px;
    overflow: visible;
  }
  .brand-card a {
    min-height: 230px;
  }
  .brand-card a::before {
    bottom: 34px;
    width: 86%;
  }
  .brand-card-img-wrap {
    width: 82%;
    top: -65px;
    bottom: 38px;
    height: auto;
    margin-top: 0;
    overflow: visible;
  }
  .brand-label {
    font-size: 18px;
    margin-top: 85px;
    top: 0;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-card {
    height: 220px;
  }

  /* Welcome */
  .welcome-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .welcome-heading {
    font-size: 32px;
  }
  .welcome-image img {
    min-height: 360px;
  }

  /* CEO */
  .ceo-achievements-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .ceo-achievements-heading {
    font-size: 30px;
  }

  /* Testimonials */
  .testimonials-video-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Reviews */
  .review-card {
    flex: 0 0 calc(50% - 10px);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Inner pages */
  .product-hero-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-product-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* ============================================================
   RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â MOBILE (ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤768px)
   ============================================================ */
@media (max-width: 768px) {
  .achievements-section {
    padding: 40px;
  }
  /* Achievements — no carousel on mobile, show flat stacked list */
  .achievements-carousel-viewport {
    overflow: visible;
  }
  .achievements-carousel .carousel-track {
    flex-direction: column;
    gap: 12px;
  }
  .achievements-slide {
    width: 100% !important;
    flex: none !important;
  }
  [data-carousel-dots="achievements"] {
    display: none !important;
  }
  .btn-outline-dark {
    padding: 7px 7px;
    min-width: 191px;
    font-size: 15px;
  }
  .btn-hero {
    padding: 7px 10px;
    font-size: 15px;
  }
  .category-info span {
    font-size: 12px;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
  }
  section.section.section-categories {
    padding-top: 0;
  }
  .custom-container {
    margin-left: 20px;
    margin-right: 20px;
  }

  /* Header handled at 991px breakpoint */

  /* Hero ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â stack vertically */
  .hero-slider {
    height: 360px;
  }
  .hero-slide-left {
    width: 100%;
    padding: 40px 24px;
  }
  .hero-slide-right {
    width: 100%;
    height: 100%;
    display: block;
  }
  .hero-title {
    font-size: 26px;
    line-height: 34px;
  }
  .hero-subtitle {
    font-size: 11px;
  }

  /* Sections */
  .section {
    padding: 28px 0;
  }

  /* Section titles ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â consistent */
  .section-title {
    font-size: 26px;
  }
  .section-subtitle {
    font-size: 14px;
  }
  .section-header {
    margin-bottom: 28px;
  }

  /* Brands ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â maintain desktop card design, show 2 */
  .brand-card {
    flex: 0 0 calc((100% - 8px) / 2);
    padding-top: 75px;
    overflow: visible;
  }
  .brand-card a {
    min-height: 185px;
  }
  .brand-card a::before {
    bottom: 28px;
    width: 83%;
  }
  .brand-card-img-wrap {
    position: absolute;
    width: 76%;
    left: 50%;
    transform: translateX(-50%);
    top: -55px;
    bottom: 32px;
    height: auto;
    margin-top: 0;
    overflow: visible;
  }
  .brand-label {
    font-size: 15px;
    margin-top: 68px;
    top: 0;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .category-card {
    height: 200px;
  }
  .category-info {
    font-size: 13px;
    padding: 14px 16px;
  }

  /* Welcome */
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .welcome-heading {
    font-size: 28px;
  }
  .welcome-image img {
    min-height: 260px;
    max-height: 600px;
  }
  .mt-65 {
    margin-top: 32px;
  }
  .section-ceo-achievements .custom-container.m-0 {
    margin: 0;
  }
  .ceo-section {
    padding: 30px 30px 0 30px;
  }

  /* CEO */
  .ceo-achievements-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ceo-achievements-heading {
    font-size: 26px;
  }

  /* Testimonials */
  .testimonials-video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* Reviews */
  .reviews-carousel-wrap {
    padding: 0 10px;
  }
  .reviews-prev {
    left: -10px;
  }
  .reviews-next {
    right: -10px;
  }
  .review-card {
    flex: 0 0 100%;
  }
  .reviews-heading {
    font-size: 26px;
    margin-bottom: 24px;
  }

  /* Archive / inner pages */
  .archive-layout {
    grid-template-columns: 1fr;
  }
  .archive-sidebar {
    position: static;
  }
  .sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 0;
  }
  .filter-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: var(--color-text);
    transition: transform 0.25s ease;
  }
  .filter-toggle-btn.open {
    transform: rotate(180deg);
  }
  .filter-body {
    display: none;
    margin-top: 14px;
  }
  .filter-body.open {
    display: block;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .archive-hero-title {
    font-size: 28px;
  }
  .archive-hero {
    padding: 36px 0 28px;
  }
  .archive-hero-subtitle {
    margin-bottom: 20px;
  }
  .product-title-main {
    font-size: 24px;
  }
  .application-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-product-card {
    flex: 0 0 calc(50% - 12px);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â SMALL MOBILE (ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤480px)
   ============================================================ */
@media (max-width: 480px) {
  .review-author {
    margin-top: 8px;
    padding-bottom: 20px;
  }
  .custom-container {
    margin-left: 16px;
    margin-right: 16px;
  }

  /* Hero */
  .hero-slider {
    height: 320px;
  }
  .hero-title {
    font-size: 22px;
    line-height: 30px;
  }
  .hero-slide-right {
    height: 100%;
  }

  /* Section titles */
  .section-title {
    font-size: 22px;
  }
  .section-subtitle {
    font-size: 13px;
  }
  .section-header {
    margin-bottom: 24px;
  }

  /* Brands - 2 cards visible */
  .brand-card {
    flex: 0 0 calc((100% - 8px) / 2);
    padding-top: 62px;
    overflow: visible;
  }
  .brand-card a {
    min-height: 155px;
  }
  .brand-card a::before {
    bottom: 24px;
    width: 82%;
  }
  .brand-card-img-wrap {
    position: absolute;
    width: 62%;
    left: 50%;
    transform: translateX(-50%);
    top: -52px;
    bottom: 28px;
    height: 143px;
    margin-top: 0;
    overflow: visible;
  }
  .brand-label {
    font-size: 15px;
    margin-top: 58px;
    top: 21px;
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .category-card {
    height: 160px;
  }
  .category-info {
    font-size: 12px;
    padding: 10px 12px;
  }
  .category-info svg {
    width: 18px;
    height: 18px;
  }

  /* Welcome */
  .welcome-heading {
    font-size: 24px;
    max-width: 100%;
  }
  .welcome-content p {
    font-size: 16px;
  }
  .divisions-accordion {
    padding: 16px 14px 8px;
  }

  /* CEO */
  .ceo-achievements-heading {
    font-size: 22px;
  }
  .achievements-list li {
    padding: 14px 16px;
    margin-bottom: 10px;
  }
  .achievements-section {
    padding: 40px;
  }

  /* Testimonials */
  .testimonials-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Reviews */
  .reviews-heading {
    font-size: 22px;
  }
  .review-card {
    padding: 20px 20px 0;
  }
  .review-card h3 {
    font-size: 14px;
  }

  /* Inner pages */
  .products-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .category-tabs {
    gap: 6px;
  }
  .cat-tab {
    padding: 8px 14px;
    font-size: 12px;
  }
  .related-product-card {
    flex: 0 0 calc(100% - 8px);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-social a {
    width: 34px;
    height: 34px;
  }
  .btn-whatsapp {
    font-size: 13px;
    padding: 9px 16px;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* === PRINT === */
@media print {
  .site-header,
  .site-footer,
  .mobile-menu-toggle,
  .carousel-controls,
  .carousel-btn,
  .btn {
    display: none !important;
  }

  .section {
    padding: 20px 0;
  }
  body {
    font-size: 12pt;
  }
}

/* === WOOCOMMERCE OVERRIDES === */
.woocommerce-main {
  min-height: 50vh;
}

.woocommerce-breadcrumb {
  padding: 12px 0;
  font-size: 14px;
  color: var(--color-muted);
}

/* Load More Button */
.load-more-btn {
  background: #a8c96a;
  color: #1a1a1a;
  border-color: #a8c96a;
  border-radius: 14px;
  font-weight: 600;
}
.load-more-btn:hover {
  background: #96b85a;
  border-color: #96b85a;
  color: #1a1a1a;
}

/* Load More Button animation */
.load-more-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.custom-container.testimonials-container {
  box-shadow: 0px 10px 15px -3px #0000001a;
  border-radius: 5px;
  background: #ffff;
  padding: 40px 50px;
}
.load-more-btn.loading::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #1a1a1a;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* Shared utilities used by about page sections */
.section-padding {
  padding: 42px 0 40px 0;
}
.bg-light {
  background: #f9fafb;
}

/* Hero */
.about-hero {
  width: 100% !important;
  max-height: none !important;
  overflow: visible !important;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.about-hero-img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: unset !important;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
}
.about-hero-title {
  color: #000;
  margin: 16px 0 16px;
  font-family: Inter;
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 0px;
  text-align: center;
}
.about-hero-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: #000;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Image Block — removed (image now used as banner background) */
.about-hero-image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 490px;
}

/* Story */
.about-story-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 72px;
  align-items: flex-start;
}
.about-story-label {
  color: #005737;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 14px;
  font-family: Inter;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  background: #92c83e1a;
  margin-bottom: 20px;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.about-story-heading {
  color: #101828;
  margin: 0 0 24px;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
}
.about-story-text {
  color: #364153;
  margin-bottom: 16px;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}
.about-story-text:last-of-type {
  margin-bottom: 0;
}
.about-story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.about-stat strong {
  display: block;
  color: #005737;
  font-family: Inter;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
}
.about-stat span {
  color: #4a5565;
  margin-top: 6px;
  display: block;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
}
.about-story-image-wrap {
  position: relative;
}
.about-story-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  aspect-ratio: 3 / 3.2;
  object-fit: cover;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Badge card overlay */
.about-story-badge-card {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 20px 14px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 260px;
  max-width: 310px;
  box-shadow: 0px 20px 25px -5px #0000001a;
}
.about-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #92c83e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.about-badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}
.about-badge-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.about-badge-title {
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
}
.about-badge-sub {
  color: #4a5565;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

/* Vision & Mission */
.about-vm-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-vm-heading {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 0;
}
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.about-vm-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 44px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.about-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}
.about-vm-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--vm-accent) 12%, transparent);
  color: var(--vm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-vm-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.about-vm-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  flex: 1;
}
.about-vm-bar {
  height: 4px;
  width: 56px;
  border-radius: 4px;
  background: var(--vm-accent);
  margin-top: 8px;
}
@media (max-width: 768px) {
  .about-vm-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-vm-card {
    padding: 36px 28px;
  }
  .about-vm-heading {
    font-size: 30px;
    line-height: 38px;
  }
  .about-vm-title {
    font-size: 22px;
  }
}

/* ═══════════════════════════════════════
   Contact Us Page
═══════════════════════════════════════ */
.farmerMidPara {
  margin-top: 30px;
}
.contact-page,
.contact-tabs-section,
.wpress .contact-col-title,
.contact-col-text,
.contact-social-list,
.contact-tab {
  font-family: "Inter", sans-serif;
}
.contact-page {
  min-height: 60vh;
}
.contact-map-wrap {
  width: 100%;
  height: 480px;
  background: #e8e8e8;
  overflow: hidden;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.contact-tabs-section {
  max-width: 1114px;
  margin: -74px auto 50px auto;
  z-index: 999;
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: -1px 15px 20px 0 #f2f2f2;
}
.contact-tabs {
  display: flex;
  justify-content: center;
  gap: 48px;
  border-bottom: 1.5px solid #e5e5e5;
  margin-bottom: 48px;
}
.contact-tab {
  background: none;
  border: none;
  padding: 0 4px 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #999;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.contact-tab::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #f78427;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.contact-tab.active {
  color: #f78427;
}
.contact-tab.active::after {
  transform: scaleX(1);
}
.contact-panel {
  display: none;
}
.contact-panel.active {
  display: block;
}
.contact-info-grid {
  display: grid;
  gap: 40px;
}
.contact-info-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.contact-info-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.contact-col-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
}
.contact-col-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #444;
  margin: 0 0 8px;
}
.contact-col-text a {
  color: #444;
  text-decoration: none;
}
.contact-col-text a:hover {
  color: #f78427;
}
.contact-social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #444;
  font-size: 15px;
  transition: color 0.2s;
}
.contact-social-list a:hover {
  color: #f78427;
}
.contact-social-list svg {
  flex-shrink: 0;
}
/* Contact — Tablet ≤1024px */
@media (max-width: 1024px) {
  .contact-tabs-section {
    margin-top: -48px;
    padding: 32px 28px;
  }
  .contact-info-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .contact-info-grid--3 {
    gap: 28px;
  }
}

/* Contact — Mobile ≤768px */
@media (max-width: 768px) {
  .contact-map-wrap {
    height: 320px;
  }
  .contact-tabs-section {
    margin-top: 0;
    border-radius: 0;
    padding: 28px 20px 36px;
    box-shadow: none;
    border-top: 1px solid #eee;
  }
  .contact-tabs {
    gap: 0;
    justify-content: stretch;
    margin-bottom: 32px;
  }
  .contact-tab {
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 0 4px 14px;
    letter-spacing: 1px;
  }
  .contact-info-grid--3,
  .contact-info-grid--4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-col-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .contact-col-text {
    font-size: 13px;
    line-height: 22px;
  }
  .contact-social-list {
    gap: 10px;
  }
  .contact-social-list a {
    font-size: 14px;
  }
}

/* Contact — Small mobile ≤480px */
@media (max-width: 480px) {
  .contact-map-wrap {
    height: 240px;
  }
  .contact-tabs-section {
    padding: 24px 16px 32px;
  }
  .contact-tab {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .contact-info-grid--3,
  .contact-info-grid--4 {
    gap: 20px;
  }
}

/* Spirit Video */
.about-spirit {
  width: 100%;
  overflow: hidden;
}
.about-logo-section {
  background: #fff;
}

.about-logo-heading {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 28px;
}

.about-logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  padding: 32px;
}

.about-logo-text p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  text-align: justify;
}

.about-logo-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .about-logo-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }
}

.about-spirit-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: #000;
  overflow: hidden;
}
.about-spirit-video-wrap iframe,
.about-spirit-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
.spirit-mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.spirit-mute-btn:hover {
  background: rgba(0, 0, 0, 0.82);
}
.about-spirit-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-spirit-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-spirit-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.2s;
}
.about-spirit-play-btn:hover {
  background: rgba(0, 0, 0, 0.45);
}
@media (max-width: 768px) {
  .about-spirit-heading {
    font-size: 26px;
  }
  .about-spirit-subtitle {
    font-size: 14px;
  }
  .about-spirit-video-wrap {
    border-radius: 10px;
  }
}

/* Journey Slider */
.about-journey-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-journey-heading {
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 16px;
}
.about-journey-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-journey-slider-wrap {
  overflow: hidden;
  position: relative;
  padding-bottom: 16px;
}
.about-journey-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 24px 0 32px;
  will-change: transform;
}
.about-journey-card {
  flex: 0 0 50%;
  /* min-height: 180px; */
  /* min-height: fit-content; */
  max-height: fit-content;
  border-radius: 18px;
  padding: 28px 36px;
  color: #fff;
  transform: scale(0.82);
  /* filter: blur(2px); */
  transition:
    transform 0.6s cubic-bezier(0.34, 1.15, 0.64, 1),
    filter 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  will-change: transform, filter;
}
.about-journey-card.active {
  transform: scale(1);
  filter: blur(0);
}
.jc-year {
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  color: #000;
  font-size: 25px;
}
.jc-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.jc-desc {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.88;
  margin: 0;
  max-width: 100%;
  padding-left: 20px;
  list-style: disc;
}
.jc-desc li + li {
  margin-top: 6px;
}
.about-journey-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.journey-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid #3d1a00;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3d1a00;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  flex-shrink: 0;
}
.journey-btn:hover {
  background: #3d1a00;
  color: #fff;
}
@media (max-width: 768px) {
  .about-journey-card {
    flex: 0 0 82%;
    padding: 32px 24px;
    min-height: 200px;
    gap: 14px;
  }
  .jc-title {
    font-size: 22px;
  }
  .jc-desc {
    font-size: 14px;
  }
  .about-journey-heading {
    font-size: 30px;
    line-height: 38px;
  }
  .about-journey-track {
    gap: 0;
  }
}

/* Values */
.about-values-header {
  text-align: center;
  margin-bottom: 52px;
}
.about-values-heading {
  color: #101828;
  margin: 12px 0 16px;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}
.about-values-subtitle {
  color: #4a5565;
  margin: 0 auto;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
  max-width: 786px;
}

/* 3+2 centred grid using 6-column base */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.about-value-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0px 1px 3px 0px #0000001a;
}
.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

/* Coloured top block */
.about-value-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  min-height: 200px;
}
.about-value-top.val-lime {
  background: #A5D563;
}
.about-value-top.val-coral {
  background: #F78427;
}
.about-value-top.val-amber {
  background: #E1A809;
}
.about-value-top.val-red {
  background: #DD231B;
}
.about-value-top.val-dark-green {
  background: #007033;
}

/* Dashed circle ring + inner fill */
.about-value-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-value-circle::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.about-value-letter {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  position: relative;
  z-index: 1;
}
/* amber card letter stays dark */
.val-lime .about-value-letter,
.val-amber .about-value-letter {
  color: #111;
}
/* dark bg cards get white letter */
.val-coral .about-value-letter,
.val-red .about-value-letter,
.val-dark-green .about-value-letter {
  color: #000;
}

/* White body */
.about-value-body {
  padding: 24px 14px 20px;
}
.about-value-title {
  color: #101828;
  margin: 0 0 10px;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
}
.about-value-desc {
  color: #4a5565;
  margin: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  max-width: 100%;
}

/* RVB */
.about-rvb {
  background: #f9fafb;
}
.about-rvb-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.about-rvb-logo {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
  margin: 0 auto 24px;
}
.about-rvb-heading {
  color: #101828;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  margin: 12px 0 16px;
}
.about-rvb-subhead {
  color: var(--color-primary-dark);
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 32px;
}
.about-rvb-body {
  background: #fff;
  border-left: 4px solid var(--color-primary-dark);
  border-radius: 8px;
  padding: 28px 36px;
  text-align: left;
}
.about-rvb-body p {
  color: #4a5565;
  font-size: 16px;
  line-height: 28px;
  margin: 0 0 16px;
}
.about-rvb-body p:last-child {
  margin-bottom: 0;
}

/* CSR */
.about-csr-header {
  text-align: center;
  margin-bottom: 48px;
}
.about-csr-heading {
  color: #101828;
  margin: 17px 0 20px;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}
.about-csr-subtitle {
  color: #4a5565;
  max-width: 665px;
  margin: 0 auto;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}
.about-csr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
}
.about-csr-card {
  display: flex;
  flex-direction: column;
  background: #f9fafb;
  border-radius: 20px;
}
.about-csr-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
  max-height: 240px;
}
.about-csr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  max-height: 240px;
}
.about-csr-card:hover .csr-img-slide img {
  transform: scale(1.04);
}

/* CSR image carousel */
.csr-img-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.csr-img-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.csr-img-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.csr-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.csr-carousel-prev,
.csr-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.48);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.csr-carousel-prev {
  left: 10px;
}
.csr-carousel-next {
  right: 10px;
}
.csr-carousel-prev:hover,
.csr-carousel-next:hover {
  background: rgba(0, 0, 0, 0.78);
}
.csr-carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.csr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.csr-dot.active {
  background: #fff;
}
/* Fallback background when image fails */
.about-csr-img-wrap.no-img {
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}
.about-csr-img-icon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
  backdrop-filter: blur(4px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}
.about-csr-img-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
.about-csr-img-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}
.about-csr-body {
  padding: 30px 30px;
  flex: 1;
  border-radius: 0 0 20px 20px;
}
.about-csr-body h3 {
  color: #101828;
  margin: 0 0 8px;
  font-family: Inter;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
}
.about-csr-body p {
  color: #4a5565;
  margin: 0;
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
}
.about-story-content span.about-story-label {
  margin: 0 0 28px 0;
}
/* Impact */
.about-impact {
  background: #fff;
}
.about-impact-inner {
  border-radius: 24px;
  padding: 48px 40px;
  background: linear-gradient(180deg, #92c83e 0%, #005737 100%);
}
.about-impact-heading {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  margin: 0 0 20px;
  font-family: Inter;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0px;
  text-align: center;
}
.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.about-impact-item {
  padding: 16px 24px;
}
.about-impact-item:last-child {
  border-right: none;
}
.about-impact-item strong {
  display: block;
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: 0px;
  text-align: center;
}
.about-impact-item span {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 8px;
  font-family: Inter;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}

/* CTA */
.about-cta {
  background: #f9fafb;
}
.about-cta-inner {
  text-align: center;
  margin: 0 auto;
  box-shadow: 0px 20px 25px -5px #0000001a;
  background: #ffffff;
  border-radius: 24px;
  padding: 80px;
}
.about-cta-heading {
  color: #101828;
  margin: 0 0 16px;
  font-family: Inter;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
}
.about-cta-subtitle {
  color: #666;
  margin: 0 0 36px;
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: center;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ About Page Responsive ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ */

/* Tablet ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤1024px */
/* Tablet ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°Ãƒâ€šÃ‚Â¤1024px */
@media (max-width: 1024px) {
  .section-padding {
    padding: 64px 0;
  }

  /* Hero */
  .about-hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  /* Story */
  .about-story-grid {
    gap: 40px;
  }
  .about-story-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .about-story-text {
    font-size: 16px;
    line-height: 26px;
  }

  /* Values */
  .about-vm-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .about-journey-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .about-logo-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .about-rvb-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .about-values-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .about-values-subtitle {
    font-size: 17px;
    line-height: 26px;
  }
  .about-values-grid {
    gap: 20px;
  }
  .about-value-card {
    grid-column: span 3;
  }
  .about-value-card:nth-child(4),
  .about-value-card:nth-child(5) {
    grid-column: span 3;
  }

  /* CSR */
  .about-csr-heading {
    font-size: 36px;
    line-height: 42px;
  }
  .about-csr-subtitle {
    font-size: 17px;
  }
  .about-csr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Impact */
  .about-impact-item strong {
    font-size: 40px;
    line-height: 44px;
  }

  /* CTA */
  .about-cta-inner {
    padding: 60px 48px;
  }
}

/* Mobile ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°Ãƒâ€šÃ‚Â¤768px */
@media (max-width: 768px) {
  .section-padding {
    padding: 32px 0;
  }

  /* Hero */
  .about-hero-title {
    font-size: 36px;
    line-height: 44px;
  }
  .about-hero-subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  /* Story */
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-story-heading {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 12px;
  }
  .about-story-text {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .about-story-stats {
    gap: 16px;
    margin-top: 20px;
    justify-content: flex-start;
  }
  .about-stat strong {
    font-size: 28px;
    line-height: 34px;
  }
  .about-story-image-wrap {
    margin-bottom: 32px;
  }
  .about-story-badge-card {
    left: 12px;
    bottom: 12px;
    min-width: unset;
    max-width: calc(100% - 24px);
  }

  /* Values */
  .about-values-header {
    margin-bottom: 20px;
  }
  .about-values-heading {
    font-size: 28px;
    line-height: 34px;
    margin: 8px 0 10px;
  }
  .about-values-subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .about-values-grid {
    gap: 12px;
  }
  .about-value-card,
  .about-value-card:nth-child(4),
  .about-value-card:nth-child(5) {
    grid-column: span 6;
  }
  .about-value-top {
    min-height: 140px;
    padding: 20px;
  }
  .about-value-circle {
    width: 110px;
    height: 110px;
  }
  .about-value-circle::before {
    width: 82px;
    height: 82px;
  }
  .about-value-letter {
    font-size: 48px;
  }
  .about-value-title {
    font-size: 20px;
    line-height: 28px;
  }
  .about-value-body {
    padding: 16px 16px 20px;
  }

  /* CSR */
  .about-csr-header {
    margin-bottom: 20px;
  }
  .about-csr-heading {
    font-size: 28px;
    line-height: 34px;
    margin: 10px 0 12px;
  }
  .about-csr-subtitle {
    font-size: 15px;
    line-height: 24px;
  }
  .about-csr-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-csr-body {
    padding: 16px 16px 20px;
  }
  .about-csr-body h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 6px;
  }
  .about-csr-body p {
    font-size: 14px;
    line-height: 22px;
  }

  /* Impact */
  .about-impact-inner {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .about-impact-heading {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
  }
  .about-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-impact-item {
    padding: 12px 10px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .about-impact-item strong {
    font-size: 36px;
    line-height: 40px;
  }
  .about-impact-item span {
    font-size: 14px;
    line-height: 20px;
  }
  .about-impact-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .about-impact-item:last-child,
  .about-impact-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  /* CTA */
  .about-cta-inner {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .about-cta-heading {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 10px;
  }
  .about-cta-subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .about-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .about-cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Small mobile ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â°Ãƒâ€šÃ‚Â¤480px */
@media (max-width: 480px) {
  .section-padding {
    padding: 24px 0;
  }

  /* Hero */
  .about-hero-title {
    font-size: 28px;
    line-height: 36px;
  }

  /* Story */
  .about-story-heading {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.5px;
  }
  .about-story-stats {
    gap: 12px;
    margin-top: 16px;
  }
  .about-stat strong {
    font-size: 24px;
    line-height: 30px;
  }

  /* Values */
  .about-vm-heading {
    font-size: 24px;
    line-height: 32px;
  }
  .about-journey-heading {
    font-size: 24px;
    line-height: 32px;
  }
  .about-logo-heading {
    font-size: 24px;
    line-height: 32px;
  }
  .about-rvb-heading {
    font-size: 24px;
    line-height: 32px;
  }
  .about-values-heading {
    font-size: 24px;
    line-height: 30px;
  }
  .about-values-grid {
    gap: 10px;
  }
  .about-value-top {
    min-height: 120px;
    padding: 16px;
  }
  .about-value-body {
    padding: 14px 14px 18px;
  }
  .about-value-title {
    font-size: 18px;
  }
  .about-value-letter {
    font-size: 44px;
  }

  /* CSR */
  .about-csr-heading {
    font-size: 24px;
    line-height: 30px;
  }
  .about-csr-grid {
    gap: 10px;
  }
  .about-csr-body {
    padding: 14px 14px 18px;
  }

  /* Impact */
  .about-impact-inner {
    padding: 20px 14px;
    border-radius: 12px;
  }
  .about-impact-heading {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .about-impact-item {
    padding: 10px 8px;
  }
  .about-impact-item strong {
    font-size: 28px;
    line-height: 34px;
  }
  .about-impact-item span {
    font-size: 13px;
  }

  /* CTA */
  .about-cta-inner {
    padding: 24px 14px;
  }
  .about-cta-heading {
    font-size: 22px;
    line-height: 30px;
  }
  .about-cta-subtitle {
    font-size: 14px;
  }
}

/* ============================================================
   BLOG / NEWS PAGE
   ============================================================ */

/* ── Shared badge ── */
.blog-cat-tag {
  display: inline-block;
  padding: 4px 14px;
  background: #007033;
  color: #fff;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 18px;
}

.blog-date {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.02em;
}

/* Hero banner height fix for 1400–1500px screens */
@media (min-width: 1400px) and (max-width: 1500px) {
  .hero-slider {
    height: 907px;
  }

  /* Second slide: image is 1920×700; at 774px tall it crops heavily on sides.
       Show the full image with contain + a dark fill for the letterbox areas. */
  .hero-slide:nth-child(2) .hero-slide-right {
    background-color: #0d1f0d;
  }
  .hero-slide:nth-child(2) .hero-slide-right img {
    object-fit: fill;
    object-position: center center;
  }
}

.blog-read-more,
.blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #007033;
  text-decoration: none;
  transition: gap 0.2s;
}

.blog-read-more:hover,
.blog-card-more:hover {
  gap: 9px;
  color: #005a27;
}

/* ── Hero ── */
.blog-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.25) 60%,
    transparent 100%
  );
}

.blog-hero-inner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 56px;
}

.blog-hero-label {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #92c83e;
  margin-bottom: 10px;
}

.blog-hero-title {
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  max-width: 640px;
}

.blog-hero-sub {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}

/* ── Featured post ── */
.blog-featured-wrap {
  padding-top: 56px;
  padding-bottom: 48px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.blog-featured-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.blog-featured:hover .blog-featured-img {
  transform: scale(1.04);
}

.blog-featured-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 40px 36px;
  background: #fff;
}

.blog-featured-title {
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin: 0;
}

.blog-featured-title a {
  text-decoration: none;
  color: inherit;
}

.blog-featured-title a:hover {
  color: #007033;
}

.blog-featured-excerpt {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #555;
  flex: 1;
}

.blog-featured-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: auto;
}

/* ── Grid ── */
.blog-grid-section {
  padding-bottom: 72px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.blog-card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

.blog-card-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.06);
}

.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-block;
  padding: 3px 11px;
  background: #007033;
  color: #fff;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px 22px;
  flex: 1;
}

.blog-card-title {
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin: 4px 0 0;
}

.blog-card-title a {
  text-decoration: none;
  color: inherit;
}

.blog-card-title a:hover {
  color: #007033;
}

.blog-card-excerpt {
  font-family: Inter, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
  flex: 1;
}

.blog-card-more {
  margin-top: 4px;
}

/* ── Pagination ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: all 0.2s;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: #007033;
  border-color: #007033;
  color: #fff;
}

/* ── Empty state ── */
.blog-empty {
  padding: 80px 0;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 16px;
  color: #888;
}

/* ============================================================
   SINGLE ARTICLE PAGE
   ============================================================ */

/* ── Header ── */
.article-header {
  background: #f7f8f5;
  border-bottom: 1px solid #eaeaea;
  padding: 48px 0 40px;
}

.article-header-inner {
  max-width: 860px;
  margin: 0 auto;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: #007033;
}

.article-bc-sep {
  color: #bbb;
}

.article-title {
  font-family: Inter, sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: #111;
  letter-spacing: -0.02em;
  margin: 14px 0 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  flex-wrap: wrap;
}

.article-author {
  color: #333;
  font-weight: 600;
}

.article-sep {
  color: #ccc;
}

.article-cat-link {
  color: #007033;
  font-weight: 600;
  text-decoration: none;
}

.article-cat-link:hover {
  text-decoration: underline;
}

/* ── Hero image ── */
.article-hero-img {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 8px;
}

.article-hero-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.article-photo-credit {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ── Article body ── */
.article-body {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 56px;
}

.article-content {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content h2 {
  font-family: Inter, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin: 36px 0 16px;
}

.article-content h3 {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 28px 0 12px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* WordPress inline image alignment */
.article-content .alignright {
  float: right;
  margin: 6px 0 20px 28px;
  max-width: 45%;
  border-radius: 8px;
}

.article-content .alignleft {
  float: left;
  margin: 6px 28px 20px 0;
  max-width: 45%;
  border-radius: 8px;
}

.article-content .aligncenter {
  display: block;
  margin: 24px auto;
}

/* WordPress figure/caption */
.article-content .wp-caption {
  max-width: 45%;
}

.article-content .wp-caption-text,
.article-content figcaption {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: #999;
  font-style: italic;
  text-align: center;
  margin-top: 6px;
  line-height: 1.5;
}

.article-content .wp-caption.alignright {
  float: right;
  margin: 6px 0 20px 28px;
}

.article-content .wp-caption.alignleft {
  float: left;
  margin: 6px 28px 20px 0;
}

.article-content blockquote {
  border-left: 4px solid #007033;
  padding: 14px 20px;
  margin: 24px 0;
  background: #f0f7eb;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #444;
}

.article-content ul,
.article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content li {
  margin-bottom: 6px;
  line-height: 1.7;
}

.article-content a {
  color: #007033;
  text-decoration: underline;
}

.article-content::after {
  content: "";
  display: table;
  clear: both;
}

/* ── Tags ── */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #eee;
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f7eb;
  color: #007033;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.article-tag:hover {
  background: #007033;
  color: #fff;
}

/* ── Post navigation ── */
.article-nav-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 56px;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #eee;
  padding-top: 32px;
}

.article-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  max-width: 45%;
}

.article-nav-prev {
  align-items: flex-start;
}
.article-nav-next {
  align-items: flex-end;
}

.article-nav-dir {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-nav-label {
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  transition: color 0.2s;
}

.article-nav-item:hover .article-nav-label {
  color: #007033;
}

/* ── Related posts ── */
.article-related {
  max-width: 1200px;
  padding-bottom: 72px;
}

.article-related-heading {
  font-family: Inter, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
}

/* ── Responsive ── */
/* Blog — Tablet ≤1024px */
@media (max-width: 1024px) {
  .blog-hero {
    min-height: 320px;
  }
  .blog-hero-inner {
    padding-top: 50px;
    padding-bottom: 48px;
  }
  .blog-featured {
    grid-template-columns: 1fr;
  }
  .blog-featured-thumb {
    aspect-ratio: 16/7;
  }
  .blog-featured-body {
    padding: 28px 28px 32px;
  }
  .blog-featured-title {
    font-size: 22px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .blog-grid--3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .blog-grid-section {
    padding-bottom: 56px;
  }

  /* Article */
  .article-body,
  .article-hero-img,
  .article-nav-wrap,
  .article-related {
    padding-left: 20px;
    padding-right: 20px;
  }
  .article-title {
    font-size: 32px;
  }
  .article-content {
    font-size: 15px;
  }
}

/* Blog — Mobile ≤768px */
@media (max-width: 768px) {
  /* Hero */
  .blog-hero {
    min-height: 240px;
    align-items: flex-end;
  }
  .blog-hero-inner {
    padding-top: 32px;
    padding-bottom: 36px;
  }
  .blog-hero-label {
    font-size: 11px;
  }
  .blog-hero-title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .blog-hero-sub {
    font-size: 14px;
    line-height: 1.55;
  }

  /* Featured post */
  .blog-featured-wrap {
    padding-top: 28px;
    padding-bottom: 24px;
  }
  .blog-featured {
    border-radius: 12px;
  }
  .blog-featured-thumb {
    aspect-ratio: 16/9;
  }
  .blog-featured-body {
    padding: 20px 18px 24px;
    gap: 10px;
  }
  .blog-featured-title {
    font-size: 18px;
    line-height: 1.3;
  }
  .blog-featured-excerpt {
    font-size: 14px;
    line-height: 1.6;
  }
  .blog-featured-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
  }

  /* Grid */
  .blog-grid-section {
    padding-bottom: 40px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-grid--3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-card {
    border-radius: 10px;
  }
  .blog-card-body {
    padding: 16px 16px 18px;
    gap: 6px;
  }
  .blog-card-title {
    font-size: 15px;
  }
  .blog-card-excerpt {
    font-size: 13px;
  }

  /* Pagination */
  .blog-pagination {
    gap: 6px;
    margin-top: 32px;
  }
  .blog-pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }

  /* Article single */
  .article-header {
    padding: 24px 0 20px;
  }
  .article-header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .article-title {
    font-size: 24px;
    line-height: 1.22;
    margin: 10px 0 14px;
  }
  .article-meta {
    font-size: 13px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .article-breadcrumb {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .article-hero-img {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .article-hero-photo {
    border-radius: 0;
  }
  .article-body {
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .article-content {
    font-size: 15px;
    line-height: 1.75;
    text-align: left;
  }
  .article-content h2 {
    font-size: 20px;
    margin: 28px 0 12px;
  }
  .article-content h3 {
    font-size: 17px;
    margin: 22px 0 10px;
  }
  .article-content .alignright,
  .article-content .alignleft,
  .article-content .wp-caption.alignright,
  .article-content .wp-caption.alignleft {
    float: none;
    max-width: 100%;
    margin: 16px 0;
  }
  .article-content .wp-caption {
    max-width: 100%;
  }
  .article-tags {
    margin-top: 24px;
    padding-top: 20px;
  }
  .article-nav-wrap {
    padding-bottom: 40px;
  }
  .article-nav {
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
  }
  .article-nav-item {
    max-width: 100%;
  }
  .article-nav-next {
    align-items: flex-start;
  }
  .article-related {
    padding-bottom: 48px;
  }
  .article-related-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* BFM diagonal layout */
  .bfm-block {
    padding: 28px 0;
  }
}

/* Blog — Small mobile ≤480px */
@media (max-width: 480px) {
  .blog-hero {
    min-height: 200px;
  }
  .blog-hero-inner {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .blog-hero-title {
    font-size: 22px;
  }
  .blog-hero-sub {
    display: none;
  }
  .blog-featured-thumb {
    aspect-ratio: 4/3;
  }
  .blog-featured-title {
    font-size: 16px;
  }
  .blog-card-body {
    padding: 14px 14px 16px;
  }
  .blog-card-title {
    font-size: 14px;
  }
  .article-title {
    font-size: 20px;
  }
  .article-content {
    font-size: 14px;
  }
  .article-content h2 {
    font-size: 18px;
  }
}

/* ============================================================
   BIG FARMER MEETING — DIAGONAL IMAGE ARTICLE LAYOUT
   ============================================================ */

/* Each bfm-block is a two-column row: text + image side by side */
.bfm-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bfm-block {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #f0f0f0;
}

.bfm-block:last-child {
  border-bottom: none;
}

/* Text right, image right → text col first */
.bfm-block--right {
  grid-template-columns: 1fr 380px;
}

/* Image left, text right */
.bfm-block--left {
  grid-template-columns: 380px 1fr;
}

/* The text side */
.bfm-block-text {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.bfm-block-text p {
  margin-bottom: 18px;
}

.bfm-block-text p:last-child {
  margin-bottom: 0;
}

/* The image side */
.bfm-block-img {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bfm-block-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

/* Diagonal offset — each block shifts image slightly in/out */
.bfm-block--right .bfm-block-img {
  transform: translateY(24px);
}

.bfm-block--left .bfm-block-img {
  transform: translateY(-24px);
}

/* ── Placeholders ── */
.bfm-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f0f2ee;
  border: 2px dashed #c8d4be;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bfm-placeholder--hero {
  aspect-ratio: 16/7;
  border-radius: 12px;
}

.bfm-placeholder--sm {
  aspect-ratio: 16/9;
  margin-top: 20px;
  border-radius: 8px;
}

.bfm-placeholder-label {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #90a080;
  letter-spacing: 0.04em;
}

/* Hero image */
.bfm-placeholder--hero + .article-photo-credit,
.article-hero-photo + .article-photo-credit {
  text-align: center;
}

/* Inline small image inside text block */
.bfm-inline-img {
  margin-top: 20px;
}

.bfm-inline-img img {
  width: 100%;
  border-radius: 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bfm-block--right,
  .bfm-block--left {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* On mobile, always put image below text */
  .bfm-block--left {
    direction: ltr;
  }

  .bfm-block--left .bfm-block-img {
    order: 2;
  }

  .bfm-block--left .bfm-block-text {
    order: 1;
  }

  /* Remove diagonal offset on mobile */
  .bfm-block--right .bfm-block-img,
  .bfm-block--left .bfm-block-img {
    transform: none;
  }

  .bfm-block {
    padding: 32px 0;
  }
}

/* =============================================
   TESTIMONIAL PAGE
   ============================================= */

.testimonial-page-header {
  padding: 60px 0 30px;
  text-align: center;
}

.testimonial-page-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}

.testimonial-page-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto;
}

.testimonial-page-section {
  padding: 20px 0 80px;
}

.testimonial-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 60px 0;
}

@media (max-width: 1024px) {
  .testimonial-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-page-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-page-section {
    padding: 20px 0 50px;
  }
}

/* =============================================
   GALLERY PAGE
   ============================================= */

.gallery-header {
  padding: 40px 0 20px;
  text-align: center;
}

.gallery-page-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
}

.gallery-section {
  padding: 20px 0 80px;
}

@media (max-width: 768px) {
  .gallery-header {
    padding: 28px 0 14px;
  }
  .gallery-section {
    padding: 30px 0 50px;
  }
}

@media (max-width: 480px) {
  .gallery-header {
    padding: 20px 0 10px;
  }
  .gallery-section {
    padding: 20px 0 40px;
  }
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: grid;
  grid-template-rows: repeat(2, 200px);
  grid-auto-flow: column;
  grid-auto-columns: 200px;
  gap: 12px;
  width: max-content;
  animation: gallery-scroll 30s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes gallery-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .gallery-track {
    grid-template-rows: repeat(2, 150px);
    grid-auto-columns: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-track {
    grid-template-rows: repeat(2, 120px);
    grid-auto-columns: 120px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f0f0f0;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
}

.gallery-item-link {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-caption {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.gallery-item {
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.gallery-empty {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1rem;
  padding: 60px 0;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  color: #fff;
  font-size: 14px;
  margin-top: 12px;
  opacity: 0.85;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 48px;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 13px;
  opacity: 0.7;
  z-index: 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-rows: repeat(3, 160px);
    grid-auto-columns: 160px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-rows: repeat(3, 130px);
    grid-auto-columns: 130px;
  }
}

/* ═══════════════════════════════════════════════
   HAPPENINGS PAGE
═══════════════════════════════════════════════ */

.hap-filter-bar {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.hap-filter-bar .custom-container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.hap-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}
.hap-filter-checks { display: flex; gap: 10px; flex-wrap: wrap; }
.hap-filter-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    user-select: none;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid #ccc;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.hap-filter-item input[type="checkbox"] { display: none; }
.hap-filter-check-box {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    border: 2px solid #aaa;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, background 0.2s;
}
.hap-filter-item.is-checked {
    border-color: #2d8a2d;
    background: #e8f5e9;
    color: #1a5c1a;
}
.hap-filter-item.is-checked .hap-filter-check-box {
    border-color: #2d8a2d;
    background: #2d8a2d;
}
.hap-filter-item.is-checked .hap-filter-check-box::after {
    content: '';
    position: absolute;
    left: 2px;
    top: -1px;
    width: 4px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.happenings-section[data-hap-section].is-hidden { display: none; }
@media (max-width: 600px) {
    .hap-filter-item { font-size: 12px; padding: 5px 10px; }
}

.happenings-hero {
  padding: 60px 0 0px;
  text-align: center;
}

.happenings-title {
  font-family: Inter;
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #005737;
  margin: 0 0 14px;
  line-height: 1.1;
}

.happenings-subtitle {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.65;
}

.happenings-section {
  padding: 20px 0;
}

.happenings-section-heading {
  font-family: Inter;
  font-weight: 800;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  margin: 0 0 21px;
  color: #005737;
}

/* ── Carousel layout ── */
.happenings-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hap-viewport {
  overflow: hidden;
  width: 100%;
  flex: 1 1 0;
  padding:10px;
}

.hap-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hap-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ── Cards ── */
.hap-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 5px 1px #00000040;
  display: flex;
  flex-direction: column;
}

.hap-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.hap-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.hap-card:hover .hap-card-img img {
  transform: scale(1.04);
}

.hap-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hap-card-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin: 0 0 8px;
}

.hap-card-excerpt {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  margin: 0 0 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hap-card-btn {
  align-self: flex-start;
  padding: 8px 20px;
  border-radius: 10px;
  font-family: Inter;
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  background-color: #005737;
  color: #fff;
}

/* ── Carousel buttons ── */
.hap-carousel-btn {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #2d8a2d;
  background: #fff;
  color: #2d8a2d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  z-index: 2;
  padding: 0;
  line-height: 1;
}

.hap-carousel-btn:hover {
  background: #2d8a2d;
  color: #fff;
}

.hap-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.hap-carousel-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  pointer-events: none;
}

/* ── Dots ── */
.hap-dots-wrap {
  text-align: center;
  margin-top: 20px;
}

.hap-dots {
  display: inline-flex;
  gap: 8px;
}

.hap-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8e6c9;
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}

.hap-dot.active {
  background: #2d8a2d;
  transform: scale(1.3);
}

/* ── Testimonials ── */

.happenings-testimonials-section .hap-reviews-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hap-review-card {
  flex: 0 0 calc((100% - 24px) / 2);
  background: #f5faed;
  border-radius: 14px;
  border: 1px solid #005737;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: box-shadow 0.2s;
}

.hap-review-card.is-video:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.hap-review-badge {
  display: inline-block;
  background: #1a5c1a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  width: fit-content;
}

.hap-review-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.35;
}

.hap-review-body {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.hap-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

.hap-review-author {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.hap-review-yt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hap-review-yt-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* ── Gallery ── */
.hap-gallery-heading {
  color: #005737;
  text-align: center;
  margin-bottom: 24px;
}

.happenings-gallery-section .gallery-viewport {
  margin-top: 0;
}

.happenings-gallery-section .gallery-track {
  grid-template-rows: repeat(2, 200px);
  grid-auto-columns: 260px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hap-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .happenings-title {
    font-size: 38px;
  }
  .happenings-section-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hap-card,
  .hap-review-card {
    flex: 0 0 100%;
  }
  .happenings-carousel-outer {
    gap: 4px;
  }
  .hap-carousel-btn {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
  }
  .happenings-title {
    font-size: 30px;
  }
  .happenings-hero {
    padding: 52px 0 40px;
  }
  .happenings-gallery-section .gallery-track {
    grid-template-rows: repeat(2, 150px);
    grid-auto-columns: 190px;
  }
}

@media (max-width: 480px) {
  .happenings-section-heading {
    font-size: 22px;
  }
  .happenings-gallery-section .gallery-track {
    grid-template-rows: repeat(2, 120px);
    grid-auto-columns: 150px;
  }
}
