/* ─── Booking Page Layout ────────────────────────── */
.booking-page {
  min-height: calc(100vh - 200px);
  padding: 60px 0 100px;
  background: var(--bg);
}

.booking-container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Booking Header ─────────────────────────────── */
.booking-header {
  margin-bottom: 40px;
}

.booking-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.booking-eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s infinite;
}

.booking-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.booking-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Error Alert ────────────────────────────────── */
.booking-error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #c0392b;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}

/* ─── Form Sections ──────────────────────────────── */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section__title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ─── Service Cards ──────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

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

.service-card:hover {
  border-color: var(--accent-mid);
  box-shadow: 0 2px 12px rgba(30, 58, 47, 0.08);
}

.service-card--selected {
  border-color: var(--accent);
  background: #EEF4EE;
  box-shadow: 0 0 0 3px rgba(30, 58, 47, 0.08);
}

.service-card__icon {
  font-size: 24px;
  margin-bottom: 6px;
  line-height: 1;
}

.service-card__label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
}

.service-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Form Fields ────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-required {
  color: #c0392b;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 58, 47, 0.08);
}

.form-input::placeholder {
  color: #b0b0a8;
}

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

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B6B5E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ─── Submit Button ──────────────────────────────── */
.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
  margin-top: 8px;
}

.booking-submit:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30, 58, 47, 0.25);
}

.booking-submit:active {
  transform: translateY(0);
}

.booking-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Confirmation Page ──────────────────────────── */
.confirmation-container {
  text-align: center;
  padding-top: 20px;
}

.confirmation-icon {
  margin: 0 auto 28px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #EEF4EE, #D8EDD8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.confirmation-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 40px;
}

.confirmation-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 36px;
}

.confirmation-card__label {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 16px;
}

.confirmation-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
}

.confirmation-steps li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.confirmation-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.btn-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
}

.btn-secondary {
  padding: 14px 28px;
  background: transparent;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: #EEF4EE;
}

/* ─── Nav link ───────────────────────────────────── */
.nav__logo {
  text-decoration: none;
}

.nav__cta {
  margin-left: auto;
  padding: 8px 18px;
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.nav__cta:hover {
  background: var(--accent-mid);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

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

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

  .confirmation-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
  }
}
