/* === BOOKING PAGE === */

.booking-hero {
  background: var(--fg);
  color: var(--bg);
  padding: 56px 24px 48px;
}

.booking-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(245,239,230,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--bg); }

.booking-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.booking-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--bg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.booking-sub {
  font-size: 1rem;
  color: rgba(245,239,230,0.6);
  max-width: 480px;
  line-height: 1.6;
}

/* --- CONTENT --- */
.booking-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.booking-section {
  padding-top: 48px;
}

.booking-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* --- SERVICE CARDS --- */
.service-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}

.svc-card {
  display: block;
  cursor: pointer;
  position: relative;
}

.svc-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.svc-card-inner {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.svc-card:hover .svc-card-inner {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(26,26,26,0.08);
  transform: translateY(-2px);
}

.svc-card--selected .svc-card-inner {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 0 0 3px rgba(200,92,58,0.12);
}

.svc-card--featured .svc-card-inner {
  border-color: var(--accent);
  border-width: 2px;
}

.svc-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.svc-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.svc-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 2px;
}

.svc-per {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.svc-features {
  list-style: none;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.svc-features li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-features li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent-sage);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
  flex-shrink: 0;
}

.svc-includes {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* --- DATETIME --- */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.field-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.field-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,92,58,0.12);
}

.field-hint {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 6px;
}

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

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.time-slot {
  cursor: pointer;
}

.time-slot input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.time-slot span {
  display: block;
  text-align: center;
  padding: 9px 8px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--white);
  transition: all 0.15s;
}

.time-slot:hover span {
  border-color: var(--accent);
  color: var(--accent);
}

.time-slot input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* --- CONTACT FORM --- */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  gap: 20px;
}

.form-row--2 {
  grid-template-columns: 1fr 1fr;
}

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

.required {
  color: var(--accent);
}

.field-error {
  color: #d93025;
  font-size: 0.85rem;
  margin-top: 8px;
}

/* --- SUBMIT --- */
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:not(:disabled):hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --- SUCCESS --- */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  max-width: 520px;
  margin: 0 auto;
}

.success-icon {
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 16px;
}

.success-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 40px;
}

.btn-home {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-home:hover { background: var(--accent-hover); }

/* --- RESPONSIVE --- */
@media (max-width: 700px) {
  .service-selector { grid-template-columns: 1fr; }
  .datetime-grid { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .svc-card--featured .svc-badge { top: -11px; }
}