/* ============================================
   BOOKING PAGE — Dedicated Styles
   ============================================ */

/* ── Hero ── */
.booking-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  padding-top: 110px;
  overflow: hidden;
}
.booking-hero-bg { position: absolute; inset: 0; }
.booking-hero-texture { width: 100%; height: 100%; object-fit: cover; }
.booking-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 100%);
}
.booking-hero-content { position: relative; z-index: 2; }

/* ── Progress bar ── */
.bk-progress {
  background: var(--white);
  border-bottom: 2px solid var(--light-gray);
  padding: 20px 0;
  position: sticky;
  top: 80px;
  z-index: 100;
}
.bk-progress-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.bk-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.bk-step-dot span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-gray);
  color: #aaa;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.bk-step-dot label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bbb;
  transition: color 0.4s ease;
  white-space: nowrap;
}
.bk-step-dot.active span  { background: var(--black); color: var(--white); }
.bk-step-dot.done span    { background: var(--teal);  color: var(--black); }
.bk-step-dot.active label,
.bk-step-dot.done label   { color: var(--black); }
.bk-step-line {
  flex: 1;
  height: 2px;
  background: var(--light-gray);
  margin: 0 8px;
  margin-bottom: 22px;
  max-width: 80px;
  transition: background 0.4s ease;
}
.bk-step-line.done { background: var(--teal); }

/* ── Layout ── */
.bk-body { padding-top: 60px; }
.bk-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* ── Panels ── */
.bk-panel {
  display: none;
  animation: panelIn 0.35s ease forwards;
}
.bk-panel.active { display: block; }

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

.bk-panel-title {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}
.bk-panel-sub {
  color: var(--mid-gray);
  font-size: 0.95rem;
  margin-bottom: 36px;
}
.bk-panel-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--light-gray);
  margin-top: 36px;
}

/* ── Experience Tiles ── */
.exp-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.exp-tile {
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.exp-tile:hover {
  border-color: #aaa;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.exp-tile.selected {
  border-color: var(--black);
  border-width: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
}
.exp-tile-header {
  padding: 24px 0 20px;
  display: flex;
  justify-content: center;
}
.exp-tile-emoji { font-size: 2.4rem; line-height: 1; }
.exp-tile-body { padding: 16px 20px 20px; }
.exp-tile-tag {
  margin-bottom: 10px;
  display: inline-flex;
}
.exp-tile-body h3 {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}
.exp-tile-body p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 14px;
}
.exp-tile-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exp-tile-meta li {
  font-size: 0.78rem;
  color: #888;
  font-family: var(--font-display);
  font-weight: 500;
}
.exp-tile-checkmark {
  position: absolute;
  top: 12px; right: 12px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.exp-tile.selected .exp-tile-checkmark {
  opacity: 1;
  transform: scale(1);
}

/* ── Calendar ── */
.cal-box {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 16px;
}
.cal-box-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cal-box-month {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cal-box-nav {
  background: var(--white);
  border: 2px solid var(--light-gray);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.cal-box-nav:hover { background: var(--yellow); border-color: var(--yellow); }

.cal-box-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 6px;
}
.cal-box-weekdays span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  padding: 6px 0;
}

.cal-box-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  user-select: none;
}
.cal-cell.empty { cursor: default; }
.cal-cell.past  { color: #ccc; cursor: not-allowed; }
.cal-cell.today {
  background: var(--yellow);
  font-weight: 700;
}
.cal-cell.available:hover:not(.past):not(.empty) {
  background: rgba(0,0,0,0.07);
}
.cal-cell.selected {
  background: var(--black);
  color: var(--white);
  font-weight: 700;
}
.cal-cell.selected.today { background: var(--black); }

.cal-box-legend {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cal-box-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: #888;
  font-family: var(--font-display);
}
.cal-box-legend i {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  font-style: normal;
}

.cal-selected-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.cal-selected-pill strong { font-weight: 700; }
.cal-selected-pill button {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  margin-left: auto;
  font-size: 0.9rem;
  line-height: 1;
}
.cal-selected-pill button:hover { color: var(--white); }

.cal-avail-note {
  font-size: 0.82rem;
  color: #888;
  font-family: var(--font-display);
  padding: 14px 16px;
  background: #fff8e7;
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-sm);
  line-height: 1.55;
}

/* ── Form fields ── */
.bk-form-fields { display: flex; flex-direction: column; gap: 20px; }
.bk-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.bk-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
}
.bk-checkbox-row input { margin-top: 2px; accent-color: var(--black); width: 16px; height: 16px; flex-shrink: 0; }
.bk-checkbox-row a { color: var(--black); text-decoration: underline; }

.bk-field-error {
  display: none; /* hidden by default; booking.js shows it on error */
  background: #fff0f0;
  border-left: 3px solid var(--coral);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #c0392b;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
}
.bk-field-error.visible {
  display: block;
}

/* ── Summary ── */
.bk-summary {
  background: var(--sand);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid var(--light-gray);
}
.bk-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--light-gray);
  gap: 16px;
}
.bk-sum-row:last-child { border-bottom: none; }
.bk-sum-row span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  flex-shrink: 0;
}
.bk-sum-row strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

/* ── Submit block ── */
.bk-submit-block {
  text-align: center;
  padding: 40px 32px;
  background: var(--black);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.bk-submit-block p {
  font-size: 0.88rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.bk-submit-btn {
  font-size: 1rem;
  padding: 16px 40px;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}
.bk-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #555;
}
.bk-or-divider::before,
.bk-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #333;
}
.bk-or-divider span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bk-whatsapp-btn {
  background: #25D366;
  color: var(--white);
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 14px;
}
.bk-whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}
.bk-disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
}
.bk-disclaimer a { color: #999; text-decoration: underline; }

/* ── Sidebar ── */
.bk-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 160px;
}
.bk-sidebar-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
}
.bk-sidebar-logo {
  height: 48px;
  margin-bottom: 20px;
}
.bk-sidebar-card h3 {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1;
}
.bk-sidebar-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.bk-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bk-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #444;
  font-family: var(--font-display);
}
.bk-includes i {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--black);
}

.bk-next-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bk-next-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.step-dot-small {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-family: var(--font-brand);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
  margin-top: 1px;
}
.bk-next-steps strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.bk-next-steps p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.45;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .bk-layout { grid-template-columns: 1fr; }
  .bk-sidebar { position: static; }
  .exp-picker-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bk-row-2 { grid-template-columns: 1fr; }
  .bk-submit-block { padding: 28px 20px; }
  .cal-box { padding: 20px 16px; }
}

/* ── Success panel ── */
.bk-success-wrap {
  text-align: center;
  padding: 48px 24px;
}
.bk-success-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.bk-success-title {
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.bk-success-body {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 28px;
}

/* Submit error */
#submit-error.visible {
  display: block;
  margin-top: 12px;
}
#panel-success {
  max-width: 640px;
  margin: 0 auto;
}
