/* ===== BOOK A TOUR — PAGE SPECIFIC ===== */

.book-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, rgba(196,88,36,0.82) 0%, rgba(160,72,28,0.85) 100%),
    url('assets/images/hero-how-it-works.jpg') center/cover no-repeat;
  position: relative; overflow: hidden;
  padding: 80px 0 72px;
  text-align: center;
}
.book-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.book-hero .container { position: relative; z-index: 1; }
.book-hero h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  color: var(--white); margin-bottom: 16px;
}
.book-hero p {
  font-size: 18px; color: rgba(255,255,255,0.85);
  max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

/* What to Expect */
.expect { background: var(--bg-primary); }
.expect h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  text-align: center; margin-bottom: 48px;
}
.expect-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 768px) { .expect-grid { grid-template-columns: 1fr; } }
.expect-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.expect-illustration {
  width: 120px; height: 120px;
  margin: 0 auto 20px;
}
.expect-illustration img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.expect-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px;
}
.expect-card p {
  font-size: 15px; line-height: 1.7;
}
.expect-time {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--accent);
}

/* Booking Section */
.booking-section { background: var(--bg-secondary); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

/* Form */
.book-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}
.book-form-card h2 {
  font-size: 28px; margin-bottom: 8px;
}
.book-form-card .form-subtitle {
  font-size: 16px; color: var(--text-light);
  margin-bottom: 16px;
}

/* Calendly Widget */
.calendly-inline-widget {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
@media (max-width: 480px) {
  .book-form-card { padding: 28px 20px; }
}
@media (max-width: 768px) {
  .book-hero { padding: 48px 0 40px; }
}

/* Sidebar Info */
.book-info h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 20px;
}
.info-block {
  margin-bottom: 32px;
}
.info-block h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.info-block p {
  font-size: 15px; line-height: 1.7;
  margin-bottom: 6px;
}
.info-block a {
  color: var(--accent); text-decoration: none;
}
.info-block a:hover { text-decoration: underline; }

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 8px;
}
.map-container iframe {
  width: 100%; height: 280px;
  border: none;
}

/* Reassurance */
.reassurance {
  background: var(--bg-primary);
  text-align: center;
}
.reassurance h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 24px;
}
.reassure-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 800px; margin: 0 auto;
}
@media (max-width: 600px) { .reassure-grid { grid-template-columns: 1fr; } }
.reassure-item {
  font-size: 16px; color: var(--text-body);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.reassure-illustration {
  width: 100px; height: 100px;
  margin-bottom: 8px;
}
.reassure-illustration img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.reassure-item strong {
  color: var(--text-heading);
}
