/* Booking page specific styles */
.booking-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: #f8fafc;
}

.booking-hero h1 {
  font-size: 32px;
  margin: 0 0 12px;
  color: var(--text);
}

.booking-hero p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.booking-section {
  padding: 40px 0 80px;
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-step {
  display: none;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 24px;
}

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

.form-step h2 {
  margin: 0 0 24px;
  text-align: center;
  color: var(--text);
}

/* Calendar styles */
.calendar-container {
  max-width: 400px;
  margin: 0 auto;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text);
}

.nav-btn {
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
}

.nav-btn:hover {
  background: var(--brand-dark);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.day-header {
  text-align: center;
  padding: 12px 8px;
  font-weight: 600;
  color: var(--muted);
  font-size: 14px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled) {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--brand);
}

.calendar-day.selected {
  background: var(--brand);
  color: white;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.time-slot {
  padding: 16px 20px;
  background: #f8f9fa;
  border: 2px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  text-align: center;
}

.time-slot:hover {
  border-color: var(--brand);
  background: rgba(245, 158, 11, 0.05);
}

.time-slot.selected {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

/* Service options */
.service-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.service-option {
  cursor: pointer;
}

.service-option input[type="radio"] {
  display: none;
}

.service-card {
  display: block;
  padding: 20px;
  background: #f8f9fa;
  border: 2px solid var(--line);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.service-option input[type="radio"]:checked + .service-card {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

/* Contact form */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Booking summary */
.booking-summary {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.booking-summary h3 {
  margin: 0 0 16px;
  color: var(--text);
}

.summary-details p {
  margin: 8px 0;
  color: var(--muted);
}

.summary-details strong {
  color: var(--text);
}

/* Form actions */
.form-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

/* Disclaimer section */
.disclaimer-section {
  padding: 40px 0;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.disclaimer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.disclaimer p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.disclaimer a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.disclaimer a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .booking-hero {
    padding: 40px 0 30px;
  }
  
  .booking-hero h1 {
    font-size: 28px;
  }
  
  .booking-section {
    padding: 30px 0 60px;
  }
  
  .form-step {
    padding: 20px;
    margin: 0 16px 24px;
  }
  
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-options {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
  
  .disclaimer {
    margin: 0 16px;
    padding: 20px;
  }
}
