/* ===== BOOKING PAGE ===== */
.booking-page {
  min-height: calc(100vh - 65px - 73px);
  background: var(--bg);
}

.booking-header {
  padding: 72px 48px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  text-align: center;
}

.booking-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--fg);
  margin: 12px 0 16px;
}

.booking-subtitle {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 auto;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 48px 80px;
  align-items: start;
}

/* ===== FORM ===== */
.booking-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
}

.form-step { display: none; }
.form-step.active { display: block; }

.step-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
}

/* Step indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: all 0.2s;
}

.step-dot.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 12px;
}

/* Field groups */
.field-group {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}

.field-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--fg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
  display: block;
}

.input-field:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(168, 197, 181, 0.2);
}

.input-field::placeholder { color: var(--fg-muted); opacity: 0.6; }

textarea.input-field { resize: vertical; }

/* Service type toggles */
.toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.toggle-card { cursor: pointer; }

.toggle-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  transition: all 0.2s;
  text-align: center;
}

.toggle-card input:checked + .toggle-card-inner {
  border-color: var(--green);
  background: rgba(27, 61, 47, 0.04);
}

.toggle-card-inner:hover { border-color: var(--sage); }

.toggle-icon { color: var(--fg-muted); }
.toggle-card input:checked + .toggle-card-inner .toggle-icon { color: var(--green); }
.toggle-name { font-weight: 600; font-size: 0.95rem; }
.toggle-desc { font-size: 0.8rem; color: var(--fg-muted); }

/* Package grid */
.package-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.package-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg);
}

.package-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.package-card:hover { border-color: var(--sage); }
.package-card.selected { border-color: var(--green); background: rgba(27, 61, 47, 0.04); }

.package-left { display: flex; align-items: center; gap: 14px; }
.package-icon { color: var(--fg-muted); }
.package-card.selected .package-icon { color: var(--green); }

.package-name { font-weight: 600; font-size: 0.95rem; }
.package-desc { font-size: 0.82rem; color: var(--fg-muted); margin-top: 2px; }

.package-price { font-weight: 700; font-size: 1.1rem; color: var(--green); white-space: nowrap; }

/* Time grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-card {
  cursor: pointer;
  text-align: center;
}

.time-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.time-card span {
  display: block;
  padding: 16px 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  background: var(--bg);
}

.time-card small {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--fg-muted);
  margin-top: 4px;
}

.time-card input:checked + span {
  border-color: var(--green);
  background: rgba(27, 61, 47, 0.04);
  color: var(--green);
}

.time-card:hover span { border-color: var(--sage); }

/* Buttons */
.btn-full { width: 100%; justify-content: center; }

.btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.btn-primary svg, .btn-ghost svg { margin-left: 6px; }
.btn-ghost { display: inline-flex; align-items: center; padding: 12px 20px; color: var(--fg-muted); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: color 0.2s; border: none; background: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-ghost:hover { color: var(--fg); }

/* Booking summary */
.booking-summary {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.summary-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.summary-row .summary-label { color: var(--fg-muted); }
.summary-row .summary-value { font-weight: 600; }

/* ===== SIDEBAR PANEL ===== */
.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.panel-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.panel-service {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.panel-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-service-name { font-weight: 600; font-size: 0.95rem; }
.panel-package-name { font-size: 0.82rem; color: var(--fg-muted); margin-top: 2px; }

.panel-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.panel-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 4px;
}

.panel-tagline { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 28px; }

.panel-steps { display: flex; flex-direction: column; gap: 10px; }

.panel-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.panel-step.active { color: var(--green); font-weight: 600; }

.panel-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.panel-step.active .panel-step-num {
  background: var(--green);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .booking-layout { grid-template-columns: 1fr; padding: 32px 24px 60px; }
  .booking-panel { position: static; order: -1; }
  .toggle-grid { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 24px; }
  .booking-header { padding: 48px 24px 32px; }
}

@media (max-width: 480px) {
  .btn-row { flex-direction: column; }
  .btn-row .btn-primary { width: 100%; justify-content: center; }
}