﻿:root {
  --cf-blue: #0163ce;
  --cf-blue-mid: #1f9af4;
  --cf-blue-light: #35aafb;
  --cf-navy: #022d5d;
  --cf-orange: #fd861e;
  --cf-white: #ffffff;
  --cf-bg: #f7fbff;
  --cf-border: #d4e2ee;
  --cf-muted: #4f6b8f;
  --cf-shadow-blue: rgba(31, 154, 244, 0.18);
  --cf-navy-soft: rgba(2, 45, 93, 0.12);
  --ink: var(--cf-navy);
  --muted: var(--cf-muted);
  --paper: var(--cf-white);
  --soft: var(--cf-bg);
  --white: var(--cf-white);
  --sage: var(--cf-blue-mid);
  --sage-dark: var(--cf-blue);
  --accent: var(--cf-blue-light);
  --accent-strong: var(--cf-blue-mid);
  --mist: #e9f5ff;
  --line: var(--cf-border);
  --shadow: 14px 14px 0 rgba(53, 170, 251, 0.14);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
  --font-display: "Plus Jakarta Sans", "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px 24px;
  background: rgba(246, 249, 251, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(95, 127, 149, 0.45);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #dceaf2);
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(23, 61, 86, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.primary-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-nav button,
.ghost-link,
.site-footer button {
  border: 0;
  background: transparent;
  color: var(--muted);
}

.primary-nav button {
  padding: 9px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.primary-nav button:hover,
.primary-nav button:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible,
.site-footer button:hover,
.site-footer button:focus-visible {
  color: var(--ink);
  background: rgba(95, 127, 149, 0.1);
  outline: 0;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.language-switch button.active {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(23, 61, 86, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #1c506d;
}

.btn-secondary {
  background: linear-gradient(135deg, #9bdcf2, var(--accent));
  color: #0b2738;
  box-shadow: 0 16px 34px rgba(42, 111, 145, 0.24);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: linear-gradient(135deg, #8bd4ee, #61b8dc);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(23, 61, 86, 0.5);
  background: rgba(95, 127, 149, 0.08);
}

.view {
  display: none;
}

.view.is-active {
  display: block;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #d9e8f1;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: translateY(var(--parallax-y, 0));
  backface-visibility: hidden;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(246, 249, 251, 0.96) 0%, rgba(246, 249, 251, 0.76) 40%, rgba(246, 249, 251, 0.16) 76%),
    linear-gradient(0deg, rgba(22, 33, 42, 0.1), rgba(22, 33, 42, 0.02));
}

.hero-content {
  position: relative;
  max-width: 760px;
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.03;
}

h1 {
  max-width: 740px;
  font-size: 4.25rem;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: #344955;
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions,
.dashboard-actions,
.booking-actions,
.deposit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-note span,
.area-tags span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-strip {
  padding: 26px 0;
  background: #0e2738;
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(310px, 1.7fr) repeat(4, minmax(120px, 1fr));
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.trust-item {
  min-width: 0;
  padding: 12px 0;
}

.trust-item:not(:first-child) {
  padding-left: clamp(16px, 1.8vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.2rem + 1.1vw, 2.35rem);
  line-height: 1.05;
  white-space: nowrap;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 56px;
  align-items: end;
}

.split-heading p:not(.eyebrow),
.feature-copy > p:not(.eyebrow),
.process-intro > p:not(.eyebrow),
.area-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.page-heading > p:not(.eyebrow),
.auth-copy > p:not(.eyebrow),
.booking-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(22, 33, 42, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(22, 33, 42, 0.07);
}

.service-card img {
  flex: 0 0 auto;
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 20px;
}

.service-card p,
.detail-card p,
.dashboard-card p,
.auth-card p,
.admin-table-card p {
  color: var(--muted);
}

.service-card button {
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: var(--sage-dark);
  font-weight: 900;
}

.service-card.is-featured {
  grid-column: span 2;
}

.service-card.is-featured img {
  height: 210px;
}

.feature-band {
  background:
    linear-gradient(180deg, rgba(95, 127, 149, 0.12), rgba(95, 127, 149, 0)),
    var(--soft);
}

.feature-layout,
.area-layout,
.contact-layout,
.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 58px;
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.feature-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
}

.feature-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-panel {
  position: relative;
  min-height: 520px;
}

.feature-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 290px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  background: rgba(246, 249, 251, 0.92);
  box-shadow: 0 18px 48px rgba(22, 33, 42, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 46px;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(22, 33, 42, 0.06);
}

.process-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
}

.gallery-band {
  background: #eef5f9;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 28px;
  margin-top: 42px;
}

.review-cards {
  display: grid;
  gap: 14px;
}

.review-card,
.gallery-card,
.dashboard-card,
.auth-card,
.admin-table-card,
.booking-card,
.detail-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(22, 33, 42, 0.08);
}

.review-card {
  padding: 22px;
}

.review-card strong {
  display: block;
  margin-top: 12px;
}

.review-card span {
  color: var(--accent-strong);
  font-weight: 900;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.gallery-card div {
  padding: 22px;
}

.map-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(22, 33, 42, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 33, 42, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 68% 34%, rgba(95, 127, 149, 0.12), transparent 22%),
    radial-gradient(circle at 34% 60%, rgba(120, 199, 232, 0.14), transparent 24%),
    #f4f8fb;
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  box-shadow: var(--shadow);
}

.map-panel::before,
.map-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.map-panel::before {
  left: 16%;
  top: 16%;
  width: 18%;
  height: 14%;
  border-radius: 50%;
  background: rgba(95, 127, 149, 0.1);
  box-shadow: 260px 34px 0 rgba(95, 127, 149, 0.08), 340px 210px 0 rgba(95, 127, 149, 0.08);
}

.map-panel::after {
  left: 7%;
  right: 7%;
  top: 50%;
  height: 2px;
  background: rgba(22, 33, 42, 0.14);
  transform: rotate(-20deg);
}

.map-route {
  position: absolute;
  z-index: 1;
  font-size: 0;
  pointer-events: none;
}

.route-i4 {
  left: 9%;
  right: 8%;
  top: 50%;
  height: 3px;
  background: rgba(23, 61, 86, 0.32);
  transform: rotate(-20deg);
}

.route-i4::after {
  content: "I-4";
  position: absolute;
  right: 4%;
  top: -26px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-27 {
  left: 32%;
  top: 12%;
  width: 3px;
  height: 76%;
  background: rgba(42, 111, 145, 0.32);
}

.route-27::after {
  content: "US-27";
  position: absolute;
  left: 12px;
  bottom: 8%;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
}

.map-ring {
  position: absolute;
  left: 34%;
  top: 61%;
  border: 1px dashed rgba(23, 61, 86, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-one {
  width: 190px;
  height: 140px;
}

.ring-two {
  width: 330px;
  height: 250px;
}

.map-city {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(22, 33, 42, 0.12);
  backdrop-filter: blur(10px);
}

.map-city::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage-dark);
}

.map-home {
  left: 26%;
  top: 56%;
  background: var(--sage-dark);
  color: var(--white);
}

.map-home::before {
  background: var(--accent);
}

.map-championsgate {
  left: 36%;
  top: 43%;
}

.map-reunion {
  left: 48%;
  top: 54%;
}

.map-kissimmee {
  left: 64%;
  top: 58%;
}

.map-lbv {
  left: 62%;
  top: 35%;
}

.map-orlando {
  left: 73%;
  top: 23%;
}

.map-wintergarden {
  left: 51%;
  top: 17%;
}

.map-celebration {
  left: 58%;
  top: 49%;
}

.map-north {
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  color: var(--sage-dark);
  font-weight: 900;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(120, 199, 232, 0.22), transparent 30%),
    linear-gradient(135deg, var(--cf-navy) 0%, var(--cf-blue) 58%, var(--cf-blue-mid) 100%);
  color: var(--white);
}

.contact-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.contact-band h2,
.contact-band .eyebrow {
  color: var(--white);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.7);
}

.quote-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.quote-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.quote-prompts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: rgba(248, 252, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.42);
  border-left: 4px solid var(--accent);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.contact-card a,
.contact-card span {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.quote-card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.12;
}

.page-view {
  min-height: 70vh;
  padding: 84px 0 100px;
}

.page-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.page-heading h1,
.booking-intro h1,
.auth-copy h1,
.dashboard-header h1 {
  font-size: 3.2rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.detail-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
}

.detail-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.detail-card-content {
  padding: 24px;
}

.detail-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 44px;
  align-items: start;
}

.booking-card {
  padding: 24px;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
  margin-bottom: 28px;
}

.progress-dot {
  height: 6px;
  border-radius: 999px;
  background: rgba(22, 33, 42, 0.12);
}

.progress-dot.active {
  background: var(--sage-dark);
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
  animation: stepIn 260ms ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.choice-card {
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice-card:hover,
.choice-card:focus-visible,
.choice-card.active {
  border-color: rgba(23, 61, 86, 0.55);
  box-shadow: 0 14px 32px rgba(22, 33, 42, 0.1);
  outline: 0;
  transform: translateY(-1px);
}

.choice-card strong,
.choice-card span {
  display: block;
}

.choice-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f9fcff;
  color: var(--ink);
  padding: 13px 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 4px rgba(95, 127, 149, 0.16);
  outline: 0;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-weight: 700;
}

.check-row input {
  width: 18px;
  height: 18px;
}

.form-error {
  min-height: 24px;
  margin: 12px 0 0;
  color: #9c3f31;
  font-weight: 800;
}

.review-summary {
  display: grid;
  gap: 10px;
}

.summary-row,
.data-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row span,
.data-list dt {
  color: var(--muted);
}

.summary-row strong,
.data-list dd {
  margin: 0;
  text-align: right;
}

.fine-print {
  color: var(--muted);
  font-size: 0.88rem;
}

.deposit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.deposit-amount {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.mock-card {
  display: grid;
  align-content: space-between;
  min-height: 190px;
  padding: 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(22, 33, 42, 0.96), rgba(23, 61, 86, 0.9)),
    var(--ink);
  color: var(--white);
  box-shadow: 0 24px 48px rgba(22, 33, 42, 0.22);
}

.mock-card strong {
  font-size: 1.08rem;
}

.confirmation-panel {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding: 20px 0;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(95, 127, 149, 0.14);
  color: var(--sage-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.booking-actions {
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.auth-card {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.dashboard-card {
  padding: 24px;
}

.dashboard-card.wide {
  grid-column: span 2;
}

.card-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.status-pill {
  background: rgba(95, 127, 149, 0.14);
  color: var(--sage-dark);
  border-color: rgba(95, 127, 149, 0.2);
}

.status-pill.muted {
  background: rgba(22, 33, 42, 0.06);
  color: var(--muted);
}

.status-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 18px 0 8px;
}

.track-step {
  position: relative;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.track-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 999px;
  background: rgba(22, 33, 42, 0.12);
}

.track-step.done::before {
  background: var(--sage-dark);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.metric-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.admin-table-card {
  padding: 24px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
}

td select {
  min-width: 150px;
}

.site-footer {
  padding: 48px 0;
  background: #121a22;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 34px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid strong {
  color: var(--white);
}

.footer-brand strong {
  color: var(--white);
}

.site-footer button,
.site-footer a,
.site-footer span {
  width: fit-content;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 881px) {
  .menu-toggle {
    display: none !important;
  }
}

.services-grid .service-card:nth-child(2),
.feature-list .feature-item:nth-child(2),
.process-steps .process-step:nth-child(2),
.review-cards .review-card:nth-child(2) {
  transition-delay: 70ms;
}

.services-grid .service-card:nth-child(3),
.feature-list .feature-item:nth-child(3),
.process-steps .process-step:nth-child(3),
.review-cards .review-card:nth-child(3) {
  transition-delay: 120ms;
}

.services-grid .service-card:nth-child(4),
.feature-list .feature-item:nth-child(4),
.process-steps .process-step:nth-child(4) {
  transition-delay: 170ms;
}

.services-grid .service-card:nth-child(5),
.process-steps .process-step:nth-child(5) {
  transition-delay: 220ms;
}

@media (max-width: 1120px) {
  .primary-nav {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .trust-item,
  .trust-item:not(:first-child) {
    padding: 18px 20px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-item:nth-child(-n + 3) {
    border-top: 0;
  }

  .trust-item:nth-child(3n + 2),
  .trust-item:nth-child(3n + 3) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-item strong {
    font-size: 1.8rem;
  }

  .services-grid,
  .admin-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.is-featured {
    grid-column: span 1;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    padding-right: 70px;
  }

  .menu-toggle {
    position: absolute;
    right: 14px;
    top: 16px;
    z-index: 3;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    visibility: visible;
    opacity: 1;
  }

  .primary-nav,
  .header-actions {
    display: none;
    width: 100%;
  }

  body.menu-open .primary-nav,
  body.menu-open .header-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  body.menu-open .primary-nav button,
  body.menu-open .ghost-link,
  body.menu-open .header-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .language-switch {
    justify-self: center;
  }

  h1 {
    font-size: 3rem;
  }

  h2,
  .page-heading h1,
  .booking-intro h1,
  .auth-copy h1,
  .dashboard-header h1 {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(246, 249, 251, 0.95), rgba(246, 249, 251, 0.78));
  }

  .hero-content {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
  }

  .split-heading,
  .feature-layout,
  .process-layout,
  .review-layout,
  .area-layout,
  .contact-layout,
  .auth-layout,
  .booking-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-detail-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-card.wide {
    grid-column: auto;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card img {
    height: 260px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad,
  .page-view {
    padding: 64px 0;
  }

  .site-header {
    padding: 10px 70px 10px 14px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2,
  .page-heading h1,
  .booking-intro h1,
  .auth-copy h1,
  .dashboard-header h1 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 28px));
    margin: 0 auto;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .services-grid,
  .feature-list,
  .choice-grid,
  .form-grid,
  .deposit-panel,
  .admin-metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 12px 0;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .trust-item,
  .trust-item:not(:first-child) {
    padding: 16px 14px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-item:first-child {
    grid-column: 1 / -1;
    padding-top: 18px;
    border-top: 0;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(5) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-item strong {
    font-size: 1.6rem;
  }

  .trust-item:first-child strong {
    font-size: 2rem;
  }

  .feature-panel,
  .feature-panel img,
  .map-panel {
    min-height: 360px;
    height: auto;
  }

  .map-city {
    padding: 7px 8px;
    font-size: 0.72rem;
    max-width: 118px;
    white-space: normal;
  }

  .map-ring {
    left: 32%;
    top: 61%;
  }

  .ring-one {
    width: 145px;
    height: 105px;
  }

  .ring-two {
    width: 240px;
    height: 190px;
  }

  .map-orlando {
    left: 67%;
    top: 20%;
  }

  .map-kissimmee {
    left: 58%;
    top: 63%;
  }

  .map-lbv {
    left: 55%;
    top: 34%;
  }

  .gallery-card img {
    height: 300px;
  }

  .dashboard-header,
  .card-heading {
    display: grid;
  }

  .status-track {
    grid-template-columns: 1fr;
  }

  .booking-progress {
    grid-template-columns: repeat(7, minmax(18px, 1fr));
  }

  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

/* CF Spotless Solutions visual refresh */
body {
  background:
    radial-gradient(circle at 14% 8%, rgba(53, 170, 251, 0.14), transparent 24%),
    linear-gradient(180deg, var(--cf-white), var(--cf-bg) 48%, var(--cf-white));
}

.container {
  width: min(var(--max), calc(100% - 48px));
}

.section-pad {
  padding: 104px 0;
}

.site-header {
  min-height: 84px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--cf-border);
  box-shadow: 0 10px 32px rgba(2, 45, 93, 0.06);
}

.brand {
  min-width: 182px;
}

.brand-logo {
  display: block;
  width: clamp(142px, 13vw, 184px);
  height: auto;
}

.footer-brand .brand-logo {
  width: 190px;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.brand-mark {
  display: none;
}

.primary-nav button,
.ghost-link {
  position: relative;
  color: var(--cf-navy);
  font-weight: 800;
}

.primary-nav button::after,
.ghost-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--cf-blue-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.primary-nav button:hover,
.primary-nav button:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible,
.site-footer button:hover,
.site-footer button:focus-visible {
  color: var(--cf-blue);
  background: transparent;
}

.primary-nav button:hover::after,
.primary-nav button:focus-visible::after,
.ghost-link:hover::after,
.ghost-link:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  border-color: var(--cf-border);
  background: var(--cf-bg);
}

.language-switch button.active {
  background: var(--cf-navy);
  color: var(--cf-white);
}

.menu-toggle {
  border-color: var(--cf-border);
  border-radius: 18px;
  box-shadow: 8px 8px 0 rgba(53, 170, 251, 0.12);
}

.btn {
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: none;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out, border-color 180ms ease-out;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary,
.btn-secondary {
  background: var(--cf-blue);
  border-color: var(--cf-blue);
  color: var(--cf-white);
  box-shadow: 0 12px 28px var(--cf-shadow-blue);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--cf-navy);
  border-color: var(--cf-navy);
}

.btn-glass,
.btn-outline {
  background: var(--cf-white);
  border-color: var(--cf-navy);
  color: var(--cf-navy);
  box-shadow: 8px 8px 0 rgba(53, 170, 251, 0.1);
}

.btn-glass:hover,
.btn-glass:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--cf-bg);
  border-color: var(--cf-blue);
  color: var(--cf-blue);
}

h1,
h2,
h3 {
  color: var(--cf-navy);
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.9rem);
}

h3 {
  font-size: 1.32rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(253, 134, 30, 0.3);
  border-radius: 999px;
  background: rgba(253, 134, 30, 0.08);
  color: var(--cf-orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  transform: rotate(-4deg);
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("assets/brand/cf-badge-orange.svg") center / contain no-repeat;
}

.hero {
  min-height: 690px;
  padding: 92px 0 74px;
  align-items: center;
  background:
    radial-gradient(circle at 8% 14%, rgba(53, 170, 251, 0.18), transparent 24%),
    linear-gradient(135deg, var(--cf-white) 0%, var(--cf-bg) 58%, #eaf7ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: min(7vw, 94px);
  top: 105px;
  width: min(39vw, 520px);
  aspect-ratio: 1;
  background: url("assets/brand/sparkle-outline-offset.svg") center / contain no-repeat;
  opacity: 0.2;
  transform: rotate(5deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: min(56vw, 780px);
  bottom: 92px;
  width: 58px;
  height: 58px;
  background: url("assets/brand/sparkle-solid-blue.svg") center / contain no-repeat;
  opacity: 0.9;
  transform: rotate(5deg);
  pointer-events: none;
}

.hero-media {
  inset: auto min(5vw, 70px) 72px auto;
  width: min(39vw, 530px);
  height: 440px;
  overflow: hidden;
  border: 1px solid var(--cf-border);
  border-radius: 28px;
  background: var(--cf-white);
  box-shadow: 18px 18px 0 rgba(53, 170, 251, 0.18);
  transform: rotate(1.5deg) translateY(var(--parallax-y, 0));
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
}

.hero-content h1 {
  color: var(--cf-navy);
}

.hero-copy {
  max-width: 620px;
  color: var(--cf-muted);
  font-size: 1.15rem;
  line-height: 1.68;
}

.hero-note span,
.area-tags span,
.status-pill {
  border-color: var(--cf-border);
  border-radius: 999px;
  background: var(--cf-white);
  color: var(--cf-navy);
  box-shadow: 6px 6px 0 rgba(53, 170, 251, 0.08);
}

.trust-strip {
  padding: 34px 0;
  background: var(--cf-white);
  color: var(--cf-navy);
  border-top: 1px solid var(--cf-border);
  border-bottom: 1px solid var(--cf-border);
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.trust-item,
.trust-item:not(:first-child) {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--cf-border);
  border-radius: 24px;
  background: var(--cf-bg);
  box-shadow: 10px 10px 0 rgba(53, 170, 251, 0.1);
}

.trust-item strong {
  color: var(--cf-blue);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 1.1rem + 1.3vw, 2.45rem);
}

.trust-item span {
  color: var(--cf-muted);
  font-weight: 900;
}

.split-heading {
  align-items: start;
}

.split-heading p:not(.eyebrow),
.feature-copy > p:not(.eyebrow),
.process-intro > p:not(.eyebrow),
.area-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow),
.page-heading > p:not(.eyebrow),
.auth-copy > p:not(.eyebrow),
.booking-intro > p:not(.eyebrow) {
  color: var(--cf-muted);
  line-height: 1.68;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.review-card,
.gallery-card,
.dashboard-card,
.auth-card,
.admin-table-card,
.booking-card,
.detail-card,
.contact-card,
.feature-item,
.process-step,
.choice-card,
.metric-card {
  border: 1px solid var(--cf-border);
  border-radius: 24px;
  background: var(--cf-white);
  box-shadow: 14px 14px 0 rgba(53, 170, 251, 0.12);
}

.service-card,
.feature-item,
.process-step,
.review-card,
.choice-card,
.dashboard-card,
.auth-card,
.booking-card {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, border-color 180ms ease-out;
}

.service-card:hover,
.feature-item:hover,
.process-step:hover,
.review-card:hover,
.choice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 99, 206, 0.38);
  box-shadow: 18px 18px 0 rgba(53, 170, 251, 0.16);
}

.service-card {
  min-height: 388px;
}

.service-card::after,
.feature-item::after,
.review-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  background: url("assets/brand/sparkle-solid-blue.svg") center / contain no-repeat;
  opacity: 0.18;
  transform: rotate(5deg);
  pointer-events: none;
}

.feature-item,
.review-card {
  position: relative;
}

.service-card.is-featured {
  grid-column: span 1;
}

.service-card img {
  height: 205px;
}

.service-card.is-featured img {
  height: 205px;
}

.service-card button {
  color: var(--cf-blue);
}

.service-card p,
.detail-card p,
.dashboard-card p,
.auth-card p,
.admin-table-card p,
.feature-item span,
.floating-card span,
.gallery-card p {
  color: var(--cf-muted);
  line-height: 1.62;
}

.feature-band,
.gallery-band {
  background:
    radial-gradient(circle at 90% 12%, rgba(53, 170, 251, 0.14), transparent 22%),
    var(--cf-bg);
}

.feature-panel img,
.gallery-card img,
.detail-card img {
  border-radius: 24px;
}

.floating-card {
  border-color: var(--cf-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 10px 10px 0 rgba(53, 170, 251, 0.14);
}

.process-number {
  background: var(--cf-blue);
  color: var(--cf-white);
  box-shadow: 6px 6px 0 rgba(53, 170, 251, 0.2);
}

.review-card span {
  color: var(--cf-orange);
  font-weight: 900;
}

.map-panel {
  border-color: var(--cf-border);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(2, 45, 93, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(2, 45, 93, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 68% 34%, rgba(53, 170, 251, 0.16), transparent 22%),
    radial-gradient(circle at 34% 60%, rgba(253, 134, 30, 0.08), transparent 20%),
    var(--cf-bg);
  box-shadow: 14px 14px 0 rgba(53, 170, 251, 0.12);
}

.map-city {
  border: 1px solid var(--cf-border);
  background: var(--cf-white);
  color: var(--cf-navy);
}

.map-home {
  background: var(--cf-blue);
  color: var(--cf-white);
}

.map-home::before {
  background: var(--cf-orange);
}

.route-i4,
.route-27 {
  background: rgba(1, 99, 206, 0.26);
}

.route-i4::after,
.route-27::after,
.map-north {
  color: var(--cf-blue);
}

.contact-band {
  background:
    radial-gradient(circle at 12% 22%, rgba(53, 170, 251, 0.18), transparent 26%),
    linear-gradient(135deg, var(--cf-navy) 0%, #064c91 58%, var(--cf-blue) 100%);
}

.contact-band::after,
.site-footer::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 10%;
  width: 190px;
  height: 190px;
  background: url("assets/brand/sparkle-outline-offset.svg") center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.contact-card {
  background: var(--cf-white);
  border-left: 0;
  box-shadow: 16px 16px 0 rgba(53, 170, 251, 0.2);
}

.quote-prompts span {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.page-view {
  background: var(--cf-bg);
}

.booking-shell,
.auth-layout {
  align-items: start;
}

.booking-card,
.auth-card,
.dashboard-card,
.admin-table-card {
  background: var(--cf-white);
}

.booking-progress {
  gap: 8px;
}

.progress-dot {
  background: var(--cf-border);
}

.progress-dot.active {
  background: var(--cf-blue);
  box-shadow: 0 0 0 4px rgba(31, 154, 244, 0.14);
}

input,
select,
textarea {
  border-color: var(--cf-border);
  border-radius: 16px;
  background: var(--cf-white);
  color: var(--cf-navy);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cf-blue);
  box-shadow: 0 0 0 4px rgba(31, 154, 244, 0.18);
}

input::placeholder,
textarea::placeholder {
  color: rgba(71, 85, 105, 0.42);
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: rgba(71, 85, 105, 0.42);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: rgba(71, 85, 105, 0.42);
  opacity: 1;
}

.choice-card.active,
.track-step.done,
.status-pill {
  border-color: rgba(1, 99, 206, 0.24);
  background: var(--cf-bg);
  color: var(--cf-blue);
}

.deposit-amount {
  color: var(--cf-blue);
}

.mock-card {
  background:
    linear-gradient(135deg, rgba(2, 45, 93, 0.96), rgba(1, 99, 206, 0.88)),
    var(--cf-navy);
  border-radius: 24px;
  box-shadow: 14px 14px 0 rgba(53, 170, 251, 0.16);
}

.success-mark {
  background: var(--cf-bg);
  color: var(--cf-blue);
}

.admin-metrics {
  gap: 18px;
}

.metric-card strong {
  color: var(--cf-blue);
}

table th {
  color: var(--cf-navy);
}

tbody tr:hover {
  background: var(--cf-bg);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--cf-navy);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong {
  color: var(--cf-white);
}

.site-footer button,
.site-footer a,
.site-footer span {
  color: #bce7ff;
}

.site-footer button:hover,
.site-footer a:hover {
  color: var(--cf-white);
}

@media (min-width: 1121px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .hero-media {
    width: min(42vw, 420px);
    height: 390px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    padding-right: 76px;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 132px;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 72px;
  }

  .hero::before {
    right: -44px;
    top: 120px;
    width: 260px;
    opacity: 0.12;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: min(100% - 40px, 620px);
    height: 330px;
    margin: 0 auto 30px;
    transform: rotate(0deg);
  }

  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, var(--max));
  }

  .section-pad,
  .page-view {
    padding: 70px 0;
  }

  .brand-logo {
    width: 120px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2,
  .page-heading h1,
  .booking-intro h1,
  .auth-copy h1,
  .dashboard-header h1 {
    font-size: 2rem;
  }

  .hero-content,
  .hero-media {
    width: min(100% - 30px, var(--max));
  }

  .hero-media {
    height: 280px;
    border-radius: 22px;
    box-shadow: 10px 10px 0 rgba(53, 170, 251, 0.14);
  }

  .hero-actions,
  .contact-actions,
  .dashboard-actions,
  .booking-actions,
  .deposit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .trust-grid,
  .feature-list,
  .choice-grid,
  .form-grid,
  .deposit-panel,
  .admin-metrics,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item:first-child {
    grid-column: auto;
  }

  .trust-item,
  .trust-item:not(:first-child) {
    padding: 18px;
  }

  .service-card,
  .review-card,
  .gallery-card,
  .dashboard-card,
  .auth-card,
  .admin-table-card,
  .booking-card,
  .detail-card,
  .contact-card,
  .feature-item,
  .process-step,
  .choice-card,
  .metric-card {
    border-radius: 20px;
    box-shadow: 9px 9px 0 rgba(53, 170, 251, 0.11);
  }

  .contact-band::after,
  .site-footer::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media {
    transform: none;
  }
}

/* CF Spotless brand alignment: logo assets, full-bleed hero, formal badges. */
:root {
  --cf-blue: #1565c0;
  --cf-bright-blue: #1565c0;
  --cf-blue-mid: #1565c0;
  --cf-blue-light: #62b0d1;
  --cf-navy: #0b2d59;
  --cf-deep-navy: #061f42;
  --cf-orange: #22b38f;
  --cf-teal: #22b38f;
  --cf-aqua: #62b0d1;
  --cf-light-aqua: #cff7f2;
  --cf-white: #ffffff;
  --cf-bg: #f5f7fa;
  --cf-border: #e3e8f0;
  --cf-muted: #475569;
  --cf-shadow-blue: rgba(11, 45, 89, 0.14);
  --ink: var(--cf-navy);
  --muted: var(--cf-muted);
  --paper: var(--cf-white);
  --soft: var(--cf-bg);
  --sage: var(--cf-teal);
  --sage-dark: var(--cf-navy);
  --accent: var(--cf-aqua);
  --accent-strong: var(--cf-teal);
  --mist: var(--cf-light-aqua);
  --line: var(--cf-border);
  --shadow: 0 10px 30px rgba(11, 45, 89, 0.08);
  --radius: 8px;
  --radius-sm: 8px;
  --font-display: Poppins, Inter, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Poppins, Inter, Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--cf-white);
  color: var(--cf-muted);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.site-header {
  min-height: 78px;
  padding: 10px 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--cf-border);
  box-shadow: 0 8px 24px rgba(11, 45, 89, 0.06);
}

.brand {
  gap: 12px;
  min-width: 300px;
}

.brand-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  object-fit: contain;
}

.brand-wordmark {
  width: 222px;
  height: auto;
  object-fit: contain;
}

.brand-logo {
  width: clamp(154px, 14vw, 210px);
  max-height: 56px;
  object-fit: contain;
}

.footer-brand .brand-logo {
  width: 206px;
  max-height: 58px;
}

.primary-nav button,
.ghost-link {
  color: var(--cf-navy);
  font-weight: 700;
}

.primary-nav button::after,
.ghost-link::after {
  background: var(--cf-teal);
}

.primary-nav button:hover,
.primary-nav button:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible {
  color: var(--cf-bright-blue, var(--cf-blue));
}

.language-switch {
  background: var(--cf-light-gray, var(--cf-bg));
  border-color: var(--cf-border);
}

.language-switch button.active {
  background: var(--cf-navy);
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary,
.btn-secondary {
  background: var(--cf-navy);
  border-color: var(--cf-navy);
  color: var(--cf-white);
  box-shadow: 0 10px 20px rgba(11, 45, 89, 0.16);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--cf-blue);
  border-color: var(--cf-blue);
}

.btn-glass,
.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(98, 176, 209, 0.9);
  color: var(--cf-teal);
  box-shadow: 0 10px 24px rgba(11, 45, 89, 0.08);
}

.btn-glass:hover,
.btn-glass:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--cf-white);
  border-color: var(--cf-teal);
  color: var(--cf-navy);
}

h1,
h2,
h3 {
  color: var(--cf-navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 4.75rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.16;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 7px 18px;
  border: 1px solid rgba(98, 176, 209, 0.46);
  border-radius: 999px;
  background: #cff7f2;
  color: var(--cf-navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  transform: none;
}

.eyebrow::before {
  content: none;
  display: none;
}

.hero {
  min-height: clamp(660px, 82vh, 820px);
  padding: 112px 0 84px;
  display: grid;
  align-items: center;
  background: var(--cf-bg);
}

.hero::before,
.hero::after,
.service-card::after,
.feature-item::after,
.review-card::after,
.contact-band::after,
.site-footer::after {
  display: none !important;
}

.hero-media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: translateY(var(--parallax-y, 0)) !important;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.98) contrast(1.02);
}

.hero-overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 247, 250, 0.91) 34%, rgba(245, 247, 250, 0.42) 62%, rgba(245, 247, 250, 0.12) 100%),
    radial-gradient(circle at 17% 46%, rgba(207, 247, 242, 0.38), transparent 30%),
    linear-gradient(0deg, rgba(11, 45, 89, 0.18), rgba(11, 45, 89, 0.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 48px));
  max-width: 860px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
}

.hero-content h1 {
  max-width: 860px;
}

.hero-logo-badge {
  display: grid;
  justify-items: start;
  gap: 2px;
  justify-content: flex-start;
  width: fit-content;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-logo-icon {
  width: clamp(170px, 16vw, 224px);
  height: auto;
  object-fit: contain;
  transform: translateX(-8px);
}

.hero-logo-wordmark {
  display: block;
  width: clamp(220px, 21vw, 300px);
  height: auto;
  object-fit: contain;
}

.hero-title {
  display: grid;
  gap: 2px;
}

.hero-title span {
  display: block;
}

.hero-title [data-hero-title-line="one"] {
  white-space: nowrap;
}

.hero-title-accent {
  width: fit-content;
  background: linear-gradient(92deg, var(--cf-bright-blue) 0%, var(--cf-teal) 48%, var(--cf-aqua) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 590px;
  color: var(--cf-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-note span,
.area-tags span,
.status-pill {
  border-color: rgba(98, 176, 209, 0.34);
  background: rgba(255, 255, 255, 0.86);
  color: var(--cf-navy);
  box-shadow: 0 8px 20px rgba(11, 45, 89, 0.06);
}

.trust-strip {
  background: var(--cf-white);
  border-color: var(--cf-border);
}

.trust-item,
.trust-item:not(:first-child),
.service-card,
.review-card,
.gallery-card,
.dashboard-card,
.auth-card,
.admin-table-card,
.booking-card,
.detail-card,
.contact-card,
.feature-item,
.process-step,
.choice-card,
.metric-card {
  border-color: var(--cf-border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.trust-item,
.trust-item:not(:first-child) {
  background: var(--cf-bg);
}

.trust-grid {
  align-items: stretch;
}

.trust-item,
.trust-item:not(:first-child) {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 130px;
  padding: 24px 26px;
}

.trust-item strong,
.service-card button,
.route-i4::after,
.route-27::after,
.map-north {
  color: var(--cf-blue);
}

.trust-item strong {
  margin: 0;
  font-size: clamp(2rem, 2vw, 2.55rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.trust-item:first-child strong {
  font-size: clamp(1.55rem, 1.55vw, 1.95rem);
  white-space: nowrap;
}

.trust-item span {
  margin: 0;
  color: var(--cf-muted);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
}

.metric-card {
  display: grid;
  align-content: center;
  gap: 8px;
}

.metric-card span,
.metric-card strong {
  margin: 0;
  line-height: 1.05;
}

.metric-card strong {
  font-variant-numeric: tabular-nums;
}

.service-card-body {
  position: relative;
  flex: 1;
  min-height: 190px;
  overflow: hidden;
}

.service-card-body::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -26px;
  width: 132px;
  height: 72px;
  background: url("assets/cf-spotless/decor/card_corner_wave.svg") center / 100% 100% no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.service-card-body > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(98, 176, 209, 0.34);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(207, 247, 242, 0.72), rgba(255, 255, 255, 0.92));
  box-shadow: 0 8px 18px rgba(11, 45, 89, 0.06);
}

.card-icon img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.service-icon {
  margin-bottom: 16px;
}

.detail-icon {
  margin-bottom: 18px;
}

.detail-card-content {
  min-width: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 18px;
}

.feature-item-copy {
  min-width: 0;
}

.feature-item strong {
  margin: 0 0 5px;
  line-height: 1.25;
}

.feature-item-copy span {
  display: block;
}

.service-card:hover,
.feature-item:hover,
.process-step:hover,
.review-card:hover,
.choice-card:hover {
  border-color: rgba(34, 179, 143, 0.36);
  box-shadow: 0 16px 34px rgba(11, 45, 89, 0.11);
}

.process-number,
.map-home {
  background: var(--cf-navy);
}

.review-card span {
  color: var(--cf-teal);
}

.map-home::before,
.map-city::before {
  background: var(--cf-teal);
}

.map-panel {
  border-color: var(--cf-border);
  background:
    linear-gradient(90deg, rgba(11, 45, 89, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 45, 89, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 68% 34%, rgba(98, 176, 209, 0.16), transparent 22%),
    radial-gradient(circle at 34% 60%, rgba(34, 179, 143, 0.1), transparent 20%),
    var(--cf-bg);
}

.contact-band {
  background: linear-gradient(135deg, var(--cf-deep-navy) 0%, var(--cf-navy) 54%, var(--cf-teal) 100%);
}

.contact-band .eyebrow {
  border-color: rgba(98, 176, 209, 0.46);
  background: #cff7f2;
  color: var(--cf-navy);
}

.contact-band .eyebrow::before {
  background: var(--cf-teal);
}

.site-footer {
  background: linear-gradient(135deg, var(--cf-deep-navy), var(--cf-navy));
}

@media (max-width: 1120px) {
  .hero {
    min-height: 650px;
  }
}

@media (max-width: 880px) {
  .site-header {
    min-height: 72px;
    padding: 10px 76px 10px 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-wordmark {
    width: 178px;
  }

  .hero {
    min-height: 620px;
    padding: 86px 0 70px;
  }

  .hero-media {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(245, 247, 250, 0.78) 48%, rgba(245, 247, 250, 0.56) 100%),
      radial-gradient(circle at 66% 22%, rgba(207, 247, 242, 0.28), transparent 32%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.28));
  }

  .hero-content {
    width: min(100% - 36px, 620px);
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 16px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-wordmark {
    width: 148px;
  }

  .hero {
    min-height: 600px;
    padding: 78px 0 62px;
  }

  .hero-content {
    width: min(calc(100vw - 36px), 354px);
    max-width: 354px;
    margin-left: 18px;
    margin-right: auto;
  }

  .hero-logo-badge {
    margin-bottom: 18px;
  }

  .hero-logo-icon {
    width: 168px;
    transform: translateX(-6px);
  }

  .hero-logo-wordmark {
    width: 204px;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.12;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-media img {
    object-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 247, 250, 0.74) 48%, rgba(245, 247, 250, 0.5) 100%),
      radial-gradient(circle at 72% 24%, rgba(207, 247, 242, 0.24), transparent 34%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.24));
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-note {
    gap: 8px;
  }

  .eyebrow {
    min-height: 30px;
    padding: 6px 14px;
    font-size: 0.68rem;
  }

  .eyebrow::before {
    content: none;
    display: none;
  }

  .page-view .container {
    width: min(calc(100vw - 44px), var(--max));
    max-width: calc(100vw - 44px);
  }

  .page-heading h1 {
    width: min(100%, 320px);
    max-width: 100%;
    font-size: 1.82rem;
    line-height: 1.18;
    overflow-wrap: break-word;
  }

  .page-heading > p:not(.eyebrow) {
    width: min(100%, 326px);
  }

  .detail-card {
    width: 100%;
    min-width: 0;
  }

  .detail-card-content {
    padding: 22px;
  }

  .detail-card h2 {
    font-size: 1.55rem;
    line-height: 1.16;
  }

  .detail-card .btn {
    max-width: 100%;
  }
}
