/* ==========================================================================
   Booking Page — Daymaniyat Norana
   Ocean-themed booking experience, scoped under .booking-page
   ========================================================================== */

.booking-page {
  --bk-teal: #1CA8CB;
  --bk-teal-dark: #0F8DAD;
  --bk-deep: #113D48;
  --bk-navy: #0A1F24;
  --bk-sand: #F2B544;
  --bk-ink: #12262B;
  --bk-muted: #5E747B;
  --bk-line: #E2E9EB;
  --bk-bg: #F4F8F9;
  --bk-card: #FFFFFF;
  --bk-green: #0E9F6E;
  --bk-red: #D64545;
  --bk-radius: 16px;
  --bk-radius-sm: 12px;
  --bk-shadow: 0 16px 40px -16px rgba(10, 31, 36, 0.25);
  --bk-shadow-sm: 0 2px 10px -2px rgba(10, 31, 36, 0.08);
  font-family: "Manrope", sans-serif;
  background: var(--bk-bg);
  color: var(--bk-ink);
}

/* ---------- Hero ---------- */

.bk-hero {
  position: relative;
  padding: 4.5rem 0 8rem;
  color: #fff;
  background: linear-gradient(160deg, var(--bk-navy) 0%, var(--bk-deep) 55%, #14586B 100%);
  overflow: hidden;
}

.bk-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(28, 168, 203, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.bk-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
  pointer-events: none;
}

.bk-hero-inner {
  position: relative;
  z-index: 2;
}

.bk-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  display: block;
  z-index: 1;
}

.bk-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
}

.bk-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bk-breadcrumb a:hover {
  color: #fff;
}

.bk-breadcrumb i {
  font-size: 0.625rem;
  opacity: 0.6;
}

.bk-breadcrumb .bk-crumb-current {
  color: #fff;
}

.bk-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bk-sand);
  margin-bottom: 0.75rem;
}

.bk-hero-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.625rem;
  max-width: 720px;
}

.bk-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.75rem;
}

.bk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.bk-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
}

.bk-chip i {
  color: #6FD8EE;
  font-size: 0.75rem;
}

/* ---------- Layout ---------- */

.bk-body {
  padding-bottom: 4.5rem;
}

.bk-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 2rem;
  align-items: start;
}

.bk-main {
  min-width: 0;
}

.bk-sidebar {
  position: sticky;
  top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ---------- Progress tracker ---------- */

.bk-progress {
  display: flex;
  align-items: center;
  background: var(--bk-card);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow);
  padding: 1.125rem 1.5rem;
  margin: -3.5rem 0 2rem;
  position: relative;
  z-index: 5;
}

.bk-progress-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
}

.bk-progress-item:not(:last-child) {
  padding-right: 1rem;
}

.bk-progress-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -0.25rem;
  width: 1.25rem;
  height: 2px;
  background: var(--bk-line);
  transform: translateY(-50%);
}

.bk-progress-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #EDF3F4;
  color: var(--bk-muted);
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.bk-progress-dot .bk-dot-check {
  display: none;
  font-size: 0.625rem;
}

.bk-progress-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bk-muted);
  transition: color 0.25s ease;
}

.bk-progress-item.is-active .bk-progress-dot {
  background: var(--bk-teal);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(28, 168, 203, 0.2);
}

.bk-progress-item.is-active .bk-progress-label {
  color: var(--bk-navy);
}

.bk-progress-item.is-done .bk-progress-dot {
  background: var(--bk-teal-dark);
  color: #fff;
}

.bk-progress-item.is-done .bk-progress-dot .bk-dot-num {
  display: none;
}

.bk-progress-item.is-done .bk-progress-dot .bk-dot-check {
  display: block;
}

/* ---------- Alert ---------- */

.bk-alert {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  border-radius: var(--bk-radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.bk-alert h6 {
  font-weight: 800;
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bk-alert ul {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
}

/* ---------- Step cards ---------- */

.bk-step {
  background: var(--bk-card);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow-sm);
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.bk-step-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid var(--bk-line);
  background: linear-gradient(180deg, #FFFFFF, #FAFCFD);
}

.bk-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--bk-teal), var(--bk-teal-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.9375rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(28, 168, 203, 0.5);
}

.bk-step-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--bk-navy);
  margin: 0;
}

.bk-step-sub {
  font-size: 0.8125rem;
  color: var(--bk-muted);
  margin: 0;
}

.bk-step-icon {
  margin-left: auto;
  color: var(--bk-teal);
  opacity: 0.45;
  font-size: 1.25rem;
}

.bk-step-body {
  padding: 1.5rem;
}

/* ---------- Form fields ---------- */

.bk-field {
  margin-bottom: 1.375rem;
}

.bk-field:last-child {
  margin-bottom: 0;
}

.bk-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bk-navy);
  margin-bottom: 0.5rem;
}

.bk-label-optional {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bk-muted);
}

.bk-control-wrap {
  position: relative;
}

.bk-control-wrap > i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bk-muted);
  font-size: 0.875rem;
  pointer-events: none;
}

.bk-control {
  width: 100%;
  height: 3.25rem;
  padding: 0 1rem 0 2.75rem;
  border: 1.5px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bk-navy);
  background: #FBFDFE;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.bk-control:focus {
  outline: none;
  border-color: var(--bk-teal);
  box-shadow: 0 0 0 4px rgba(28, 168, 203, 0.15);
  background: #fff;
}

textarea.bk-control {
  height: auto;
  min-height: 110px;
  padding: 0.875rem 1rem;
  resize: vertical;
  font-weight: 500;
}

.bk-hint {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--bk-muted);
  margin-top: 0.375rem;
}

.bk-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ---------- Option (radio) cards ---------- */

.bk-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.875rem;
}

.bk-option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bk-option {
  position: relative;
  display: block;
  border: 1.5px solid var(--bk-line);
  border-radius: var(--bk-radius);
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.bk-option:hover {
  border-color: var(--bk-teal);
  transform: translateY(-2px);
  box-shadow: var(--bk-shadow-sm);
}

.bk-option.is-selected {
  border-color: var(--bk-teal);
  background: linear-gradient(180deg, rgba(28, 168, 203, 0.09), rgba(28, 168, 203, 0.03));
  box-shadow: 0 0 0 3px rgba(28, 168, 203, 0.15);
}

.bk-option-check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  border: 2px solid var(--bk-line);
  background: #fff;
  color: transparent;
  display: grid;
  place-items: center;
  font-size: 0.5625rem;
  transition: all 0.2s ease;
}

.bk-option.is-selected .bk-option-check {
  background: var(--bk-teal);
  border-color: var(--bk-teal);
  color: #fff;
}

.bk-option-time {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--bk-navy);
}

.bk-option-day {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bk-muted);
  text-transform: capitalize;
  margin-top: 0.125rem;
}

.bk-option-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}

.bk-tone-teal {
  background: rgba(28, 168, 203, 0.12);
  color: var(--bk-teal-dark);
}

.bk-tone-sand {
  background: rgba(242, 181, 68, 0.16);
  color: #B97F1B;
}

.bk-option-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--bk-navy);
}

.bk-option-desc {
  font-size: 0.8125rem;
  color: var(--bk-muted);
  margin-top: 0.25rem;
  line-height: 1.45;
}

.bk-option-price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-top: 0.875rem;
}

.bk-option-price strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bk-navy);
}

.bk-option-price span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bk-muted);
}

.bk-empty-note {
  grid-column: 1 / -1;
  background: #F6FBFC;
  border: 1.5px dashed var(--bk-line);
  border-radius: var(--bk-radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bk-muted);
  text-align: center;
}

/* ---------- Persons stepper ---------- */

.bk-stepper {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  overflow: hidden;
  background: #fff;
}

.bk-stepper-btn {
  width: 3rem;
  border: none;
  background: #F1F7F8;
  color: var(--bk-deep);
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.bk-stepper-btn:hover {
  background: var(--bk-teal);
  color: #fff;
}

.bk-stepper input {
  width: 4.5rem;
  height: 3.25rem;
  border: none;
  text-align: center;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--bk-navy);
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}

.bk-stepper input:focus {
  outline: none;
}

.bk-stepper input::-webkit-outer-spin-button,
.bk-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ---------- Promo code ---------- */

.bk-promo {
  display: flex;
  gap: 0.625rem;
}

.bk-promo .bk-control-wrap {
  flex: 1;
}

.bk-promo .bk-control {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bk-btn-apply {
  height: 3.25rem;
  padding: 0 1.375rem;
  border: none;
  border-radius: var(--bk-radius-sm);
  background: var(--bk-deep);
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.bk-btn-apply:hover {
  background: var(--bk-navy);
}

.bk-btn-apply:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.bk-promo-msg {
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.bk-promo-ok {
  color: var(--bk-green);
}

.bk-promo-err {
  color: var(--bk-red);
}

/* ---------- Terms & submit ---------- */

.bk-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: #F6FBFC;
  border: 1.5px dashed var(--bk-line);
  border-radius: var(--bk-radius);
  padding: 1.125rem 1.25rem;
}

.bk-terms input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  accent-color: var(--bk-teal);
  cursor: pointer;
}

.bk-terms label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bk-navy);
  cursor: pointer;
}

.bk-terms p {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bk-muted);
  margin: 0.25rem 0 0;
}

.bk-terms a {
  color: var(--bk-teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.bk-terms a:hover {
  text-decoration: underline;
}

.bk-submit {
  width: 100%;
  margin-top: 1.25rem;
  border: none;
  border-radius: var(--bk-radius);
  padding: 1.125rem 1.5rem;
  background: linear-gradient(135deg, var(--bk-teal) 0%, var(--bk-teal-dark) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  box-shadow: 0 12px 24px -8px rgba(28, 168, 203, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bk-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 30px -8px rgba(28, 168, 203, 0.6);
}

.bk-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.bk-submit-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bk-muted);
  margin-top: 0.75rem;
}

/* ---------- Sidebar cards ---------- */

.bk-card {
  background: var(--bk-card);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow-sm);
  overflow: hidden;
}

.bk-summary-media {
  position: relative;
  height: 190px;
}

.bk-summary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bk-summary-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 36, 0.85) 0%, rgba(10, 31, 36, 0.25) 55%, transparent 100%);
}

.bk-summary-fallback {
  height: 150px;
  background: linear-gradient(150deg, var(--bk-deep) 0%, var(--bk-teal-dark) 100%);
  position: relative;
}

.bk-summary-caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
}

.bk-summary-caption h3 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 0 0.25rem;
}

.bk-summary-caption p {
  font-size: 0.8125rem;
  opacity: 0.8;
  margin: 0;
}

.bk-summary-body {
  padding: 1.25rem;
}

.bk-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.bk-fact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #F6FBFC;
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  padding: 0.625rem 0.75rem;
}

.bk-fact i {
  color: var(--bk-teal-dark);
  font-size: 0.875rem;
}

.bk-fact small {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bk-muted);
}

.bk-fact strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--bk-navy);
}

.bk-price-box {
  border-top: 1px dashed var(--bk-line);
  padding-top: 1.125rem;
}

.bk-price-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--bk-navy);
  margin-bottom: 0.875rem;
}

.bk-price-head i {
  color: var(--bk-teal);
}

.bk-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bk-muted);
  margin-bottom: 0.5rem;
}

.bk-price-row strong {
  font-weight: 700;
  color: var(--bk-navy);
}

#discountRow {
  display: none;
  color: var(--bk-green);
}

#discountRow.is-visible {
  display: flex;
}

#discountRow strong {
  color: var(--bk-green);
}

.bk-price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--bk-line);
}

.bk-price-total span {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--bk-navy);
}

.bk-price-total strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bk-teal-dark);
}

/* ---------- Trust badges ---------- */

.bk-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 1rem 1.25rem;
}

.bk-trust-item {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--bk-muted);
  line-height: 1.3;
}

.bk-trust-item i {
  display: block;
  font-size: 1.0625rem;
  color: var(--bk-teal);
  margin-bottom: 0.3rem;
}

/* ---------- Notes & support ---------- */

.bk-notes {
  padding: 1.125rem 1.25rem;
}

.bk-notes h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--bk-navy);
  margin: 0 0 0.75rem;
}

.bk-notes h4 i {
  color: var(--bk-sand);
}

.bk-notes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.bk-notes li {
  display: flex;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bk-muted);
  line-height: 1.45;
}

.bk-notes li i {
  color: var(--bk-teal);
  font-size: 0.6875rem;
  margin-top: 0.2rem;
}

.bk-support {
  position: relative;
  background: linear-gradient(150deg, var(--bk-deep) 0%, var(--bk-navy) 100%);
  color: #fff;
  border-radius: var(--bk-radius);
  padding: 1.5rem;
  overflow: hidden;
}

.bk-support::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(28, 168, 203, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.bk-support h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 0.375rem;
  position: relative;
}

.bk-support h4 i {
  color: var(--bk-sand);
}

.bk-support p {
  font-size: 0.8125rem;
  opacity: 0.75;
  margin: 0 0 1rem;
  position: relative;
}

.bk-support-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 0.5rem;
  position: relative;
  transition: background 0.2s ease;
}

.bk-support-link:last-child {
  margin-bottom: 0;
}

.bk-support-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.bk-support-link i {
  color: var(--bk-sand);
}

/* ---------- Animations ---------- */

@keyframes bkFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bk-fade {
  animation: bkFadeUp 0.45s ease both;
}

.bk-step:nth-of-type(1) { animation-delay: 0.02s; }
.bk-step:nth-of-type(2) { animation-delay: 0.06s; }
.bk-step:nth-of-type(3) { animation-delay: 0.1s; }
.bk-step:nth-of-type(4) { animation-delay: 0.14s; }

/* ---------- Payment & status pages ---------- */

.bk-hero-sm {
  padding: 3.5rem 0 7rem;
}

.bk-panel {
  max-width: 760px;
  margin: -3.5rem auto 0;
  padding: 0 1rem 4.5rem;
  position: relative;
  z-index: 5;
}

.bk-panel-card {
  background: var(--bk-card);
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius);
  box-shadow: var(--bk-shadow);
  overflow: hidden;
}

.bk-panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.375rem 2rem;
  border-bottom: 1px solid var(--bk-line);
  background: linear-gradient(180deg, #FFFFFF, #FAFCFD);
}

.bk-panel-head h1 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bk-navy);
  margin: 0;
}

.bk-panel-head p {
  font-size: 0.8125rem;
  color: var(--bk-muted);
  margin: 0;
}

.bk-panel-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bk-teal), var(--bk-teal-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -2px rgba(28, 168, 203, 0.5);
}

.bk-panel-body {
  padding: 1.75rem 2rem 2rem;
}

.bk-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bk-muted);
  margin: 0 0 0.875rem;
}

.bk-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.bk-detail {
  background: #F6FBFC;
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  padding: 0.625rem 0.875rem;
}

.bk-detail small {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bk-muted);
  margin-bottom: 0.125rem;
}

.bk-detail strong {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--bk-navy);
  word-break: break-word;
}

.bk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.bk-badge-green { background: rgba(14, 159, 110, 0.12); color: var(--bk-green); }
.bk-badge-amber { background: rgba(242, 181, 68, 0.18); color: #9A6B0F; }
.bk-badge-red { background: rgba(214, 69, 69, 0.1); color: var(--bk-red); }

.bk-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: var(--bk-radius-sm);
  padding: 0.875rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.bk-notice i {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.bk-notice strong {
  display: block;
  font-weight: 800;
}

.bk-notice-amber { background: #FFF9EC; border: 1px solid #F5DFAE; color: #8A6408; }
.bk-notice-green { background: #ECFBF4; border: 1px solid #B9EBD4; color: #0B6B4B; }
.bk-notice-red { background: #FEF2F2; border: 1px solid #F6CACA; color: #8F2B2B; }
.bk-notice-teal { background: #EDF9FC; border: 1px solid #BDE9F3; color: #0D5E73; }

.bk-status-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  color: #fff;
}

.bk-status-icon.bk-ok {
  background: linear-gradient(135deg, #18B67E, var(--bk-green));
  box-shadow: 0 12px 28px -8px rgba(14, 159, 110, 0.55);
}

.bk-status-icon.bk-fail {
  background: linear-gradient(135deg, #E35D5D, var(--bk-red));
  box-shadow: 0 12px 28px -8px rgba(214, 69, 69, 0.5);
}

.bk-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.bk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: var(--bk-radius-sm);
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.bk-btn-teal {
  background: linear-gradient(135deg, var(--bk-teal) 0%, var(--bk-teal-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 22px -8px rgba(28, 168, 203, 0.55);
}

.bk-btn-teal:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}

.bk-btn-block {
  width: 100%;
  font-size: 1.0625rem;
  padding: 1.0625rem 1.75rem;
}

.bk-btn-outline {
  background: #fff;
  border: 1.5px solid var(--bk-line);
  color: var(--bk-navy);
}

.bk-btn-outline:hover {
  border-color: var(--bk-teal);
  color: var(--bk-teal-dark);
}

.bk-divider {
  height: 1px;
  background: var(--bk-line);
  margin: 1.5rem 0;
}

/* ---------- Responsive ---------- */

@media (max-width: 991px) {
  .bk-layout {
    grid-template-columns: 1fr;
  }

  .bk-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .bk-hero {
    padding: 3rem 0 7rem;
  }

  .bk-progress {
    padding: 1rem;
    margin-top: -3rem;
  }

  .bk-progress-label {
    display: none;
  }

  .bk-progress-item {
    justify-content: center;
  }

  .bk-progress-item:not(:last-child) {
    padding-right: 1.5rem;
  }

  .bk-step-head,
  .bk-step-body {
    padding-left: 1.125rem;
    padding-right: 1.125rem;
  }

  .bk-step-icon {
    display: none;
  }

  .bk-field-grid {
    grid-template-columns: 1fr;
  }

  .bk-promo {
    flex-direction: column;
  }

  .bk-btn-apply {
    width: 100%;
  }

  .bk-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .bk-detail-grid {
    grid-template-columns: 1fr;
  }

  .bk-panel-head,
  .bk-panel-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* main.css colours every h1–h6 with --header (dark ink), which beats the white
   these dark surfaces set on their containers. Re-assert white explicitly. */
.booking-page .bk-hero h1,
.booking-page .bk-hero h2,
.booking-page .bk-hero h3,
.booking-page .bk-hero-title,
.booking-page .bk-summary-caption h3 {
  color: #fff;
}

/* The theme header is position:absolute over the hero (≈130px tall on desktop),
   so the hero must reserve that space or the header covers the breadcrumb. */
.booking-page .bk-hero { padding-top: 9.5rem; }
@media (max-width: 1199.98px) { .booking-page .bk-hero { padding-top: 8rem; } }
@media (max-width: 575.98px) { .booking-page .bk-hero { padding-top: 6.75rem; } }

/* ---------- Guests (adults / children) ---------- */
.booking-page .bk-guests {
  border: 1.5px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  background: #fff;
}
.booking-page .bk-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
}
.booking-page .bk-guest-row + .bk-guest-row { border-top: 1px solid var(--bk-line); }
.booking-page .bk-guest-name { display: block; font-weight: 700; color: var(--bk-ink); margin: 0; }
.booking-page .bk-guest-price { font-size: 0.8125rem; color: var(--bk-muted); transition: opacity .15s; }
.booking-page .bk-guest-row .bk-stepper-btn { width: 2.5rem; }
.booking-page .bk-guest-row .bk-stepper input { width: 3rem; }
.booking-page .bk-error { margin-top: 0.5rem; font-size: 0.8125rem; font-weight: 600; color: var(--bk-red); }
.booking-page #priceLines .bk-price-row { font-size: 0.875rem; color: var(--bk-muted); }

/* Duration choices (private boat by the hour) and paid add-ons */
.booking-page .bk-options--durations { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
.booking-page .bk-options--durations .bk-option-name { font-size: 1.0625rem; }
.booking-page .bk-guest-name small { display: inline; margin-left: 0.25rem; font-size: 0.8125rem; font-weight: 600; color: var(--bk-muted); }
.booking-page .bk-extras { display: grid; gap: 0.625rem; }
.booking-page .bk-extra { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1rem; border: 1.5px solid var(--bk-line); border-radius: 12px; background: #fff; cursor: pointer; transition: border-color .15s ease, background .15s ease; }
.booking-page .bk-extra:hover { border-color: #B6E1EC; }
.booking-page .bk-extra:has(input:checked) { border-color: var(--bk-teal); background: #F2FAFC; }
.booking-page .bk-extra input { width: 1.125rem; height: 1.125rem; flex: none; accent-color: #0B7C99; }
.booking-page .bk-extra-name { flex: 1; font-weight: 600; color: var(--bk-ink); line-height: 1.4; }
.booking-page .bk-extra-price { flex: none; color: var(--bk-ink); font-variant-numeric: tabular-nums; }
.booking-page fieldset.bk-field { border: 0; padding: 0; margin: 0 0 1.25rem; min-width: 0; }
.booking-page fieldset.bk-field > legend { float: none; width: auto; padding: 0; }

/* ---------- Bank transfer (card payments off) ---------- */

.bk-bank {
  margin: 0 0 1.25rem;
  border: 1px solid var(--bk-line);
  border-radius: var(--bk-radius-sm);
  overflow: hidden;
}

.bk-bank-row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  background: #fff;
}

.bk-bank-row + .bk-bank-row { border-top: 1px solid var(--bk-line); }
.bk-bank-row.bk-bank-key { background: #F6FBFC; }

.bk-bank dt {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bk-muted);
}

.bk-bank dd {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
}

.bk-bank-value {
  font-family: Consolas, Menlo, monospace;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--bk-navy);
  word-break: break-all;
}

.bk-copy {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 2rem;
  padding: 0.25rem 0.625rem;
  border: 1px solid var(--bk-line);
  border-radius: 999px;
  background: #fff;
  color: #0B7C99;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.bk-copy:hover { border-color: #0B7C99; }
.bk-copy:focus-visible { outline: 2px solid #0B7C99; outline-offset: 2px; }
.bk-copy.is-copied { background: #ECFBF4; border-color: #B9EBD4; color: #0B6B4B; }

.bk-bank-actions {
  display: grid;
  gap: 0.625rem;
}

@media (max-width: 575px) {
  .bk-bank-row { grid-template-columns: 1fr; gap: 0.25rem; }
}
