/* ============================================================
   EcoGrid Irrigation & Solar Energy — stylesheet
   Brand: green #8DC63F · blue #29ABE2 · yellow #F2A900
   ============================================================ */

:root {
  --green: #8dc63f;
  --green-dark: #4f7e12;
  --green-deep: #2e5210;
  --blue: #29abe2;
  --blue-dark: #1479a3;
  --yellow: #f2a900;
  --ink: #132a18;
  --ink-soft: #26392b;
  --body: #45554a;
  --muted: #66756a;
  --bg: #ffffff;
  --bg-soft: #f3f8ec;
  --bg-tint: #eaf4fb;
  --line: #dfe8d6;
  --line-strong: #c9d8bd;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(19, 42, 24, 0.07);
  --shadow-md: 0 10px 30px rgba(19, 42, 24, 0.10);
  --shadow-lg: 0 24px 60px rgba(19, 42, 24, 0.16);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1160px;
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background:
    radial-gradient(45% 36% at 10% 6%, rgba(141, 198, 63, 0.32), transparent 72%),
    radial-gradient(48% 40% at 90% 16%, rgba(41, 171, 226, 0.30), transparent 72%),
    radial-gradient(44% 36% at 82% 92%, rgba(242, 169, 0, 0.28), transparent 72%),
    radial-gradient(40% 30% at 4% 86%, rgba(41, 171, 226, 0.22), transparent 72%),
    radial-gradient(36% 28% at 50% 48%, rgba(141, 198, 63, 0.16), transparent 72%),
    #f1f7e8;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

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

.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }

/* ---------- section headers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--yellow);
}
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.75rem, 3.6vw, 2.5rem); margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 46px;
}
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.btn--primary {
  background: var(--green);
  color: #132a18;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #9bd94a;
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: #1c3a24; }
.btn svg { flex: none; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: inherit; }
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { color: var(--yellow); flex: none; }
.topbar__divider { opacity: 0.25; }

/* ---------- header / nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__name { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }
.brand__name span { color: var(--green-dark); }
.brand__tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.brand__logo { height: 68px; width: auto; display: block; }
.brand--footer { display: inline-flex; }
.brand__chip {
  display: inline-block;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  line-height: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.brand__chip .brand__logo { height: 84px; }
@media (max-width: 600px) {
  .brand__logo { height: 54px; }
  .brand__chip .brand__logo { height: 68px; }
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 2.5px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after { transform: scaleX(1); }

/* ---------- nav dropdowns ---------- */
.nav__item--drop { position: relative; }
.nav__caret { vertical-align: -1px; transition: transform 0.2s ease; }
.nav__item--drop:hover .nav__caret,
.nav__item--drop:focus-within .nav__caret { transform: rotate(180deg); }
.nav__drop {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 235px; padding: 8px; margin: 0; list-style: none;
  background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-md); z-index: 60;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav__item--drop:hover .nav__drop,
.nav__item--drop:focus-within .nav__drop {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(4px);
}
.nav__drop a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 14px; color: #4b5563 !important;
}
.nav__drop a::after { display: none; }
.nav__drop a:hover { background: #eff7e2; color: var(--green-dark) !important; }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__cta .btn { padding: 12px 22px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { color: var(--ink); }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle .icon-close { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  opacity: 0.85;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(12, 32, 18, 0.93) 0%,
    rgba(16, 42, 24, 0.78) 45%,
    rgba(18, 48, 26, 0.30) 100%
  );
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 120px;
  max-width: 1160px;
}
.hero__content { max-width: 640px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cfeab0;
  background: rgba(141, 198, 63, 0.16);
  border: 1px solid rgba(141, 198, 63, 0.45);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5.4vw, 3.6rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero p.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__chip {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.card--photo .card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card--photo .card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card--photo:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px 24px 26px; }
.card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--muted); }
.card__list { margin-top: 14px; display: grid; gap: 8px; }
.card__list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.card__list svg { color: var(--green-dark); flex: none; margin-top: 3px; }
.card--icon-only { padding-top: 8px; }

/* ---------- why us ---------- */
.why { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.why__media { position: relative; }
.why__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.why__badge {
  position: absolute;
  right: -18px; bottom: 28px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why__badge-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.why__badge strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.2; }
.why__badge span { font-size: 12px; color: var(--muted); font-weight: 600; }
.why__list { margin-top: 30px; display: grid; gap: 22px; }
.why__item { display: flex; gap: 16px; }
.why__item-icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__item h3 { font-size: 1.05rem; margin-bottom: 4px; }
.why__item p { font-size: 14.5px; color: var(--muted); }

/* ---------- process ---------- */
#process {
  background:
    radial-gradient(50% 60% at 85% 10%, rgba(242, 169, 0, 0.20), transparent 72%),
    radial-gradient(40% 50% at 5% 90%, rgba(141, 198, 63, 0.18), transparent 72%),
    #f4f9ec;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.07); }
.g-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 13px;
  background: linear-gradient(to top, rgba(12, 26, 16, 0.82), transparent);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
}

/* ---------- contact ---------- */
.card[id], .services-grid article[id] { scroll-margin-top: 100px; }
.contact { display: grid; grid-template-columns: 1fr; gap: 0; align-items: start; }
.contact__info { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.c-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.c-item__icon {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-item h3 { font-size: 15px; margin-bottom: 3px; }
.c-item p, .c-item a { font-size: 14.5px; color: var(--muted); }
.c-item a:hover { color: var(--blue-dark); }

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 34px;
}
.contact__form h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact__form > p { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.18);
}
.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.form-note svg { color: var(--green-dark); flex: none; margin-top: 2px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.75); }
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 44px;
}
.footer .brand__name { color: var(--white); }
.footer .brand__tag { color: rgba(255, 255, 255, 0.55); }
.footer__about p { font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a { color: rgba(255, 255, 255, 0.75); font-size: 14.5px; }
.footer__links a:hover { color: var(--green); }
.footer__contact { display: grid; gap: 12px; font-size: 14.5px; }
.footer__contact a { color: rgba(255, 255, 255, 0.75); }
.footer__contact a:hover { color: var(--green); }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact svg { color: var(--yellow); flex: none; margin-top: 3px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__credits a { color: rgba(255, 255, 255, 0.5); text-decoration: underline; }
.footer__credits a:hover { color: var(--green); }
.footer__visitors { font-size: 12.5px; display: inline-flex; align-items: center; gap: 5px; }
.footer__visitors strong { color: var(--green); font-weight: 700; font-size: 13.5px; }

.footer__social { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255, 255, 255, 0.85); font-size: 13.5px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer__social a:hover { color: var(--green); transform: translateX(3px); }
.footer__social svg { flex-shrink: 0; }

/* ---------- social media handles section ---------- */
.social-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; max-width: 900px; margin: 0 auto;
}
.social-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 30px 22px; border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-sm);
  border: 2px solid transparent; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.social-card__icon {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 8px;
}
.social-card--fb { border-top: 4px solid #1877F2; }
.social-card--fb .social-card__icon { background: #1877F2; }
.social-card--fb:hover { border-color: #1877F2; }
.social-card--wa { border-top: 4px solid #25D366; }
.social-card--wa .social-card__icon { background: #25D366; }
.social-card--wa:hover { border-color: #25D366; }
.social-card--mail { border-top: 4px solid var(--blue); }
.social-card--mail .social-card__icon { background: var(--blue); }
.social-card--mail:hover { border-color: var(--blue); }
.social-card__name { font-size: 17px; font-weight: 700; color: var(--ink); }
.social-card__handle { font-size: 13.5px; color: #6b7280; word-break: break-all; }
.social-card__cta { margin-top: 8px; font-size: 13.5px; font-weight: 700; color: var(--green-dark); }
.social-card--fb .social-card__cta { color: #1877F2; }
.social-card--wa .social-card__cta { color: #128C7E; }
.social-card--mail .social-card__cta { color: var(--blue); }

/* ---------- logo splash ---------- */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.splash.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.splash__box { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.splash__logo {
  width: 190px; height: 190px; object-fit: contain;
  animation: splash-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both,
             splash-breathe 1.6s ease-in-out 0.7s infinite;
}
.splash__tag {
  margin: 0; font-size: 15px; font-weight: 700; letter-spacing: 0.4px;
  color: var(--green-dark); animation: splash-fade 0.8s ease 0.35s both;
}
.splash__bar {
  display: block; width: 180px; height: 4px; border-radius: 99px;
  background: #e8f2d9; overflow: hidden; margin-top: 6px;
}
.splash__bar i {
  display: block; height: 100%; width: 40%;
  border-radius: 99px; background: var(--green);
  animation: splash-load 1.6s ease-in-out 0.5s infinite;
}
@keyframes splash-pop {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes splash-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes splash-fade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splash-load {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(320%); }
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 92px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55); }

/* ---------- floating enquiry button + modal ---------- */
.field select {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%235a6b5e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m1 1 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.18);
}
.enquiry-float {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(74, 144, 62, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(74, 144, 62, 0.55); }
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12, 24, 14, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.enquiry-modal[hidden] { display: none; }
.enquiry-modal__card {
  background: var(--white);
  border-radius: 18px;
  max-width: 460px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 28px 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  animation: pop-in 0.22s ease;
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.enquiry-modal__card h3 { font-size: 1.35rem; margin-bottom: 5px; color: var(--ink); }
.enquiry-modal__sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.enquiry-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.enquiry-modal__close:hover { background: #e8f0e4; color: var(--ink); }
@media (max-width: 600px) {
  .enquiry-float { left: 16px; bottom: 16px; padding: 13px 18px; font-size: 14px; }
}

/* ---------- enquiry wizard ---------- */
.eq-steps { display: flex; align-items: center; margin-bottom: 20px; }
.eq-step { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.eq-step .n { width: 22px; height: 22px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--line-strong); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; flex: none; transition: all 0.2s ease; }
.eq-step.is-active { color: var(--ink); }
.eq-step.is-active .n { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.eq-step.is-done .n { background: var(--green); border-color: var(--green); color: #fff; }
.eq-step:not(:last-child)::after { content: ""; width: 16px; height: 2px; background: var(--line-strong); margin: 0 4px; }
.eq-panel { animation: fade-slide 0.22s ease; }
@keyframes fade-slide { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.eq-label { font-size: 13.5px; font-weight: 700; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.eq-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.eq-cat input, .eq-prods input, .check-grid input, .radio-row input { position: absolute; opacity: 0; pointer-events: none; }
.eq-cat label { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 16px 10px; border: 1.5px solid var(--line-strong); border-radius: 14px; cursor: pointer; font-weight: 700; font-size: 14px; text-align: center; color: var(--ink-soft); transition: all 0.15s ease; }
.eq-cat label .ico { font-size: 26px; line-height: 1; }
.eq-cat input:checked + label { border-color: var(--green-dark); background: rgba(141, 198, 63, 0.12); color: var(--green-dark); box-shadow: 0 0 0 3px rgba(141, 198, 63, 0.18); }
.eq-prods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.eq-prods label { display: flex; align-items: center; gap: 8px; padding: 11px 12px; border: 1.5px solid var(--line-strong); border-radius: 12px; cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: all 0.15s ease; }
.eq-prods input:checked + label { border-color: var(--blue); background: rgba(41, 171, 226, 0.1); color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.15); }
.eq-actions { display: flex; gap: 12px; margin-top: 22px; }
.eq-actions .btn { flex: 1; }
.btn--ghost2 { background: var(--bg); color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn--ghost2:hover { background: #eef3ea; border-color: var(--line-strong); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-grid label { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border: 1.5px solid var(--line-strong); border-radius: 10px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ink-soft); transition: all 0.15s ease; }
.check-grid input:checked + label { border-color: var(--green-dark); background: rgba(141, 198, 63, 0.1); color: var(--green-dark); }
.radio-row { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-row label { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1.5px solid var(--line-strong); border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ink-soft); transition: all 0.15s ease; }
.radio-row input:checked + label { border-color: var(--green-dark); background: rgba(141, 198, 63, 0.1); color: var(--green-dark); }
.eq-tiny { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 7px; cursor: pointer; }
.eq-tiny input { accent-color: var(--green-dark); }
.eq-success { text-align: center; padding: 26px 10px; animation: fade-slide 0.25s ease; }
.eq-success .ico { font-size: 46px; line-height: 1; }
.eq-success h4 { font-size: 1.35rem; margin: 12px 0 6px; color: var(--ink); }
.eq-success p { color: var(--muted); font-size: 14px; }
.wa-float:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 44px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .section { padding: 68px 0; }
  .topbar { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 24px 20px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }
  .nav__links.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .nav__links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav__item--drop { position: static; }
  .nav__drop {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; padding: 0 0 8px 16px; margin: 0;
    background: transparent; border: none; border-radius: 0;
    box-shadow: none; transition: none;
  }
  .nav__drop a {
    padding: 11px 4px; font-size: 15px; border-bottom: 1px dashed var(--line);
    color: var(--muted) !important;
  }
  .nav__drop a:hover { background: transparent; color: var(--green-dark) !important; }
  .nav__links a::after { display: none; }
  .nav__cta .btn--quote { display: none; }
}

@media (max-width: 600px) {
  .services-grid, .gallery-grid, .process, .form-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 36px; }
  .hero .container { padding-top: 84px; padding-bottom: 92px; }
  .hero__actions .btn { width: 100%; }
  .why__badge { right: 8px; }
}

/* ============================================================
   Multi-page components (page-hero, products, FAQ, govt, CTA)
   ============================================================ */

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 90% at 85% 20%, rgba(41, 171, 226, 0.22), transparent 70%),
    radial-gradient(34% 80% at 10% 90%, rgba(141, 198, 63, 0.20), transparent 70%),
    radial-gradient(26% 60% at 60% 10%, rgba(242, 169, 0, 0.14), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: #cfeab0; }
.page-hero .eyebrow::before { background: var(--yellow); }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255, 255, 255, 0.85); max-width: 620px; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.75); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb svg { width: 13px; height: 13px; }

/* ---------- feature cards (home) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  text-decoration: none;
}
.feat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feat:hover img { transform: scale(1.06); }
.feat__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 30, 18, 0.9) 0%, rgba(13, 30, 18, 0.35) 55%, rgba(13, 30, 18, 0.05) 100%);
}
.feat__body { position: relative; padding: 22px; }
.feat__body h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 6px; }
.feat__body p { font-size: 13.5px; color: rgba(255, 255, 255, 0.82); }
.feat__cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 13.5px; font-weight: 700; color: var(--yellow); }

/* ---------- value chips strip ---------- */
.value-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.value-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
}
.value-chip svg { display: block; margin: 0 auto 8px; color: var(--green-dark); }

/* ---------- product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.prod-card__media { aspect-ratio: 4/3; overflow: hidden; }
.prod-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-card:hover .prod-card__media img { transform: scale(1.07); }
.prod-card__body { padding: 18px 18px 20px; }
.prod-card__body h3 { font-size: 1rem; margin-bottom: 6px; }
.prod-card__body p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.prod-card__link { font-size: 13px; font-weight: 800; color: var(--green-dark); display: inline-flex; align-items: center; gap: 5px; }

/* ---------- product detail ---------- */
.pd { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: start; }
.pd__media { position: sticky; top: 96px; }
.pd__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pd__info h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.pd__info > p { color: var(--muted); margin-bottom: 20px; }
.pd h3.sub { font-size: 1.05rem; margin: 26px 0 12px; color: var(--ink); }
.pd__list { display: grid; gap: 10px; }
.pd__list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.pd__list svg { color: var(--green-dark); flex: none; margin-top: 4px; }
.pd__box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 26px;
}
.pd__box h3 { font-size: 1rem; margin-bottom: 10px; }
.pd__box p { font-size: 14px; color: var(--muted); }
.pd__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0 20px;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--green-dark);
  font-weight: 800;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 16px; font-size: 14.5px; color: var(--muted); }

/* ---------- govt strip ---------- */
.govt { background: var(--ink); color: var(--white); }
.govt__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.govt-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.04);
}
.govt-item svg { color: var(--yellow); margin-bottom: 10px; }
.govt-item h3 { color: var(--white); font-size: 14.5px; margin-bottom: 5px; }
.govt-item p { font-size: 12.5px; color: rgba(255, 255, 255, 0.6); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(120deg, var(--green-deep) 0%, var(--ink) 60%);
  border-radius: var(--radius);
  padding: 46px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.4rem, 2.8vw, 1.9rem); margin-bottom: 8px; }
.cta-strip p { color: rgba(255, 255, 255, 0.8); max-width: 520px; }

/* ---------- legal pages ---------- */
.legal { max-width: 780px; margin: 0 auto; }
.legal h2 { font-size: 1.25rem; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--muted); margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal .updated { font-size: 13px; color: var(--muted); font-style: italic; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .features, .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .value-strip { grid-template-columns: repeat(3, 1fr); }
  .govt__grid { grid-template-columns: repeat(2, 1fr); }
  .pd { grid-template-columns: 1fr; }
  .pd__media { position: static; }
}
@media (max-width: 600px) {
  .features, .prod-grid, .value-strip, .govt__grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 56px; }
  .cta-strip { padding: 30px 24px; }
}
