:root {
  color-scheme: light;
  --page: #f0f0f0;
  --paper: #ffffff;
  --ink: #1c2430;
  --ink-soft: rgba(30, 50, 72, 0.78);
  --muted: rgba(30, 50, 72, 0.58);
  --line: rgba(30, 50, 72, 0.12);
  --glass: rgba(255, 255, 255, 0.64);
  --glass-soft: rgba(255, 255, 255, 0.34);
  --orange: #ff8300;
  --orange-soft: rgba(255, 131, 0, 0.12);
  --blue: rgba(30, 50, 90, 0.88);
  --radius: 24px;
  --radius-lg: 48px;
  --shadow: 0 22px 70px rgba(16, 24, 40, 0.16);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page: #080b10;
  --paper: #101720;
  --ink: #eef4fb;
  --ink-soft: rgba(231, 238, 247, 0.78);
  --muted: rgba(231, 238, 247, 0.58);
  --line: rgba(255, 255, 255, 0.13);
  --glass: rgba(16, 23, 32, 0.62);
  --glass-soft: rgba(16, 23, 32, 0.38);
  --orange: #ff9a2b;
  --orange-soft: rgba(255, 154, 43, 0.16);
  --blue: rgba(226, 235, 248, 0.88);
  --shadow: 0 28px 84px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  transition: background 0.25s ease, color 0.25s ease;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.page {
  padding: 12px;
}

.hero-shell {
  position: relative;
  display: flex;
  min-height: calc(100vh - 24px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(240, 240, 240, 0.12), rgba(240, 240, 240, 0.12)),
    url("/assets/hero-lavage-mecanique-pro-poster.jpg");
  background-position: center;
  background-size: cover;
  border-radius: inherit;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34) 34%, rgba(255, 255, 255, 0.1) 58%, rgba(240, 240, 240, 0.48)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.34));
  content: "";
  border-radius: inherit;
}

.hero-layer {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 24px);
}

.top-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(30, 50, 72, 0.94);
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: contain;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(45, 45, 45, 0.84);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.68;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lang-button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(30, 50, 72, 0.78);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-button.is-active {
  background: rgba(30, 50, 72, 0.9);
  color: #ffffff;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(30, 50, 72, 0.84);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 22px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

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

.theme-toggle__icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.theme-toggle__icon--sun {
  opacity: 0;
  transform: rotate(-45deg) scale(0.72);
}

.theme-toggle.is-dark .theme-toggle__icon--moon {
  opacity: 0;
  transform: rotate(45deg) scale(0.72);
}

.theme-toggle.is-dark .theme-toggle__icon--sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(720px, calc(100% - 32px));
  margin-top: clamp(14px, 3.5vh, 42px);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 12px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(30, 50, 90, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(18px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.hero-lead {
  max-width: 660px;
  margin-top: 16px;
  color: rgba(30, 50, 72, 0.86);
  font-size: clamp(1.02rem, 1.32vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

.hero-booking {
  width: min(100%, 620px);
  margin-top: 12px;
}

.hero-booking .booking-panel {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42) 54%, rgba(255, 255, 255, 0.3)),
    linear-gradient(18deg, rgba(255, 131, 0, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    0 30px 80px rgba(16, 24, 40, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -22px 48px rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(38px) saturate(1.24);
  -webkit-backdrop-filter: blur(38px) saturate(1.24);
}

.service-status {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 180px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(30, 50, 90, 0.9);
  backdrop-filter: blur(22px);
}

.service-status strong {
  font-size: 1.6rem;
  font-weight: 500;
}

.service-status span {
  max-width: 210px;
  color: rgba(30, 50, 90, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
}

.booking-corner,
.contact-corner {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 18px;
  padding-top: 28px;
  padding-left: 52px;
  border-top-left-radius: 56px;
  background: var(--page);
}

.contact-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 210px;
  padding: 18px;
  border: 1px solid rgba(30, 50, 72, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 44px rgba(16, 24, 40, 0.12);
  backdrop-filter: blur(24px);
}

.contact-card p {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  background: rgba(30, 50, 90, 0.92);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(30, 50, 90, 0.18);
}

.contact-button svg {
  width: 17px;
  height: 17px;
}

.corner-mask {
  position: absolute;
  width: 56px;
  height: 56px;
  pointer-events: none;
}

.corner-mask svg {
  width: 100%;
  height: 100%;
  fill: var(--page);
}

.corner-mask--top {
  top: -56px;
  right: 0;
}

.corner-mask--left {
  bottom: 0;
  left: -56px;
}

.booking-panel {
  position: relative;
  width: min(430px, calc(100vw - 40px));
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 18px 46px rgba(16, 24, 40, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(28px) saturate(1.16);
  -webkit-backdrop-filter: blur(28px) saturate(1.16);
  transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease;
  will-change: height;
}

.booking-panel > * {
  position: relative;
  z-index: 1;
}

.booking-panel.is-resizing {
  overflow: hidden;
}

.booking-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.16) 38%, rgba(255, 131, 0, 0.28) 68%, rgba(255, 255, 255, 0.58)) border-box;
  opacity: 0.7;
  pointer-events: none;
  content: "";
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.booking-panel::after {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 25px;
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.54), transparent 32%),
    linear-gradient(330deg, rgba(30, 50, 90, 0.05), transparent 42%);
  content: "";
  pointer-events: none;
}

.booking-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 14px;
}

.booking-heading p,
.section-heading p,
.dialog-header p {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.booking-heading h2,
.section-heading h2,
.dialog-header h2 {
  color: rgba(30, 50, 72, 0.95);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.12;
}

.booking-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.22)),
    rgba(30, 50, 90, 0.05);
  color: rgba(30, 50, 90, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 10px 22px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.booking-icon svg {
  width: 20px;
  height: 20px;
}

.booking-wizard {
  display: grid;
  gap: 14px;
  padding: 0 20px 20px;
  transform-origin: top center;
}

.booking-wizard.is-entering .wizard-copy,
.booking-wizard.is-entering .wizard-summary,
.booking-wizard.is-entering .wizard-options,
.booking-wizard.is-entering .wizard-footer {
  animation: wizard-content-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.booking-wizard.is-entering .wizard-summary {
  animation-delay: 0.035s;
}

.booking-wizard.is-entering .wizard-options {
  animation-delay: 0.06s;
}

.booking-wizard.is-entering .wizard-footer {
  animation-delay: 0.085s;
}

@keyframes wizard-content-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.wizard-steps {
  display: flex;
  gap: 6px;
}

.wizard-dot {
  display: block;
  width: 26px;
  height: 5px;
  border-radius: 999px;
  background: rgba(30, 50, 72, 0.14);
  transition: width 0.2s ease, background 0.2s ease;
}

.wizard-dot.is-active {
  width: 42px;
  background: rgba(255, 131, 0, 0.86);
}

.wizard-copy {
  display: grid;
  gap: 4px;
}

.wizard-copy span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wizard-copy h3 {
  color: rgba(30, 50, 72, 0.95);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.14;
}

.wizard-copy p {
  color: rgba(30, 50, 72, 0.58);
  font-size: 0.9rem;
  line-height: 1.42;
}

.wizard-options {
  display: grid;
  gap: 8px;
}

.wizard-options--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wizard-option {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 66px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
  color: rgba(30, 50, 72, 0.95);
  cursor: pointer;
  padding: 10px;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 10px 24px rgba(16, 24, 40, 0.055);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.wizard-options--compact .wizard-option {
  grid-template-columns: 1fr;
}

.wizard-option:hover,
.wizard-option.is-selected {
  border-color: rgba(255, 131, 0, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4)),
    rgba(255, 131, 0, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 14px 30px rgba(255, 131, 0, 0.12);
  transform: translateY(-1px);
}

.wizard-option:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.wizard-option:disabled:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.44);
}

.wizard-option__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18)),
    rgba(30, 50, 90, 0.055);
  color: rgba(30, 50, 90, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wizard-option__icon svg {
  width: 18px;
  height: 18px;
}

.custom-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.custom-icon--pickup {
  width: 21px;
  height: 21px;
}

.wizard-option strong,
.wizard-option small {
  display: block;
}

.wizard-option strong {
  font-size: 0.95rem;
  line-height: 1.18;
}

.wizard-option small {
  margin-top: 3px;
  color: rgba(30, 50, 72, 0.55);
  font-size: 0.8rem;
  line-height: 1.32;
}

.wizard-badge {
  display: inline-flex;
  width: fit-content;
  margin-top: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(30, 50, 72, 0.08);
  color: rgba(30, 50, 72, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 36px;
}

.wizard-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 0;
}

.wizard-summary:empty {
  display: none;
}

.wizard-summary__chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-width: 0;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24)),
    rgba(30, 50, 90, 0.05);
  color: rgba(30, 50, 72, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wizard-summary__chip svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  color: rgba(255, 131, 0, 0.92);
}

.wizard-summary__chip .custom-icon--pickup {
  width: 15px;
  height: 15px;
}

.wizard-summary__chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ghost-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(30, 50, 72, 0.7);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0 4px;
}

.ghost-action:hover {
  color: rgba(30, 50, 72, 0.96);
}

.ghost-action svg {
  width: 16px;
  height: 16px;
}

.ghost-action:disabled {
  visibility: hidden;
}

.recovery-form label {
  display: grid;
  gap: 7px;
  color: rgba(30, 50, 72, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
}

.recovery-form input,
.recovery-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(30, 50, 72, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(30, 50, 72, 0.94);
  outline: none;
  padding: 0 14px;
  font-weight: 500;
}

.recovery-form input:focus,
.recovery-form textarea:focus {
  border-color: rgba(255, 131, 0, 0.56);
  box-shadow: 0 0 0 4px rgba(255, 131, 0, 0.1);
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-action {
  background: rgba(30, 50, 90, 0.9);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(30, 50, 90, 0.18);
}

.primary-action:hover {
  background: rgba(30, 50, 90, 1);
  transform: translateY(-1px);
}

.primary-action svg,
.secondary-action svg {
  width: 18px;
  height: 18px;
}

.primary-action--compact {
  min-height: 46px;
}

.services-section,
.reviews-section {
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
  padding: 70px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

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

.service-chip-card,
.review-card,
.feedback-box,
.review-placeholder {
  border: 1px solid rgba(30, 50, 72, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
}

.service-chip-card {
  min-height: 150px;
  padding: 18px;
}

.service-chip-card h3 {
  margin-bottom: 8px;
  color: rgba(30, 50, 72, 0.95);
  font-size: 1.05rem;
  font-weight: 600;
}

.service-chip-card p {
  color: rgba(30, 50, 72, 0.6);
  font-size: 0.92rem;
  line-height: 1.5;
}

.reviews-section {
  padding-bottom: 44px;
}

.review-placeholder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 820px;
  min-height: 138px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    0 18px 46px rgba(16, 24, 40, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.review-placeholder__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.26)),
    rgba(255, 131, 0, 0.1);
  color: rgba(255, 131, 0, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.review-placeholder__icon svg {
  width: 23px;
  height: 23px;
}

.review-placeholder p {
  max-width: 650px;
  color: rgba(30, 50, 72, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.55;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 14px;
  align-items: start;
}

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

.review-card {
  min-height: 160px;
  padding: 18px;
}

.review-card p {
  color: rgba(30, 50, 72, 0.64);
  line-height: 1.55;
}

.review-card strong {
  display: block;
  margin-top: 14px;
  color: rgba(30, 50, 72, 0.95);
}

.stars {
  margin-bottom: 10px;
  color: var(--orange);
}

.feedback-box {
  padding: 18px;
}

.feedback-box h3 {
  color: rgba(30, 50, 72, 0.96);
  font-size: 1.18rem;
  font-weight: 600;
}

.rating-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 14px 0;
}

.rating-buttons button {
  min-height: 44px;
  border: 1px solid rgba(30, 50, 72, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(30, 50, 72, 0.86);
  cursor: pointer;
  font-weight: 700;
}

.rating-buttons button:hover,
.rating-buttons button.is-selected {
  border-color: rgba(255, 131, 0, 0.52);
  background: rgba(255, 131, 0, 0.11);
}

.review-action,
.recovery-form {
  border-top: 1px solid rgba(30, 50, 72, 0.1);
  padding-top: 14px;
}

.review-action p,
.recovery-form p {
  color: rgba(30, 50, 72, 0.62);
  line-height: 1.5;
}

.review-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.secondary-action {
  min-height: 42px;
  border: 1px solid rgba(30, 50, 72, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(30, 50, 72, 0.92);
  padding: 0 15px;
}

.secondary-action:hover {
  background: #ffffff;
}

.recovery-form {
  display: grid;
  gap: 12px;
}

.recovery-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.assistive-note {
  color: rgba(30, 50, 72, 0.58);
  font-size: 0.88rem;
  line-height: 1.45;
}

.is-hidden {
  display: none !important;
}

.site-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: min(1120px, calc(100% - 24px));
  margin: 0 auto;
  padding: 10px 0 34px;
  color: rgba(30, 50, 72, 0.46);
  font-size: 0.78rem;
  font-weight: 600;
}

.site-credit a {
  color: rgba(30, 50, 72, 0.68);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-credit a:hover {
  color: rgba(255, 131, 0, 0.96);
}

.booking-dialog {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.booking-dialog.is-open {
  display: block;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.36);
  backdrop-filter: blur(18px);
}

.dialog-panel {
  position: absolute;
  inset: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100dvh - 36px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.dialog-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 20px 22px 14px;
  border-bottom: 1px solid rgba(30, 50, 72, 0.1);
}

.dialog-header span {
  display: block;
  margin-top: 5px;
  color: rgba(30, 50, 72, 0.6);
  font-size: 0.94rem;
}

.dialog-close {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(30, 50, 72, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(30, 50, 72, 0.9);
  cursor: pointer;
}

.dialog-close svg {
  width: 20px;
  height: 20px;
}

.calendar-shell {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
}

.cal-embed {
  flex: 1;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background: #ffffff;
  -webkit-overflow-scrolling: touch;
}

.cal-embed iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 720px !important;
  border: 0;
}

.cal-embed.is-loading {
  display: grid;
  place-items: center;
}

.cal-embed.is-loading::before {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(30, 50, 72, 0.1);
  border-top-color: var(--orange);
  border-radius: 999px;
  content: "";
}

#calStatus {
  min-height: 40px;
  padding: 10px 16px;
  border-top: 1px solid rgba(30, 50, 72, 0.1);
  background: rgba(255, 255, 255, 0.82);
}

@media (min-width: 860px) {
  .hero-shell {
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 980px) {
  .hero-center {
    margin-top: 26px;
  }

  .service-status {
    display: none;
  }

  .booking-corner {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 24px, 500px);
    margin: auto auto 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .contact-corner {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 24px, 500px);
    margin: 18px auto 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .corner-mask {
    display: none;
  }

  .booking-panel {
    width: 100%;
  }

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

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

  .reviews-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 8px;
  }

  .hero-shell,
  .hero-layer {
    min-height: calc(100vh - 16px);
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-video {
    object-position: 64% center;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68) 34%, rgba(255, 255, 255, 0.3) 56%, rgba(240, 240, 240, 0.58));
  }

  .top-nav {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 14px;
  }

  .brand span {
    max-width: 160px;
  }

  .nav-links {
    display: none;
  }

  .language-switcher {
    padding: 4px;
  }

  .lang-button {
    min-width: 34px;
    min-height: 32px;
  }

  .theme-toggle {
    width: 38px;
    height: 38px;
  }

  .theme-toggle__icon {
    width: 16px;
    height: 16px;
  }

  .hero-center {
    width: min(100% - 24px, 560px);
    margin-top: 12px;
  }

  .hero-lead {
    max-width: 500px;
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .booking-corner {
    width: calc(100% - 16px);
    margin-top: 28px;
  }

  .booking-heading {
    padding: 18px 18px 12px;
  }

  .booking-wizard {
    padding: 0 18px 18px;
  }

  .services-section,
  .reviews-section {
    width: min(100% - 16px, 1120px);
    padding-top: 44px;
  }

  .service-list,
  .review-list {
    grid-template-columns: 1fr;
  }

  .review-placeholder {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .dialog-panel {
    inset: 8px;
    max-height: calc(100dvh - 16px);
    border-radius: 24px;
  }

  .dialog-header {
    padding: 16px;
  }

  .calendar-shell {
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .cal-embed {
    flex: 1 0 auto;
    min-height: calc(100dvh - 132px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cal-embed iframe {
    height: max(760px, calc(100dvh - 112px)) !important;
    min-height: max(760px, calc(100dvh - 112px)) !important;
  }
}

@media (max-width: 420px) {
  .hero-center {
    margin-top: 12px;
  }

  .booking-heading {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-panel,
  .wizard-dot,
  .wizard-option,
  .primary-action,
  .secondary-action {
    transition-duration: 0.01ms !important;
  }

  .booking-wizard.is-entering .wizard-copy,
  .booking-wizard.is-entering .wizard-summary,
  .booking-wizard.is-entering .wizard-options,
  .booking-wizard.is-entering .wizard-footer {
    animation: none !important;
  }
}

/* Estilos para el paso de Ubicación en el Wizard */
.wizard-options--location {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100%;
}

.location-card {
  width: 100%;
}

.address-input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-with-icon svg,
.input-with-icon i {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  color: var(--muted);
  pointer-events: none;
}

.address-autocomplete-input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px 0 46px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.36)),
    rgba(255, 255, 255, 0.46);
  color: var(--ink);
  font-weight: 500;
  outline: none;
  font-size: 0.95rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(16, 24, 40, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-secondary-action {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.42);
  color: rgba(30, 50, 72, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 10px 24px rgba(16, 24, 40, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.location-secondary-action:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.52);
}

.address-autocomplete-input:focus {
  border-color: rgba(255, 131, 0, 0.56);
  box-shadow: 0 0 0 4px rgba(255, 131, 0, 0.1);
}

.address-status-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 12px 26px rgba(16, 24, 40, 0.055);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 0.88rem;
  line-height: 1.45;
  transition: all 0.2s ease;
}

.address-status-box.is-loading {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24)),
    rgba(30, 50, 90, 0.045);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--ink-soft);
  align-items: center;
}

.status-box-success {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.26)),
    rgba(39, 174, 96, 0.08);
  border-color: rgba(39, 174, 96, 0.18);
  color: #1b5e20;
}

.status-box-success svg,
.status-box-success i {
  color: #27ae60;
  flex: 0 0 auto;
  margin-top: 2px;
}

.status-box-warning {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.26)),
    rgba(230, 126, 34, 0.08);
  border-color: rgba(230, 126, 34, 0.22);
  color: #a04000;
}

.status-box-warning svg,
.status-box-warning i {
  color: #e67e22;
  flex: 0 0 auto;
  margin-top: 2px;
}

.status-success,
.status-warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.status-success strong,
.status-warning strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
  font-weight: 700;
}

.status-success p,
.status-warning p {
  font-size: 0.82rem;
  opacity: 0.9;
}

.location-map-hint {
  display: inline-flex;
  margin-top: 6px;
  color: rgba(30, 50, 72, 0.58);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Spinner animado */
.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(30, 50, 72, 0.1);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex: 0 0 auto;
}

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

/* Clases deshabilitadas para botones */
.primary-action.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}

/* Custom Headless Autocomplete Dropdown styling */
.custom-autocomplete-dropdown {
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow:
    0 18px 40px rgba(16, 24, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  margin-top: 4px;
  overflow: hidden;
  z-index: 9999;
  list-style: none;
  padding: 0;
  display: none;
}

.custom-autocomplete-dropdown.is-open {
  display: block;
}

.custom-prediction-item {
  padding: 12px 16px;
  border-top: 1px solid rgba(30, 50, 72, 0.06);
  color: var(--ink-soft);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-prediction-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: rgba(30, 50, 72, 0.48);
}

.custom-prediction-item:first-child {
  border-top: none;
}

.custom-prediction-item:hover {
  background-color: rgba(255, 131, 0, 0.08);
}

.custom-prediction-item strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
}

.custom-prediction-item small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Nouveau conteneur de la carte de confirmation */
.map-confirmation-container {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  border: 1px solid rgba(30, 50, 72, 0.12);
  margin-top: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  background-color: #f7f9fb;
  transition: all 0.3s ease;
}

.map-confirmation-container.is-hidden {
  display: none !important;
}

:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 154, 43, 0.08), transparent 32%),
    var(--page);
  color: var(--ink);
}

:root[data-theme="dark"] .hero-shell {
  background: rgba(8, 11, 16, 0.9);
}

:root[data-theme="dark"] .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.58), rgba(8, 11, 16, 0.4) 34%, rgba(8, 11, 16, 0.28) 58%, rgba(8, 11, 16, 0.72)),
    linear-gradient(90deg, rgba(8, 11, 16, 0.54), rgba(8, 11, 16, 0.24) 48%, rgba(8, 11, 16, 0.5));
}

:root[data-theme="dark"] .brand,
:root[data-theme="dark"] .nav-links,
:root[data-theme="dark"] .hero-lead,
:root[data-theme="dark"] .contact-button,
:root[data-theme="dark"] .primary-action {
  color: var(--ink);
}

:root[data-theme="dark"] .nav-links {
  color: rgba(238, 244, 251, 0.82);
}

:root[data-theme="dark"] .language-switcher,
:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .hero-badge,
:root[data-theme="dark"] .service-status,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .review-placeholder,
:root[data-theme="dark"] .service-chip-card,
:root[data-theme="dark"] .review-card,
:root[data-theme="dark"] .feedback-box {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(22, 31, 43, 0.72), rgba(13, 18, 26, 0.46)),
    rgba(13, 18, 26, 0.56);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: var(--ink-soft);
}

:root[data-theme="dark"] .language-switcher,
:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .hero-badge,
:root[data-theme="dark"] .service-status,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] .review-placeholder {
  backdrop-filter: blur(24px) saturate(1.16);
  -webkit-backdrop-filter: blur(24px) saturate(1.16);
}

:root[data-theme="dark"] .lang-button {
  color: rgba(238, 244, 251, 0.72);
}

:root[data-theme="dark"] .lang-button.is-active {
  background: rgba(238, 244, 251, 0.9);
  color: #111827;
}

:root[data-theme="dark"] .theme-toggle {
  color: rgba(255, 201, 140, 0.95);
}

:root[data-theme="dark"] .hero-badge svg,
:root[data-theme="dark"] .review-placeholder__icon,
:root[data-theme="dark"] .wizard-summary__chip svg,
:root[data-theme="dark"] .wizard-summary__chip .custom-icon {
  color: var(--orange);
}

:root[data-theme="dark"] .hero-lead {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.58);
}

:root[data-theme="dark"] .hero-booking .booking-panel,
:root[data-theme="dark"] .booking-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(28, 38, 52, 0.78), rgba(13, 18, 26, 0.54) 54%, rgba(13, 18, 26, 0.44)),
    linear-gradient(18deg, rgba(255, 154, 43, 0.14), transparent 44%),
    rgba(13, 18, 26, 0.58);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -24px 52px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(42px) saturate(1.22);
  -webkit-backdrop-filter: blur(42px) saturate(1.22);
}

:root[data-theme="dark"] .booking-panel::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05) 38%, rgba(255, 154, 43, 0.38) 68%, rgba(255, 255, 255, 0.18)) border-box;
  opacity: 0.8;
}

:root[data-theme="dark"] .booking-panel::after {
  background:
    linear-gradient(156deg, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(330deg, rgba(255, 154, 43, 0.08), transparent 42%);
}

:root[data-theme="dark"] .booking-heading h2,
:root[data-theme="dark"] .section-heading h2,
:root[data-theme="dark"] .dialog-header h2,
:root[data-theme="dark"] .wizard-copy h3,
:root[data-theme="dark"] .service-chip-card h3,
:root[data-theme="dark"] .feedback-box h3,
:root[data-theme="dark"] .custom-prediction-item strong {
  color: var(--ink);
}

:root[data-theme="dark"] .booking-heading p,
:root[data-theme="dark"] .section-heading p,
:root[data-theme="dark"] .dialog-header p,
:root[data-theme="dark"] .wizard-copy span,
:root[data-theme="dark"] .contact-card p {
  color: var(--orange);
}

:root[data-theme="dark"] .wizard-copy p,
:root[data-theme="dark"] .service-chip-card p,
:root[data-theme="dark"] .review-placeholder p,
:root[data-theme="dark"] .dialog-header span,
:root[data-theme="dark"] .assistive-note,
:root[data-theme="dark"] .site-credit,
:root[data-theme="dark"] .site-credit a,
:root[data-theme="dark"] .location-map-hint {
  color: var(--muted);
}

:root[data-theme="dark"] .service-status strong {
  color: var(--ink);
}

:root[data-theme="dark"] .service-status span {
  color: rgba(231, 238, 247, 0.68);
}

:root[data-theme="dark"] .booking-icon,
:root[data-theme="dark"] .wizard-option,
:root[data-theme="dark"] .wizard-option__icon,
:root[data-theme="dark"] .wizard-summary__chip,
:root[data-theme="dark"] .address-autocomplete-input,
:root[data-theme="dark"] .secondary-action,
:root[data-theme="dark"] .location-secondary-action,
:root[data-theme="dark"] .dialog-close {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(33, 45, 61, 0.7), rgba(15, 21, 30, 0.38)),
    rgba(15, 21, 30, 0.52);
  color: var(--ink-soft);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

:root[data-theme="dark"] .wizard-option {
  color: var(--ink);
}

:root[data-theme="dark"] .wizard-option:hover,
:root[data-theme="dark"] .wizard-option.is-selected {
  border-color: rgba(255, 154, 43, 0.5);
  background:
    linear-gradient(145deg, rgba(43, 55, 72, 0.72), rgba(21, 28, 38, 0.42)),
    rgba(255, 154, 43, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 34px rgba(255, 154, 43, 0.12);
}

:root[data-theme="dark"] .wizard-option:disabled:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(145deg, rgba(33, 45, 61, 0.7), rgba(15, 21, 30, 0.38)),
    rgba(15, 21, 30, 0.52);
}

:root[data-theme="dark"] .wizard-option small {
  color: rgba(231, 238, 247, 0.56);
}

:root[data-theme="dark"] .wizard-dot {
  background: rgba(238, 244, 251, 0.16);
}

:root[data-theme="dark"] .wizard-dot.is-active {
  background: rgba(255, 154, 43, 0.9);
}

:root[data-theme="dark"] .ghost-action {
  color: rgba(238, 244, 251, 0.7);
}

:root[data-theme="dark"] .ghost-action:hover {
  color: var(--ink);
}

:root[data-theme="dark"] .primary-action,
:root[data-theme="dark"] .contact-button {
  background: rgba(255, 154, 43, 0.94);
  color: #121820;
  box-shadow: 0 14px 30px rgba(255, 154, 43, 0.16);
}

:root[data-theme="dark"] .primary-action:hover,
:root[data-theme="dark"] .contact-button:hover {
  background: #ffad4f;
}

:root[data-theme="dark"] .status-box-success {
  background:
    linear-gradient(145deg, rgba(32, 48, 40, 0.74), rgba(13, 24, 18, 0.42)),
    rgba(39, 174, 96, 0.12);
  border-color: rgba(39, 174, 96, 0.24);
  color: #bdf0cb;
}

:root[data-theme="dark"] .status-box-warning {
  background:
    linear-gradient(145deg, rgba(58, 42, 26, 0.72), rgba(30, 21, 14, 0.44)),
    rgba(230, 126, 34, 0.14);
  border-color: rgba(255, 154, 43, 0.26);
  color: #ffd0a0;
}

:root[data-theme="dark"] .address-status-box.is-loading {
  background:
    linear-gradient(145deg, rgba(33, 45, 61, 0.62), rgba(15, 21, 30, 0.38)),
    rgba(15, 21, 30, 0.5);
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--ink-soft);
}

:root[data-theme="dark"] .custom-autocomplete-dropdown {
  border-color: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(28, 38, 52, 0.96), rgba(13, 18, 26, 0.9));
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .custom-prediction-item {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: var(--ink-soft);
}

:root[data-theme="dark"] .custom-prediction-item svg {
  color: rgba(238, 244, 251, 0.58);
}

:root[data-theme="dark"] .custom-prediction-item:hover {
  background-color: rgba(255, 154, 43, 0.12);
}

:root[data-theme="dark"] .map-confirmation-container {
  border-color: rgba(255, 255, 255, 0.14);
  background-color: #111827;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] .dialog-backdrop {
  background: rgba(0, 0, 0, 0.58);
}

:root[data-theme="dark"] .dialog-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(21, 29, 40, 0.96), rgba(10, 14, 20, 0.96));
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .dialog-header,
:root[data-theme="dark"] #calStatus {
  border-color: rgba(255, 255, 255, 0.1);
}

:root[data-theme="dark"] .cal-embed {
  background: #0f141c;
}

:root[data-theme="dark"] #calStatus {
  background: rgba(10, 14, 20, 0.9);
}

:root[data-theme="dark"] .corner-mask svg {
  fill: var(--page);
}

:root[data-theme="dark"] .booking-corner,
:root[data-theme="dark"] .contact-corner {
  background: var(--page);
}

:root[data-theme="dark"] .site-credit a:hover {
  color: var(--orange);
}
