:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --text: #12243c;
  --muted: #4f6582;
  --navy: #0d2240;
  --blue: #0b63ce;
  --red: #cc1f2f;
  --border: #d6dfec;
  --shadow: 0 10px 28px rgba(18, 36, 60, 0.12);
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #e9f2ff 0%, #f3f6fb 300px);
  line-height: 1.55;
}

main { flex: 1; }

a { color: inherit; text-decoration: none; cursor: pointer !important; }
a[href], button, [role="button"], .btn, input[type="submit"], input[type="button"], summary, label[for] {
  cursor: pointer !important;
}
a[href]:hover,
button:hover,
[role="button"]:hover,
.btn:hover,
summary:hover,
input[type="submit"]:hover,
  input[type="button"]:hover {
  cursor: pointer !important;
}

/* Text links: clear visual emphasis for readability and CTR */
p a:not(.btn):not(.chip-link),
li a:not(.btn):not(.chip-link),
.section-sub a:not(.btn):not(.chip-link),
.availability-note p a:not(.btn):not(.chip-link),
.service-faq-item p a:not(.btn):not(.chip-link) {
  color: #0b63ce !important;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

p a:not(.btn):not(.chip-link):hover,
li a:not(.btn):not(.chip-link):hover,
.section-sub a:not(.btn):not(.chip-link):hover,
.availability-note p a:not(.btn):not(.chip-link):hover,
.service-faq-item p a:not(.btn):not(.chip-link):hover {
  color: #084f9f !important;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: #ecf3ff;
  font-size: 0.94rem;
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.62rem 0;
}

.topbar strong { color: #fff; }

.sticky-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1200;
}

.sticky-spacer { height: 120px; }

.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e4ecf7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-text { line-height: 1.1; }

.logo span { color: var(--blue); }

.desktop-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
  color: #223651;
  font-size: 0.95rem;
}

.desktop-nav .nav-link,
.desktop-nav .nav-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.42rem 0.7rem;
  border-radius: 10px;
  transition: background-color 0.2s, color 0.2s;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link-btn:hover {
  background: #e8f1ff;
  color: var(--blue);
}

.desktop-nav .nav-link.active,
.desktop-nav .nav-link-btn.active {
  background: #d9e9ff;
  color: var(--blue);
}

.nav-link-btn {
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}

.services-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  cursor: pointer !important;
}

.services-dropdown a,
.services-dropdown button,
.services-panel a,
.mobile-services-dropdown a,
.mobile-services-dropdown button {
  cursor: pointer !important;
}

.services-link {
  white-space: nowrap;
}

.services-toggle-btn {
  min-width: 34px;
  padding-left: 0.45rem;
  padding-right: 0.45rem;
  cursor: pointer !important;
}

.services-toggle-btn .chevron {
  font-size: 0.74rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.services-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.services-panel {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1140px, 92vw);
  max-height: 70vh;
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid #d5e3f6;
  border-top: 5px solid #0b63ce;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(13, 34, 64, 0.2);
  padding: 1rem 1.05rem 1.15rem;
  z-index: 1300;
}

.services-dropdown:hover .services-panel,
.services-dropdown:focus-within .services-panel,
.services-dropdown.open .services-panel {
  display: block;
}

.services-dropdown.open .services-toggle-btn .chevron {
  transform: rotate(180deg);
}

.services-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  margin-bottom: 0.8rem;
}

.services-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #173457;
  background: #ebf4ff;
  border: 1px solid #c9dcf8;
  border-radius: 999px;
  padding: 0.36rem 0.8rem;
  cursor: pointer !important;
}

.services-panel-hint {
  color: #4c6480;
  font-size: 0.84rem;
  font-weight: 700;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.42rem;
}

.services-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.services-group {
  min-width: 0;
  border: 1px solid #d7e4f5;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.68rem 0.68rem 0.62rem;
}

.services-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.services-group-title {
  display: inline-flex;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 900;
  color: #1d3658;
  cursor: pointer !important;
}

.services-group-title.is-current {
  color: #0a5ac0;
}

.services-group-count {
  display: inline-flex;
  border: 1px solid #c9dcf8;
  background: #edf5ff;
  color: #32547a;
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.services-group .services-list {
  grid-template-columns: 1fr;
  gap: 0.26rem;
}

.services-list a {
  color: #355174;
  font-weight: 700;
  line-height: 1.32;
  display: block;
  border-radius: 8px;
  padding: 0.28rem 0.42rem;
  cursor: pointer !important;
  transition: background-color 0.2s, color 0.2s;
}

.services-list a:hover,
.services-title:hover,
.services-group-title:hover {
  color: var(--blue);
}

.services-list a:hover {
  background: #ebf4ff;
  color: var(--blue);
}

.services-list a.is-current {
  background: #d9eaff;
  color: #0b63ce;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.45rem 0.65rem;
  font-size: 1.1rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  padding: 0.35rem 0 0.9rem;
  border-top: 1px solid #edf2fa;
}

.mobile-menu.open {
  display: grid;
  gap: 0.55rem;
  max-height: calc(100vh - 118px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu a {
  font-weight: 700;
  color: #27415f;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-menu .btn,
.mobile-menu a.btn,
.mobile-menu a.btn-blue,
.mobile-menu a.btn-red {
  color: #ffffff !important;
}

.mobile-menu .btn:hover,
.mobile-menu a.btn:hover,
.mobile-menu a.btn-blue:hover,
.mobile-menu a.btn-red:hover {
  color: #ffffff !important;
}

.mobile-menu .nav-link,
.mobile-menu .nav-link-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #27415f;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-menu .nav-link:hover {
  background: #e8f1ff;
  color: var(--blue);
}

.mobile-menu .nav-link.active {
  background: #d9e9ff;
  color: var(--blue);
}

.mobile-services-dropdown { display: grid; gap: 0.3rem; }

.mobile-services-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.38rem;
}

.mobile-services-row .nav-link {
  width: 100%;
  justify-content: flex-start;
}

.mobile-services-toggle {
  min-width: 56px;
  min-height: 46px;
  justify-content: center;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  border: 1px solid #bad1f2;
  border-radius: 10px;
  background: #ebf4ff;
  cursor: pointer !important;
}

.mobile-services-toggle:hover {
  background: #dbeafe;
  border-color: #95baf1;
}

.mobile-services-toggle .chevron {
  font-size: 0.98rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mobile-services-panel {
  display: none;
  margin-left: 0.5rem;
  padding: 0.55rem 0.6rem;
  border: 1px solid #d5e3f7;
  border-radius: 10px;
  background: #f8fbff;
  gap: 0.35rem;
}

.mobile-services-dropdown.open .mobile-services-panel {
  display: grid;
}

.mobile-services-dropdown.open .mobile-services-toggle .chevron {
  transform: rotate(180deg);
}

.mobile-services-panel a {
  color: #355276;
  font-weight: 700;
  padding: 0.32rem 0.45rem;
  border-radius: 8px;
  cursor: pointer !important;
}

.mobile-services-panel a:hover {
  background: #e8f1ff;
  color: var(--blue);
}

.mobile-services-group {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed #d7e2f3;
}

.mobile-services-group:last-child {
  margin-bottom: 0;
  border-bottom: 0;
  padding-bottom: 0;
}

.mobile-services-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
}

.mobile-services-links {
  display: grid;
  gap: 0.16rem;
}

.mobile-services-category {
  background: #edf4ff;
  border: 1px solid #d3e3f8;
  color: #1f3b5e !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

.mobile-services-category.is-current {
  background: #dbe9ff;
  border-color: #9dc2f7;
  color: #0b63ce !important;
}

.mobile-services-count {
  display: inline-flex;
  border: 1px solid #c9dcf8;
  background: #edf5ff;
  color: #32547a;
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-services-links a.is-current {
  background: #dfeeff;
  color: #0b63ce;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.1rem;
  cursor: pointer;
  font-weight: 800;
  transition: 0.2s;
}

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #0955af; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #ad1a27; }
.btn-outline { border-color: var(--blue); color: var(--blue); background: #fff; }

.hero { padding: 2.4rem 0 1.5rem; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-areas:
    "hero form"
    "offers offers";
  gap: 1rem;
}

.hero-main { grid-area: hero; }

.hero-form {
  grid-area: form;
  align-self: start;
  padding: 1.1rem;
}

.hero-offers {
  grid-area: offers;
  padding: 1rem;
  border-radius: 18px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff 20%, #edf4ff 100%);
}

.label {
  display: inline-flex;
  background: #e8f1ff;
  color: #1656a5;
  border: 1px solid #bad5fa;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.25rem 0.72rem;
  margin-bottom: 0.75rem;
}

h1 {
  margin: 0 0 0.8rem;
  line-height: 1.12;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.hero p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.stat {
  border: 1px solid #d8e2f1;
  background: #fff;
  border-radius: 12px;
  padding: 0.75rem;
}

.stat b { display: block; font-size: 1.1rem; }
.stat span { font-size: 0.84rem; color: var(--muted); }

.form-card { padding: 1.1rem; }
.form-card h2 { margin: 0 0 0.3rem; font-size: 1.3rem; }
.form-card p { margin: 0 0 0.8rem; color: var(--muted); font-size: 0.92rem; }

label {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.83rem;
  font-weight: 800;
  color: #294363;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.66rem 0.7rem;
  font: inherit;
  margin-bottom: 0.72rem;
}

textarea { min-height: 85px; resize: vertical; }

section { padding: 1rem 0 2rem; }

.section-title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.2;
}

.section-sub { margin: 0 0 1rem; color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: stretch;
}

.service {
  padding: 1rem;
  border-top: 4px solid #1862c2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service.service-clickable {
  position: relative;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service.service-clickable:hover {
  transform: translateY(-2px);
  border-color: #b9cee9;
  box-shadow: 0 14px 30px rgba(18, 36, 60, 0.16);
}

.service.service-clickable:focus-visible {
  outline: 3px solid rgba(11, 99, 206, 0.28);
  outline-offset: 2px;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.35rem;
}

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #bdd4f5;
  background: #edf4ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex: 0 0 auto;
}

.service-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.service h3 { margin: 0 0 0.35rem; font-size: 1.02rem; }
.service p {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  flex: 1;
}

.service .btn {
  margin-top: auto;
  align-self: flex-start;
  min-height: 46px;
  padding: 0.62rem 1.12rem;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 800;
  white-space: nowrap;
}

.service .btn.btn-outline {
  border-width: 2px;
  border-color: #1c65c8;
  background: #ffffff;
  color: #0b63ce;
}

.service .btn.btn-outline:hover,
.service .btn.btn-outline:focus-visible {
  background: #0b63ce;
  color: #ffffff;
  border-color: #0b63ce;
}

.tone-soft {
  background: #dfe6f0;
  border-top: 1px solid #d0dbea;
  border-bottom: 1px solid #d0dbea;
}

.tone-alt {
  background: #d7e1ee;
  border-top: 1px solid #c7d4e5;
  border-bottom: 1px solid #c7d4e5;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  padding: 1.25rem;
  border-radius: 20px;
}

.offer-card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.8vw, 2.05rem);
  line-height: 1.15;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.feature-card {
  padding: 1.3rem;
  border-radius: 20px;
  min-height: 250px;
}

.feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.service-split {
  align-items: stretch;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "offers"
    "side";
}

.service-main,
.service-side {
  display: flex;
  flex-direction: column;
}

.service-main { grid-area: main; }

.service-offers {
  grid-area: offers;
  grid-column: 1 / -1;
}

.service-offers .hero-offers {
  margin: 0;
}

.service-side { grid-area: side; }

.service-split.service-split-no-photo {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  grid-template-areas:
    "main side"
    "offers offers";
}

.service-split:not(.service-split-no-photo) {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  grid-template-areas:
    "main photo"
    "offers offers"
    "side side";
}

.service-photo-side {
  grid-area: photo;
  display: none;
  padding: 0.75rem;
  align-self: start;
  height: max-content;
  width: 100%;
}

.service-photo-side.has-photo {
  display: block;
}

.service-mobile-photo-wrap {
  display: none;
}

.service-photo-mobile-slot,
.service-photo-mobile-slot.has-photo {
  display: none;
}

.service-offers .section-title {
  margin-bottom: 0.6rem;
}

.service-main .section-sub {
  margin-bottom: 0.5rem;
}

.service-cta-row {
  margin: 0.8rem 0 0.6rem;
}

.service-cta-row .btn,
.service-cta-row .btn:hover,
.service-cta-row .btn:focus-visible,
.service-cta-row .btn:active {
  cursor: pointer !important;
}

.btn-book-attention {
  position: relative;
  overflow: visible;
  --pointer-width: 62px;
  --pointer-height: 56px;
  --pointer-right: -36px;
  --pointer-bottom: -31px;
  --ripple-right: 14px;
  --ripple-bottom: 10px;
}

@media (max-width: 1100px) {
  .btn-book-attention {
    --pointer-width: 56px;
    --pointer-height: 50px;
    --pointer-right: -30px;
    --pointer-bottom: -27px;
    --ripple-right: 12px;
    --ripple-bottom: 9px;
  }
}

@media (max-width: 780px) {
  .btn-book-attention {
    --pointer-width: 48px;
    --pointer-height: 42px;
    --pointer-right: -24px;
    --pointer-bottom: -22px;
    --ripple-right: 10px;
    --ripple-bottom: 8px;
  }
}

.btn-book-attention::after {
  content: "";
  position: absolute;
  width: var(--pointer-width);
  height: var(--pointer-height);
  right: var(--pointer-right);
  bottom: var(--pointer-bottom);
  background: url("/assets/img/ui/cursor-pointer.png") center / contain no-repeat;
  pointer-events: none;
  transform-origin: 19% 18%;
  filter: drop-shadow(0 2px 4px rgba(15, 34, 56, 0.35));
  z-index: 2;
  animation: bookPointerMove 1.45s cubic-bezier(0.2, 0.65, 0.35, 1) infinite;
}

.btn-book-attention::before {
  content: "";
  position: absolute;
  right: var(--ripple-right);
  bottom: var(--ripple-bottom);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.2);
  z-index: 1;
  animation: bookPointerRipple 1.45s cubic-bezier(0.2, 0.65, 0.35, 1) infinite;
}

@keyframes bookPointerMove {
  0%, 14% {
    transform: translate(18px, 16px) scale(1.02) rotate(-2deg);
  }
  28% {
    transform: translate(12px, 10px) scale(1) rotate(-1deg);
  }
  40% {
    transform: translate(6px, 5px) scale(0.97) rotate(0deg);
  }
  48% {
    transform: translate(3px, 2px) scale(0.82) rotate(0deg);
  }
  58% {
    transform: translate(6px, 5px) scale(1) rotate(0deg);
  }
  76% {
    transform: translate(10px, 9px) scale(1) rotate(-1deg);
  }
  100% {
    transform: translate(18px, 16px) scale(1.02) rotate(-2deg);
  }
}

@keyframes bookPointerRipple {
  0%, 32% {
    opacity: 0;
    transform: scale(0.18);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
  40% {
    opacity: 0.95;
    transform: scale(0.3);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.95),
      0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  58% {
    opacity: 0.82;
    transform: scale(0.3);
    box-shadow:
      0 0 0 20px rgba(255, 255, 255, 0),
      0 0 0 3px rgba(255, 255, 255, 0.76);
  }
  76% {
    opacity: 0.38;
    transform: scale(0.3);
    box-shadow:
      0 0 0 36px rgba(255, 255, 255, 0),
      0 0 0 58px rgba(255, 255, 255, 0);
  }
  100% {
    opacity: 0;
    transform: scale(0.2);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0),
      0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-book-attention::after,
  .btn-book-attention::before {
    animation: none !important;
    opacity: 0 !important;
  }
}

.trust-list-wrap {
  margin-top: 0.4rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid #c8d6e8;
  border-radius: 12px;
  background: #f7fbff;
}

.service-side-details {
  border-top: 1px dashed #bed0e5;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
}

.service-photo-card {
  margin: 0;
  border: 1px solid #c8d8ea;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.service-photo-img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}

.service-photo-caption {
  margin: 0;
  padding: 0.5rem 0.65rem;
  font-size: 0.84rem;
  color: #4c637f;
  border-top: 1px solid #d7e3f2;
  background: #f8fbff;
}

@media (max-width: 1200px) {
  .services-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-split:not(.service-split-no-photo) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "photo"
      "offers"
      "side";
  }

  .service-photo-side {
    padding: 0;
  }

  .service-photo-side.has-photo {
    max-width: 680px;
    margin: 0 auto;
  }

  .service-photo-img {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 1040px) {
  .services-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .services-groups {
    grid-template-columns: 1fr;
  }
}

.service-side-details p {
  margin: 0 0 0.45rem;
  color: #35516f;
  font-weight: 700;
}

.service-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "copy actions"
    "details details";
  gap: 0.85rem;
  align-items: start;
}

.service-side-copy {
  grid-area: copy;
}

.service-side-copy .section-title {
  margin-bottom: 0.4rem;
}

.service-side-copy p {
  margin: 0;
}

.service-side-actions {
  grid-area: actions;
  display: grid;
  gap: 0.55rem;
  min-width: 230px;
  justify-items: start;
}

.service-side-actions .btn {
  width: auto;
  justify-self: start;
  white-space: nowrap;
  padding: 0.56rem 0.9rem;
  font-size: 0.95rem;
}

.service-side-details {
  grid-area: details;
}

.service-split.service-split-no-photo .service-side {
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "details"
    "actions";
}

.service-split.service-split-no-photo .service-side-actions {
  min-width: 0;
  max-width: 100%;
}

.service-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-feature-grid .feature-card {
  min-height: 200px;
}

.service-problems-grid .feature-card h3,
.service-steps-grid .feature-card h3 {
  font-size: 1.12rem;
}

.service-long-copy {
  padding: 1.3rem;
}

.service-long-copy h2 {
  margin: 1rem 0 0.5rem;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.3;
  color: #193657;
}

.service-long-copy h2:first-child {
  margin-top: 0;
}

.service-long-copy p {
  margin-bottom: 0.8rem;
}

.service-long-copy ul {
  margin: 0.35rem 0 0.9rem 1.1rem;
  color: #304b68;
}

.service-long-copy li {
  margin-bottom: 0.35rem;
}

.service-faq {
  border-top: 1px solid #ccdae9;
  border-bottom: 1px solid #ccdae9;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-faq-item {
  border: 1px solid #c4d4e6;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 20px rgba(19, 37, 61, 0.07);
  cursor: pointer;
}

.service-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: #1b3453;
  position: relative;
  padding-right: 1.5rem;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: #2a6bcc;
}

.service-faq-item[open] summary::after {
  content: "-";
}

.service-faq-item p {
  margin: 0.55rem 0 0;
  color: #3c5674;
}

.service-final-cta {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.content-box { padding: 1.2rem; }

.pill-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.7rem; }
.pill {
  background: #e6edf8;
  color: #1e3553;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.34rem 0.68rem;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.chip {
  background: #f7fbff;
  border: 2px solid #c0cde0;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  color: #334d6f;
  font-size: 0.95rem;
  font-weight: 800;
}

.chip-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer !important;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.chip-link:hover {
  background: #e8f2ff;
  border-color: #8fb8f2;
  color: #1a4f92;
  transform: translateY(-1px);
}

.availability-note {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: #ffffff;
  border: 1px solid #c5d4e8;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(19, 37, 61, 0.08);
}

.availability-note p {
  margin: 0;
  color: #395270;
  font-weight: 700;
}

.dual-cta {
  display: inline-flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.trust-list {
  margin: 0 0 0.8rem;
  padding-left: 1.1rem;
  color: #37516f;
  font-weight: 700;
}

.trust-list li { margin-bottom: 0.35rem; }

.service-map {
  width: 100%;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.service-map-wrap {
  display: grid;
  gap: 0.7rem;
}

.service-map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border: 1px solid #c8d8eb;
  background: #f6fbff;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
}

.service-map-actions p {
  margin: 0;
  color: #304a68;
  font-size: 0.92rem;
}

.coverage-tooltip {
  background: #0d63cc;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  font-weight: 700;
}

.coverage-tooltip::before {
  border-top-color: #0d63cc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.post { padding: 1rem; }
.post .meta { color: #6a7e97; font-size: 0.82rem; font-weight: 700; margin-bottom: 0.35rem; }
.post h3 { margin: 0 0 0.45rem; font-size: 1.02rem; line-height: 1.3; }
.post p { margin: 0 0 0.7rem; color: var(--muted); font-size: 0.92rem; }
.post.is-hidden { display: none; }

.post-thumb {
  display: block;
  margin: -0.15rem -0.15rem 0.6rem;
}

.post-thumb img {
  width: 100%;
  border-radius: 11px;
  border: 1px solid #d4deec;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-filters {
  margin-bottom: 0.85rem;
  padding: 1rem;
}

.blog-filters-top {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 0.7rem;
  align-items: center;
}

.blog-filters-top h2 {
  margin: 0;
  font-size: 1.2rem;
}

.blog-filters-top input[type="search"] {
  border: 1px solid #b7cbe6;
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  font-size: 0.95rem;
}

.blog-topic-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.blog-topic-btn {
  border: 1px solid #b7cbe6;
  background: #fff;
  color: #204365;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.blog-topic-btn.active {
  border-color: #0d63cc;
  background: #0d63cc;
  color: #fff;
}

.blog-cover {
  margin: 0 0 0.95rem;
}

.blog-cover img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d4deec;
  object-fit: cover;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fff;
  padding: 0.78rem 0.9rem;
  margin-bottom: 0.65rem;
}

.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin: 0.55rem 0 0; color: var(--muted); }

.faq-all-services {
  border-top: 1px solid #d6e1ee;
}

.faq-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.faq-service-group {
  padding: 0.95rem;
}

.faq-service-group h3 {
  margin: 0 0 0.7rem;
  font-size: 1.06rem;
  color: #193657;
}

.faq-service-group details {
  margin-bottom: 0.52rem;
}

.faq-service-group details:last-child {
  margin-bottom: 0;
}

.content-copy {
  padding: 1.15rem;
  background: linear-gradient(160deg, #fff 0%, #f5f9ff 100%);
}

.content-copy p { margin: 0 0 0.75rem; color: #304863; }

.page-hero { padding: 2rem 0 1rem; }
.page-hero p { color: var(--muted); max-width: 72ch; }
.breadcrumb { color: #446183; font-size: 0.9rem; margin-bottom: 0.65rem; }
.breadcrumb a { color: var(--blue); }

.service-areas-overview .content-box {
  padding: 1.25rem;
}

.service-areas-overview p {
  margin: 0 0 0.8rem;
  color: #334e6f;
}

.service-areas-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-areas-feature-grid .feature-card {
  min-height: 0;
  padding: 1rem;
}

.service-areas-feature-grid .feature-card h3 {
  font-size: 1.25rem;
}

.service-areas-feature-grid .feature-card p {
  font-size: 0.95rem;
}

.service-areas-note {
  margin-top: 1rem;
}

.article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.article p, .article li { color: #314a67; }
.article ul { margin-top: 0; }

.booking-wizard-section {
  padding-top: 0.35rem;
}

.booking-wizard-shell {
  width: min(960px, 92vw);
  margin: 0 auto;
}

.booking-wizard-card {
  padding: clamp(1rem, 2.5vw, 2rem);
}

.booking-note {
  border: 1px solid #b8d0f2;
  background: #e9f2ff;
  border-radius: 11px;
  padding: 0.74rem 0.86rem;
  color: #254666;
  font-weight: 800;
}

.booking-wizard {
  margin-top: 1rem;
}

.booking-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.booking-stepper-line {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 999px;
  background: #d9deea;
}

.booking-stepper-dot {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #d5dbe8;
  background: #f4f7fc;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto;
}

.booking-stepper-dot.is-active,
.booking-stepper-dot.is-complete {
  background: #0d2b5b;
  border-color: #0d2b5b;
  color: #fff;
}

.booking-stepper-dot.is-complete::before {
  content: "✓";
  font-size: 0.92rem;
}

.booking-stepper-dot.is-complete {
  font-size: 0;
}

.booking-progress {
  margin: 0 0 0.7rem;
  font-weight: 800;
  color: #2d4d72;
}

.booking-step {
  display: none;
  animation: bookingFade 0.2s ease;
}

.booking-step.active {
  display: block;
}

@keyframes bookingFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-step h2 {
  margin: 0 0 0.32rem;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.2;
  color: #122c56;
}

.booking-step-sub {
  margin: 0 0 1rem;
  color: #526887;
  font-size: 1rem;
}

.booking-zip-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.62rem;
  margin-bottom: 0.5rem;
}

.booking-location-btn {
  min-width: 180px;
}

.booking-inline-status {
  min-height: 1.2rem;
  margin: 0 0 0.45rem;
  color: #456182;
  font-size: 0.9rem;
}

.booking-appliance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.62rem;
  margin-bottom: 0.85rem;
}

.booking-appliance-item {
  border: 2px solid #d1d9e8;
  border-radius: 14px;
  background: #fff;
  min-height: 132px;
  padding: 0.75rem 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  font-weight: 800;
  color: #1d3557;
  text-align: center;
  line-height: 1.22;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.booking-appliance-item:hover {
  transform: translateY(-2px);
  border-color: #0d63cc;
}

.booking-appliance-item.is-selected {
  border-color: #0d63cc;
  background: #edf4ff;
  box-shadow: 0 8px 20px rgba(13, 99, 204, 0.16);
}

.booking-appliance-item img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.booking-field-wrap {
  margin-bottom: 0.35rem;
}

.booking-brand-wrap {
  position: relative;
}

.booking-brand-wrap input {
  margin-bottom: 0;
}

.booking-brand-list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #ffffff;
  border: 1px solid #d8e2f1;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(20, 45, 78, 0.16);
  max-height: 220px;
  overflow-y: auto;
  z-index: 30;
}

.booking-brand-list.is-open {
  display: block;
}

.booking-brand-option {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ecf1fa;
  background: #fff;
  text-align: left;
  padding: 0.66rem 0.78rem;
  font: inherit;
  color: #1b3658;
}

.booking-brand-option:last-child {
  border-bottom: 0;
}

.booking-brand-option:hover,
.booking-brand-option:focus-visible {
  background: #edf4ff;
  outline: none;
}

.booking-field-hint {
  margin: 0.38rem 0 0;
  color: #5a708e;
  font-size: 0.88rem;
}

.booking-schedule-picker {
  border: 1px solid #d0d9e8;
  border-radius: 14px;
  background: #f9fbff;
  padding: 0.95rem;
  margin-bottom: 0.85rem;
}

.booking-schedule-intro {
  margin: 0 0 0.55rem;
  color: #12315e;
  font-size: 1.1rem;
  font-weight: 900;
  text-align: center;
}

.booking-date-carousel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 0.5rem;
}

.booking-date-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #c7d4e7;
  background: #fff;
  color: #1a3a62;
  font-size: 1.75rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: auto;
}

.booking-date-nav:disabled {
  opacity: 0.45;
  cursor: default !important;
}

.booking-date-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.45rem;
  min-width: 0;
}

.booking-date-card {
  border: 2px solid #0f3766;
  border-radius: 12px;
  background: #fff;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.04rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.booking-date-card:hover {
  transform: translateY(-1px);
}

.booking-date-card.is-disabled {
  border-color: #d5dbe7;
  color: #9aa7bb;
  background: #f3f5f9;
  cursor: not-allowed !important;
}

.booking-date-card.is-disabled:hover {
  transform: none;
}

.booking-date-card.is-selected {
  background: #0f2f61;
  border-color: #0f2f61;
  color: #fff;
}

.booking-date-month {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  opacity: 0.9;
}

.booking-date-day {
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
}

.booking-date-weekday {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.booking-time-row {
  margin-bottom: 0.75rem;
}

.booking-time-label {
  margin: 0 0 0.42rem;
  color: #2b4264;
  font-size: 1rem;
  font-weight: 900;
}

.booking-time-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.62rem;
}

.booking-time-btn {
  border-radius: 11px;
  border: 2px solid #0f3766;
  padding: 0.66rem 0.8rem;
  background: #fff;
  color: #0f3766;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-time-btn.is-selected {
  background: #0f2f61;
  border-color: #0f2f61;
  color: #fff;
}

.booking-selection-summary {
  margin: 0 0 0.8rem;
}

.booking-selection-summary p {
  margin: 0;
  color: #3e5778;
  font-weight: 700;
}

.booking-selection-summary strong {
  display: block;
  margin-top: 0.16rem;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  line-height: 1.2;
}

.booking-callback-box {
  border: 1px solid #c9d6ea;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.8rem;
  margin-bottom: 0.3rem;
}

.booking-callback-box p {
  margin: 0 0 0.45rem;
  color: #213f64;
  font-weight: 700;
}

.booking-callback-box a {
  color: #0f3766 !important;
  font-weight: 900 !important;
  text-decoration: underline;
}

.booking-callback-check {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
}

.booking-callback-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.booking-callback-check span {
  font-weight: 800;
  color: #223f61;
}

.booking-schedule-picker.is-disabled,
.booking-time-row.is-disabled {
  opacity: 0.42;
  filter: grayscale(0.18);
  pointer-events: none;
}

.booking-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.68rem;
}

.booking-field-row > div {
  min-width: 0;
}

.booking-consent {
  margin: 0.45rem 0 0.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
}

.booking-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0.12rem 0 0;
  flex: 0 0 18px;
}

.booking-consent span {
  color: #2e4868;
  font-size: 0.92rem;
  line-height: 1.4;
}

.booking-upload-wrap {
  margin-bottom: 0.4rem;
}

.booking-upload-wrap.is-compact {
  margin-top: 0.7rem;
  margin-bottom: 0.35rem;
}

.booking-upload-wrap input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.booking-upload-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  border: 2px dashed #c8d5ea;
  border-radius: 14px;
  background: #f8fbff;
  text-align: center;
  padding: 1.2rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.booking-upload-wrap.is-compact .booking-upload-drop {
  min-height: 120px;
  padding: 0.85rem 0.8rem;
}

.booking-upload-wrap.is-compact .booking-upload-title {
  font-size: 1rem;
}

.booking-upload-wrap.is-compact .booking-upload-sub {
  font-size: 0.9rem;
}

.booking-upload-drop:hover,
.booking-upload-wrap.is-drag .booking-upload-drop {
  border-color: #0d63cc;
  background: #ecf4ff;
}

.booking-upload-title {
  font-size: 1.18rem;
  font-weight: 900;
  color: #18385d;
}

.booking-upload-sub {
  margin-top: 0.24rem;
  color: #4e6686;
}

.booking-upload-file {
  margin: 0.55rem 0 0;
  color: #2f4c72;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-upload-preview-list {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 0.45rem;
  max-width: 360px;
}

.booking-upload-preview-item {
  position: relative;
  border: 1px solid #c8d5ea;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.booking-upload-preview-item img {
  display: block;
  width: 100%;
  height: 86px;
  object-fit: cover;
}

.booking-upload-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 23px;
  height: 23px;
  border: 0;
  border-radius: 999px;
  background: rgba(19, 41, 75, 0.88);
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.booking-upload-preview-remove:hover,
.booking-upload-preview-remove:focus-visible {
  background: #a81f2f;
  transform: scale(1.06);
}

.booking-upload-progress {
  margin-top: 0.55rem;
}

.booking-upload-progress-track {
  width: min(300px, 100%);
  height: 9px;
  border-radius: 999px;
  background: #dde7f5;
  overflow: hidden;
  border: 1px solid #c0d1e8;
}

.booking-upload-progress-bar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #0b63ce 0%, #2d7fe0 100%);
  transition: width 0.18s ease;
}

.booking-upload-progress-text {
  margin: 0.35rem 0 0;
  color: #2d4f76;
  font-size: 0.86rem;
  font-weight: 700;
}

.booking-submit-message {
  margin: 0.6rem 0 0;
  font-weight: 700;
}

.booking-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.booking-next-btn,
.booking-submit-btn {
  min-width: 230px;
}

.booking-submit-btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.96;
  padding-right: 2.9rem;
}

.booking-submit-btn.is-loading::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: booking-spin 0.8s linear infinite;
}

@keyframes booking-spin {
  to { transform: rotate(360deg); }
}

.booking-cancel {
  color: #1c3b61;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.35rem;
}

.booking-step-message {
  min-height: 1.2rem;
  margin: 0.48rem 0 0;
  color: #a22433;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-required {
  color: #c02a33;
  font-weight: 900;
}

.booking-help-row {
  margin-top: 0.75rem;
  text-align: center;
}

.booking-help-row .btn {
  min-width: min(420px, 100%);
}

.booking-step input.is-invalid,
.booking-step textarea.is-invalid,
.booking-step select.is-invalid,
.booking-step .booking-schedule-picker.is-invalid .booking-date-card,
.booking-step .booking-time-row.is-invalid .booking-time-btn,
.booking-step .booking-appliance-grid.is-invalid .booking-appliance-item {
  border-color: #bd2a36 !important;
  box-shadow: 0 0 0 3px rgba(189, 42, 54, 0.15);
}

.site-footer {
  margin-top: auto;
  background: #0d2240;
  color: #d8e4f4;
  border-top: 1px solid #183659;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0 5.2rem;
}

.footer-wrap small { color: #a7bdd9; }

.footer-wrap small a {
  color: #8eb8ff;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-wrap small a:hover,
.footer-wrap small a:focus-visible {
  color: #ffffff;
}

.footer-social-links {
  margin: 0.45rem 0 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-social-links a {
  text-decoration: none;
  color: #dfeafb;
  border: 1px solid #33537a;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font-size: 0.84rem;
}

.footer-social-links a:hover {
  border-color: #6f91bf;
  color: #ffffff;
}

.footer-legal-links {
  margin: 0.42rem 0 0.38rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal-links a {
  color: #dfeafb;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  font-weight: 700;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.legal-doc {
  white-space: pre-wrap;
  margin: 0;
  font: inherit;
  color: #314a67;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 88px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(11, 99, 206, 0.35);
  display: none;
  z-index: 90;
}

.to-top.show { display: inline-flex; align-items: center; justify-content: center; }

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d8e2f1;
  box-shadow: 0 -8px 20px rgba(17, 34, 61, 0.1);
  z-index: 95;
  display: none;
}

.mobile-cta-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.6rem;
  padding: 0.55rem 0;
}

.mobile-cta .btn { padding: 0.72rem 0.7rem; font-size: 0.95rem; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-filters-top { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .faq-service-grid { grid-template-columns: 1fr; }
  .service-feature-grid { grid-template-columns: 1fr 1fr; }
  .service-faq-grid { grid-template-columns: 1fr; }
  .service-final-cta {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .booking-appliance-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .booking-date-track { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .booking-next-btn,
  .booking-submit-btn { min-width: 210px; }
}

@media (max-width: 780px) {
  .desktop-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .hero-layout, .split, .blog-grid { grid-template-columns: 1fr; }
  .blog-filters {
    padding: 0.85rem;
  }
  .blog-topic-btn {
    font-size: 0.84rem;
  }
  .hero-layout {
    grid-template-areas:
      "hero"
      "offers"
      "form";
  }
  .hero-content { padding: 1.25rem; }
  .form-card { padding: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .service-split:not(.service-split-no-photo) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "photo"
      "offers"
      "side";
  }
  .service-split.service-split-no-photo {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "offers"
      "side";
  }
  .feature-grid { grid-template-columns: 1fr; }
  .service-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }
  .service-feature-grid .feature-card {
    min-height: 0;
    border-radius: 14px;
    padding: 0.8rem 0.75rem;
  }
  .service-feature-grid .feature-card h3 {
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
  }
  .service-feature-grid .feature-card p {
    font-size: 0.87rem;
    line-height: 1.4;
  }
  .service-offers {
    order: 3;
  }
  .service-photo-side {
    order: 2;
    padding: 0.65rem;
  }
  .service-photo-side.has-photo {
    display: block;
  }
  .service-photo-img {
    aspect-ratio: 16 / 11;
  }
  .service-mobile-photo-wrap {
    display: block;
    padding: 0.15rem 0 0.85rem;
  }
  .service-photo-mobile-slot.has-photo {
    display: block;
    max-width: 620px;
    margin: 0 auto;
  }
  .service-split-mobile-photo-top .service-photo-side,
  .service-split-mobile-photo-top .service-photo-side.has-photo {
    display: none !important;
  }
  .service-side {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "details"
      "actions";
  }
  .service-side-actions {
    min-width: 0;
    max-width: 100%;
  }
  .service-side {
    order: 4;
  }
  .service-main {
    order: 1;
  }
  .availability-note {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-cta { display: block; }
  .footer-wrap { grid-template-columns: 1fr; }
  .booking-wizard-shell {
    width: min(620px, 94vw);
  }
  .booking-wizard-card {
    padding: 1rem 0.9rem;
  }
  .booking-stepper {
    gap: 0.32rem;
  }
  .booking-stepper-dot {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }
  .booking-step h2 {
    font-size: clamp(1.26rem, 5.2vw, 1.75rem);
  }
  .booking-zip-row {
    grid-template-columns: 1fr;
    gap: 0.48rem;
  }
  .booking-location-btn {
    width: 100%;
    min-width: 0;
  }
  .booking-appliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.52rem;
  }
  .booking-appliance-item {
    min-height: 116px;
    padding: 0.62rem 0.45rem;
  }
  .booking-appliance-item img {
    width: 34px;
    height: 34px;
  }
  .booking-schedule-picker {
    padding: 0.75rem;
  }
  .booking-date-carousel {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 0.3rem;
  }
  .booking-date-nav {
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
  }
  .booking-date-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.3rem;
  }
  .booking-date-card {
    min-height: 76px;
    border-radius: 10px;
  }
  .booking-time-buttons {
    gap: 0.42rem;
  }
  .booking-time-btn {
    padding: 0.55rem 0.45rem;
    font-size: 0.9rem;
  }
  .booking-selection-summary strong {
    font-size: 1.15rem;
  }
  .booking-field-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .booking-upload-drop {
    min-height: 155px;
  }
  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-next-btn,
  .booking-submit-btn,
  .booking-actions .btn {
    width: 100%;
    min-width: 0;
  }
  .booking-cancel {
    margin-left: 0;
    text-align: center;
  }
  .service-map-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
