/* ═══════════════════════════════════════════
   ABP INDUSTRIES — GLOBAL STYLESHEET
   Palette: deep forest green + harvest gold + white
═══════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");

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

:root {
  --green-dark: #1a3318;
  --green-mid: #2d5a27;
  --green-act: #7a9f04;
  --green-lite: #eaf2e7;
  --gold: #8a6914;
  --gold-lite: #f5ecd4;
  --white: #ffffff;
  --off-white: #f7f9f5;
  --border: #dde5d8;
  --text-main: #111c0f;
  --text-body: #344530;
  --text-muted: #5e7058;
  --orange: rgb(208, 100, 6);
  --shadow-sm: 0 2px 8px rgba(26, 51, 24, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 51, 24, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 51, 24, 0.16);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
header {
  position: fixed; /* stays at top while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 2rem;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}

/* Scrolled state — dark background appears */
header.scrolled {
  background: rgba(26, 51, 24, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* Desktop nav pills */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: #7a9f04;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: relative;
  left: 70%;
  background: transparent;
}

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

/* ══════════════════════════════════════════
   MOBILE MENU OVERLAY
   — lives outside <header> in the HTML so
     position:fixed covers the full viewport
══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 70%;
  max-width: 320px;

  background: #1a3318;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  z-index: 9999;

  /* Start completely off screen (left side) */
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

/* Close (×) button */
.nav-close {
  position: absolute;
  top: 28px;
  left: 40px;

  height: auto;
  font-size: 2.5rem;
  object-fit: cover;

  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-close:hover {
  color: #7a9f04;
}

/* Mobile link list */
.mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-links li {
  margin: 1.4rem;
}

.mobile-links li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  font-weight: 100;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
  text-align: right;
}

.mobile-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #7a9f04;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.mobile-links li a:hover {
  color: #fff;
}
.mobile-links li a:hover::after {
  transform: scaleX(1);
}

/* Lock body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

.hero img {
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;

  filter: brightness(30%);
  background-position: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}

.parent {
  position: relative;
}

/* Shared styles for both text blocks */
.text-block {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  margin-top: 18.75rem; /* 300px */
  margin-left: 18.75rem; /* 300px */
}

.text-block h1 {
  font-size: 6.25rem; /* 100px */
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 1.25rem; /* 20px */
}

.text-block p {
  font-weight: 100;
  line-height: 1.6;
  max-width: 40%;
}

.text-block2 {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  margin-top: 18.75rem; /* 300px */
  margin-left: 50%;
}

.text-block2 h1 {
  font-size: 6.25rem; /* 100px */
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 1.25rem; /* 20px */
}

.text-block2 p {
  font-weight: 100;
  line-height: 1.6;
  max-width: 50%;
}

.arrow {
  color: white;
}

.line {
  width: 80%;
  border: 0.063rem solid white; /* 1px */
  position: absolute;
  bottom: 4.375rem; /* 70px */
  left: 10.938rem; /* 175px */
}

.scroll {
  position: absolute;
  bottom: 0.625rem; /* 10px */
  left: 10.938rem; /* 175px */
}

.scroll a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.875rem; /* 14px */
}

.scroll a:hover {
  color: #455a00;
}

.products {
  position: absolute;
  bottom: 0.625rem; /* 10px */
  right: 12.5rem; /* 200px */
}

.products a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.875rem; /* 14px */
}

/* General link styling */
.hvr-underline-from-left {
  position: relative;
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  padding-bottom: 5px;
  transition: color 0.2s ease;
}

/* Underline effect */
.hvr-underline-from-left::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  transition: width 0.2s ease-in-out;
}

/* On hover - underline grows */
.hvr-underline-from-left:hover::after {
  width: 100%;
}

/* Optional text color change on hover */
.hvr-underline-from-left:hover {
  color: #7a9f04;
}

/* Arrow animation */
.arrow {
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.hvr-underline-from-left:hover .arrow {
  transform: translateX(5px);
}

lottie-player {
  background-color: rgb(255, 255, 255);
}

.about {
  gap: 43.75rem; /* 700px to rem */
  margin-top: 3.125rem; /* 50px to rem */
}

.about h1 {
  font-size: 3.125rem; /* 50px to rem */
  color: #455a00;
  margin-left: 6.25rem; /* 100px to rem */
}

.about p {
  margin-top: -3rem;
  max-width: 30%;
  text-align: justify;
  margin-left: 73.5rem;
}

.tag {
  /* margin-left: 73.75rem; 1180px to rem (commented out) */
  margin-top: 4.375rem; /* 70px to rem */
  margin-bottom: 1.875rem; /* 30px to rem */
  display: flex;
  justify-content: flex-end;
  margin-right: 10rem; /* 135px to rem */
}

.tag a {
  text-decoration: none;
  color: #000000;
}

.iconn {
  margin-left: 30rem; /* 500px to rem */
}

.button:hover {
  color: #7a9f04;
}

.why {
  margin-top: 12.5rem; /* 200px to rem */
}

.why h1 {
  font-size: 3.125rem; /* 50px to rem */
  color: #455a00;
  margin-left: 6.25rem; /* 100px to rem */
  margin-top: 5rem; /* 80px to rem */
}

.btn.btn-primary {
  margin-top: -7.5rem; /* -120px to rem */
  background-color: transparent;
  color: #000000;
  border: none; /* Ensures no border */
  outline: none; /* Removes focus outline */
  box-shadow: none; /* Removes default button shadow */
  display: flex;
  justify-content: flex-end;
  margin-right: 8.4375rem; /* 135px to rem */
}

.choose {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-right: 135px; /* Consider adjusting this based on responsiveness */
  margin-top: -100px;
}

.choose-item {
  padding: 15px 0;
}

.choose-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none; /* Removed any borders */
  font-size: 22px;
  /* font-family: "Raleway-Thin", serif; */
  padding: 15px;
  text-align: left;
  outline: none;
  font-weight: 100;
}
.choose-header {
  color: black;
}

.choose-header:hover {
  color: #7a9f04;
}

.choose-header .icon {
  color: black;
}

.choose-header:hover .icon {
  color: #7a9f04;
}

.choose-header.active {
  color: #7a9f04;
}

.choose-header.active .icon {
  color: #7a9f04;
}

.choose-content {
  color: black;
  display: none;
}

.choose-content.active {
  display: block;
  color: #7a9f04;
}

.icon {
  font-size: 20px;
}

.choose-content {
  display: none;
  padding: 0 15px 15px;
  font-size: 16px;
  line-height: 1.5;
}

.choose-content.show {
  display: block;
}
.choose-text {
  display: block;
  overflow: hidden;
}

.choose-text div {
  display: block;
  overflow: hidden;
}

.product h1 {
  text-align: center;
  font-weight: 100;
  color: #000;
}

.backy h1 {
  padding-top: 50px;
}

.product {
  margin-top: 150px;
}
.backy {
  width: 95%;
  height: 80%;
  background-color: rgb(230, 230, 230);
  margin: 0 auto;
  display: block;
}
.animation {
  transform: scale(1);
  transform-origin: center;
  margin-left: 400px;
  margin-top: 100px;
}

.featured {
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.box {
  position: relative;
  flex: 1;
}

.box img {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  object-fit: contain;
}

.content {
  flex: 1;
  margin-top: 50px;
}

.content h6 {
  font-size: 12px;
  color: rgb(208, 100, 6);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 32px;
  margin: 0 0 20px;
  color: #000;
  font-weight: 700;
}

.content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  max-width: 60%;
}

.featured2 {
  display: flex;
  align-items: center;
  margin-top: 100px;
}

.box2 {
  position: relative;
  flex: 1;
}

.box2 img {
  width: 100%;
  height: 300px;
  border-radius: 5px;
  object-fit: contain;
}

.content2 {
  flex: 1;
  margin-top: 50px;
}
.content2 h6 {
  font-size: 12px;
  color: rgb(208, 100, 6);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.content2 h2 {
  font-size: 32px;
  margin: 0 0 20px;
  color: #000;
  font-weight: 700;
}

.content2 p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
  max-width: 60%;
}

button {
  padding: 12px 24px;
  background-color: #7a9f04;
  border: none;
  border-radius: 4px;
  width: 300px;
}

button a {
  color: #fff;
  text-decoration: none;
  font-weight: 100;
}

/* Bounce To Top */
.hvr-bounce-to-top {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.hvr-bounce-to-top:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #455a00;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-top:hover,
.hvr-bounce-to-top:focus,
.hvr-bounce-to-top:active {
  color: white;
}
.hvr-bounce-to-top:hover:before,
.hvr-bounce-to-top:focus:before,
.hvr-bounce-to-top:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.more {
  margin-top: 100px;
  margin-bottom: 100px;
  padding-bottom: 50px;
}

.more a {
  margin-left: 500px;
  color: #000; /* Default text color */
  text-decoration: none; /* Remove default underline */
  transition: color 0.2s ease;
}

.more a:hover {
  color: #455a00; /* Hover color */
  text-decoration: underline; /* Add underline on hover */
}

.arroww {
  margin-left: 580px;
  margin-top: -20px;
  background-color: rgb(230, 230, 230);
}
/* .more {
  position: relative;
  display: inline-block;
  overflow: hidden;
} */

#expandOverlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff; /* Match the background of your next page */
  z-index: 9999;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.8s ease-in-out;
}

#expandOverlay.active {
  width: 300vw;
  height: 300vw;
  border-radius: 0;
  top: 0;
  left: 0;
  transform: none;
}

/*  */

@keyframes expand {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.abp-stats {
  background-color: #121212;
  color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.abp-stats .context {
  max-width: 800px;
  margin: 0 auto;
}

.abp-stats h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.abp-stats .intro {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #d1d1d1;
}

.abp-stats .subtext {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #a1a1a1;
}

.abp-stats .stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.abp-stats .stats div {
  text-align: center;
}

.abp-stats .stats h3 {
  font-size: 2.5rem;
  color: #7a9f04;
  margin-bottom: 0.5rem;
}

.abp-stats .stats p {
  font-size: 1rem;
  color: #d1d1d1;
}

/* ═══════════════════════════════════════════
   PAGE HERO — shared hero banner
═══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(35%);
  transition: transform 8s ease;
}

.page-hero:hover img {
  transform: scale(1.04);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 4rem 4rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.page-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-act);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.page-hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1.5px;
  background: var(--green-act);
}

.page-hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
}

/* ═══════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════ */
.section-pad {
  padding: 6rem 2rem;
}
.section-pad-sm {
  padding: 4rem 2rem;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-act);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--green-act);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--green-act);
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 600px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-act);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}

.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 159, 4, 0.3);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--green-dark);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid var(--green-dark);
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  background: var(--green-dark);
  color: #fff;
}

/* ═══════════════════════════════════════════
   FOOTER (matching redesigned footer)
═══════════════════════════════════════════ */
.footer-banner {
  background: var(--green-dark);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.03em;
}

.banner-item i {
  color: #7ec86e;
  font-size: 0.82rem;
}
.banner-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.wheat-strip {
  background: var(--white);
  border-top: 3px solid var(--green-dark);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 1rem;
  height: 54px;
  overflow: hidden;
  gap: 1px;
}

.stalk {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: bottom center;
  opacity: 0;
  animation:
    growUp 0.65s ease forwards,
    gentleSway 5s ease-in-out infinite;
  flex: 1;
}
.stalk:nth-child(odd) {
  animation-delay: 0.04s, 0.2s;
}
.stalk:nth-child(even) {
  animation-delay: 0.14s, 0.85s;
}
.stalk:nth-child(3n) {
  animation-delay: 0.22s, 1.4s;
}
.stalk:nth-child(4n) {
  animation-delay: 0.09s, 0.55s;
}
.stalk:nth-child(5n) {
  animation-delay: 0.28s, 1.1s;
}

@keyframes growUp {
  from {
    opacity: 0;
    transform: scaleY(0.1);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes gentleSway {
  0%,
  100% {
    transform: rotate(-2.5deg);
  }
  50% {
    transform: rotate(2.5deg);
  }
}

footer {
  background: var(--white);
  color: var(--text-main);
  font-family: "DM Sans", sans-serif;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 3.5rem;
}

.footer-brand {
  opacity: 0;
  animation: fadeUp 0.65s 0.18s ease forwards;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.brand-row img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--green-mid);
}
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
}
.brand-sub {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.brand-tagline {
  font-size: 0.845rem;
  line-height: 1.72;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  max-width: 240px;
  border-left: 3px solid var(--green-act);
  padding-left: 0.85rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: var(--text-body);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.22s;
}
.contact-item:hover {
  color: var(--green-dark);
}
.ci-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--green-lite);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--green-mid);
  flex-shrink: 0;
  transition:
    background 0.22s,
    color 0.22s;
}
.contact-item:hover .ci-icon {
  background: var(--green-mid);
  color: #fff;
}

.footer-col {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}
.footer-col:nth-child(2) {
  animation-delay: 0.32s;
}
.footer-col:nth-child(3) {
  animation-delay: 0.46s;
}
.footer-col:nth-child(4) {
  animation-delay: 0.6s;
}

.col-title {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-dark);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green-dark);
}
.footer-col a {
  display: block;
  font-size: 0.885rem;
  font-weight: 400;
  color: var(--text-body);
  text-decoration: none;
  padding: 0.44rem 0;
  border-bottom: 1px solid var(--border);
  transition:
    color 0.22s,
    padding-left 0.22s;
  cursor: pointer;
}
.footer-col a:last-child {
  border-bottom: none;
}
.footer-col a:hover {
  color: var(--green-act);
  padding-left: 0.45rem;
}

.cert-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cert-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}
.cert-badge i {
  color: var(--green-act);
  font-size: 0.88rem;
}
.cert-divider {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.footer-bottom {
  background: var(--green-dark);
  padding: 1.1rem 2rem;
}
.footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.copyright {
  font-size: 0.775rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.03em;
}
.copyright strong {
  color: #fff;
  font-weight: 600;
}
.location-tag {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.location-tag i {
  color: #7ec86e;
}
.social-icons {
  display: flex;
  gap: 0.5rem;
}
.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  text-decoration: none;
  transition:
    background 0.22s,
    color 0.22s,
    transform 0.22s;
}
.social-icons a:hover {
  background: var(--green-act);
  color: #fff;
  border-color: var(--green-act);
  transform: translateY(-2px);
}

/* MODALS */
.modal-content {
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-family: "DM Sans", sans-serif;
}
.modal-header {
  background: var(--green-dark);
  border-radius: 12px 12px 0 0;
  padding: 1.2rem 1.6rem;
  border-bottom: none;
}
.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.modal-body {
  padding: 1.8rem;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.modal-body p {
  font-size: 0.9rem;
  line-height: 1.76;
  color: #1e2e1c;
  margin-bottom: 1rem;
}
.modal-body p strong {
  color: var(--green-dark);
}
.modal-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
}
.modal-body ul li {
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  margin-bottom: 0.5rem;
  background: #f4f8f2;
  border-left: 3px solid var(--green-act);
  border-radius: 0 6px 6px 0;
  font-size: 0.875rem;
  color: #1a2e18;
  line-height: 1.62;
}
.modal-body ul li strong {
  color: var(--green-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.anim-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.anim-delay-1 {
  animation-delay: 0.1s;
}
.anim-delay-2 {
  animation-delay: 0.2s;
}
.anim-delay-3 {
  animation-delay: 0.35s;
}
.anim-delay-4 {
  animation-delay: 0.5s;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-intro {
  background: var(--green-dark);
  color: #fff;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.about-intro::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(122, 159, 4, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.about-intro-text .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-act);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-intro-text .eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--green-act);
}

.about-intro-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
}

.about-intro-text h1 em {
  color: var(--green-act);
  font-style: italic;
}

.about-intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2rem;
}

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

.about-intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.about-intro-image::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid rgba(122, 159, 4, 0.4);
  border-radius: 14px;
  z-index: 0;
}

.about-intro-image img {
  position: relative;
  z-index: 1;
}

/* Stats bar */
.stats-bar {
  background: var(--green-act);
  padding: 2.5rem 2rem;
}
.stats-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* What defines us */
.define-section {
  padding: 6rem 2rem;
  background: var(--off-white);
}
.define-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.define-img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.define-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 6s ease;
}
.define-img:hover img {
  transform: scale(1.04);
}

.define-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-top: 1.5rem;
}

/* Values */
.values-section {
  padding: 6rem 2rem;
  background: var(--white);
}
.values-grid {
  max-width: 1180px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--green-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-mid);
  margin-bottom: 1.2rem;
}
.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.value-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   PRODUCT PAGE
═══════════════════════════════════════════ */
.products-intro {
  padding: 3rem 2rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.products-intro-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.products-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}
.products-intro p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.product-list {
  padding: 4rem 2rem;
  background: #111810;
}
.product-list-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.product-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.product-card:last-child {
  border-bottom: none;
}

.product-card-image {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  padding: 2rem;
}
.product-card-image img {
  max-height: 280px;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-act);
  border: 1px solid rgba(122, 159, 4, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.product-card-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}
.product-card-body h2 span {
  color: var(--green-act);
}

.product-card-body .product-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.product-card-body p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 2rem;
}

.product-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}
.product-feature::before {
  content: "✓";
  color: var(--green-act);
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.product-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--green-act);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  border: none;
  cursor: pointer;
}
.product-order-btn:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 159, 4, 0.3);
  color: #fff;
}
.product-order-btn i {
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════ */
.contact-section {
  padding: 5rem 2rem;
  background: var(--white);
}
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green-lite);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-mid);
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-text a:hover {
  color: var(--green-act);
}

.contact-hours {
  background: var(--green-dark);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  color: #fff;
}
.contact-hours h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.contact-hours p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.contact-hours strong {
  color: var(--green-act);
}

/* Map */
.map-section {
  background: var(--off-white);
}
.map-section iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
.map-label {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.map-label i {
  color: var(--green-act);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 9999;
}

.mobile-menu.open {
  transform: translateY(0);
}

/* Close Button */
.nav-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.mobile-links {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-links li {
  margin: 20px 0;
}

.mobile-links a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}

/* Prevent scroll when menu open */
body.menu-open {
  overflow: hidden;
}
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Home page hero text */
  .text-block {
    margin-left: 2rem;
    margin-top: 10rem;
  }
  .text-block2 {
    display: none;
  } /* hide second text block on tablet */
  .text-block h1 {
    font-size: 4rem;
  }
  .text-block p {
    max-width: 80%;
  }

  /* About section */
  .about p {
    margin-left: 2rem;
    max-width: 80%;
  }

  /* Choose section */
  .choose {
    margin-right: 0;
    max-width: 100%;
    padding: 0 2rem;
  }

  /* Animation section */
  .animation {
    margin-left: 0;
    padding: 0 1rem;
  }
  .featured,
  .featured2 {
    flex-direction: column;
    margin-top: 2rem;
  }
  .box img,
  .box2 img {
    height: auto;
  }
  .content p,
  .content2 p {
    max-width: 100%;
  }

  /* More link */
  .more a {
    margin-left: 0;
  }
  .arroww {
    margin-left: 0;
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-intro-image img {
    height: 360px;
  }
  .about-intro-image::before {
    display: none;
  }

  .define-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .define-img img {
    height: 360px;
  }

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

  .product-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-card-image {
    height: 280px;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

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

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

  header {
    padding: 0.85rem 1.25rem;
  }

  /* Home hero */
  .hero img {
    height: 65vh;
  }
  .text-block {
    margin-left: 1.25rem;
    margin-top: 7rem;
  }
  .text-block h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
  .text-block p {
    max-width: 90%;
    font-size: 0.85rem;
  }
  .text-block2 h1 {
    display: none;
  }

  .text-block2 p {
    display: none;
  }
  .line {
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    bottom: 3.5rem;
  }
  .scroll {
    left: 1.25rem;
    bottom: 0.5rem;
  }
  .products {
    right: 1.25rem;
    bottom: 0.5rem;
  }

  /* About section */
  .about {
    margin-top: 2rem;
  }
  .about h1 {
    margin-left: 1.25rem;
    font-size: 2rem;
  }
  .about p {
    margin-left: 1.25rem;
    margin-top: 1rem;
    max-width: calc(100% - 2.5rem);
  }
  .tag {
    margin-right: 1.25rem;
    margin-top: 2rem;
  }
  .iconn {
    margin-left: 1rem;
  }

  /* Why choose us */
  .why h1 {
    margin-left: 1.25rem;
    font-size: 2rem;
    margin-top: 2rem;
  }
  .choose {
    max-width: 100%;
    margin-right: 0;
    padding: 0 1.25rem;
    margin-top: 1rem;
  }

  /* Products section */
  .animation {
    margin-left: 0;
    margin-top: 1.5rem;
    padding: 0 1.25rem;
  }
  .featured,
  .featured2 {
    flex-direction: column;
    margin-top: 1.5rem;
  }
  .box img,
  .box2 img {
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }
  .content,
  .content2 {
    margin-top: 1rem;
  }
  .content p,
  .content2 p {
    max-width: 100%;
  }
  button {
    width: 100%;
  }

  .more {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .more a {
    margin-left: 0;
  }
  .arroww {
    margin-left: 0;
    margin-top: 0;
  }
  .more p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.25rem;
  }

  .backy {
    padding-bottom: 1rem;
  }
  .backy h1 {
    padding-top: 2rem;
    font-size: 1.6rem;
  }
  .product {
    margin-top: 3rem;
  }

  /* Stats */
  .abp-stats {
    padding: 3rem 1.25rem;
  }
  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Cert strip */
  .cert-inner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .cert-divider {
    display: none;
  }

  .product-card-image img {
    object-fit: cover;
    zoom: 0.77;
  }

  .arrow {
    display: none;
  }
}

@media (max-width: 560px) {
  header {
    padding: 1rem 1.25rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .product-card-image {
    height: 240px;
  }
  .cert-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cert-divider {
    display: none;
  }
  .text-block2h1 {
    display: none;
  }
  .text-block2 p {
    display: none;
  }

  .arrow {
    display: none;
  }
}

@media (max-width: 420px) {
  .text-block h1 {
    font-size: 2rem;
  }
  .text-block2 h1 {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .text-block2 p {
    display: none;
  }

  .arrow {
    display: none;
  }
}
