.gap-15 {
    gap: 15px;
}
/* Progress Steps */
.progress-steps {
  position: relative;
}

.progress-line {
  position: absolute;
  top: 20px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  position: relative;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #9ca3af;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: var(--color-blue-1);
  border-color: var(--color-blue-1);
  color: #fff;
  box-shadow: 0 4px 15px rgba(54, 96, 232, 0.3);
}

.progress-step.completed .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.step-label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
  margin-top: 5px;
}

.progress-step.active .step-label {
  color: var(--color-blue-1);
  font-weight: 600;
}

/* Booking Steps */
.booking-content {
  min-height: 500px;
  position: relative;
}

.trainer-booking-step {
  display: none !important;
}

.trainer-booking-step.active {
  display: block !important;
  animation: fadeIn 0.3s ease-in;
}

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

/* Location Cards Detailed */
.location-card-detailed {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
}

.location-card-detailed:hover {
  border-color: var(--color-blue-1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.location-card-detailed.selected {
  border-color: var(--color-blue-1);
  background: linear-gradient(135deg, rgba(54, 96, 232, 0.05) 0%, rgba(54, 96, 232, 0.02) 100%);
  box-shadow: 0 8px 25px rgba(54, 96, 232, 0.2);
}

.location-header {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.location-icon-large {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-blue-1) 0%, #4a6cf7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(54, 96, 232, 0.3);
}

.location-main-info {
  flex: 1;
}

.location-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.location-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.location-details {
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
  color: #4b5563;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item i {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.amenity-badge {
  padding: 6px 12px;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.location-card-detailed.selected .amenity-badge {
  background: rgba(54, 96, 232, 0.1);
  color: var(--color-blue-1);
}

.location-actions {
  padding-top: 15px;
  border-top: 1px solid #e5e7eb;
}

.btn-view-map {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: #fff;
  border: 2px solid var(--color-blue-1);
  border-radius: 8px;
  color: var(--color-blue-1);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-map:hover {
  background: var(--color-blue-1);
  color: #fff;
  transform: translateX(3px);
}

/* Selected Location Display */
.selected-location-display {
  background: linear-gradient(135deg, rgba(54, 96, 232, 0.1) 0%, rgba(54, 96, 232, 0.05) 100%);
  border-left: 4px solid var(--color-blue-1);
  padding: 20px;
  border-radius: 12px;
}

.selected-location-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--color-blue-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
}

/* Time Slot Cards */
.time-slot-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.time-slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-blue-1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.time-slot-card:hover:not(.disabled) {
  border-color: var(--color-blue-1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.time-slot-card:hover:not(.disabled)::before {
  transform: scaleX(1);
}

.time-slot-card.selected {
  border-color: var(--color-blue-1);
  background: var(--color-blue-1);
  color: #fff;
  box-shadow: 0 4px 15px rgba(54, 96, 232, 0.3);
}

.time-slot-card.selected::before {
  transform: scaleX(1);
  background: #fff;
}

.time-slot-card.disabled {
  background: #f9fafb;
  border-color: #e5e7eb;
  cursor: not-allowed;
  opacity: 0.6;
}

.time-slot-icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-blue-1);
}

.time-slot-card.selected .time-slot-icon {
  color: #fff;
}

.time-slot-card.disabled .time-slot-icon {
  color: #9ca3af;
}

.time-slot-time {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.time-slot-status {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time-slot-card.disabled .time-slot-status {
  color: #ef4444;
}

/* Time-slot radio cards removed — scheduling is controlled by schedule cards */

/* Success Animation */
.success-animation {
  animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.success-circle i {
  font-size: 50px;
  color: #fff;
}

.booking-summary-card {
  max-width: 500px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.summary-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
}

.summary-item i {
  font-size: 24px;
  margin-top: 5px;
}

.summary-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 10px 0;
}

/* Form Controls */
.form-control-lg {
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
}

.form-control-lg:focus {
  border-color: var(--color-blue-1);
  box-shadow: 0 0 0 3px rgba(54, 96, 232, 0.1);
}

/* Utility Classes */
.text-60 {
  font-size: 60px;
}
 .form-control-lg {
    border:1px solid #eee !important;
}
/* Weekly Schedule Cards */
.schedule-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 260px;
  cursor: pointer;
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); border-color: rgba(59,130,246,0.18); }
.schedule-card.selected {
     border-color: var(--color-blue-1);
  background: linear-gradient(135deg, rgba(54, 96, 232, 0.05) 0%, rgba(54, 96, 232, 0.02) 100%);
  box-shadow: 0 8px 25px rgba(54, 96, 232, 0.2);
 }
.schedule-header { display:flex; gap:12px; align-items:center; }
.schedule-icon { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg,#3b82f6,#60a5fa); color:#fff; font-size:18px; }
.schedule-title { font-weight:700; font-size:15px; color:#1f2937; }
.schedule-sub { font-size:13px; color:#6b7280; }
.day-chips { display:flex; gap:8px; flex-wrap:wrap; margin-top:6px; }
.day-chip { background:#f3f4f6; padding:6px 8px; border-radius:8px; font-weight:600; font-size:13px; color:#374151; }
.range-badge { background: linear-gradient(90deg,#fff,#fff); border-radius:8px; padding:6px 8px; border:1px solid #f3f4f6; font-size:13px; color:#4b5563; }
.schedule-timeline { height:10px; background: #f3f4f6; border-radius:6px; margin-top:10px; position:relative; overflow:hidden; }
.timeline-bar { position:absolute; top:0; bottom:0; background: linear-gradient(90deg,#f97316,#fb923c); border-radius:6px; }
