/* ============================================================
   BOOKING PAGE — booking.css
   ============================================================ */

/* ── Page Base ─────────────────────────────────────────────── */
.booking-page {
  padding-top: calc(var(--nav-h) + 8px);
}

/* Force nav to always show its background on the booking page
   (no announcement bar here, so JS never adds .scrolled) */
#nav {
  background: rgba(8,8,8,0.95) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.07) !important;
}

/* ── Hero Section ───────────────────────────────────────────── */
.bp-hero {
  position: relative;
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}

/* Richer ambient glows — no hard edges */
.bp-glow {
  position: absolute;
  top: -300px; left: -300px;
  width: 1100px; height: 1100px;
  background: radial-gradient(circle at 40% 40%, rgba(230,51,41,0.13) 0%, rgba(230,51,41,0.04) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(1px);
}
.bp-glow-2 {
  position: absolute;
  bottom: -200px; right: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(circle at 60% 60%, rgba(230,51,41,0.09) 0%, rgba(230,51,41,0.03) 45%, transparent 72%);
  pointer-events: none;
}
/* Third ambient glow — center bottom blend into next section */
.bp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(230,51,41,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.bp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: start;
}

/* Left copy */
.bp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  background: var(--bg-3);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.bp-h1 {
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}
.bp-h1 .serif-em {
  font-size: 1.04em;
  font-weight: 400;
  color: var(--red);
  display: block;
}

.bp-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}

/* What happens list */
.bp-what { margin-bottom: 36px; }
.bpw-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.bpw-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bpw-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bpw-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: rgba(230,51,41,0.08);
  border: 1px solid rgba(230,51,41,0.22);
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0.06em;
}
.bpw-list li div { display: flex; flex-direction: column; gap: 3px; }
.bpw-list li strong { font-size: 14px; font-weight: 600; color: var(--white); }
.bpw-list li span { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* Trust bar */
.bp-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.bpt-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.bpt-check { width: 16px; height: 16px; flex-shrink: 0; }
.bpt-sep { width: 1px; height: 16px; background: var(--border-2); }

/* ── Calendar card ──────────────────────────────────────────── */
.bp-calendar {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230,51,41,0.07) 0%, transparent 55%),
    var(--bg-3);
  border: 1px solid rgba(230,51,41,0.18);
  border-radius: var(--r);
  overflow: hidden;
  /* Match the left column: cap at a height that mirrors the copy block.
     overflow:hidden clips any excess iframe content so the card never
     extends past the text column — and because the iframe content fits
     within the visible area with no internal scroll, wheel events bubble
     to the page scroll rather than being trapped inside the iframe. */
  max-height: 660px;
  box-shadow:
    0 0 0 1px rgba(230,51,41,0.08),
    0 12px 60px rgba(0,0,0,0.5),
    0 0 80px rgba(230,51,41,0.06);
}

.bpc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(230,51,41,0.08) 0%, transparent 100%);
  border-radius: var(--r) var(--r) 0 0;
}
.bpc-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.bpc-note {
  font-size: 12px;
  color: var(--text-2);
  background: var(--bg-4);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Cal.com embed container — no height constraints so iframe sizes
   to full content height and has no internal scroll to trap */
.cal-embed-wrap {
  padding: 0;
  overflow: visible;
}

#cal-booking {
  width: 100%;
  min-height: 480px;
  overflow: visible;
}

/* Cal.com creates an iframe inside */
#cal-booking iframe {
  width: 100% !important;
  border: none !important;
  display: block;
}


/* ── Objections Section ─────────────────────────────────────── */
.bp-objections {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
/* Richer ambient glow — blends smoothly outward */
.bp-objections::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse, rgba(230,51,41,0.07) 0%, rgba(230,51,41,0.02) 45%, transparent 70%);
  pointer-events: none;
  filter: blur(2px);
}
/* Top bleed — section blends into previous */
.bp-objections::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 100%);
  pointer-events: none;
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  position: relative;
  z-index: 1;
}

.obj-card {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230,51,41,0.06) 0%, transparent 55%),
    var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.22s ease, border-color 0.25s ease;
}
/* Animated border on hover */
.obj-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0%, transparent 22%,
    rgba(230,51,41,0.85) 42%, #FF5535 50%,
    rgba(230,51,41,0.85) 58%, transparent 78%, transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
  animation: card-border-spin 2.4s linear infinite;
  animation-play-state: paused;
}
.obj-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 14px 40px rgba(0,0,0,0.5),
    0 0 32px rgba(230,51,41,0.08);
}
.obj-card:hover::before { opacity: 1; animation-play-state: running; }

.obj-icon { font-size: 24px; margin-bottom: 14px; display: block; }
.obj-q {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}
.obj-a { font-size: 14px; color: var(--text-2); line-height: 1.75; }


/* ── Final CTA Section ─────────────────────────────────────── */
.bp-final-cta {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
/* Richer layered glow */
.bp-cta-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(230,51,41,0.13) 0%, rgba(230,51,41,0.04) 50%, transparent 75%),
    radial-gradient(ellipse 40% 30% at 30% 80%, rgba(230,51,41,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 70% 80%, rgba(230,51,41,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.bp-cta-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bp-cta-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 20px 0;
}
.bp-cta-title .serif-em { font-size: 1.04em; color: var(--red); }
.bp-cta-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.bp-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.bp-cta-trust span { font-size: 13px; font-weight: 500; color: var(--text-2); }


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .obj-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .bp-hero-inner { grid-template-columns: 1fr; }
  .bp-calendar { max-height: none; }
  .obj-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .bp-h1 { font-size: clamp(34px, 8vw, 48px); }
  .bpt-sep { display: none; }
  .bpc-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .bpw-list { gap: 16px; }
  .obj-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .bp-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 100px); }
  .bp-trust { gap: 12px; }
  .bpt-item { font-size: 12px; }
  .bpc-header { padding: 14px 16px; }
  .obj-q { font-size: clamp(15px, 4vw, 17px); }
  .bp-cta-trust { flex-direction: column; gap: 10px; }
  #cal-booking { min-height: 380px; }
}

@media (max-width: 420px) {
  .bp-tag { font-size: 11px; padding: 6px 12px; }
  .bp-sub { font-size: 14px; }
  .bpw-list li { gap: 12px; }
}
