/* ==========================================================================
   Booking Modal - Premium Redesign v2
   ========================================================================== */

:root {
  --bk-primary:   #006A75;
  --bk-accent:    #008B99;
  --bk-dark:      #0A1B3F;
  --bk-light:     #f0f9fa;
  --bk-border:    #e2e8f0;
  --bk-text:      #334155;
  --bk-muted:     #64748b;
  --bk-success:   #10b981;
  --bk-warning:   #f59e0b;
  --bk-error:     #ef4444;
  --bk-radius:    16px;
  --bk-shadow:    0 20px 60px rgba(10,27,63,0.15);
}

/* ── Overlay ── */
.booking-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,27,63,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 12px;
  backdrop-filter: blur(6px);
}
.booking-modal.active {
  display: flex;
  animation: bkFadeIn 0.3s ease-out;
}

/* ── Modal Box ── */
.booking-modal-content {
  background: #fff;
  width: 100%;
  max-width: 620px;
  border-radius: 24px;
  position: relative;
  box-shadow: var(--bk-shadow);
  overflow: hidden;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}

/* ── Close Button ── */
.close-modal-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  color: var(--bk-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  font-size: 1rem;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.close-modal-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  transform: rotate(90deg);
}

/* ── Header / Progress ── */
.booking-progress {
  background: linear-gradient(135deg, var(--bk-dark) 0%, var(--bk-primary) 100%);
  padding: 28px 32px 20px;
  color: #fff;
  flex-shrink: 0;
}
.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.progress-header h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}
.progress-text {
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.progress-bar-container {
  height: 5px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  margin-bottom: 18px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: #fff;
  width: 0%;
  border-radius: 10px;
  transition: width 0.45s ease;
}

/* ── Step Indicators ── */
.step-indicators {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.45;
  transition: opacity 0.3s;
  flex: 1;
}
.step-indicator.active  { opacity: 1; }
.step-indicator.completed { opacity: 1; }

.step-indicator-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 5px;
  border: 2px solid transparent;
  transition: all 0.3s;
}
.step-indicator.active .step-indicator-circle {
  background: #fff;
  color: var(--bk-accent);
  border-color: var(--bk-accent);
}
.step-indicator.completed .step-indicator-circle {
  background: var(--bk-success);
  border-color: var(--bk-success);
  color: #fff;
}
.step-indicator-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ── Steps Body ── */
.booking-steps {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: var(--bk-accent) #f1f5f9;
}
.booking-step {
  display: none;
  animation: bkSlideIn 0.35s ease-out;
}
.booking-step.active { display: block; }

/* ── Step Header ── */
.step-header {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--bk-border);
  padding-bottom: 14px;
}
.step-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bk-dark);
  margin: 0 0 4px;
}
.step-header p {
  color: var(--bk-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ── Warning Note ── */
.step-warning-note {
  margin-top: 10px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
  color: #92400e;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.step-warning-note i { color: var(--bk-warning); flex-shrink: 0; }

/* ── Specialists Grid ── */
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.specialist-card {
  border: 2px solid var(--bk-border);
  border-radius: var(--bk-radius);
  padding: 18px 14px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s;
  background: #fff;
}
.specialist-card:hover {
  border-color: var(--bk-accent);
  box-shadow: 0 4px 16px rgba(0,139,153,0.12);
  transform: translateY(-2px);
}
.specialist-card.selected {
  border-color: var(--bk-accent);
  background: var(--bk-light);
  box-shadow: 0 0 0 3px rgba(0,139,153,0.15);
}
.specialist-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid var(--bk-border);
}
.specialist-card .spec-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--bk-dark);
  margin-bottom: 3px;
}
.specialist-card .spec-title {
  font-size: 0.75rem;
  color: var(--bk-muted);
}

/* ── Services Grid ── */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card {
  border: 2px solid var(--bk-border);
  border-radius: var(--bk-radius);
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s;
}
.service-card:hover  { border-color: var(--bk-accent); background: var(--bk-light); }
.service-card.selected {
  border-color: var(--bk-accent);
  background: var(--bk-light);
  box-shadow: 0 0 0 3px rgba(0,139,153,0.12);
}
.service-card .svc-name  { font-weight: 600; color: var(--bk-dark); font-size: 0.9rem; }
.service-card .svc-cat   { font-size: 0.77rem; color: var(--bk-muted); margin-top: 2px; }
.service-card .svc-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk-accent);
  white-space: nowrap;
}

/* ── Calendar ── */
.date-time-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 480px) {
  .date-time-container { grid-template-columns: 1fr; }
}
.date-picker-section h4,
.time-picker-section h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bk-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.calendar-container {
  border-radius: var(--bk-radius);
  overflow: hidden;
  border: 1px solid var(--bk-border);
  background: #fff;
}

/* ── Calendar Inner Styles ── */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: var(--bk-light);
  border-bottom: 1px solid var(--bk-border);
}
.calendar-header h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--bk-dark);
}
.calendar-nav-btn {
  background: #fff;
  border: 1px solid var(--bk-border);
  border-radius: 10px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bk-dark);
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}
.calendar-nav-btn:hover:not(:disabled) {
  background: var(--bk-accent);
  color: #fff;
  border-color: var(--bk-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,139,153,0.2);
}
.calendar-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8fafc;
}
.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 12px 0;
  background: #fff;
  border-bottom: 1px solid var(--bk-border);
}
.calendar-day-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bk-muted);
}
.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #fff;
  padding: 12px;
  gap: 6px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--bk-dark);
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.calendar-day.empty {
  cursor: default;
  pointer-events: none;
}
.calendar-day:not(.empty):not(.disabled):hover {
  background: var(--bk-light);
  border-color: var(--bk-accent);
  color: var(--bk-accent);
}
.calendar-day.selected {
  background: var(--bk-accent) !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(0,139,153,0.25);
  border-color: var(--bk-accent) !important;
  transform: scale(1.05);
  z-index: 2;
}
.calendar-day.disabled {
  color: #cbd5e1;
  cursor: not-allowed;
  background: #fbfbfc;
}
.calendar-day.friday {
  color: #e11d48;
}
.calendar-day.today:not(.selected) {
  border-color: rgba(0,139,153,0.3);
  color: var(--bk-accent);
  background: rgba(0,139,153,0.05);
}
.calendar-day .day-label {
  font-size: 0.55rem;
  margin-top: 2px;
  display: block;
  background: #ffe4e6;
  color: #e11d48;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.calendar-day.selected .day-label {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ── Time Slots ── */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
  gap: 10px;
}
.time-slot {
  padding: 10px 8px;
  border-radius: 12px;
  border: 1.5px solid var(--bk-border);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--bk-dark);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}
.time-slot i {
  font-size: 0.8rem;
  opacity: 0.7;
}
.time-slot:hover:not(.booked):not(.blocked) {
  border-color: var(--bk-accent);
  background: var(--bk-light);
  color: var(--bk-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,139,153,0.08);
}
.time-slot.selected {
  background: var(--bk-accent);
  border-color: var(--bk-accent);
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,139,153,0.25);
  transform: translateY(-2px);
}
.time-slot.selected i { opacity: 1; }

.time-slot.booked {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.4);
  color: #dc2626;
  cursor: not-allowed;
  box-shadow: none;
  font-weight: 700;
}
.time-slot.blocked {
  background: rgba(100, 116, 139, 0.07);
  border-color: #e2e8f0;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Selected Date & Stats ── */
.selected-date-display {
  margin-top: 18px;
  background: rgba(0, 139, 153, 0.05);
  border: 1px solid rgba(0, 139, 153, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--bk-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeIn 0.3s ease;
}
.selected-date-display i {
  color: var(--bk-accent);
  font-size: 1.1rem;
}
.selected-date-display strong {
  color: var(--bk-accent);
  font-weight: 800;
}

.slots-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  animation: fadeIn 0.3s ease;
}
.stat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
}
.stat-item.available {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.stat-item.booked {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

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

.time-slot.booked {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  cursor: not-allowed;
  border-color: rgba(239, 68, 68, 0.4);
  position: relative;
}
.time-slot.blocked {
  background: rgba(100, 116, 139, 0.07);
  color: #94a3b8;
  cursor: not-allowed;
  border-color: #e2e8f0;
  position: relative;
}
.time-slot.blocked::after {
  content: attr(data-reason);
  position: absolute;
  bottom: calc(100% + 5px);
  right: 50%;
  transform: translateX(50%);
  background: #334155;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}
.time-slot.blocked:hover::after { opacity: 1; }

/* ── Selected Info ── */
.selected-info {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--bk-light);
  border-radius: 10px;
  border-right: 3px solid var(--bk-accent);
  font-size: 0.88rem;
  color: var(--bk-text);
}
.selected-info strong { color: var(--bk-accent); }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--bk-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--bk-border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--bk-text);
  transition: border-color 0.25s, box-shadow 0.25s;
  background: #fff;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bk-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,139,153,0.12);
}

/* ── Payment Card ── */
.payment-info-card {
  background: var(--bk-light);
  border: 1px dashed var(--bk-accent);
  border-radius: var(--bk-radius);
  padding: 18px;
  margin-bottom: 18px;
}
.payment-info-card .bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,139,153,0.1);
  font-size: 0.88rem;
}
.payment-info-card .bank-row:last-child { border-bottom: none; }
.payment-info-card .bank-row .label { color: var(--bk-muted); }
.payment-info-card .bank-row .value {
  font-weight: 700;
  color: var(--bk-dark);
  direction: ltr;
  text-align: left;
}
.bank-row .copy-btn {
  background: none;
  border: none;
  color: var(--bk-accent);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.2s;
}
.bank-row .copy-btn:hover { background: rgba(0,139,153,0.1); }

/* ── Drop Zone ── */
.drop-zone {
  border: 2px dashed var(--bk-border);
  padding: 28px 20px;
  text-align: center;
  border-radius: var(--bk-radius);
  cursor: pointer;
  transition: all 0.25s;
  background: #fafcfd;
}
.drop-zone:hover,
.drop-zone.drag-over {
  border-color: var(--bk-accent);
  background: var(--bk-light);
}
.drop-zone i {
  font-size: 2.2rem;
  color: var(--bk-accent);
  margin-bottom: 10px;
  display: block;
}
.drop-zone p { font-size: 0.88rem; color: var(--bk-muted); margin: 0; }
.drop-zone .file-name {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--bk-accent);
  font-weight: 600;
}

/* ── Terms Acceptance ── */
.terms-section { margin-top: 16px; }
.terms-acceptance {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--bk-border);
  background: #fafafa;
  font-size: 0.87rem;
}
.terms-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--bk-accent);
  flex-shrink: 0;
  cursor: pointer;
}
.terms-acceptance label { cursor: pointer; color: var(--bk-text); line-height: 1.4; }
.terms-acceptance.optional { border-style: dashed; }
.terms-link { color: var(--bk-accent); font-weight: 600; text-decoration: underline; }

/* ── Success ── */
.success-message { text-align: center; padding: 24px 0 10px; }
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bk-primary), var(--bk-accent));
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 12px 28px rgba(0,139,153,0.3);
  animation: bkBounce 0.5s ease-out;
}
.success-message h3 { color: var(--bk-dark); font-size: 1.25rem; margin-bottom: 8px; }
.success-message p  { color: var(--bk-muted); font-size: 0.9rem; line-height: 1.6; }
.booking-id-display {
  display: inline-block;
  background: var(--bk-light);
  border: 1px dashed var(--bk-accent);
  border-radius: 10px;
  padding: 8px 20px;
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bk-accent);
  margin: 12px 0;
}

/* ── Navigation Buttons ── */
.booking-navigation {
  padding: 16px 28px;
  background: #f8fafc;
  border-top: 1px solid var(--bk-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.btn {
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--bk-dark), var(--bk-accent));
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,139,153,0.2);
}
.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(0,139,153,0.35);
  transform: translateY(-1px);
}
.btn-primary:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.btn-secondary {
  background: #e2e8f0;
  color: var(--bk-text);
}
.btn-secondary:hover { background: #cbd5e1; }

/* ── Terms Modal ── */
.terms-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,27,63,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 16px;
  backdrop-filter: blur(8px);
}
.terms-modal.active {
  display: flex;
  animation: bkFadeIn 0.3s ease;
}
.terms-modal-content {
  background: #fff;
  width: 100%;
  max-width: 800px;
  max-height: 88vh;
  border-radius: 20px;
  padding: 36px;
  overflow-y: auto;
  box-shadow: var(--bk-shadow);
  position: relative;
}
.close-terms-modal {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--bk-muted);
  transition: 0.25s;
  line-height: 1;
}
.close-terms-modal:hover { color: #ef4444; transform: rotate(90deg); }
.terms-modal-header { text-align: center; margin-bottom: 28px; }
.terms-modal-header i { font-size: 2.8rem; color: var(--bk-accent); margin-bottom: 12px; display: block; }
.terms-modal-header h2 { font-size: 1.4rem; color: var(--bk-dark); }
.terms-modal-body h3 { margin: 22px 0 12px; color: var(--bk-accent); font-size: 1.05rem; }
.terms-modal-body p,
.terms-modal-body li { color: #555; line-height: 1.8; font-size: 0.92rem; margin-bottom: 10px; }
.terms-modal-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--bk-border);
  text-align: center;
}

/* ── Animations ── */
@keyframes bkFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes bkSlideIn {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes bkBounce {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1);   opacity: 1; }
}

/* ── Confirmation Step ── */
.booking-summary {
  background: var(--bk-light);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.01);
}
.booking-summary h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bk-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(0, 139, 153, 0.2);
}
.booking-summary h4 i {
  color: var(--bk-accent);
  font-size: 1.3rem;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.summary-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.summary-item .label {
  font-weight: 700;
  color: var(--bk-muted);
  font-size: 0.95rem;
}
.summary-item .value {
  font-weight: 800;
  color: var(--bk-dark);
  font-size: 1rem;
}
.summary-item.highlight {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 2px solid rgba(0, 139, 153, 0.15);
  border-bottom: none;
}
.summary-item.highlight .label {
  color: var(--bk-dark);
  font-size: 1.1rem;
  font-weight: 900;
}
.summary-item.highlight .value {
  color: var(--bk-accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.terms-acceptance {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1.5px solid var(--bk-border);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.01);
}
.terms-acceptance:hover {
  border-color: rgba(0, 139, 153, 0.4);
  background: rgba(0, 139, 153, 0.02);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,139,153,0.05);
}
.terms-acceptance input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--bk-accent);
  cursor: pointer;
}
.terms-acceptance label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bk-dark);
  cursor: pointer;
  flex: 1;
  margin: 0;
}
.terms-link {
  color: var(--bk-accent);
  text-decoration: none;
  font-weight: 800;
  padding: 2px 6px;
  background: rgba(0, 139, 153, 0.1);
  border-radius: 6px;
  transition: all 0.2s;
}
.terms-link:hover {
  background: var(--bk-accent);
  color: #fff;
}
.terms-acceptance.optional {
  background: transparent;
  border: none;
  padding: 8px 20px;
  box-shadow: none;
}
.terms-acceptance.optional:hover {
  transform: none;
  background: transparent;
}
.terms-acceptance.optional .terms-link {
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.terms-acceptance.optional .terms-link:hover {
  color: #007380;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .booking-modal-content {
    max-height: 100vh;
    border-radius: 20px 20px 0 0;
    align-self: flex-end;
    margin: 0;
  }
  .booking-modal { align-items: flex-end; padding: 0; }
  .booking-progress { padding: 20px 20px 14px; }
  .booking-steps    { padding: 18px 18px; }
  .booking-navigation { padding: 14px 18px; }
  .step-indicator-label { display: none; }
  .date-time-container { grid-template-columns: 1fr; }
  .time-slots-grid { grid-template-columns: repeat(4, 1fr); }
  .terms-modal-content { padding: 22px; border-radius: 20px 20px 0 0; max-height: 90vh; }
  .terms-modal { align-items: flex-end; padding: 0; }
}
