/* Booking form and confirmation pages — extends theme.css tokens */

/* BOOKING FORM PAGE */
.booking-section {
  padding: 3rem 4% 5rem;
  min-height: calc(100vh - 80px);
}

.booking-container {
  max-width: 580px;
  margin: 0 auto;
}

.booking-header {
  margin-bottom: 2.5rem;
}

.booking-header .section-title {
  margin-bottom: 0.75rem;
}

.booking-subtitle {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* FORM */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

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

.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}

.required {
  color: var(--sage-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--light-tan);
  border-radius: 10px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122, 158, 126, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0A99F;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6560' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--warm-gray);
  opacity: 0.8;
}

.form-error {
  background: #FFF5F5;
  border: 1px solid #FECACA;
  color: #991B1B;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* BOOK BUTTON */
.btn-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.btn-book:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.btn-book:active {
  transform: translateY(0);
}

.btn-icon {
  font-size: 1.2rem;
}

.form-footer-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--warm-gray);
  opacity: 0.8;
}

/* CONFIRMATION PAGE */
.confirmation-section {
  padding: 3rem 4% 5rem;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.confirmation-container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.confirmation-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.confirmation-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.confirmation-sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}

/* CONFIRMATION CARD */
.confirmation-card {
  background: var(--white);
  border: 1px solid rgba(122, 158, 126, 0.15);
  border-radius: 16px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.conf-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.conf-label {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-weight: 500;
  min-width: 100px;
}

.conf-value {
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 500;
  text-align: right;
  max-width: 260px;
}

.conf-address {
  font-size: 0.85rem;
  line-height: 1.5;
}

.conf-highlight .conf-value {
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 1rem;
}

.conf-divider {
  height: 1px;
  background: var(--light-tan);
  margin: 0.5rem 0;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 1rem 2rem;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 1.25rem;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-1px);
}

.wa-icon {
  font-size: 1.3rem;
}

.confirmation-note {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.confirmation-extras {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.link-secondary {
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 500;
}

.link-secondary:hover {
  text-decoration: underline;
}

.conf-separator {
  color: var(--warm-gray);
  opacity: 0.5;
}

/* CTA ON LANDING PAGE */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.9rem 2rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s, transform 0.15s;
}

.hero-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.9rem 2.5rem;
  background: var(--sage);
  color: var(--white);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.15s;
}

.closing-cta:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 2rem 4% 4rem;
  }

  .confirmation-title {
    font-size: 1.6rem;
  }

  .conf-value {
    max-width: 180px;
  }
}
