:root{
  --lime:#BEF21C;
  --inv-teal:#098276;
  --neutral:#aaabb1;
}

/* Base + Reset */
*{ box-sizing:border-box; }
html { scroll-behavior:smooth; }
body{
  margin:0;
  font-family:'Poppins',sans-serif;
  color:#000;
  font-size:20px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* HERO */
.hero{ position:relative; width:100%; height:72vh; min-height:420px; overflow:hidden; }
.hero video{ width:100%; height:100%; object-fit:cover; display:block; }
.hero::before{ content:""; position:absolute; inset:0; background:rgba(0,0,0,.18); z-index:1; }
.hero-inner{ position:absolute; inset:0; display:grid; place-items:center; z-index:2; padding:0 20px; }
.hero-text{
  text-align:center; color:#fff; line-height:1.3; max-width:60ch;
  font-weight:700; letter-spacing:.2px; font-size:clamp(1.2rem,3.5vw,1.6rem);
  text-shadow:2px 2px 6px rgba(0,0,0,.45); opacity:0; transform:translateY(12px);
  animation:fadeInUp .9s ease-out forwards .2s;
}
.hero-text .highlight{ color:var(--lime); }
@keyframes fadeInUp{ to{ opacity:1; transform:translateY(0); } }

/* CONTENT WRAPPER */
.content--engaging{
  background:linear-gradient(180deg,#fff 0%,#fafafa 100%);
  border-radius:12px; padding:48px 24px; margin:32px auto; max-width:960px;
}
.copy{ max-width:900px; margin:0 auto; }
.sub-heading{
  font-size:1.1rem;
  font-weight:600; color:var(--inv-teal);
  margin:22px 0 10px;
}
.content--engaging p{
  line-height:1.8;
  font-size:1rem;
  color:#6d6e75;
  margin:0 0 14px;
}

/* FEATURE LIST */
.feature-list{ list-style:none; padding-left:0; margin:18px 0 6px; }
.feature-list li{
  display:grid;
  grid-template-columns:16px 1fr;
  column-gap:12px;
  align-items:center;
  margin-bottom:12px;
  color:#6d6e75;
  line-height:1.6;
  font-size:1rem;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .35s, transform .35s;
}
.feature-list li.reveal{ opacity:1; transform:translateY(0); }

.feature-list .feature-icon{
  width:16px; height:16px; stroke-width:2; flex-shrink:0; margin:0;
  color: var(--inv-teal);
  transition: transform .25s ease, color .25s ease, filter .25s ease;
}
.feature-list .feature-text{
  font-size:1rem;
  line-height:1.6;
  display:block;
}
.feature-list li:hover .feature-icon {
  transform: scale(1.25);
  color: var(--lime);
  filter: drop-shadow(0 0 4px rgba(190,242,28,.45));
}
.feature-list li.reveal svg{ animation:iconPop .38s cubic-bezier(.2,.7,.3,1.2); }
@keyframes iconPop{ 0%{transform:scale(.85);} 60%{transform:scale(1.08);} 100%{transform:scale(1);} }

/* CONTACT FORM */
.contact{ padding:72px 20px; background:#f7f8f9; }
.contact .container{
  max-width:1100px; margin:0 auto;
  background:#fff; border-radius:16px;
  box-shadow:0 8px 26px rgba(0,0,0,.07); padding:40px 32px;
}
.contact h2{
  text-align:center;
  margin:0 0 28px;
  font-size:1.6rem;
  font-weight:700;
  color:#000;
}
.contact form{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  column-gap:24px;
  row-gap:20px;
}

/* Half-width fields */
.contact form > div:not(.full){
  grid-column:span 6;
}

/* Full-width rows */
.contact form > .full{
  grid-column:1 / -1;
}

.contact label{
  display:block;
  font-size:.85rem;
  color:#444;
  margin-bottom:8px;
}

/* Input styling */
.contact input,
.contact select,
.contact textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid #e2e3e6;
  border-radius:12px;
  font-family:'Poppins',sans-serif;
  font-size:.95rem;
  color:#111;
  background:#fff;
  outline:none;
  transition:border .15s, box-shadow .15s;
}
.contact input:focus,
.contact select:focus,
.contact textarea:focus{
  border-color:var(--inv-teal);
  box-shadow:0 0 0 3px rgba(9,130,118,.12);
}
.contact textarea{ min-height:200px; resize:vertical; }

.contact .checkbox{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:.9rem;
  color:#333;
}
.contact .checkbox input{ width:auto; }

.contact .submit-btn{
  background:var(--inv-teal);
  color:#fff;
  border:0;
  padding:14px 20px;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
  transition:transform .15s, background .15s, box-shadow .15s;
  box-shadow:0 6px 16px rgba(9,130,118,.25);
}
.contact .submit-btn:hover{
  background:#06685e;
  transform:translateY(-1px);
}

/* reCAPTCHA + spacing */
.contact .recaptcha{ display:block; }

/* Mobile layout */
@media (max-width:900px){
  .contact form{ grid-template-columns:1fr; }
  .contact form > div{ grid-column:1 / -1; }
}

/* CONTACT BY STATE */
.contact-section{
  background:#fff; padding:32px 24px;
  border-top:6px solid var(--lime);
  border-bottom:4px solid var(--inv-teal);
  max-width:900px; margin:48px auto;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}
.contact-section h2{
  font-size:1.9rem; color:#4B4B4B; margin-bottom:22px;
  border-left:8px solid var(--neutral);
  padding-left:12px; letter-spacing:.5px; font-weight:700;
}
.dot-selectors{ display:flex; justify-content:space-between; gap:12px; margin-bottom:20px; flex-wrap:wrap; }
.dot-option{
  flex:1; min-width:120px; text-align:center;
  background:var(--neutral); color:#fff;
  padding:10px 16px; border-radius:50px;
  cursor:pointer; border:2px solid transparent;
  transition:all .3s; font-size:.95rem;
}
.dot-option:hover{ background:var(--lime); color:#000; }
.dot-option.active{ border-color:var(--inv-teal); background:var(--lime); color:#000; }
.phone-display{
  font-size:1.3rem; color:#333; opacity:0; transform:translateY(8px);
  transition:opacity .3s, transform .3s; text-align:center;
}
.phone-display.visible{ opacity:1; transform:translateY(0); }
.phone-display a{ color:#1c1c1c; text-decoration:none; border-bottom:2px dotted var(--neutral); padding-bottom:4px; transition:color .25s; }
.phone-display a:hover{ color:var(--lime); }

/* UTILITIES */
.visually-hidden{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* =========================
   RESPONSIVE (Mobile-first)
   ========================= */
@media (max-width:900px){
  .navbar{ padding:16px 24px; }
  .nav-links{ gap:12px; }
  .hero{ height:64vh; }
  .content--engaging{ padding:36px 20px; margin:24px auto; }
  .copy{ max-width:92%; }
}

@media (max-width:640px){
  body{ font-size:18px; }
  .nav-links{ width:100%; justify-content:flex-start; }
  .nav-links a{ font-size:.95rem; }
  .hero{ height:56vh; min-height:360px; }
  .hero-text{ font-size:clamp(1.05rem,5vw,1.35rem); max-width:64ch; }
  .content--engaging{ padding:28px 18px; }
  .sub-heading{ font-size:1rem; }
  .content--engaging p{ font-size:.95rem; }
  .feature-list li{ grid-template-columns:14px 1fr; column-gap:10px; margin-bottom:12px; }
  .feature-list .feature-icon{ width:14px; height:14px; }
  .dot-selectors{ gap:10px; }
  .dot-option{ padding:10px 14px; font-size:.9rem; }
  .contact-section{ margin:36px auto; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion:reduce){
  .hero-text{ animation:none; opacity:1; transform:none; }
  .feature-list li{ transition:none; opacity:1; transform:none; }
  .feature-list li.reveal svg{ animation:none; }
}

/* NAVBAR */
.navbar{
  position:sticky; top:0; z-index:1000;
  background:#fff; border-bottom:none;
  padding:0;
}
.navbar .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 30px; gap:12px;
}
.brand img{ height:34px; width:auto; display:block; }
.nav-links{ display:flex; flex-wrap:wrap; gap:22px; }
.nav-links a{
  text-decoration:none; font-weight:700; font-size:1rem; color:#000;
  transition:color .25s ease;
}
.nav-links a:hover{ color:var(--lime); }
.lime-bar{ height:4px; background:var(--accent); }
@media (max-width:900px){
  .navbar .row{ padding:10px 20px; }
  .nav-links{ gap:14px; }
}

/* =====================================================
   HAMBURGER + MOBILE DRAWER (ADDED — no other changes)
   ===================================================== */
:root{
  --hdr-h: 64px;
  --shadow-lg: 0 10px 28px rgba(0,0,0,.12);
}

/* Desktop shows original links */
.nav-desktop{ display:flex; align-items:center; }
@media (max-width:900px){
  .nav-desktop{ display:none; } /* hide desktop links on mobile */
}

/* Hamburger button (mobile only) */
.nav-toggle{
  border:0; background:transparent; padding:10px; margin-left:auto;
  display:none; cursor:pointer; line-height:0;
}
@media (max-width:900px){
  .nav-toggle{ display:inline-flex; }
}

.nav-toggle-box{ width:28px; height:20px; position:relative; display:inline-block; }
.nav-toggle-inner,
.nav-toggle-inner::before,
.nav-toggle-inner::after{
  position:absolute; left:0; width:28px; height:2px; background:#000;
  transition:transform .25s ease, opacity .2s ease, background .2s;
}
.nav-toggle-inner{ top:9px; }
.nav-toggle-inner::before{ content:""; top:-9px; }
.nav-toggle-inner::after{ content:""; top:9px; }

/* Active → X icon */
.nav-toggle.is-active .nav-toggle-inner{ transform:rotate(45deg); }
.nav-toggle.is-active .nav-toggle-inner::before{ transform:translateY(9px) rotate(90deg); }
.nav-toggle.is-active .nav-toggle-inner::after{ transform:translateY(-9px) rotate(90deg); opacity:0; }

/* Drawer */
.mobile-drawer{
  position:fixed; top:var(--hdr-h); left:0; right:0;
  background:#fff; box-shadow:var(--shadow-lg); z-index:1000;
  transform:translateY(-8px); opacity:0; pointer-events:none;
  transition:transform .2s ease, opacity .2s ease;
  border-top:3px solid var(--lime);
}
.mobile-drawer.open{ transform:translateY(0); opacity:1; pointer-events:auto; }

.mobile-links{ list-style:none; margin:0; padding:10px 14px; }
.mobile-links li{ border-bottom:1px solid #efefef; }
.mobile-links li:last-child{ border-bottom:none; }
.mobile-links a{
  display:block; padding:14px 8px; text-decoration:none; font-weight:700; color:#000;
  transition:color .2s, background .2s;
}
.mobile-links a:hover{ color:var(--inv-teal); background:rgba(9,130,118,.06); }

/* Dim overlay */
.mobile-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.28);
  opacity:0; pointer-events:none; transition:opacity .2s ease; z-index:999;
}
.mobile-overlay.show{ opacity:1; pointer-events:auto; }

/* Keep header height consistent */
.navbar{ min-height:var(--hdr-h); }
.navbar .row{ min-height:var(--hdr-h); }

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  .nav-toggle-inner, .nav-toggle-inner::before, .nav-toggle-inner::after,
  .mobile-drawer, .mobile-overlay{ transition:none; }
}

