* {
  box-sizing:border-box
}
html {
  scroll-behavior:smooth
}
body {
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:#102033;
  background:#fff;
  overflow-x:hidden
}
body.menu-open {
  overflow:hidden
}
img {
  max-width:100%;
  height:auto
}
.container {
  width:min(1180px,calc(100% - 32px));
  margin-inline:auto
}
.skip-link {
  position:fixed;
  left:16px;
  top:-80px;
  z-index:9999;
  background:#fff;
  color:#071a2e;
  padding:12px 16px;
  border-radius:10px;
  box-shadow:0 8px 24px rgba(0,0,0,.18)
}
.skip-link:focus {
  top:16px
}
.site-header {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.98);
  border-bottom:1px solid #d8e4ed;
  backdrop-filter:blur(14px)
}
.header-inner {
  min-height:78px;
  display:flex;
  align-items:center;
  gap:24px
}
.brand {
  display:inline-flex;
  align-items:center;
  flex:0 1 auto
}
.brand img {
  display:block;
  width:238px;
  max-width:100%
}
.site-nav {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:8px
}
.site-nav>a,.nav-provider-toggle {
  color:#102033;
  text-decoration:none;
  font:700 .93rem/1 Inter,Arial;
  padding:14px 12px;
  border:0;
  background:none;
  cursor:pointer;
  border-radius:10px
}
.site-nav>a:hover,.site-nav>a:focus-visible,.nav-provider-toggle:hover,.nav-provider-toggle:focus-visible {
  background:#edf6fb;
  color:#0b5d78
}
.nav-group {
  position:relative
}
.provider-menu {
  position:absolute;
  top:48px;
  left:0;
  min-width:210px;
  background:#fff;
  border:1px solid #dce6ef;
  border-radius:16px;
  padding:10px;
  box-shadow:0 18px 50px rgba(7,20,38,.14);
  display:none
}
.nav-group.open .provider-menu {
  display:grid
}
.provider-menu a {
  padding:11px 12px;
  color:#102033;
  text-decoration:none;
  border-radius:10px
}
.provider-menu a:hover,.provider-menu a:focus-visible {
  background:#edf6fb;
  color:#0b5d78
}
.header-actions {
  display:flex;
  align-items:center;
  gap:10px
}
.mobile-phone,.menu-toggle {
  display:none
}
.menu-toggle {
  width:44px;
  height:44px;
  border:1px solid #cbd9e5;
  background:#fff;
  border-radius:12px;
  padding:10px;
  cursor:pointer
}
.menu-toggle span {
  display:block;
  height:2px;
  background:#102033;
  margin:5px 0;
  transition:transform .2s ease,opacity .2s ease
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform:translateY(7px) rotate(45deg)
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity:0
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform:translateY(-7px) rotate(-45deg)
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:12px 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  text-align:center
}
.btn-call {
  background:linear-gradient(135deg,#ff6b35,#ff844d);
  color:#fff;
  box-shadow:0 10px 28px rgba(255,107,53,.25)
}
.btn-call:hover,.btn-call:focus-visible {
  background:linear-gradient(135deg,#e95620,#f36b32)
}
.btn-secondary {
  border-color:#b8cad8;
  color:#102033;
  background:#fff
}
.btn-light {
  background:#fff;
  color:#0b1f35
}
.btn-xl {
  min-height:58px;
  padding:16px 24px
}
.mobile-call-bar {
  display:none
}
a:focus-visible,button:focus-visible {
  outline:3px solid #19a9bb;
  outline-offset:3px
}
@media(max-width:900px) {
  .header-inner {
    gap:12px
  }
  .brand img {
    width:210px
  }
  .header-actions {
    margin-left:auto;
    gap:8px
  }
  .desktop-call {
    display:none
  }
  .mobile-phone,.menu-toggle {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 44px
  }
  .mobile-phone {
    width:44px;
    height:44px;
    border-radius:12px;
    background:#e8f6f8;
    color:#0e6f7c;
    text-decoration:none;
    font-size:1.35rem
  }
  .site-nav {
    position:fixed;
    left:0;
    right:0;
    top:78px;
    max-height:calc(100dvh - 78px);
    overflow:auto;
    background:#fff;
    border-top:1px solid #dce6ef;
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    margin:0;
    box-shadow:0 20px 40px rgba(7,20,38,.14)
  }
  .site-nav.open {
    display:flex
  }
  .site-nav>a,.nav-provider-toggle {
    width:100%;
    text-align:left;
    padding:14px
  }
  .provider-menu {
    position:static;
    box-shadow:none;
    margin-top:4px;
    min-width:0
  }
}
@media(max-width:600px) {
  .container {
    width:min(1180px,calc(100% - 24px))
  }
  .header-inner {
    min-height:64px;
    gap:8px
  }
  .brand img {
    width:148px
  }
  .mobile-phone,.menu-toggle {
    width:42px;
    height:42px;
    flex-basis:42px
  }
  .site-nav {
    top:64px;
    max-height:calc(100dvh - 64px)
  }
  .mobile-call-bar {
    position:fixed;
    left:8px;
    right:8px;
    bottom:calc(8px + env(safe-area-inset-bottom));
    z-index:2000;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-height:58px;
    padding:10px 14px;
    border-radius:16px;
    background:linear-gradient(135deg,#ff6b35,#ff844d);
    color:#fff;
    text-decoration:none;
    box-shadow:0 16px 40px rgba(7,20,38,.35);
    font-size:1.05rem;
    line-height:1;
    white-space:nowrap;
    text-align:center
  }
  .mobile-call-bar span {
    display:grid;
    place-items:center;
    width:34px;
    height:34px;
    flex:0 0 34px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    font-size:1rem
  }
  .mobile-call-bar strong,.mobile-call-bar b {
    display:inline;
    margin:0;
    font-size:1.05rem;
    font-weight:900;
    line-height:1;
    white-space:nowrap
  }
  body {
    padding-bottom:calc(84px + env(safe-area-inset-bottom))
  }
}
@media(max-width:360px) {
  .mobile-call-bar {
    gap:5px;
    padding-inline:9px
  }
  .mobile-call-bar span {
    width:28px;
    height:28px;
    flex-basis:28px;
    font-size:.88rem
  }
  .mobile-call-bar strong,.mobile-call-bar b {
    font-size:.92rem
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  .menu-toggle span {
    transition:none
  }
}
/* Desktop header call button with visible number */ .desktop-call {
  min-width:188px;
  padding:12px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  white-space:nowrap;
  line-height:1;
}
.desktop-call span {
  font-weight:800;
}
.desktop-call strong {
  font-size:.92rem;
  font-weight:900;
}
@media(max-width:1100px) {
  .desktop-call {
    min-width:170px;
    padding-inline:14px;
    gap:6px;
  }
  .desktop-call strong {
    font-size:.86rem;
  }
}
@media(max-width:900px) {
  .desktop-call {
    display:none;
  }
}
/* ===== 2026 header polish + reliable mobile menu icon ===== */ :root {
  --call-orange:#ff7d3b;
  --call-orange-dark:#ef6b28;
  --site-teal:#036264;
  --site-deep:#11302a;
  --site-soft:#dac4d0
}
.site-header {
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(17,48,42,.10)
}
.site-nav>a,.nav-provider-toggle {
  color:var(--site-deep)
}
.site-nav>a:hover,.site-nav>a:focus-visible,.nav-provider-toggle:hover,.nav-provider-toggle:focus-visible {
  background:rgba(3,98,100,.08);
  color:var(--site-teal)
}
.provider-menu {
  border-color:rgba(17,48,42,.12);
  border-radius:18px
}
.provider-menu a:hover,.provider-menu a:focus-visible {
  background:rgba(3,98,100,.08);
  color:var(--site-teal)
}
.mobile-phone {
  background:rgba(3,98,100,.10)!important;
  color:var(--site-teal)!important;
  border:1px solid rgba(3,98,100,.12)
}
.menu-toggle {
  position:relative;
  background:#fff;
  border:1px solid rgba(17,48,42,.14);
  border-radius:14px;
  overflow:hidden
}
.menu-toggle span {
  position:absolute;
  left:10px;
  right:10px;
  height:2.5px;
  margin:0;
  background:var(--site-deep)!important;
  border-radius:999px;
  transform-origin:center;
  transition:transform .22s ease, opacity .22s ease, top .22s ease
}
.menu-toggle span:nth-child(1) {
  top:13px
}
.menu-toggle span:nth-child(2) {
  top:20px
}
.menu-toggle span:nth-child(3) {
  top:27px
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top:20px;
  transform:rotate(45deg)
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity:0
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top:20px;
  transform:rotate(-45deg)
}
.desktop-call {
  border-radius:14px;
  min-width:230px;
  background:linear-gradient(135deg,var(--call-orange),#ff9b59)!important
}
.desktop-call span {
  font-weight:800
}
.desktop-call strong {
  font-size:1rem
}
@media(max-width:900px) {
  .site-nav {
    background:#fff;
    top:79px;
    border-top:1px solid rgba(17,48,42,.10)
  }
}
@media(max-width:600px) {
  .brand img {
    width:150px
  }
  .header-inner {
    min-height:70px
  }
  .site-nav {
    top:70px;
    max-height:calc(100dvh - 70px)
  }
  .mobile-phone,.menu-toggle {
    width:44px;
    height:44px;
    flex-basis:44px
  }
}
