/* booking.css — Mobile-first booking flow styles */

/* ─── Booking Page Wrapper ─────────────────────────────── */
.bk-wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ─── Page Header ───────────────────────────────────────── */
.bk-header { text-align: center; margin-bottom: 40px; }
.bk-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FBBF24;
  margin-bottom: 12px;
}
.bk-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: #E6EDF3;
  margin-bottom: 12px;
}
.bk-sub { font-size: 15px; color: #8B949E; line-height: 1.6; }
.bk-area-note {
  font-size: 12px;
  color: rgba(139,148,158,0.7);
  margin-top: 8px;
  font-style: italic;
}

/* ─── Step Indicator Bar ────────────────────────────────── */
.bk-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  gap: 0;
}
.bk-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bk-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(251,191,36,0.25);
  background: #161B22;
  color: #8B949E;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.bk-step-active .bk-step-circle {
  border-color: #FBBF24;
  background: rgba(251,191,36,0.12);
  color: #FBBF24;
  box-shadow: 0 0 12px rgba(251,191,36,0.3);
}
.bk-step-done .bk-step-circle {
  border-color: #FBBF24;
  background: #FBBF24;
  color: #000;
}
.bk-step-label {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8B949E;
}
.bk-step-active .bk-step-label,
.bk-step-done .bk-step-label { color: #FBBF24; }

.bk-step-line {
  width: 32px;
  height: 2px;
  background: rgba(251,191,36,0.15);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.bk-step-line.bk-step-done { background: rgba(251,191,36,0.5); }

/* ─── Form Panel ────────────────────────────────────────── */
.bk-panel { }
.bk-panel-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E6EDF3;
  margin-bottom: 24px;
}

/* ─── Service Cards (radio group) ──────────────────────── */
.bk-service-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bk-service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #161B22;
  border: 2px solid rgba(251,191,36,0.12);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.bk-service-card:hover { border-color: rgba(251,191,36,0.4); background: #1C2330; }
.bk-service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.bk-service-card:has(input:checked) {
  border-color: #FBBF24;
  background: rgba(251,191,36,0.08);
}

.bk-svc-icon {
  color: #FBBF24;
  flex-shrink: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-svc-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.bk-svc-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #E6EDF3;
}
.bk-svc-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FBBF24;
}
.bk-svc-desc { font-size: 12px; color: #8B949E; line-height: 1.4; }

.bk-svc-check {
  color: #FBBF24;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}
.bk-service-card:has(input:checked) .bk-svc-check { opacity: 1; }

/* ─── Form Fields ───────────────────────────────────────── */
.bk-fields { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.bk-row { display: grid; gap: 14px; }
.bk-row-2 { grid-template-columns: 1fr 1fr; }

.bk-field { display: flex; flex-direction: column; gap: 6px; }
.bk-label { font-size: 13px; font-weight: 500; color: #8B949E; letter-spacing: 0.03em; }
.bk-req { color: #FBBF24; }
.bk-optional { color: #8B949E; font-weight: 400; }

.bk-input {
  background: #161B22;
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: 6px;
  color: #E6EDF3;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.bk-input:focus { border-color: rgba(251,191,36,0.5); }
.bk-input::placeholder { color: rgba(139,148,158,0.4); }
.bk-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B949E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.bk-textarea { resize: vertical; min-height: 80px; }

/* ─── Error Messages ─────────────────────────────────────── */
.bk-error {
  background: rgba(220,38,38,0.1);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: 6px;
  padding: 12px 16px;
  color: #F87171;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: none;
}
.bk-error-global { text-align: center; margin-top: 16px; }

/* ─── Navigation Buttons ────────────────────────────────── */
.bk-nav { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.bk-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.bk-btn:hover { opacity: 0.85; }
.bk-btn-primary {
  background: #FBBF24;
  color: #000;
  flex: 1;
}
.bk-btn-ghost {
  background: transparent;
  color: #8B949E;
  border: 1px solid rgba(251,191,36,0.2);
}
.bk-btn-ghost:hover { color: #E6EDF3; border-color: rgba(251,191,36,0.4); }
.bk-btn-submit { min-width: 180px; justify-content: center; }
.bk-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── Confirmation Review (Step 4) ──────────────────────── */
.bk-review-section {
  background: #161B22;
  border: 1px solid rgba(251,191,36,0.12);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.bk-review-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B949E;
  margin-bottom: 6px;
}
.bk-review-value {
  font-size: 15px;
  color: #E6EDF3;
  line-height: 1.6;
  white-space: pre-line;
}

/* ─── Confirmation Page ─────────────────────────────────── */
.cf-wrap {
  max-width: 540px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  text-align: center;
}
.cf-icon { margin-bottom: 24px; display: flex; justify-content: center; }
.cf-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FBBF24;
  margin-bottom: 12px;
}
.cf-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: #E6EDF3;
  margin-bottom: 32px;
  line-height: 1.05;
}
.cf-card {
  background: #161B22;
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 32px;
}
.cf-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
}
.cf-row:first-child { padding-top: 0; }
.cf-row:not(:last-child) { border-bottom: 1px solid rgba(251,191,36,0.1); }
.cf-row:last-child { padding-bottom: 0; border-bottom: none; }
.cf-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B949E;
  font-weight: 600;
}
.cf-value { font-size: 15px; color: #E6EDF3; line-height: 1.5; }
.cf-info {
  background: #161B22;
  border: 1px solid rgba(251,191,36,0.1);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 32px;
}
.cf-info-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #E6EDF3;
  margin-bottom: 12px;
}
.cf-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-steps-list li {
  font-size: 14px;
  color: #8B949E;
  padding-left: 20px;
  position: relative;
}
.cf-steps-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FBBF24;
  font-size: 12px;
  top: 1px;
}
.cf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cf-btn-secondary {
  background: transparent;
  color: #8B949E;
  border: 1px solid rgba(251,191,36,0.2);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.cf-btn-secondary:hover { color: #E6EDF3; border-color: rgba(251,191,36,0.4); }
.cf-btn-primary {
  background: #FBBF24;
  color: #000;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.cf-btn-primary:hover { opacity: 0.85; }

/* ─── Mobile Adjustments ────────────────────────────────── */
@media (max-width: 480px) {
  .bk-row-2 { grid-template-columns: 1fr; }
  .bk-steps-bar { gap: 0; }
  .bk-step-label { display: none; }
  .bk-step-line { width: 20px; margin-bottom: 0; }
  .bk-nav { flex-direction: column-reverse; }
  .bk-btn { width: 100%; }
  .bk-btn-ghost { order: 1; }
  .bk-btn-primary { order: 0; }
  .cf-wrap { padding: 48px 20px 60px; }
  .cf-actions { flex-direction: column; }
  .cf-btn-secondary, .cf-btn-primary { width: 100%; text-align: center; }
}