
/* ============================================================
   NAV + FOOTER SYSTEM (final-index.html match)
============================================================ */

/* Global link reset — removes browser default underlines */
a { text-decoration: none; color: inherit; }

/* Missing vars */
:root {
  --muted: #637381;
  --shadow-lg: 0 8px 40px rgba(9,93,64,0.14);
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.5;transform:scale(1.3)}
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--lime) !important;
  color: var(--heading) !important;
  font-size: 13px;
  font-weight: 600;
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  padding: 0 !important;
  margin: 0 !important;
  transition: var(--ease);
}
.announcement-bar.hidden { transform: translateY(-100%); pointer-events: none; }
.announcement-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; height: 40px; position: relative;
}
.announcement-bar__text { display: flex; align-items: center; gap: 8px; text-align: center; }
.announcement-bar__text i { color: var(--heading); font-size: 12px; flex-shrink: 0; }
.announcement-bar__text a { color: var(--heading); text-decoration: underline; font-weight: 700; transition: var(--ease); }
.announcement-bar__text a:hover { color: var(--dark); }
.announcement-bar__close { display: none; }

/* ── Btn utilities ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-sm, 8px);
  font-weight: 700; font-size: 15px; transition: all 0.25s ease; white-space: nowrap;
}
.btn--primary { background: var(--cta); color: #fff; }
.btn--primary:hover { background: var(--heading); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,128,96,0.35); }
.btn--outline { background: transparent; color: var(--cta); border: 2px solid var(--cta); }
.btn--outline:hover { background: var(--cta); color: #fff; transform: translateY(-2px); }
.btn--lime { background: var(--lime); color: var(--heading); }
.btn--lime:hover { background: var(--lime-light); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ── Navigation ── */
.nav {
  position: fixed !important; top: 40px; left: 0; right: 0; z-index: 1000;
  background: #fff; box-shadow: 0 2px 12px rgba(9,93,64,0.06); transition: all 0.25s ease;
}
.nav.bar-hidden { top: 0; }
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 75px; gap: 32px;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img { width: 190px; height: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; list-style: none; padding: 0; margin: 0; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: 4px; padding: 8px 14px;
  font-size: 15px; font-weight: 600; color: var(--navy, #212B36);
  border-radius: 8px; transition: all 0.25s ease;
}
.nav__link:hover, .nav__link.active { color: var(--cta); background: var(--bg-alt, #E0EDD4); }
.nav__link i { font-size: 11px; transition: all 0.25s ease; }
.nav__item:hover .nav__link i { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: 12px; box-shadow: 0 8px 40px rgba(9,93,64,0.14);
  padding: 28px; opacity: 0; visibility: hidden; transition: all 0.25s ease;
  min-width: 580px; border: 1px solid var(--bg-alt, #E0EDD4);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown--sm { min-width: 320px; }
.dropdown__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dropdown__col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted, #637381); margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.dropdown__link {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px;
  border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--navy, #212B36); transition: all 0.25s ease; margin-bottom: 2px;
}
.dropdown__link:hover { background: var(--bg-alt, #E0EDD4); color: var(--cta); transform: translateX(4px); }
.dropdown__link i {
  width: 32px; height: 32px; background: var(--bg-alt, #E0EDD4); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 13px;
  color: var(--cta); flex-shrink: 0; transition: all 0.25s ease;
}
.dropdown__link:hover i { background: var(--cta); color: #fff; }
.dropdown__footer {
  border-top: 1px solid var(--bg-alt, #E0EDD4); margin-top: 20px; padding-top: 16px; display: flex; gap: 12px;
}
.dropdown__footer a {
  font-size: 13px; font-weight: 600; color: var(--cta);
  display: flex; align-items: center; gap: 4px; transition: all 0.25s ease;
}
.dropdown__footer a:hover { color: var(--heading); gap: 8px; }
.dropdown__featured { background: var(--bg-alt, #E0EDD4); border-radius: 8px; padding: 14px; margin-top: 16px; }
.dropdown__featured-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.dropdown__featured-title { font-size: 13px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.dropdown__featured a { font-size: 12px; font-weight: 700; color: var(--cta); display: flex; align-items: center; gap: 4px; }
.nav__cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--navy, #212B36); border-radius: 2px; transition: all 0.25s ease; }
.nav__mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 1002; overflow-y: auto;
  padding: 80px 24px 40px; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.nav__mobile.open { transform: translateX(0); }
.mobile-nav__item { border-bottom: 1px solid var(--bg-alt, #E0EDD4); }
.mobile-nav__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; font-size: 16px; font-weight: 600; color: var(--navy, #212B36);
}
.mobile-nav__sub { padding-bottom: 12px; display: none; }
.mobile-nav__sub.open { display: block; }
.mobile-nav__sub a {
  display: block; padding: 10px 0 10px 16px; font-size: 14px; color: var(--muted, #637381);
  border-left: 2px solid var(--bg-alt, #E0EDD4); margin-bottom: 4px; transition: all 0.25s ease;
}
.mobile-nav__sub a:hover { color: var(--cta); border-color: var(--cta); }
.mobile-nav__ctas { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-nav__ctas .btn { justify-content: center; width: 100%; }
.nav__mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; background: var(--bg-alt, #E0EDD4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy, #212B36); cursor: pointer;
}

/* ── Footer ── */
.footer-cta-band { background: var(--heading); padding: 60px 0; border-top: 4px solid var(--lime); }
.footer-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-cta-band__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(211,225,98,0.15); border: 1px solid rgba(211,225,98,0.3);
  color: var(--lime); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 14px;
}
.footer-cta-dot { width: 8px; height: 8px; background: var(--lime); border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
.footer-cta-band__title { font-family: var(--font-display,'Nunito',sans-serif); font-size: clamp(24px,3vw,38px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 10px; }
.footer-cta-band__title span { color: var(--lime); }
.footer-cta-band__sub { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 480px; line-height: 1.6; }
.footer-cta-band__right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.footer-cta-band__trust { display: flex; align-items: center; gap: 8px; }
.footer-cta-band__trust .stars { font-size: 15px; }
.footer-cta-band__trust span { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.footer__body { background: var(--dark); padding: 72px 0 48px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; align-items: start; }
.footer__logo img { width: 170px; margin-bottom: 16px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }
.footer__lead { margin-bottom: 24px; }
.footer__lead-label { font-size: 12px; font-weight: 700; color: var(--lime); letter-spacing: 0.5px; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.footer__lead-form { display: flex; gap: 0; border-radius: 8px; overflow: hidden; border: 1.5px solid rgba(255,255,255,0.15); }
.footer__lead-input { flex: 1; background: rgba(255,255,255,0.06); border: none; outline: none; padding: 11px 14px; font-size: 13px; color: #fff; font-family: var(--font-body,'Inter',sans-serif); }
.footer__lead-input::placeholder { color: rgba(255,255,255,0.35); }
.footer__lead-btn { background: var(--lime); color: var(--heading); border: none; padding: 0 16px; font-size: 14px; cursor: pointer; transition: all 0.25s ease; }
.footer__lead-btn:hover { background: var(--lime-light); }
.footer__lead-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 7px; }
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer__social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 13px; transition: all 0.25s ease;
}
.footer__social-link:hover { background: var(--lime); border-color: var(--lime); color: var(--heading); transform: translateY(-2px); }
.footer__col-title { font-family: var(--font-display,'Nunito',sans-serif); font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 4px; list-style: none; padding: 0; margin: 0; }
.footer__links li a { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.6); padding: 5px 0; transition: all 0.25s ease; border-radius: 4px; }
.footer__links li a i { font-size: 11px; color: rgba(255,255,255,0.3); width: 14px; text-align: center; flex-shrink: 0; transition: all 0.25s ease; }
.footer__links li a:hover { color: #fff; padding-left: 4px; }
.footer__links li a:hover i { color: var(--lime); }
.footer__link--cta { color: var(--lime) !important; font-weight: 700 !important; }
.footer__link--cta i { color: var(--lime) !important; }
.footer__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.footer__stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 12px; text-align: center; }
.footer__stat-num { display: block; font-family: var(--font-display,'Nunito',sans-serif); font-size: 22px; font-weight: 900; color: var(--lime); line-height: 1; }
.footer__stat-label { display: block; font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 5px; line-height: 1.4; }
.footer__badges { display: flex; flex-direction: column; gap: 10px; }
.footer__badge { display: flex; align-items: center; gap: 12px; background: rgba(211,225,98,0.07); border: 1px solid rgba(211,225,98,0.15); border-radius: 8px; padding: 10px 14px; }
.footer__badge > i { font-size: 20px; color: var(--lime); flex-shrink: 0; }
.footer__badge strong { display: block; font-size: 13px; color: #fff; font-weight: 700; }
.footer__badge span { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; }
.footer__bottom { background: rgb(251,247,237); border-top: none; padding: 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__copyright { font-size: 13px; color: rgb(0,0,0); margin: 0; font-weight: 600; }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.footer__legal li a { font-size: 12px; color: rgb(0,0,0); text-decoration: none; transition: all 0.25s ease; font-weight: 600; }
.footer__legal li a:hover { color: #0D3F3A; }
footer.footer { display: block; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-cta-band__right { align-items: flex-start; }
}
@media (max-width: 1100px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__grid > :first-child { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}
@media (max-width: 640px) {
  .footer-cta-band__inner { flex-direction: column; }
  .footer-cta-band__right { align-items: flex-start; width: 100%; }
}

/* ── Portal Login Dropdown ─────────────────────────────────── */
.nav__login { position: relative; }
.nav__login-btn {
  display: flex; align-items: center; gap: 6px;
  background: transparent;
  border: 1.5px solid var(--bg-alt, #E0EDD4);
  color: var(--navy, #212B36);
  padding: 14px 20px; border-radius: 8px;
  font-size: 15px; font-family: inherit; font-weight: 600;
  cursor: pointer; transition: all 0.25s ease;
  white-space: nowrap; line-height: 1;
}
.nav__login-btn:hover {
  background: var(--bg-alt, #E0EDD4);
  color: var(--cta, #1a7a4a);
  border-color: var(--bg-alt, #E0EDD4);
}
.nav__login-chevron { font-size: 0.65rem; transition: transform 0.25s ease; }
.nav__login.open .nav__login-chevron { transform: rotate(180deg); }
.nav__login-menu {
  visibility: hidden; opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(9,93,64,0.14);
  border: 1px solid var(--bg-alt, #E0EDD4);
  padding: 6px;
  z-index: 9999;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.nav__login.open .nav__login-menu {
  visibility: visible; opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__login-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--navy, #212B36); text-decoration: none;
  transition: all 0.25s ease;
}
.nav__login-item:hover {
  background: var(--bg-alt, #E0EDD4);
  color: var(--cta, #1a7a4a);
  transform: translateX(4px);
}
.nav__login-item > i {
  width: 26px; height: 26px;
  background: var(--bg-alt, #E0EDD4); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--cta, #1a7a4a);
  flex-shrink: 0; transition: all 0.25s ease;
}
.nav__login-item:hover > i { background: var(--cta, #1a7a4a); color: #fff; }
.nav__login-item span { font-size: 14px; font-weight: 600; color: inherit; }

/* Mobile portal links */
.mobile-nav__portals {
  display: flex; gap: 10px;
  padding: 12px 0 0;
  border-top: 1px solid var(--bg-alt, #E0EDD4);
  margin-top: 8px;
}
.mobile-nav__portal-link {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 12px;
  background: var(--bg-alt, #E0EDD4);
  border: 1.5px solid var(--bg-alt, #E0EDD4);
  border-radius: 8px;
  color: var(--navy, #212B36);
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.25s ease;
}
.mobile-nav__portal-link:hover { background: var(--cta, #1a7a4a); border-color: var(--cta, #1a7a4a); color: #fff; }
.mobile-nav__portal-link i { color: var(--cta, #1a7a4a); transition: color 0.25s ease; }
.mobile-nav__portal-link:hover i { color: #fff; }
