/* ==========================================================================
   TULIP COMPRESSION — Hand-built, responsive stylesheet
   ========================================================================== */

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-height: 100%; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, textarea { font-family: inherit; }
button { cursor: pointer; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* ---------- Design tokens ---------- */
:root {
  /* colors */
  --color-dark: #0b3b00;      /* primary buttons / headings accent */
  --color-primary: #1f5105;   /* eyebrow labels / links */
  --color-accent: #6f9f3a;    /* light green accent (services) */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #44464b;
  --color-border: #cdcaca;
  --color-input-border: #dadbdd;
  --color-grey: #dee2dd;

  /* type */
  --font-heading: "Manrope", Helvetica, Arial, sans-serif;
  --font-nav: "Inter", Helvetica, Arial, sans-serif;
  --font-button: "Space Grotesk", Helvetica, Arial, sans-serif;
  --font-form: "Montserrat", Helvetica, Arial, sans-serif;

  /* layout */
  --max-width: 1320px;
  --section-padding-x: 48px;
  --section-padding-y: 96px;
  --radius-sm: 7px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

body {
  font-family: var(--font-heading);
  color: var(--color-text);
  background: var(--color-white);
}

.section-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

/* ---------- Reusable eyebrow / heading / text ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.eyebrow--center { justify-content: center; }
.eyebrow__line {
  width: 30px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}
.eyebrow__line--light { background: var(--color-accent); }
.eyebrow__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow__label--light { color: var(--color-accent); }

.section-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-black);
  margin-bottom: 16px;
}
.section-heading--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-heading--light { color: var(--color-white); }

.section-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
}
.section-text--center { text-align: center; max-width: 640px; margin: 0 auto; }
.section-text--light { color: var(--color-white); }

.section-header { margin-bottom: 48px; }

.section-cta { display: flex; justify-content: center; margin-top: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-button);
  font-weight: 500;
  font-size: 14px;
  border: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.btn img { width: 17px; height: 16px; }
.btn:hover { opacity: 0.85; }

.btn--primary {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}
.btn--ghost {
  background: rgba(111, 159, 58, 0.4);
  color: var(--color-white);
}
.btn--form {
  font-family: var(--font-form);
  font-size: 16px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  align-self: flex-start;
}

/* ==========================================================================
   HEADER (injected via components.js)
   ========================================================================== */
#header-placeholder {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

.header {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-input-border);
  padding: 16px 0;
  z-index: 100;
  transition: transform 0.3s ease-in-out;
}

.header.header--hidden {
  transform: translateY(-100%);
}
.header__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo img { height: 48px; width: auto; }
.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav a {
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-black);
}
.header__nav a:hover { color: var(--color-primary); }
.header__nav a.is-active {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
}
.header__cta {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 6px;
}
.mobile-cta-wrapper {
  display: none !important;
}
.dropdown-arrow-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  color: inherit;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 var(--section-padding-x);
}
.hero__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-black);
  margin-bottom: 20px;
}
.hero__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-black);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__features {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  width: auto;
}
.hero__feature img { 
  width: 32px; 
  height: 32px; 
  border-radius: 0%; 
  object-fit: contain; 
  flex-shrink: 0;
}

.hero__feature span { 
  font-size: 13px; 
  line-height: 1.3; 
  font-weight: 600;
}

.hero__content {
  padding-top: 48px;
  padding-bottom: 48px;
  z-index: 2;
}

/* .hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 55vw;
  height: 100%;
  min-height: 600px;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  /* Exact multi-point polygon shape matching your reference image */
  /* clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 32%);
} */

/* .hero__badge {
  position: absolute;
  right: 48px;
  bottom: 32px;
  z-index: 3;
  max-width: 260px;
  background: rgba(11, 59, 0, 0.9);
  color: var(--color-white);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
} */

.hero__media { 
  position: relative;
  top: 0;
  right: 0;
  /* width: 100%;
  height: 100%;
  min-height: 550px; */
}

.hero__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 844 / 603;
  object-fit: cover;
  border-radius: 0;
  clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%, 32%);
}

.hero__badge {
  position: absolute;
  right: 24px;
  bottom: 20px;
  max-width: 230px;
  max-height: 90px;
  background: rgba(11, 59, 0, 0.9);
  color: var(--color-white);
  border-radius: 8px;
  padding: 9px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__badge-number {
  font-size: 20px;
  font-weight: 800;
}
.hero__badge-label {
  font-size: 15px;
  line-height: 1.4;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: var(--section-padding-y) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 64px;
  align-items: center;
}
.about__content .btn { margin-top: 24px; }
.about__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.about__gallery-item {
  position: relative;
  aspect-ratio: 200 / 280;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about__gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.about__gallery-item figcaption {
  position: absolute;
  left: 60px;
  right: 0px;
  bottom: 12px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* ==========================================================================
   SOLUTIONS + PRODUCTS (shared card grid)
   ========================================================================== */
.solutions, .products { padding: var(--section-padding-y) 0; }
.products { background: #fafafa; }

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

/* Solutions cards */
.card {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card__image {
  width: 100px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 8px;
}
.card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.card__text {
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-text);
  flex-grow: 1;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--color-dark);
  margin-top: 4px;
}
.card__link img { width: 19px; height: 19px; }

/* Product cards (image on the left, split layout) */
.card--product {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 24px;
}
.card--product .card__image-frame {
  flex-shrink: 0;
  width: 140px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card--product .card__image-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.card--product .card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats { background: var(--color-dark); padding: 40px 0; }
.stats__list {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  position: relative;
}
.stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
}
.stats__item img { width: 56px; height: 56px; flex-shrink: 0; }
.stats__item div { display: flex; flex-direction: column; gap: 4px; }
.stats__number {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
}
.stats__label {
  font-size: 16px;
  color: var(--color-white);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  position: relative;
  padding: var(--section-padding-y) 0;
  overflow: hidden;
  color: var(--color-white);
}
.services__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.services__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.92) 45%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.services__inner { position: relative; z-index: 2; }
.services__content { max-width: 480px; margin-bottom: 40px; }
.services__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin: 0 0 40px;
  max-width: 50%;
}
.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-bottom: 48px;
  max-width: 50%;
}
.service { display: flex; gap: 16px; align-items: flex-start; }
.service__icon { width: 60px; height: 60px; flex-shrink: 0; }
.service__icon--frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(110, 158, 57, 0.4);
  border-radius: 50%;
}
.service__icon--frame img { width: 40px; height: 40px; }
.service__title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.service__text { font-size: 14px; line-height: 1.35; color: rgba(255,255,255,0.85); }
.services .section-cta { margin-top: 0; justify-content: flex-start; }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

:root {
    --color-bg-light: #f8f9fa; /* Light background matching the design */
    --color-text-main: #111111;
    --color-text-muted: #555555;
    --color-input-border: #dcdcdc;
    --color-primary-dark: #072e13; /* Deep green for brand/buttons */
    --radius-lg: 12px;
    --radius-sm: 6px;
    --section-padding-y: 80px;
}

.contact {
    position: relative;
    padding: var(--section-padding-y) 0;
    background: var(--color-bg-light);
    overflow: hidden;
}

.contact__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.03; /* Subdued background pattern if applicable */
    z-index: 0;
}

.contact__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

/* Left Info Column */
.contact__heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-main);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact__text {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact__detail img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.contact__detail h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Right Form Column */
.contact__form {
    background: transparent; /* Seamless blend with light section background */
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form-row {
    display: flex;
    gap: 16px;
}

.field {
    flex: 1;
}

.field input, 
.field textarea {
    width: 100%;
    border: 1px solid var(--color-input-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text-main);
    background: #ffffff;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus, 
.field textarea:focus {
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 0 3px rgba(7, 46, 19, 0.08);
}

.field input::placeholder, 
.field textarea::placeholder {
    color: #888888;
}

/* Submit Button */
.btn--form {
    align-self: flex-start;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn--form:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__heading {
        font-size: 32px;
    }
}
/* ==========================================================================
   FOOTER (injected via components.js)
   ========================================================================== */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 64px 0 32px;
}
.footer__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  grid-template-areas:
    "logo important products"
    "desc important products"
    "line line line"
    "copyright copyright copyright";
  row-gap: 20px;
  column-gap: 40px;
}
.footer__logo { grid-area: logo; }
.footer__logo img { height: 48px; width: auto; }
.footer__desc { grid-area: desc; max-width: 440px; font-size: 15px; line-height: 1.6; color: rgba(222,226,221,0.7); }
.footer__menu h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.footer__menu:nth-of-type(1) { grid-area: important; }
.footer__menu:nth-of-type(2) { grid-area: products; }
.footer__menu ul { display: flex; flex-direction: column; gap: 12px; }
.footer__menu a { font-size: 14px; color: rgba(222,226,221,0.7); }
.footer__menu a:hover { color: var(--color-white); }
.footer__divider { grid-area: line; border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 16px 0; }
.footer__copyright {
  grid-area: copyright;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(222,226,221,0.7);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --section-padding-x: 32px; --section-padding-y: 72px; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 var(--section-padding-x);
  }
  .hero__media {
    width: 100%;
    min-height: 350px;
    height: auto;
  }
  .hero__heading { font-size: 34px; }

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

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

  .stats__list { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .stats__item:nth-child(2)::after { display: none; }

  .services__divider { max-width: 100%; }
  .services__list { grid-template-columns: 1fr; max-width: 100%; }

  .contact__inner { grid-template-columns: 1fr; }
  .contact__form-row { flex-direction: column; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "desc desc"
      "important products"
      "line line"
      "copyright copyright";
  }
}

@media (max-width: 1023px) {
  :root { --section-padding-x: 20px; --section-padding-y: 56px; }
  
  /* Hide header bar CTA on mobile so logo isn't squeezed */
  .header__cta {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile menu container: background #D9D9D9 and fall-from-top animation */
  .header__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #D9D9D9;
    padding: 24px 24px 32px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    
    /* Animation: slide down from top on expansion, reverse on collapse */
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.35s ease;
    z-index: 999;
  }

  .header.nav-open .header__nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__nav > a {
    font-size: 18px;
    font-weight: 600;
    color: #000000 !important;
    padding: 8px 0;
  }

  .hero { padding-top: 40px; }
  .hero__heading { font-size: 28px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }

  .hero__media {
    position: relative;
    width: 100%;
  }
  .hero__image {
    width: 100%;
    aspect-ratio: 844 / 603;
    object-fit: cover;
  }

  /* Pulls the green badge up so it overlaps the bottom-right of the image cleanly */
  .hero__badge {
    position: relative;
    float: right;
    margin-top: -80px;
    margin-right: 2px;
    margin-bottom: 20px;
    max-width: 180px;
    z-index: 10;
  }
  .hero__features {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero__feature {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
  }

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

  .card-grid { grid-template-columns: 1fr; }
  .card--product { flex-direction: column; align-items: flex-start; }

  .stats__list { grid-template-columns: 1fr; gap: 24px; }
  .stats__item::after { display: none; }

  .contact__form { padding: 24px; }

  .footer__copyright { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .hero__heading { font-size: 24px; }
  .hero__feature { width: 100%; }
  .about__gallery { grid-template-columns: repeat(2, 1fr); }
  .section-heading { font-size: 26px; }
  .contact__heading { font-size: 28px; }
}

/* ==========================================================================
   HEADER NAV HOVER DROPDOWN
   ========================================================================== */

.nav-item-dropdown {
  position: relative;
  display: inline-block;
}

.nav-item-dropdown .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 8px 0;
  text-decoration: none !important;
}

.nav-item-dropdown .arrow-down {
  font-size: 14px;
  display: inline-block;
  text-decoration: none !important;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

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

.nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-white);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(11, 59, 0, 0.08);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.nav-item-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background-color: var(--color-white);
  border-left: 1px solid rgba(11, 59, 0, 0.08);
  border-top: 1px solid rgba(11, 59, 0, 0.08);
}

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

.nav-item-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-item-dropdown .dropdown-trigger.is-active {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none !important;
}

.nav-item-dropdown .dropdown-trigger.is-active .trigger-text {
  text-decoration: underline;
}

.nav-item-dropdown .dropdown-menu a.is-active {
  color: var(--color-primary) !important;
  font-weight: 700;
  background-color: rgba(11, 59, 0, 0.05);
}

/* Mobile Dropdown & CTA Styles */
@media (max-width: 1023px) {
  .nav-item-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .nav-item-dropdown .dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 0;
  }

  .nav-item-dropdown .trigger-text {
    font-size: 18px;
    font-weight: 600;
    color: #000000 !important;
  }

  /* Bigger clickable dropdown arrow icon button */
  .nav-item-dropdown .dropdown-arrow-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .nav-item-dropdown .dropdown-arrow-btn:active {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .nav-item-dropdown .arrow-down {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    transition: transform 0.3s ease;
  }

  /* Submenu initially collapsed on mobile */
  .nav-item-dropdown .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    
    /* Smooth expand / collapse transition */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.35s ease, visibility 0.35s ease;
    margin-top: 0;
  }

  .nav-item-dropdown .dropdown-menu::before {
    display: none;
  }

  .nav-item-dropdown .dropdown-menu a {
    padding: 6px 0;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a !important;
  }

  /* Active/open dropdown state */
  .nav-item-dropdown.is-open .dropdown-arrow-btn .arrow-down {
    transform: rotate(180deg);
  }

  .nav-item-dropdown.is-open .dropdown-menu {
    max-height: 320px;
    opacity: 1;
    visibility: visible;
    margin-top: 4px;
    margin-bottom: 8px;
  }

  /* Shift Get In Touch CTA to lowest section of mobile menu */
  .mobile-cta-wrapper {
    display: flex !important;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    width: 100%;
  }

  .mobile__cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    background-color: #0b3b00;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
  }
}