/* Book repair — form + thanks (Fone World red theme, animations) */

.bk-page {
  background: var(--color-bg-alt);
  overflow: visible;
}

/* Keep footer above in-page layers when scrolling */
main:has(.bk-page) + .site-footer {
  position: relative;
  z-index: 5;
}

/* —— Hero —— */
.bk-hero.fw-hero {
  position: relative;
  z-index: 0;
  padding: 3rem 0 2.5rem;
  overflow: hidden;
}

.bk-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.bk-hero-copy h1 {
  margin-bottom: 0.75rem;
}

.bk-hero-perks {
  margin-top: 1.25rem;
}

.bk-hero-steps-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  animation: bkFadeUp 0.6s ease-out 0.2s both;
}

.bk-hero-steps-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.85rem;
}

.bk-hero-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-hero-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.55rem;
}

.bk-hero-steps li {
  transition: opacity 0.3s, transform 0.3s;
}

.bk-hero-steps li.is-done {
  opacity: 0.65;
}

.bk-hero-steps li.is-done span {
  background: rgba(255, 255, 255, 0.35);
}

.bk-hero-steps li.is-active {
  opacity: 1;
  transform: translateX(4px);
}

.bk-hero-steps li span {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  transition: background 0.3s, transform 0.3s;
}

.bk-hero-steps li.is-active span {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.bk-hero-steps em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.bk-required { color: var(--color-red); }

.bk-optional {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.bk-section {
  position: relative;
  z-index: 1;
  padding: 2.25rem 0 3rem;
  margin-top: 0;
  background: var(--color-bg-alt);
}

/* Trust bar — full width above form */
.bk-trust-bar {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  border-left: 4px solid var(--color-red);
  box-shadow: 0 4px 20px rgba(215, 25, 32, 0.08);
}

.bk-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
}

.bk-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
}

.bk-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 1.5rem;
  align-items: start;
}

.bk-main-col {
  min-width: 0;
}

/* —— Form card —— */
.bk-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.35rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--color-border);
}

/* —— Minimal stepper progress —— */
.bk-wizard-progress {
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.bk-stepper {
  position: relative;
  padding: 0 0 0.1rem;
  max-width: 420px;
  margin: 0 auto;
}

.bk-stepper-rail {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 0.95rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ececec 0%, #f5f5f5 100%);
  overflow: hidden;
  z-index: 0;
}

.bk-stepper-rail-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-red) 0%, #ff4d55 50%, var(--color-red-dark) 100%);
  background-size: 200% 100%;
  box-shadow: 0 0 8px rgba(215, 25, 32, 0.35);
  transition: width 0.5s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.bk-stepper-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.bk-stepper-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  min-width: 0;
  transition: opacity 0.35s ease;
}

.bk-stepper-marker {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e5e7eb;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: border-color 0.35s, background 0.35s, color 0.35s, transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s;
}

.bk-stepper-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s, transform 0.35s, border-color 0.35s;
}

.bk-stepper-num,
.bk-stepper-check {
  position: relative;
  z-index: 1;
  line-height: 1;
  transition: opacity 0.25s, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.bk-stepper-check {
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.bk-stepper-check svg {
  width: 11px;
  height: 11px;
}

.bk-stepper-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: 100%;
}

.bk-stepper-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-muted);
  transition: color 0.35s;
}

.bk-stepper-hint {
  display: none;
  font-size: 0.65rem;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
  transition: color 0.35s, opacity 0.35s;
}

/* Pending — muted */
.bk-stepper-step:not(.is-active):not(.is-done) {
  opacity: 0.72;
}

/* Active — glowing red node */
.bk-stepper-step.is-active .bk-stepper-marker {
  background: linear-gradient(145deg, #ff3b42 0%, var(--color-red) 45%, var(--color-red-dark) 100%);
  border-color: transparent;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 3px 12px rgba(215, 25, 32, 0.35), 0 0 0 3px rgba(215, 25, 32, 0.1);
}

.bk-stepper-step.is-active .bk-stepper-ring {
  opacity: 1;
  border-color: rgba(215, 25, 32, 0.28);
  animation: bkStepperPulse 2.5s ease-in-out infinite;
}

@keyframes bkStepperPulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.bk-stepper-step.is-active .bk-stepper-name {
  color: var(--color-red);
}

.bk-stepper-step.is-active {
  opacity: 1;
}

/* Done — checkmark, filled node */
.bk-stepper-step.is-done .bk-stepper-marker {
  background: linear-gradient(145deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(215, 25, 32, 0.3);
  transform: scale(1);
}

.bk-stepper-step.is-done .bk-stepper-num {
  display: none;
}

.bk-stepper-step.is-done .bk-stepper-check {
  display: flex;
  animation: bkStepperCheckPop 0.45s cubic-bezier(0.34, 1.5, 0.64, 1) both;
}

@keyframes bkStepperCheckPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-40deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.bk-stepper-step.is-done .bk-stepper-name {
  color: var(--color-text);
}

.bk-stepper-step.is-done .bk-stepper-hint {
  color: var(--color-muted);
}

.bk-stepper-step.is-done {
  opacity: 1;
}

.bk-wizard-viewport {
  overflow: hidden;
}

.bk-wizard-step {
  display: none;
}

.bk-wizard-step.is-active {
  display: block;
}

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

.bk-wizard-step.is-enter {
  animation: bkStepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bk-wizard-step.is-enter-back {
  animation: bkStepInBack 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes bkStepIn {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bkStepInBack {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.bk-step-head {
  margin-bottom: 1.1rem;
}

.bk-step-foot {
  margin-top: 0.75rem;
  margin-bottom: 0;
  padding: 0.7rem 0.9rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius, 8px);
  border-left: 3px solid var(--color-red);
}

.bk-step-foot p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.bk-step-foot strong {
  color: var(--color-red);
}

.bk-step-head h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

.bk-step-lead {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.bk-wizard-actions {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.bk-wizard-actions-main {
  flex: 1;
  min-width: 0;
  position: relative;
}

.bk-wizard-actions-main .bk-btn-next,
.bk-wizard-actions-main .bk-submit {
  width: 100%;
}

.bk-btn-next {
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  background: var(--color-red);
  border: none;
  border-radius: var(--radius, 8px);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(215, 25, 32, 0.3);
}

.bk-btn-next:hover {
  background: var(--color-red-dark);
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.38);
}

.bk-btn-back {
  flex-shrink: 0;
  align-self: stretch;
  min-width: 108px;
  white-space: nowrap;
}

.bk-wizard-actions:not(.has-back) .bk-wizard-actions-main {
  width: 100%;
}

.bk-btn-next:not(.bk-is-hidden) {
  display: block;
}

.bk-form .form-control.is-invalid {
  border-color: var(--color-red) !important;
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.12) !important;
}

.bk-field {
  margin-bottom: 0.85rem;
}

.bk-form .bk-wizard-step.is-active > .bk-hint-block:last-of-type,
.bk-form .bk-wizard-step.is-active > .bk-step-foot:last-child {
  margin-bottom: 0;
}

.bk-field-row {
  display: grid;
  gap: 1rem;
}

.bk-field-row-2 {
  grid-template-columns: 1fr 1fr;
}

.bk-field label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.bk-form .form-control {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius, 8px);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.bk-form .form-control:hover {
  border-color: #9ca3af;
}

.bk-form .form-control:focus {
  outline: none;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.14);
  transform: translateY(-1px);
}

.bk-form select.form-control {
  cursor: pointer;
}

.bk-form textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.bk-hint,
.bk-hint-block {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.bk-hint-block {
  display: block;
  margin-top: -0.35rem;
}

.bk-char-count {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.35rem;
}

.bk-char-count.is-limit {
  color: var(--color-red);
  font-weight: 600;
}

.bk-field-error {
  display: block;
  color: var(--color-red);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.bk-parking-note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff8f8, #fff);
  border: 1px solid rgba(215, 25, 32, 0.15);
  border-radius: 12px;
  border-left: 4px solid var(--color-red);
}

.bk-parking-note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bk-parking-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.bk-alert {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  margin-bottom: 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.bk-alert p { margin: 0; }

.bk-alert-info {
  background: var(--color-red-light);
  border: 1px solid rgba(215, 25, 32, 0.12);
}

.bk-alert-error {
  background: #fef2f2;
  border: 1px solid rgba(215, 25, 32, 0.25);
  color: var(--color-red-dark);
}

.bk-submit:not(.bk-is-hidden) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 22px rgba(215, 25, 32, 0.38);
  position: relative;
  overflow: hidden;
}

.bk-submit:hover:not(:disabled) {
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(215, 25, 32, 0.45);
}

.bk-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}

.bk-submit.is-loading .bk-submit-label::after {
  content: '…';
  animation: bkDots 1s steps(3) infinite;
}

@keyframes bkDots {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}

/* Scroll-in animation — no transform before visible (avoids overlap with hero/footer) */
.bk-animate {
  opacity: 0;
  transition: opacity 0.55s ease;
}

.bk-animate.bk-visible {
  opacity: 1;
}

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

/* —— Sidebar —— */
.bk-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bk-side-card-store {
  border-left: 3px solid var(--color-red);
  padding: 1.15rem 1.2rem;
}

.bk-side-card-store h3 {
  margin-bottom: 0.75rem;
}

.bk-side-divider {
  height: 1px;
  margin: 0.9rem 0;
  background: var(--color-border);
}

.bk-side-hours-block {
  margin: 0;
}

.bk-side-hours-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.bk-contact-list-compact li {
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0;
}

.bk-contact-list-compact li > div {
  flex: 1;
  min-width: 0;
}

.bk-contact-list-compact .bk-contact-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.bk-contact-list-compact strong {
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.bk-contact-list-compact a {
  display: block;
  font-size: 0.84rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.bk-contact-list-compact a[href^="mailto:"] {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.bk-side-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.bk-side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(215, 25, 32, 0.18);
}

/* Why book — top of sidebar */
.bk-side-card-why {
  border-left: 4px solid var(--color-red);
  background: linear-gradient(105deg, var(--color-red-light) 0%, #fff 42%);
  box-shadow: 0 6px 24px rgba(215, 25, 32, 0.1);
}

.bk-side-card-why:hover {
  border-color: rgba(215, 25, 32, 0.25);
  box-shadow: 0 12px 32px rgba(215, 25, 32, 0.14);
}

.bk-side-card-why .bk-benefits li {
  animation: bkBenefitIn 0.5s ease-out both;
}

.bk-side-card-why .bk-benefits li:nth-child(1) { animation-delay: 0.05s; }
.bk-side-card-why .bk-benefits li:nth-child(2) { animation-delay: 0.12s; }
.bk-side-card-why .bk-benefits li:nth-child(3) { animation-delay: 0.19s; }
.bk-side-card-why .bk-benefits li:nth-child(4) { animation-delay: 0.26s; }

@keyframes bkBenefitIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Parking perk — eye-catching animated card */
.bk-side-card-parking {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e82a32 0%, var(--color-red) 40%, var(--color-red-dark) 100%);
  border: none;
  color: #fff;
  padding: 1.5rem 1.4rem 1.35rem;
  animation: bkParkingCardGlow 3s ease-in-out infinite;
}

@keyframes bkParkingCardGlow {
  0%, 100% {
    box-shadow: 0 8px 28px rgba(215, 25, 32, 0.45), 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 14px 40px rgba(215, 25, 32, 0.55), 0 0 0 4px rgba(255, 255, 255, 0.12);
  }
}

.bk-side-card-parking:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 44px rgba(215, 25, 32, 0.5);
}

.bk-parking-glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: bkParkingShine 4s ease-in-out infinite;
}

@keyframes bkParkingShine {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.15); }
}

.bk-parking-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px #fff;
  animation: bkParkingSpark 2.2s ease-out infinite;
}

.bk-parking-spark--1 { top: 18%; left: 12%; animation-delay: 0s; }
.bk-parking-spark--2 { top: 28%; right: 18%; animation-delay: 1.1s; }

@keyframes bkParkingSpark {
  0%, 100% { opacity: 0; transform: scale(0); }
  40% { opacity: 1; transform: scale(1.3); }
  70% { opacity: 0.3; transform: scale(0.8); }
}

.bk-parking-icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bkParkingIconFloat 2.5s ease-in-out infinite;
}

@keyframes bkParkingIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.bk-parking-icon-large {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.bk-parking-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #fff;
  color: var(--color-red);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
  position: relative;
  z-index: 1;
  animation: bkParkingBadgePulse 2s ease-in-out infinite;
}

@keyframes bkParkingBadgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.bk-side-card-parking .bk-parking-title,
.bk-side-card-parking h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: #fff;
  line-height: 1.2;
}

.bk-side-card-parking .bk-parking-text,
.bk-side-card-parking p {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  line-height: 1.45;
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Compact parking — sidebar & thanks inline */
.bk-side-card-parking--compact {
  padding: 1rem 1.05rem 0.95rem;
  animation: bkParkingCardGlow 4s ease-in-out infinite;
}

.bk-side-card-parking--compact:hover {
  transform: translateY(-2px);
}

.bk-side-card-parking--compact .bk-parking-icon-wrap {
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
}

.bk-side-card-parking--compact .bk-parking-icon-large {
  font-size: 1.25rem;
}

.bk-side-card-parking--compact .bk-parking-badge {
  font-size: 0.6rem;
  padding: 0.22rem 0.5rem;
  margin-bottom: 0.5rem;
}

.bk-side-card-parking--compact .bk-parking-title {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.bk-side-card-parking--compact .bk-parking-text {
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.bk-side-card-parking--compact .bk-side-address {
  font-size: 0.72rem !important;
  margin-bottom: 0;
}

.bk-parking-map-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bk-parking-map-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.bk-thanks-parking-inline {
  margin-top: 2rem;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.bk-thanks-parking-inline .bk-side-card-parking--compact {
  margin: 0;
}

.bk-side-address {
  position: relative;
  z-index: 1;
  font-size: 0.82rem !important;
  opacity: 0.9;
}

.bk-side-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.bk-side-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-light);
  color: var(--color-red);
  border-radius: 8px;
  font-size: 0.85rem;
}

.bk-side-card-hours {
  border-bottom: 3px solid var(--color-red);
}

.bk-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.bk-contact-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bk-contact-list li > div {
  flex: 1;
  min-width: 0;
}

.bk-contact-ico {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 10px;
  font-size: 1rem;
}

.bk-contact-list strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.1rem;
}

.bk-contact-list a {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.bk-contact-list a:hover {
  color: var(--color-red);
}

.bk-hours {
  width: 100%;
  font-size: 0.88rem;
  border-collapse: collapse;
}

.bk-hours td { padding: 0.4rem 0; }
.bk-hours td:first-child { font-weight: 600; }
.bk-hours td:last-child { text-align: right; color: var(--color-muted); }

.bk-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bk-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.bk-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

/* —— Thanks page —— */
.bk-thanks-page {
  background: var(--color-bg-alt);
  min-height: 60vh;
}

.bk-thanks-hero {
  padding: 4rem 0 5rem;
}

.bk-thanks-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.bk-thanks-icon-ring {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(215, 25, 32, 0.4);
  animation: bkThanksPop 0.75s cubic-bezier(0.34, 1.5, 0.64, 1) both;
}

.bk-thanks-check {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

@keyframes bkThanksPop {
  0% {
    transform: scale(0) rotate(-120deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.bk-thanks-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  animation: bkFadeUp 0.55s ease-out 0.15s both;
}

.bk-thanks-lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.55;
  animation: bkFadeUp 0.55s ease-out 0.25s both;
}

.bk-thanks-parking {
  display: flex;
  gap: 1.15rem;
  text-align: left;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1.5rem 1.65rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(215, 25, 32, 0.1);
  border-left: 5px solid var(--color-red);
  animation: bkFadeUp 0.6s ease-out 0.4s both;
}

.bk-thanks-parking-icon {
  font-size: 2.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.bk-thanks-parking h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.bk-thanks-parking p {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
}

.bk-thanks-address {
  font-size: 0.88rem !important;
  color: var(--color-muted) !important;
}

.bk-thanks-map-link {
  font-weight: 600;
  font-size: 0.9rem;
}

.bk-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  animation: bkFadeUp 0.55s ease-out 0.55s both;
}

/* —— Parking perk popup (after successful booking) —— */
body.bk-parking-open {
  overflow: hidden;
}

.bk-parking-overlay {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 15, 20, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.bk-parking-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.bk-parking-overlay.is-closing {
  opacity: 0;
  visibility: hidden;
}

.bk-parking-modal {
  position: relative;
  width: min(100%, 400px);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  margin: 0;
  transform: scale(0.88) translateY(16px);
  opacity: 0;
  animation: bkParkingModalIn 0.55s cubic-bezier(0.34, 1.35, 0.64, 1) 0.1s both;
}

.bk-parking-overlay.is-closing .bk-parking-modal {
  animation: bkParkingModalOut 0.3s ease-in both;
}

@keyframes bkParkingModalIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes bkParkingModalOut {
  to {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
}

.bk-parking-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.bk-parking-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
}

.bk-parking-modal-map {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bk-parking-modal-map:hover {
  color: rgba(255, 255, 255, 0.9);
}

.bk-parking-modal-btn {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--color-red);
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.bk-parking-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
}

.bk-side-card-parking.bk-parking-modal:hover {
  transform: scale(1);
}

@media (max-width: 960px) {
  .bk-hero-grid {
    grid-template-columns: 1fr;
  }

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

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

  .bk-sidebar {
    position: static;
  }

  .bk-form {
    padding: 1.35rem;
  }

  .bk-field-row-2 {
    grid-template-columns: 1fr;
  }

  .bk-wizard-actions {
    flex-direction: column;
  }

  .bk-btn-back {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .bk-thanks-parking {
    flex-direction: column;
    text-align: center;
  }

  .bk-trust-list {
    grid-template-columns: 1fr;
  }

  .bk-stepper {
    max-width: 100%;
  }

  .bk-stepper-rail {
    left: 18%;
    right: 18%;
    top: 0.85rem;
  }

  .bk-stepper-marker {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.75rem;
  }

  .bk-stepper-name {
    font-size: 0.7rem;
  }
}
