/* Consultation Page Specific Styles */

.consultation-section {
  padding: 2rem 0 4rem;
}

.consultation-header {
  text-align: center;
  margin-bottom: 3rem;
}

.consultation-header h1 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 1rem;
}

.consultation-header p {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left side - Service selection and contact form */
.booking-left {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
}

.service-selection {
  margin-bottom: 2rem;
}

.service-selection h3 {
  color: #1a365d;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-options label:hover {
  background: #e2e8f0;
}

.service-options input[type="radio"] {
  margin: 0;
}

.contact-form h3 {
  color: #1a365d;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #4a5568;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

/* Right side - Calendar */
.booking-right {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.calendar-container h3 {
  color: #1a365d;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.calendar-wrapper {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #1a365d;
  color: white;
}

.calendar-nav {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.calendar-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.month-year {
  font-size: 1.1rem;
  font-weight: 600;
}

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

.calendar-day-header {
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  background: #f7fafc;
  color: #4a5568;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
}

.calendar-day {
  padding: 0.75rem;
  text-align: center;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-day:nth-child(7n) {
  border-right: none;
}

.calendar-day.empty {
  cursor: default;
  background: #f9f9f9;
}

.calendar-day.disabled {
  color: #cbd5e0;
  cursor: not-allowed;
  background: #f9f9f9;
}

.calendar-day.available:hover {
  background: #e6fffa;
  color: #1a365d;
}

.calendar-day.selected {
  background: #3182ce;
  color: white;
}

/* Time slots */
.time-slots {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.time-slots h4 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.time-slot {
  padding: 0.75rem;
  border: 1px solid #cbd5e0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.time-slot:hover {
  background: #e6fffa;
  border-color: #3182ce;
}

.time-slot.selected {
  background: #3182ce;
  color: white;
  border-color: #3182ce;
}

/* Booking summary */
.booking-summary {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
}

.booking-summary h4 {
  color: #1a365d;
  margin-bottom: 1rem;
}

.summary-details p {
  margin-bottom: 0.5rem;
  color: #4a5568;
}

.summary-details strong {
  color: #1a365d;
}

/* Responsive design */
@media (max-width: 768px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .consultation-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .booking-left,
  .booking-right {
    padding: 1.5rem;
  }
  
  .time-grid {
    grid-template-columns: 1fr;
  }
  
  .calendar-day {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}
