/* Custom styles to complement Bootstrap */
:root {
  --bs-primary: #3b82f6;
  --bs-primary-rgb: 59, 130, 246;
  --bs-secondary: #6b7280;
  --bs-success: #10b981;
  --bs-warning: #f59e0b;
  --bs-danger: #ef4444;
  --bs-info: #06b6d4;
}

.gradient-bg {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  min-height: 100vh;
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.service-card {
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
}

.service-card:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.service-card.selected {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.time-slot {
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid #e5e7eb;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 0.375rem;
}

.time-slot:hover {
  border-color: #10b981;
  background-color: #f0fdf4;
}

.time-slot.selected {
  border-color: #10b981;
  background-color: #dcfce7;
  color: #166534;
}

.date-card {
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid #e5e7eb;
}

.date-card:hover {
  border-color: #3b82f6;
  background-color: #f8fafc;
}

.date-card.selected {
  border-color: #3b82f6;
  background-color: #eff6ff;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.step-item {
  display: flex;
  align-items: center;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.step-circle.completed {
  background-color: #10b981;
  color: white;
}

.step-circle.current {
  background-color: #3b82f6;
  color: white;
}

.step-circle.pending {
  background-color: #e5e7eb;
  color: #6b7280;
}

.step-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.step-label.completed {
  color: #10b981;
}

.step-label.current {
  color: #3b82f6;
}

.step-label.pending {
  color: #6b7280;
}

.step-connector {
  width: 32px;
  height: 2px;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.step-connector.completed {
  background-color: #10b981;
}

.step-connector.pending {
  background-color: #e5e7eb;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  background-color: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (max-width: 768px) {
  .step-indicator {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .step-connector {
    display: none;
  }
}
