:root {
  --green: #7DBA3F; --green-dark: #5F9E2C; --green-light: #EFF7E5;
  --blue: #5BBADC; --blue-dark: #2E94C0; --blue-light: #E4F2F9;
  --roof: #3A7BB5; --navy: #1A2D4D; --navy-2: #2A3D5D;
  --text: #2A2A2A; --text-muted: #5A6068;
  --bg: #FBFCFD; --cream: #F4F8F2;
  --border: #E5E9ED;
  --shadow: 0 8px 24px rgba(26, 45, 77, 0.06);
  --shadow-lg: 0 16px 50px rgba(26, 45, 77, 0.12);
  --radius: 18px;
}
@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.35s; }
@keyframes pageEnter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
body > * { animation: pageEnter 0.4s ease-out backwards; }
body > *:nth-child(2) { animation-delay: 0.05s; }
body > *:nth-child(3) { animation-delay: 0.1s; }
header { view-transition-name: site-header; }
.top-banner { view-transition-name: site-banner; }
footer { view-transition-name: site-footer; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; font-size: 17px; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--navy); line-height: 1.2; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.3vw, 2.5rem); margin-bottom: 0.6rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.5rem; font-weight: 600; }
p { color: var(--text-muted); }
a { color: var(--blue-dark); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-blue { background: var(--blue-light); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #cdd5e0; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.78rem; font-weight: 700; color: var(--green-dark); margin-bottom: 1rem; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-title p { margin-top: 0.8rem; font-size: 1.05rem; }
.top-banner { background: linear-gradient(90deg, var(--green-dark) 0%, var(--blue-dark) 100%); color: #fff; font-size: 0.85rem; padding: 0.55rem 1.5rem; }
.top-banner-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.top-banner-item { display: inline-flex; align-items: center; gap: 0.4rem; color: #fff; }
.top-banner-item svg { color: #fff; flex-shrink: 0; opacity: 0.85; }
.top-banner a { color: #fff; font-weight: 500; }
.top-banner a:hover { color: var(--green-light); }
header { position: sticky; top: 0; z-index: 100; background: rgba(251, 252, 253, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1.5rem; max-width: 1180px; margin: 0 auto; gap: 1rem; }
.logo-link { display: flex; align-items: center; gap: 0.75rem; view-transition-name: site-logo; }
.logo-svg { width: 56px; height: 56px; flex-shrink: 0; }
.logo-text { line-height: 1.05; }
.logo-text .top { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--navy); display: block; white-space: nowrap; letter-spacing: -0.01em; }
.logo-text .bottom { font-family: 'Outfit', sans-serif; font-size: 0.7rem; color: var(--green-dark); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; gap: 1.3rem; align-items: center; }
.nav-links > a { color: var(--text); font-weight: 500; font-size: 0.94rem; white-space: nowrap; padding: 0.3rem 0; position: relative; }
.nav-links > a:hover { color: var(--navy); }
.nav-links > a.active { color: var(--navy); }
.nav-links > a.active::after { content: ""; position: absolute; bottom: -4px; left: 0; right: 0; height: 2.5px; background: linear-gradient(90deg, var(--green), var(--blue)); border-radius: 2px; }
.nav-cta-group { display: flex; gap: 0.6rem; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.85rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: 0.98rem; border: none; cursor: pointer; transition: all 0.2s; font-family: inherit; text-align: center; text-decoration: none; white-space: nowrap; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 16px rgba(125, 186, 63, 0.25); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); color: #fff; box-shadow: 0 10px 24px rgba(125, 186, 63, 0.35); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 6px 16px rgba(91, 186, 220, 0.25); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); color: #fff; }
.btn-secondary { background: #fff; color: var(--navy); border: 2px solid var(--border); }
.btn-secondary:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.88rem; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-link { background: transparent; padding: 0.4rem 0; color: var(--blue-dark); font-weight: 600; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-link:hover { color: var(--green-dark); transform: translateX(3px); }
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--roof) 100%); color: #fff; padding: 4.5rem 1.5rem 4rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -50px; right: -50px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(125, 186, 63, 0.18) 0%, transparent 70%); }
.page-hero::after { content: ""; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(91, 186, 220, 0.22) 0%, transparent 70%); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 800px; margin: 0 auto 0.8rem; }
.page-hero p { color: #d8e0ef; max-width: 680px; margin: 0 auto; font-size: 1.15rem; }
.breadcrumb { color: var(--green); font-size: 0.9rem; margin-bottom: 1rem; font-weight: 500; }
.breadcrumb a { color: #fff; }
.card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.icon-wrap { width: 60px; height: 60px; border-radius: 16px; background: var(--green-light); display: grid; place-items: center; color: var(--green-dark); margin-bottom: 1.2rem; }
.icon-wrap.blue { background: var(--blue-light); color: var(--blue-dark); }
.service-badge { display: inline-block; background: linear-gradient(135deg, var(--green), var(--blue)); color: #fff; padding: 0.25rem 0.75rem; border-radius: 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.6rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.location-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.25s; }
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.location-img { height: 180px; background-size: cover; background-position: center; }
.location-body { padding: 1.6rem; }
.location-body h3 { margin-bottom: 0.4rem; font-size: 1.2rem; }
.location-body .meta { font-size: 0.85rem; color: var(--green-dark); font-weight: 600; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 1px; }
.testimonial { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border-top: 4px solid var(--green); }
.testimonial .stars { color: var(--green); margin-bottom: 0.8rem; font-size: 1.1rem; }
.testimonial blockquote { font-style: italic; color: var(--text); font-size: 1rem; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--blue)); display: grid; place-items: center; color: #fff; font-weight: 700; }
.testimonial-author .name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.testimonial-author .role { font-size: 0.85rem; color: var(--text-muted); }
.trust-strip { background: #fff; padding: 1.8rem 0; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; text-align: center; }
.trust-item { font-size: 0.95rem; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 0.55rem; }
.trust-item svg { color: var(--green-dark); }
.modal-overlay { position: fixed; inset: 0; background: rgba(26, 45, 77, 0.55); backdrop-filter: blur(6px); display: none; align-items: flex-start; justify-content: center; z-index: 1000; padding: 2rem 1rem; overflow-y: auto; }
.modal-overlay.active { display: flex; }
.modal { background: #fff; border-radius: 24px; max-width: 720px; width: 100%; padding: 2.5rem; position: relative; box-shadow: var(--shadow-lg); margin: auto; }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border-radius: 50%; background: var(--green-light); border: none; cursor: pointer; display: grid; place-items: center; color: var(--navy); transition: all 0.18s; }
.modal-close:hover { background: var(--green); color: #fff; transform: rotate(90deg); }
.modal-subtitle { color: var(--text-muted); margin-bottom: 1.5rem; }
.modal-step { display: none; }
.modal-step.active { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
label .req { color: #c0392b; }
input, select, textarea { width: 100%; padding: 0.78rem 0.95rem; border: 1.5px solid var(--border); border-radius: 12px; font-family: inherit; font-size: 0.98rem; background: #fff; color: var(--text); transition: all 0.18s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(125, 186, 63, 0.18); }
textarea { min-height: 100px; resize: vertical; }
.radio-row, .checkbox-row { display: flex; gap: 1rem; margin-top: 0.3rem; flex-wrap: wrap; }
.radio-row label, .checkbox-row label { display: flex; align-items: center; gap: 0.4rem; font-weight: 500; cursor: pointer; }
.radio-row input, .checkbox-row input { width: auto; accent-color: var(--green); }
.privacy-note { background: var(--green-light); border-radius: 12px; padding: 0.9rem 1rem; font-size: 0.85rem; color: var(--text); margin: 1.2rem 0; display: flex; gap: 0.6rem; align-items: flex-start; border-left: 3px solid var(--green); }
.privacy-note svg { color: var(--green-dark); flex-shrink: 0; margin-top: 2px; }
.thank-you { text-align: center; padding: 1.5rem 0; }
.thank-you svg { color: var(--green); margin-bottom: 1rem; }
.thank-you h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.contact-row { background: var(--blue-light); border-radius: 12px; padding: 1.2rem; margin-top: 1.5rem; text-align: center; color: var(--navy); }
.referral-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.choice-card { background: var(--cream); border: 2px solid transparent; border-radius: 16px; padding: 1.8rem 1.4rem; text-align: center; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.choice-card:hover { border-color: var(--green); background: #fff; transform: translateY(-3px); box-shadow: var(--shadow); }
.choice-card svg { color: var(--navy); margin-bottom: 0.8rem; }
.choice-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.choice-card p { font-size: 0.9rem; }
.floating-ctas { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; display: none; gap: 0.6rem; z-index: 50; }
.floating-ctas .btn { flex: 1; box-shadow: var(--shadow-lg); }
footer { background: var(--navy); color: #cdd5e0; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; font-family: 'Outfit', sans-serif; font-weight: 700; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer a { color: #cdd5e0; font-size: 0.95rem; }
footer a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; text-align: center; font-size: 0.88rem; color: #8a96ab; }
/* ===== MOBILE-FIRST OVERRIDES — high specificity to beat inline styles ===== */
@media (max-width: 880px) {
  /* Top banner tighter */
  .top-banner { font-size: 0.78rem; padding: 0.45rem 1rem; }
  .top-banner-inner { gap: 0.8rem; justify-content: center; text-align: center; }
  .top-banner-item.hide-mobile { display: none; }

  /* Header layout on mobile */
  header .nav {
    position: relative !important;
    padding: 0.7rem 1rem !important;
    gap: 0.5rem !important;
  }

  /* Hamburger toggle - always visible on mobile */
  header .nav .menu-toggle {
    display: inline-flex !important;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem 0.65rem;
    color: var(--navy);
    font-size: 1.75rem;
    line-height: 1;
    border-radius: 8px;
    z-index: 101;
  }
  header .nav .menu-toggle:hover,
  header .nav .menu-toggle:focus { background: var(--cream); outline: none; }

  /* Hide CTAs in header top bar on mobile - floating CTAs handle this */
  header .nav .nav-cta-group { display: none !important; }

  /* Nav dropdown - hidden until .mobile-open added */
  header .nav-links {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--bg) !important;
    border-bottom: 1px solid var(--border) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 0.75rem 1.25rem 1.25rem !important;
    gap: 0 !important;
    box-shadow: 0 10px 30px rgba(26, 45, 77, 0.15) !important;
    z-index: 99 !important;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  header .nav-links.mobile-open {
    display: flex !important;
  }
  header .nav-links.mobile-open .nav-cta-group {
    display: flex !important;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }
  header .nav-links.mobile-open .nav-cta-group .btn {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }
  header .nav-links > a {
    display: block !important;
    padding: 1rem 0.5rem !important;
    font-size: 1.05rem !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--text) !important;
    white-space: normal !important;
    text-align: left;
  }
  header .nav-links > a:hover { color: var(--navy) !important; background: rgba(0, 0, 0, 0.02); }

  /* Logo tighter on mobile */
  .logo-svg { width: 48px !important; height: 48px !important; }
  .logo-text .top { font-size: 0.95rem !important; }
  .logo-text .bottom { font-size: 0.6rem !important; }

  /* Bigger tap targets everywhere */
  .btn { min-height: 44px; padding: 0.85rem 1.4rem; }
  input, select, textarea { font-size: 16px !important; min-height: 44px; }
  /* 16px min prevents iOS zoom on focus */

  /* Better modal experience on mobile */
  .modal-overlay { padding: 1rem 0.5rem; }
  .modal { padding: 1.5rem 1.2rem; border-radius: 16px; }
  .modal h2 { font-size: 1.4rem; }
  .form-grid { grid-template-columns: 1fr !important; }

  /* Stack content card grids on mobile */
  .grid-3, .grid-2, .grid-4, .referral-choice-grid { grid-template-columns: 1fr !important; }

  /* Cards: better mobile spacing */
  .card, .location-card, .testimonial { padding: 1.5rem; }

  /* Sections: tighter but breathable */
  .section { padding: 2.5rem 0 !important; }

  /* Hero adjustments */
  .hero, .page-hero { padding: 3rem 1.25rem 2.5rem !important; }
  .hero h1, .page-hero h1 { font-size: 1.9rem !important; line-height: 1.2; }
  .hero .lead, .page-hero p { font-size: 1rem !important; }

  /* Floating CTAs - ensure they're always visible and tappable */
  .floating-ctas {
    display: flex !important;
    padding: 0.5rem;
    background: rgba(251, 252, 253, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 0;
  }
  .floating-ctas .btn { flex: 1; min-height: 48px; font-size: 0.95rem; }

  /* Ensure body has room for floating CTAs */
  body { padding-bottom: 5rem !important; }

  /* Better footer on mobile */
  footer { padding: 3rem 0 5rem; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; text-align: left; }

  /* Trust strip mobile */
  .trust-strip { padding: 1rem 0; }
  .trust-items { gap: 1rem; }
  .trust-item { font-size: 0.85rem; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}
