/* Booking Form */
.booking-form { max-width: 700px; margin: 0 auto; }

.booking-form .form-group { margin-bottom: 1.4rem; }

.booking-form .form-label { display: block; font-weight: 600; margin-bottom: 6px; color: #8b949e; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.4px; }

.booking-form .form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #30363d;
  border-radius: 8px;
  font-size: 0.95rem;
  background: #21262d;
  color: #e6edf3;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}

.booking-form .form-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15); }

.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Service Cards */
.service-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; margin-top: 8px; }

.service-card {
  cursor: pointer;
  border: 2px solid #30363d;
  border-radius: 10px;
  overflow: hidden;
  background: #1c2128;
  transition: border-color 0.15s ease;
}

.service-card:hover { border-color: #3b82f6; }
.service-card.selected { border-color: #3b82f6; background: rgba(59, 130, 246, 0.06); }

.service-card__radio { position: absolute; opacity: 0; pointer-events: none; }
.service-card__content { display: flex; flex-direction: column; }
.service-card__image { width: 100%; height: 110px; object-fit: cover; }

.service-card__placeholder {
  width: 100%;
  height: 110px;
  background: #21262d;
  border-bottom: 1px solid #30363d;
}

.service-card__info { padding: 12px; }
.service-card__title { margin: 0 0 6px 0; font-size: 0.95rem; font-weight: 600; color: #e6edf3; }
.service-card__meta { display: flex; justify-content: space-between; font-size: 0.82rem; color: #8b949e; margin-bottom: 6px; }
.service-card__duration, .service-card__price { display: inline-block; }

.service-card__mode { display: inline-block; padding: 1px 8px; border-radius: 10px; font-size: 0.72rem; font-weight: 500; }
.badge-online { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.badge-offline { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

/* DateTime Picker */
.datetime-picker .form-input { font-family: inherit; }

/* Form Actions */
.form-actions { margin-top: 1.8rem; }

/* Error Messages */
.error-messages {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 1.4rem;
  color: #ef4444;
  font-size: 13px;
}

@media (max-width: 640px) {
  .booking-form .form-row { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
}
