/* =============================================================================
   Booking page — hierarchy, contrast, spacing, mobile
   Scoped to .booking-page, .booking-success, .section-booking-cta
   Dark theme lives here (do not rely on themes.css / site.css edits)
   ============================================================================= */

.page-hero--booking {
  text-align: left;
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.page-hero--booking .container {
  position: relative;
  z-index: 1;
}

.page-hero--booking .page-hero__subtitle {
  margin-left: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
}

.booking-hero__eyebrow {
  color: var(--sp-accent);
}

.booking-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.booking-hero-stat {
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--sp-radius);
  padding: 1rem 0.65rem;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.booking-hero-stat strong {
  display: block;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.booking-hero-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Page canvas ─────────────────────────────────────────────────────────── */

.booking-page {
  background: linear-gradient(180deg, #f1f5f9 0%, #e8eef6 100%);
  padding-bottom: 0.5rem;
}

.booking-page.section-form,
.booking-page .section-form {
  padding-top: 0;
}

.booking-page > .container {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* ── Progress ────────────────────────────────────────────────────────────── */

.booking-page .booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.25rem;
  padding: 1rem 1.15rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-lg);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  position: sticky;
  top: calc(var(--sp-header-h) + 0.65rem);
  z-index: 10;
}

.booking-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  flex: 0 0 auto;
  opacity: 0.42;
  transition: opacity var(--sp-transition);
}

.booking-progress__step.is-active,
.booking-progress__step.is-complete {
  opacity: 1;
}

.booking-page .booking-progress__num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 2px solid #cbd5e1;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
}

.booking-page .booking-progress__step.is-active .booking-progress__num,
.booking-page .booking-progress__step.is-complete .booking-progress__num {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.booking-page .booking-progress__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.booking-page .booking-progress__step.is-active .booking-progress__label,
.booking-page .booking-progress__step.is-complete .booking-progress__label {
  color: #0f172a;
}

.booking-progress__line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 0.5rem 1.25rem;
  max-width: 72px;
}

.booking-progress__step.is-complete + .booking-progress__line {
  background: rgba(14, 165, 233, 0.45);
}

/* ── Form card ───────────────────────────────────────────────────────────── */

.booking-page .booking-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-xl);
  padding: clamp(1.25rem, 3vw, 2.35rem);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.booking-form-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #e2e8f0;
}

.booking-form-card__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.booking-form-card__subtitle {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

.booking-form-alert:empty {
  display: none;
}

.booking-form-alert:not(:empty) {
  margin-bottom: 1.25rem;
  border-radius: var(--sp-radius);
  border: 1px solid rgba(239, 68, 68, 0.28);
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
}

/* ── Sections ────────────────────────────────────────────────────────────── */

.booking-form-section {
  border: none;
  padding: 0;
  margin: 0 0 1.25rem;
  min-width: 0;
}

.booking-form-panel {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-lg);
  padding: 1.25rem 1.25rem 1.4rem;
  margin-bottom: 1.25rem;
  transition: border-color var(--sp-transition), box-shadow var(--sp-transition), background var(--sp-transition);
}

.booking-form-panel.is-in-view {
  background: #ffffff;
  border-color: rgba(14, 165, 233, 0.38);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.booking-form-section__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  float: none;
  width: 100%;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.booking-form-section__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sp-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  flex-shrink: 0;
}

.booking-form-section__hint {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.1rem;
}

/* ── Fields ──────────────────────────────────────────────────────────────── */

.booking-field {
  margin-bottom: 0.15rem;
}

.booking-page .form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #334155;
  margin-bottom: 0.5rem;
}

.booking-field__required {
  color: #ef4444;
  font-weight: 700;
}

.booking-field__optional {
  font-weight: 500;
  color: #94a3b8;
  font-size: 0.8125rem;
}

.booking-page .form-control,
.booking-page .form-select,
.booking-page .booking-textarea {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  min-height: 52px;
  font-size: 1rem;
  border-radius: 0.75rem;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.booking-page .booking-textarea {
  min-height: 128px;
  padding: 0.875rem 1rem;
  line-height: 1.55;
  resize: vertical;
}

.booking-page .form-control::placeholder,
.booking-page .booking-textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.booking-page .form-control:focus,
.booking-page .form-select:focus,
.booking-page .booking-textarea:focus {
  background: #ffffff !important;
  border-color: var(--sp-primary) !important;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16) !important;
  outline: none;
}

.booking-page .form-control.is-invalid,
.booking-page .form-select.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12) !important;
}

.booking-field__error,
.booking-page .field-validation-error {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  color: #dc2626;
  font-weight: 500;
}

.booking-page .input-icon-wrap {
  position: relative;
}

.booking-page .input-icon-wrap > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  z-index: 2;
}

.booking-page .input-icon-wrap .form-control,
.booking-page .input-icon-wrap .form-select {
  padding-left: 2.75rem;
}

/* ── Service picker ──────────────────────────────────────────────────────── */

.service-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

@media (min-width: 576px) {
  .service-picker {
    grid-template-columns: repeat(3, 1fr);
  }
}

.booking-page .service-picker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  padding: 1rem 0.7rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--sp-radius);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  color: inherit;
  transition: border-color var(--sp-transition), background var(--sp-transition), transform var(--sp-transition), box-shadow var(--sp-transition);
}

.booking-page .service-picker__item:hover {
  border-color: rgba(14, 165, 233, 0.5);
  background: #f8fafc;
  transform: translateY(-2px);
}

.booking-page .service-picker__item:focus-visible {
  outline: 2px solid var(--sp-primary);
  outline-offset: 2px;
}

.booking-page .service-picker__item.is-selected {
  border-color: var(--sp-primary);
  background: #eff6ff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
}

.booking-page .service-picker__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eff6ff;
  border: 1px solid rgba(14, 165, 233, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--sp-primary);
}

.booking-page .service-picker__name {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #0f172a;
}

.booking-page .service-picker__price {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}

.booking-page .booking-service-preview {
  padding: 0.875rem 1rem;
  background: #eff6ff;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: var(--sp-radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  margin-top: 1rem;
}

.booking-form-extra {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed #cbd5e1;
}

.booking-form-extra__title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 1rem;
}

/* ── Submit ──────────────────────────────────────────────────────────────── */

.booking-form-footer {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-lg);
  padding: 1.25rem;
  margin-top: 0.35rem;
}

.booking-form-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  font-size: 0.875rem;
  margin-bottom: 0.9rem;
}

.booking-form-trust i {
  color: var(--sp-success);
  font-size: 1.125rem;
}

.booking-page .booking-submit,
.booking-page .booking-form-footer .btn-sp-primary {
  min-height: 56px;
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(3, 105, 161, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.booking-page .booking-submit:hover,
.booking-page .booking-form-footer .btn-sp-primary:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%) !important;
  box-shadow: 0 14px 34px rgba(3, 105, 161, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.booking-form-footer__note {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0.875rem 0 0;
  line-height: 1.5;
}

/* ── Sidebar ─────────────────────────────────────────────────────────────── */

.booking-sidebar {
  position: sticky;
  top: calc(var(--sp-header-h) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-page .booking-sidebar__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.booking-page .booking-sidebar__card--highlight {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, #ffffff 70%);
  border-color: rgba(14, 165, 233, 0.22);
  text-align: center;
}

.booking-page .booking-sidebar__card--muted {
  background: #f8fafc;
  display: flex;
  align-items: flex-start;
}

.booking-sidebar__title,
.booking-sidebar__help-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.9rem;
}

.booking-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-sidebar__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.7rem;
  line-height: 1.45;
}

.booking-sidebar__list li:last-child {
  margin-bottom: 0;
}

.booking-sidebar__list li i {
  color: var(--sp-success);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.booking-sidebar__stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0284c7;
  line-height: 1;
}

.booking-sidebar__stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

.booking-page .booking-sidebar .btn-sp-accent {
  color: #0f172a !important;
  font-weight: 700;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.28);
}

.booking-page .booking-sidebar .btn-sp-success {
  color: #ffffff !important;
  font-weight: 700;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.28);
}

/* ── Success ─────────────────────────────────────────────────────────────── */

.booking-success__hero-icon {
  font-size: clamp(2.75rem, 6vw, 4rem);
  color: #4ade80;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.booking-success {
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.booking-success__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--sp-radius-xl);
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.04), 0 20px 48px rgba(15, 23, 42, 0.08);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.booking-success__label {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.booking-success__ref {
  margin: 0 0 1.15rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0284c7;
  line-height: 1.15;
}

.booking-success__meta {
  margin: 0 0 0.65rem;
  color: #334155;
  font-size: 1rem;
}

.booking-success__note {
  margin: 0 0 1.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.booking-success .btn-sp-primary,
.booking-success__home {
  min-height: 52px;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  box-shadow: 0 10px 26px rgba(3, 105, 161, 0.35);
}

/* ── Booking CTA (home / services) ───────────────────────────────────────── */

.section-booking-cta {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 48%, #0369a1 100%);
  color: #ffffff;
}

.section-booking-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(56, 189, 248, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(245, 158, 11, 0.16) 0%, transparent 36%);
}

.section-booking-cta > .container {
  position: relative;
  z-index: 1;
}

.section-booking-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .section-booking-cta__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.75rem;
  }
}

.booking-cta-content__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24;
  margin-bottom: 0.75rem;
}

.booking-cta-content__title {
  font-family: var(--sp-font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.booking-cta-content__subtitle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 0;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.section-booking-cta .booking-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--sp-radius);
  color: #1e293b;
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.16);
}

.section-booking-cta .booking-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0284c7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.booking-cta-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
}

.booking-cta-trust i {
  color: #fbbf24;
  font-size: 1.125rem;
}

.section-booking-cta .booking-cta-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--sp-radius-xl);
  padding: clamp(1.5rem, 3vw, 2.35rem);
  text-align: center;
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.28);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.booking-cta-card__title,
.section-booking-cta .booking-cta-card .section-title {
  color: #0f172a;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.booking-cta-card__text,
.section-booking-cta .booking-cta-card .text-muted,
.section-booking-cta .booking-cta-card p {
  color: #64748b !important;
}

.section-booking-cta .booking-cta-card .btn-sp-primary {
  min-height: 54px;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  box-shadow: 0 10px 26px rgba(3, 105, 161, 0.36);
}

/* ── Dark theme ──────────────────────────────────────────────────────────── */

html[data-site-theme="dark"] .booking-page {
  background: linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}

html[data-site-theme="dark"] .booking-page .booking-form-card,
html[data-site-theme="dark"] .booking-page .booking-progress,
html[data-site-theme="dark"] .booking-page .booking-form-panel.is-in-view,
html[data-site-theme="dark"] .booking-page .booking-form-footer,
html[data-site-theme="dark"] .booking-success__card {
  background: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #f1f5f9;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html[data-site-theme="dark"] .booking-page .booking-form-panel {
  background: rgba(15, 23, 42, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

html[data-site-theme="dark"] .booking-form-card__header,
html[data-site-theme="dark"] .booking-form-extra {
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-site-theme="dark"] .booking-form-card__title,
html[data-site-theme="dark"] .booking-page .booking-form-section__title,
html[data-site-theme="dark"] .booking-page .booking-sidebar__title,
html[data-site-theme="dark"] .booking-page .booking-sidebar__help-title,
html[data-site-theme="dark"] .booking-page .booking-sidebar__card .h6,
html[data-site-theme="dark"] .booking-success__meta {
  color: #f8fafc !important;
}

html[data-site-theme="dark"] .booking-form-card__subtitle,
html[data-site-theme="dark"] .booking-page .booking-form-section__hint,
html[data-site-theme="dark"] .booking-page .form-label,
html[data-site-theme="dark"] .booking-form-extra__title,
html[data-site-theme="dark"] .booking-form-footer__note,
html[data-site-theme="dark"] .booking-form-trust,
html[data-site-theme="dark"] .booking-success__label,
html[data-site-theme="dark"] .booking-success__note {
  color: #94a3b8 !important;
}

html[data-site-theme="dark"] .booking-page .booking-progress__num {
  background: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: #94a3b8 !important;
}

html[data-site-theme="dark"] .booking-page .booking-progress__step.is-active .booking-progress__num,
html[data-site-theme="dark"] .booking-page .booking-progress__step.is-complete .booking-progress__num {
  background: #38bdf8 !important;
  border-color: #38bdf8 !important;
  color: #0f172a !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

html[data-site-theme="dark"] .booking-page .booking-progress__label {
  color: #94a3b8 !important;
}

html[data-site-theme="dark"] .booking-page .booking-progress__step.is-active .booking-progress__label,
html[data-site-theme="dark"] .booking-page .booking-progress__step.is-complete .booking-progress__label {
  color: #f1f5f9 !important;
}

html[data-site-theme="dark"] .booking-page .booking-progress__line {
  background: rgba(255, 255, 255, 0.12);
}

html[data-site-theme="dark"] .booking-page .form-control,
html[data-site-theme="dark"] .booking-page .form-select,
html[data-site-theme="dark"] .booking-page .booking-textarea {
  background: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #f8fafc !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25) !important;
}

html[data-site-theme="dark"] .booking-page .form-control:focus,
html[data-site-theme="dark"] .booking-page .form-select:focus,
html[data-site-theme="dark"] .booking-page .booking-textarea:focus {
  background: #0b1220 !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2) !important;
}

html[data-site-theme="dark"] .booking-page .form-control::placeholder,
html[data-site-theme="dark"] .booking-page .booking-textarea::placeholder {
  color: #64748b !important;
}

html[data-site-theme="dark"] .booking-page .input-icon-wrap > i {
  color: #94a3b8 !important;
}

html[data-site-theme="dark"] .booking-page .service-picker__item {
  background: #0f172a !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
}

html[data-site-theme="dark"] .booking-page .service-picker__item:hover {
  background: #1e293b !important;
  border-color: rgba(56, 189, 248, 0.45) !important;
}

html[data-site-theme="dark"] .booking-page .service-picker__item.is-selected {
  background: rgba(56, 189, 248, 0.14) !important;
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16) !important;
}

html[data-site-theme="dark"] .booking-page .service-picker__name {
  color: #f1f5f9 !important;
}

html[data-site-theme="dark"] .booking-page .service-picker__price {
  color: #94a3b8 !important;
}

html[data-site-theme="dark"] .booking-page .service-picker__icon {
  background: rgba(56, 189, 248, 0.12) !important;
  border-color: rgba(56, 189, 248, 0.22);
  color: #38bdf8;
}

html[data-site-theme="dark"] .booking-page .booking-service-preview {
  background: rgba(56, 189, 248, 0.1) !important;
  border-color: rgba(56, 189, 248, 0.22);
  color: #f1f5f9 !important;
}

html[data-site-theme="dark"] .booking-page .booking-sidebar__card {
  background: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
  color: #f1f5f9;
}

html[data-site-theme="dark"] .booking-page .booking-sidebar__card--highlight {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16) 0%, #1e293b 100%) !important;
  border-color: rgba(56, 189, 248, 0.28) !important;
}

html[data-site-theme="dark"] .booking-page .booking-sidebar__card--muted {
  background: #0f172a !important;
}

html[data-site-theme="dark"] .booking-page .booking-sidebar__list li {
  color: #cbd5e1 !important;
}

html[data-site-theme="dark"] .booking-page .booking-sidebar__stat-num,
html[data-site-theme="dark"] .booking-success__ref {
  color: #38bdf8 !important;
}

html[data-site-theme="dark"] .booking-success__hero-icon {
  color: #4ade80;
}

html[data-site-theme="dark"] .booking-page .booking-sidebar__stat-label,
html[data-site-theme="dark"] .booking-page .booking-sidebar__card .text-muted,
html[data-site-theme="dark"] .booking-page .booking-sidebar__card--muted .text-muted {
  color: #94a3b8 !important;
}

html[data-site-theme="dark"] .booking-page .field-validation-error,
html[data-site-theme="dark"] .booking-page .booking-field__error {
  color: #f87171 !important;
}

html[data-site-theme="dark"] .booking-form-alert:not(:empty) {
  background: rgba(127, 29, 29, 0.35);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

html[data-site-theme="dark"] .booking-page .booking-submit,
html[data-site-theme="dark"] .booking-page .booking-form-footer .btn-sp-primary,
html[data-site-theme="dark"] .booking-success .btn-sp-primary,
html[data-site-theme="dark"] .section-booking-cta .booking-cta-card .btn-sp-primary {
  color: #0f172a !important;
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%) !important;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.32);
}

html[data-site-theme="dark"] .section-booking-cta {
  background: linear-gradient(135deg, #020617 0%, #0c4a6e 52%, #075985 100%);
}

html[data-site-theme="dark"] .section-booking-cta .booking-cta-content__title,
html[data-site-theme="dark"] .section-booking-cta .booking-cta-content__subtitle,
html[data-site-theme="dark"] .section-booking-cta .booking-cta-trust {
  color: rgba(255, 255, 255, 0.95);
}

html[data-site-theme="dark"] .section-booking-cta .booking-step {
  background: #ffffff;
  color: #1e293b;
}

html[data-site-theme="dark"] .section-booking-cta .booking-cta-card {
  background: #ffffff;
}

html[data-site-theme="dark"] .section-booking-cta .booking-cta-card .section-title,
html[data-site-theme="dark"] .section-booking-cta .booking-cta-card h3,
html[data-site-theme="dark"] .booking-cta-card__title {
  color: #0f172a !important;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */

@media (max-width: 991.98px) {
  .booking-hero-stats {
    gap: 0.55rem;
  }

  .booking-page .booking-progress {
    top: calc(var(--sp-header-h) + 0.45rem);
    padding: 0.7rem 0.75rem;
  }

  .booking-page .booking-progress__label {
    font-size: 0.625rem;
  }

  .booking-page .booking-progress__num {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .booking-form-panel {
    padding: 1rem;
  }

  .booking-form-footer {
    position: sticky;
    bottom: calc(var(--sp-mobile-bar-h) + 0.45rem);
    z-index: 9;
    box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.12);
  }

  .booking-sidebar {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .booking-hero-stat {
    padding: 0.75rem 0.4rem;
  }

  .booking-hero-stat strong {
    font-size: 0.95rem;
  }

  .booking-page .booking-form-card {
    padding: 1.1rem 0.95rem 1.25rem;
    border-radius: 1.25rem;
  }

  .booking-page .booking-submit,
  .booking-page .booking-form-footer .btn-sp-primary {
    min-height: 52px;
    font-size: 1rem;
  }

  .section-booking-cta .booking-cta-card {
    padding: 1.35rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-page .service-picker__item,
  .booking-page .booking-submit,
  .section-booking-cta .booking-step {
    transition: none;
  }
}
