/* BOOKING FORM — matches Harbor Boston brand */

/* FORM SECTION */
.book-section {
  background: var(--cream);
  padding: 72px 24px;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: flex-start;
}
.book-container {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}
.book-header { margin-bottom: 48px; }
.book-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.book-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* FORM */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.label-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}
.form-input,
.form-select,
.form-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}
.form-input.error,
.form-select.error { border-color: #c0392b; }
.form-textarea { resize: vertical; min-height: 100px; }
.field-error {
  font-size: 0.8rem;
  color: #c0392b;
  font-weight: 500;
}

/* BUTTON */
.btn-submit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
}
.btn-submit:hover { background: var(--navy-light); }
.btn-submit:active { transform: scale(0.99); }

/* ALTERNATIVE LINK */
.book-alternative {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.whatsapp-link {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}
.whatsapp-link:hover { border-bottom-color: var(--gold); }

/* CONFIRMATION */
.confirmation-section {
  background: var(--cream);
  padding: 96px 24px;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
}
.confirmation-container {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.confirmation-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.confirmation-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin: 16px 0 20px;
  line-height: 1.15;
}
.confirmation-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.confirmation-meta {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 24px;
  margin-bottom: 36px;
  text-align: left;
}
.confirmation-detail { display: flex; flex-direction: column; gap: 4px; }
.detail-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.detail-value {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
}
.confirmation-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-home {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 28px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-home:hover { border-color: var(--navy); }
.btn-whatsapp {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: #25D366;
  border: 1px solid #25D366;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-whatsapp:hover { background: #1fb855; }

/* SERVICE CARD GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.service-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.service-card:hover { border-color: var(--gold); background: #fdf9f3; }
.service-card.selected { border-color: var(--gold); background: #fdf9f3; box-shadow: 0 0 0 2px rgba(201,169,110,0.2); }
.card-icon {
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.card-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
}
.card-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* URGENCY BANNER */
.urgency-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #fff3cd;
  border: 1px solid #ffe69c;
  color: #856404;
  font-size: 0.875rem;
  margin-bottom: 20px;
  border-radius: 2px;
}

/* PAYMENT NOTE */
.payment-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}
.payment-note svg { flex-shrink: 0; color: var(--gold); }

/* FORM ROW */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* CONFIRMATION NOTE */
.confirmation-note {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .book-section, .confirmation-section { padding: 48px 16px; }
  .book-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .confirmation-actions { flex-direction: column; align-items: stretch; }
  .btn-home, .btn-whatsapp { text-align: center; }
}
@media (max-width: 400px) {
  .service-grid { grid-template-columns: 1fr; }
}