/* Consultation booking - app-style step wizard */

.consultation-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.consultation-step-indicator .step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.consultation-step-indicator .step-dot:hover {
  background: #dee2e6;
}

.consultation-step-indicator .step-dot.active {
  background: #1E2875;
  color: #fff;
  border-color: #D4AF37;
}

.consultation-step-indicator .step-dot.completed {
  background: #198754;
  color: #fff;
}

.consultation-step-indicator .step-line {
  width: 40px;
  height: 2px;
  background: #e9ecef;
}

/* Time slot grid - app-style selection */
.consultation-time-slots {
  margin-top: 0.5rem;
}

.time-slot-group {
  margin-bottom: 1rem;
}

.time-slot-group-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-slot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot-btn {
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  border: 1.5px solid #e9ecef;
  background: #fff;
  color: #212529;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slot-btn:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
}

.time-slot-btn.selected {
  background: #D4AF37;
  border-color: #D4AF37;
  color: #1E2875;
}

/* Step content visibility */
.consultation-step-content {
  display: none;
}

.consultation-step-content.active {
  display: block;
  animation: consultationStepIn 0.3s ease;
}

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

.consultation-wizard-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
