:root {
  --navy-950: #051a3a;
  --navy-900: #08265a;
  --navy-800: #0a3677;
  --blue-700: #064bd8;
  --blue-600: #0b63e5;
  --blue-500: #1686f4;
  --cyan-100: #dff4ff;
  --gold-500: #f2b705;
  --green-600: #0f9d58;
  --ink: #102033;
  --muted: #5b6878;
  --line: #d9e2ee;
  --soft: #f3f7fb;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(8, 38, 90, 0.14);
  --shadow-soft: 0 10px 28px rgba(8, 38, 90, 0.1);
  --radius: 8px;
  --container: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: calc(100% - 40px);
  max-width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 226, 238, 0.9);
  box-shadow: 0 6px 24px rgba(5, 26, 58, 0.06);
  backdrop-filter: blur(18px);
}

.top-strip {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
}

.top-strip a {
  color: var(--white);
  font-weight: 700;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav .btn::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 12px 28px rgba(6, 75, 216, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 16px 32px rgba(6, 75, 216, 0.32);
}

.btn-outline {
  color: var(--white);
  background: rgba(5, 26, 58, 0.12);
  border-color: rgba(255, 255, 255, 0.78);
}

.btn-light {
  color: var(--blue-700);
  background: var(--white);
  border-color: var(--line);
}

.btn-dark {
  color: var(--white);
  background: var(--navy-950);
}

.btn-book {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-color: rgba(242, 183, 5, 0.5);
  box-shadow:
    0 14px 30px rgba(6, 75, 216, 0.32),
    0 0 0 0 rgba(22, 134, 244, 0.34);
  animation: bookHeartbeat 2.6s ease-in-out infinite;
}

.btn-book:hover {
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 18px 36px rgba(6, 75, 216, 0.36),
    0 0 0 7px rgba(242, 183, 5, 0.14);
  animation-play-state: paused;
}

@keyframes bookHeartbeat {
  0%,
  42%,
  100% {
    transform: scale(1);
    box-shadow:
      0 14px 30px rgba(6, 75, 216, 0.32),
      0 0 0 0 rgba(22, 134, 244, 0.28);
  }

  12% {
    transform: scale(1.045);
    box-shadow:
      0 18px 38px rgba(6, 75, 216, 0.38),
      0 0 0 8px rgba(22, 134, 244, 0.14);
  }

  23% {
    transform: scale(0.995);
  }

  31% {
    transform: scale(1.025);
  }
}

.hero-slider {
  position: relative;
  min-height: clamp(680px, 86vh, 860px);
  overflow: hidden;
  background: var(--navy-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: stretch;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 26, 58, 0.94) 0%, rgba(5, 26, 58, 0.78) 32%, rgba(5, 26, 58, 0.2) 62%, rgba(5, 26, 58, 0.08) 100%),
    linear-gradient(0deg, rgba(5, 26, 58, 0.34), rgba(5, 26, 58, 0.02) 45%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: clamp(680px, 86vh, 860px);
  padding: 86px 0 160px;
  color: var(--white);
}

.hero-panel {
  width: min(620px, 92vw);
}

.accent-line {
  display: block;
  width: 84px;
  height: 5px;
  margin: 0 0 30px;
  background: var(--gold-500);
  border-radius: 999px;
}

.hero-title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.slider-arrows {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: rgba(5, 26, 58, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  pointer-events: auto;
  transform: translateY(-50%);
}

.slider-arrow:hover {
  background: rgba(6, 75, 216, 0.9);
}

.slider-arrow.prev {
  left: 28px;
}

.slider-arrow.next {
  right: 28px;
}

.slider-dots {
  position: absolute;
  left: max(20px, calc((100vw - var(--container)) / 2));
  top: var(--slider-dots-top, calc(50% + 250px));
  z-index: 5;
  display: flex;
  gap: 12px;
  transition: top 0.25s ease;
}

.slider-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 50%;
}

.slider-dot.is-active {
  width: 38px;
  background: var(--blue-500);
  border-radius: 999px;
}

.slider-dot:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.service-tabs-wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 6;
  width: calc(100% - 40px);
  max-width: var(--container);
  transform: translateX(-50%);
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(5, 26, 58, 0.44));
  box-shadow:
    0 22px 48px rgba(5, 26, 58, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px) saturate(142%);
  -webkit-backdrop-filter: blur(20px) saturate(142%);
}

.service-tab {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 98px;
  padding: 24px 30px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(5, 26, 58, 0.46);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-tab::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 36%);
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.service-tab:last-child {
  border-right: 0;
}

.service-tab:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(6, 75, 216, 0.32);
  transform: translateY(-2px);
}

.service-tab:focus {
  outline: none;
}

.service-tab:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: -3px;
}

.service-tab svg {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.service-tab strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.service-tab span {
  position: relative;
  z-index: 1;
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.service-tab span span {
  display: none;
}

.service-tab.is-active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 36%),
    linear-gradient(135deg, rgba(6, 75, 216, 0.94), rgba(22, 134, 244, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 38px rgba(6, 75, 216, 0.24);
}

.service-tab.is-active::after {
  position: absolute;
  left: 50%;
  bottom: -27px;
  z-index: 0;
  width: 52px;
  height: 52px;
  background: inherit;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
  box-shadow: 10px 10px 24px rgba(5, 26, 58, 0.18);
}

.progress-line {
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
}

.progress-line span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-500);
}

.progress-line.is-running span {
  animation: sliderProgress 8s linear forwards;
}

@keyframes sliderProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 60px 0;
}

.section-soft {
  background: var(--soft);
}

.section-navy {
  color: var(--white);
  background: var(--navy-950);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header.center {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-navy .section-kicker {
  color: var(--gold-500);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.section-title {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.section-navy .section-title,
.page-hero .section-title {
  color: var(--white);
}

.section-intro {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-navy .section-intro,
.page-hero .section-intro {
  color: rgba(255, 255, 255, 0.84);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.insight-card,
.feature-card,
.booking-shell,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: clamp(220px, 18vw, 292px);
  object-fit: cover;
  object-position: center;
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-card h3,
.feature-card h3,
.insight-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 22px;
  line-height: 1.2;
}

.service-card p,
.feature-card p,
.insight-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-700);
  font-weight: 900;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 24px;
  box-shadow: none;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--radius);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 2.4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}

.split img {
  width: 100%;
  height: clamp(310px, 34vw, 430px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--white);
  background: var(--green-600);
  border-radius: 50%;
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  position: relative;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-step strong {
  display: block;
  color: var(--gold-500);
  font-size: 13px;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.insight-card {
  overflow: hidden;
  box-shadow: none;
}

.insight-card img {
  width: 100%;
  height: clamp(190px, 15vw, 230px);
  object-fit: cover;
  object-position: center;
}

.insight-card div {
  padding: 20px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 38, 90, 0.95), rgba(6, 75, 216, 0.88)),
    url("/assets/images/water-storage-filtration.png") center / cover;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1.1;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  padding: 92px 0;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 26, 58, 0.94), rgba(5, 26, 58, 0.76), rgba(5, 26, 58, 0.42)),
    var(--hero-image, none) center / cover;
  content: "";
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.article-content {
  font-size: 18px;
}

.article-content h2,
.article-content h3 {
  color: var(--navy-950);
  line-height: 1.15;
}

.article-content h2 {
  margin-top: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.article-content h3 {
  margin-top: 34px;
  font-size: 25px;
}

.article-content p {
  color: var(--muted);
}

.article-image {
  width: 100%;
  margin: 28px 0;
  height: clamp(280px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.info-panel {
  padding: 24px;
  box-shadow: none;
}

.info-panel h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  font-size: 21px;
}

.quick-links {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quick-links a {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  color: var(--blue-700);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.faq-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 20px;
  line-height: 1.25;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.faq-item a {
  color: var(--blue-700);
  font-weight: 800;
}

.booking-section {
  padding: 58px 0 72px;
  background: linear-gradient(180deg, var(--white), var(--soft));
}

.booking-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  overflow: hidden;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 640px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 38, 90, 0.96), rgba(5, 26, 58, 0.98)),
    url("/assets/images/hero-water-survey.png") center / cover;
}

.booking-step {
  display: grid;
  grid-template-columns: 42px 1fr 26px;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.booking-step.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
}

.booking-step.is-complete {
  color: var(--white);
}

.step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.step-status {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: transparent;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 14px;
}

.booking-step.is-complete .step-status {
  color: var(--white);
  background: var(--green-600);
}

.step-title {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.step-subtitle {
  margin: 3px 0 0;
  font-size: 14px;
}

.booking-help {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.booking-help strong {
  display: block;
  margin-bottom: 4px;
}

.booking-help a {
  color: var(--cyan-100);
  font-weight: 900;
}

.booking-main {
  min-height: 640px;
  padding: clamp(24px, 4vw, 46px);
}

.booking-panel {
  display: none;
}

.booking-panel.is-active {
  display: block;
}

.booking-panel h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.booking-panel > p {
  margin: 10px 0 28px;
  color: var(--muted);
}

.service-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-option {
  min-height: 180px;
  padding: 22px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.service-option svg {
  width: 58px;
  height: 58px;
  color: var(--blue-700);
}

.service-option strong {
  display: block;
  margin-top: 16px;
  color: var(--navy-950);
  font-size: 18px;
}

.service-option span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.service-option.is-selected {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-color: var(--blue-700);
}

.service-option.is-selected svg,
.service-option.is-selected strong,
.service-option.is-selected span {
  color: var(--white);
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.calendar-header button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calendar-title {
  color: var(--navy-950);
  font-weight: 900;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.calendar-weekday {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  display: grid;
  min-height: 52px;
  place-items: center;
  color: var(--navy-950);
  background: #eef2f7;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.calendar-day.is-muted {
  color: #9ba7b4;
}

.calendar-day:not(:disabled):hover {
  border-color: var(--blue-500);
}

.calendar-day.is-selected {
  color: var(--white);
  background: var(--blue-700);
}

.time-list {
  display: grid;
  gap: 12px;
}

.time-slot {
  min-height: 52px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #7ca4ff;
  border-radius: var(--radius);
  font-weight: 900;
}

.time-slot.is-selected {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.selection-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 28px;
  padding: 14px 16px;
  color: var(--navy-950);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(22, 134, 244, 0.18);
  border-color: var(--blue-600);
}

.form-status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--navy-950);
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.form-status.is-success {
  color: var(--green-600);
}

.contact-section {
  padding: 72px 0 86px;
  background:
    linear-gradient(180deg, var(--white), var(--soft));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.contact-panel,
.contact-form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.contact-map {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: var(--radius);
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 3px;
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.2;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-card a {
  color: var(--blue-700);
  font-weight: 900;
}

.contact-form-panel {
  padding: clamp(24px, 4vw, 38px);
}

.contact-form-panel .section-title {
  font-size: clamp(28px, 3vw, 42px);
}

.contact-form {
  margin-top: 24px;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 1fr 1fr;
  gap: 34px;
  padding: 52px 0 34px;
}

.footer-logo {
  width: 148px;
  padding: 5px;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-main h2,
.footer-main h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 16px;
}

.footer-main p,
.footer-main ul {
  margin: 0;
}

.footer-main ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-main a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  font-weight: 900;
}

.social-link {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.social-link::before,
.whatsapp-float::before {
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.social-link:hover {
  color: var(--gold-500);
  border-color: rgba(242, 183, 5, 0.6);
}

.social-facebook {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.5V6.8c0-.8.5-1.3 1.3-1.3H17V2.2c-.8-.1-1.7-.2-2.6-.2-2.7 0-4.5 1.6-4.5 4.6v1.9H7v3.7h2.9V22H14v-9.8h2.8l.5-3.7H14Z'/%3E%3C/svg%3E");
}

.social-twitter {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.9 10.6 21.2 2h-1.7l-6.4 7.4L8.1 2H2.2l7.7 11.2L2.2 22h1.7l6.7-7.8 5.4 7.8h5.9l-8-11.4Zm-2.4 2.8-.8-1.1L4.5 3.3h2.8l5 7.1.8 1.1 6.5 9.3h-2.8l-5.3-7.4Z'/%3E%3C/svg%3E");
}

.social-youtube {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 7.2a3 3 0 0 0-2.1-2.1C18 4.6 12 4.6 12 4.6s-6 0-7.9.5A3 3 0 0 0 2 7.2 31 31 0 0 0 1.5 12a31 31 0 0 0 .5 4.8 3 3 0 0 0 2.1 2.1c1.9.5 7.9.5 7.9.5s6 0 7.9-.5a3 3 0 0 0 2.1-2.1 31 31 0 0 0 .5-4.8 31 31 0 0 0-.5-4.8ZM10 15.4V8.6l6 3.4-6 3.4Z'/%3E%3C/svg%3E");
}

.whatsapp-float {
  --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.1 4.9A9.8 9.8 0 0 0 3.7 16.7L2.3 22l5.4-1.4A9.8 9.8 0 0 0 22 11.9a9.7 9.7 0 0 0-2.9-7Zm-7 15.1c-1.5 0-3-.4-4.3-1.2l-.3-.2-3.2.8.9-3.1-.2-.3A8.1 8.1 0 1 1 12.1 20Zm4.5-6.1c-.2-.1-1.5-.7-1.7-.8-.2-.1-.4-.1-.6.1-.2.3-.7.8-.8 1-.2.2-.3.2-.6.1a6.6 6.6 0 0 1-3.3-2.9c-.2-.3 0-.4.1-.6l.4-.5c.1-.2.2-.3.2-.5.1-.2 0-.4 0-.5l-.8-1.8c-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.3.3-1 1-1 2.3s1 2.7 1.1 2.9c.1.2 1.9 3 4.7 4.2.7.3 1.2.5 1.6.6.7.2 1.3.2 1.8.1.6-.1 1.5-.6 1.7-1.2.2-.6.2-1.1.2-1.2-.1-.2-.3-.3-.5-.4Z'/%3E%3C/svg%3E");
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 16px;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(5, 26, 58, 0.26);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float::before {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
}

.whatsapp-float span {
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(5, 26, 58, 0.32);
}

@media (max-width: 1080px) {
  .brand img {
    width: 190px;
  }

  .main-nav {
    gap: 12px;
  }

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

  .process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-shell,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .booking-sidebar,
  .booking-main {
    min-height: auto;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .container {
    width: calc(100% - 28px);
  }

  .top-strip .container {
    flex-direction: column;
    gap: 2px;
  }

  .nav-bar {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero-slider,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    padding: 70px 0 230px;
  }

  .hero-slide::before {
    background:
      linear-gradient(90deg, rgba(5, 26, 58, 0.96), rgba(5, 26, 58, 0.74)),
      linear-gradient(0deg, rgba(5, 26, 58, 0.42), rgba(5, 26, 58, 0.12));
  }

  .slider-arrow {
    display: none;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-tab {
    min-height: 74px;
    padding: 16px 18px;
    gap: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-tab::before {
    border-radius: 7px;
  }

  .service-tab.is-active::after {
    display: none;
  }

  .service-tab svg {
    width: 42px;
    height: 42px;
  }

  .service-tab strong {
    font-size: 18px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header,
  .split,
  .calendar-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-header {
    align-items: start;
  }

  .service-options,
  .service-grid,
  .why-grid,
  .insights-grid,
  .faq-grid,
  .process,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .insight-card img {
    height: 220px;
  }

  .article-image,
  .split img {
    height: 260px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 168px;
  }

  .hero-slider,
  .hero-content {
    min-height: 790px;
  }

  .hero-title {
    font-size: 39px;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .booking-actions .btn {
    width: 100%;
  }

  .service-tabs-wrap {
    width: calc(100% - 20px);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    max-width: calc(100vw - 32px);
    padding: 0 13px;
    font-size: 13px;
  }

  .whatsapp-float::before {
    width: 24px;
    height: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    gap: 7px;
  }

  .calendar-day {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
