/* ============================================================
   ClinicFlow — Booking Page Styles
   ============================================================ */

/* ---- HERO ---- */
.booking-hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--bg);
}

.booking-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
}

/* ---- LEFT COLUMN ---- */
.booking-hero-text { padding-top: 20px; }

.booking-title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 20px;
  line-height: 1.1;
}

.booking-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

/* What to expect */
.booking-what {
  margin-bottom: 40px;
}

.booking-what-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.booking-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.booking-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  margin-top: 1px;
}

.booking-checklist li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.booking-checklist li strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}

.booking-checklist li span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Social proof */
.booking-social-proof {
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.bsp-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.bsp-item p {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.bsp-item strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- RIGHT COLUMN — CALENDAR CARD ---- */
.booking-calendar-wrap {
  position: sticky;
  top: 90px;
}

.booking-calendar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-calendar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}

.booking-cal-icon {
  flex-shrink: 0;
  color: var(--blue);
  line-height: 0;
}
.booking-cal-icon svg { width: 28px; height: 28px; display: block; }

.booking-cal-title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}

.booking-cal-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.booking-calendar-embed {
  padding: 0;
  min-height: 580px;
  background: var(--bg-card);
}

.booking-calendar-embed iframe {
  display: block;
  width: 100%;
  min-height: 580px;
  border: none;
}

.booking-calendar-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.booking-privacy-note {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

.booking-privacy-note a {
  color: var(--blue);
  text-decoration: none;
}

.booking-privacy-note a:hover {
  text-decoration: underline;
}

/* ---- TRUST BAR ---- */
.booking-trust {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.booking-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-icon { display: inline-flex; color: var(--blue); }
.trust-icon svg { width: 16px; height: 16px; }

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ---- FAQ STRIP ---- */
.booking-faq {
  padding: 72px 0 80px;
  background: var(--bg-card);
}

.booking-faq-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 48px;
}

.booking-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.booking-faq-item h3 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.booking-faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .booking-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .booking-calendar-wrap {
    position: static;
  }

  .booking-hero-text {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .booking-faq-grid {
    grid-template-columns: 1fr;
  }

  .booking-trust-inner {
    gap: 14px;
  }

  .trust-divider {
    display: none;
  }
}
