/* booking.css - public booking request page (book.php) and the "Book Now"
   button on package cards (packages.php). Same brand tokens/approach as
   blog.css - self-contained, doesn't touch the legacy Elementor CSS. */

.booking-wrap { padding: 0 0 90px; }

.booking-alert {
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14.5px;
  font-weight: 600;
}
.booking-alert-success { background: #e6f4ea; color: #1e8e3e; border: 1px solid #b7e1c3; }
.booking-alert-error { background: #fce8e6; color: #d93025; border: 1px solid #f3b8b3; }

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.booking-card {
  background: #fff;
  border-radius: 16px;
  padding: 34px 38px;
  box-shadow: 0 2px 18px rgba(16, 34, 27, 0.07);
}
.booking-card h2 { margin: 0 0 8px; font-size: 26px; color: var(--DTSecondaryColor, #10221b); }
.booking-card-sub { margin: 0 0 28px; color: #6d6666; font-size: 14.5px; line-height: 1.6; max-width: 560px; }

.booking-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-field { margin-bottom: 18px; }
.booking-field label { display: block; font-size: 13px; font-weight: 700; color: var(--DTSecondaryColor, #10221b); margin-bottom: 6px; }
.booking-field input, .booking-field select, .booking-field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #ded9d4;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--DTBodyTxtColor, #483e3e);
  background: #fdfcfb;
}
.booking-field input:focus, .booking-field select:focus, .booking-field textarea:focus {
  outline: none;
  border-color: var(--DTPrimaryColor, #f29727);
  background: #fff;
}
.booking-field textarea { resize: vertical; min-height: 90px; }

.booking-submit-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 999px;
  background: var(--DTPrimaryColor, #f29727);
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
}
.booking-submit-btn:hover { background: var(--DTSecondaryColor, #10221b); }
.booking-form-note { text-align: center; font-size: 12.5px; color: #948d8d; margin: 12px 0 0; }

/* ---- Sidebar ---- */
.booking-sidebar { display: flex; flex-direction: column; gap: 22px; }
.booking-sidebar-card, .booking-summary-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 2px 18px rgba(16, 34, 27, 0.06);
}
.booking-sidebar-card h4, .booking-summary-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 16px;
  color: var(--DTSecondaryColor, #10221b);
}

.booking-summary-card { background: var(--DTSecondaryColor, #10221b); }
.booking-summary-card h4 { color: #fff; }
.booking-summary-card dl { margin: 0; }
.booking-summary-card dl > div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.booking-summary-card dl > div:last-child { border-bottom: none; }
.booking-summary-card dt { color: #a9b3af; font-size: 13px; }
.booking-summary-card dd { margin: 0; color: #fff; font-size: 13.5px; font-weight: 700; text-align: right; }
.booking-summary-hint { margin: 14px 0 0; font-size: 11.5px; color: #a9b3af; line-height: 1.5; }

.booking-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.booking-steps li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: #6d6666; line-height: 1.5; }
.booking-steps li span {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--DTTertiaryColor, #e6eee5);
  color: var(--DTSecondaryColor, #10221b);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-testimonial { padding: 14px 0; border-bottom: 1px solid #f1efec; }
.booking-testimonial:last-child { border-bottom: none; padding-bottom: 0; }
.booking-testimonial p { margin: 0 0 8px; font-size: 13.5px; font-style: italic; color: #4c4444; line-height: 1.6; }
.booking-testimonial span { font-size: 12.5px; font-weight: 700; color: var(--DTSecondaryColor, #10221b); }

.booking-contact-card p { font-size: 13.5px; color: #6d6666; margin: 0 0 16px; line-height: 1.6; }
.booking-contact-card button {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid var(--DTPrimaryColor, #f29727);
  background: #fff;
  color: var(--DTPrimaryColor, #f29727);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.booking-contact-card button:hover { background: var(--DTPrimaryColor, #f29727); color: #fff; }

/* ---- "Book Now" button on package cards (packages.php) ---- */
.package-book-now-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 22px;
  border-radius: 999px;
  background: var(--DTPrimaryColor, #f29727);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}
.package-book-now-btn:hover { background: var(--DTSecondaryColor, #10221b); }

@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { flex-direction: row; flex-wrap: wrap; }
  .booking-sidebar-card, .booking-summary-card { flex: 1 1 260px; }
}

@media (max-width: 700px) {
  .booking-card { padding: 26px 20px; }
  .booking-field-row { grid-template-columns: 1fr; }
  .booking-sidebar { flex-direction: column; }
}
