/* Smooth in-page anchors (About / Service → homepage sections) */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Unified site nav: use with data-nav + site-nav.js */
a.nav-link-site {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

a.nav-link-site:hover {
  color: #fbb610;
}

a.nav-link-site.nav-link-active {
  color: #fbb610 !important;
  font-weight: 600;
  border-bottom-color: #fbb610;
}

#menu-mobile a.nav-link-site.nav-link-active {
  border-bottom: none;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

/* Quote CTA: highlight parent link when active */
a[data-nav="quote"].nav-link-active .nav-quote-btn,
a[data-nav="quote"].nav-link-active button {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #fbb610;
}
