/* ═══════════════════════════════════════════════════
   BOOKING PAGE — Sara Mounty
   ═══════════════════════════════════════════════════ */

/* Design tokens: see tokens.css */

/* Base reset & shared components: see tokens.css */

/* ── Page Layout ── */
.booking-page { min-height: 100vh; display: flex; flex-direction: column; scroll-snap-align: start; }

/* ── Navigation ── */
.booking-nav { padding: 0 28px; padding-top: env(safe-area-inset-top); z-index: 10; height: 44px; display: flex; align-items: center; justify-content: space-between; position: fixed; top: 0; left: 0; right: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-back { color: var(--cream-faint); font-size: 0.78rem; display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s; }
.nav-back:hover { color: var(--sage-light); }
.nav-ctas { display: flex; gap: 8px; align-items: center; }
.nav-cta { display: inline-flex; align-items: center; gap: 6px; padding: 6px 18px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.6px; text-transform: uppercase; background: linear-gradient(135deg, var(--sage), #7A9169); color: white; border-radius: 20px; transition: transform 0.3s var(--ease), box-shadow 0.3s; box-shadow: 0 2px 12px rgba(107,127,94,0.3); }
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 4px 20px var(--sage-glow); }


/* ── Hero Section ── */
.booking-hero {
  text-align: center; padding: 50px 24px 16px;
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.booking-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300; color: var(--cream); line-height: 1.15;
}
.booking-hero h1 em { font-style: italic; color: var(--sage); }
.booking-hero > p {
  font-size: clamp(1rem, 1.3vw, 1.2rem); color: var(--cream-light);
  font-weight: 300; line-height: 1.6; max-width: 560px;
}

/* ── Symbol ── */
.avatar-label-solo {
  font-size: 2.2rem; color: var(--sage-light); line-height: 1;
}

/* ── Status Indicator ── */
.status-indicator {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  padding: 8px 22px; border-radius: 30px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); font-size: 0.82rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2), 0 0 30px rgba(107,127,94,0.08);
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #4ade80;
  flex-shrink: 0; animation: statusPulse 2s infinite;
  box-shadow: 0 0 12px rgba(74,222,128,0.4);
}
.status-text {
  font-family: var(--font-body); font-size: 0.85rem;
  color: var(--sage-light); font-weight: 300; white-space: nowrap;
}

/* ── Chat Bubble ── */
.booking-chat {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.chat-msg.bot {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  animation: msgIn 0.4s var(--ease) both;
}
.chat-bubble-text {
  padding: 16px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  width: 100%;
  white-space: nowrap;
}
.chat-typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 18px;
  align-self: center;
}
.chat-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); animation: typingDot 1.4s infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

/* ── What to Expect Section ── */
.booking-expect {
  max-width: 680px; width: 100%; margin: 0 auto;
  padding: 0 24px 48px; position: relative; z-index: 2;
}
.expect-content {
  padding: 32px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 20px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.expect-content h2 {
  font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 300; color: var(--cream); margin-bottom: 20px; text-align: center;
}
.expect-content h2 em { font-style: italic; color: var(--sage); }
.expect-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.expect-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--cream-light); font-weight: 300; line-height: 1.6;
}
.expect-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1.6; }

/* ── Calendly Widget ── */
.calendly-container {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 30px;
  position: relative;
  z-index: 2;
}
#cal-embed {
  border-radius: 16px; overflow: hidden;
}

/* ── Footer ── */
.footer {
  padding: 16px; text-align: center; font-size: 0.72rem;
  color: var(--cream-faint); border-top: 1px solid var(--border-light); background: var(--bg-footer);
}
.footer a { color: var(--sage-muted); transition: color 0.3s; }
.footer a:hover { color: var(--sage-light); }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .booking-nav { padding: 0 16px; }
  .nav-cta { padding: 5px 12px; font-size: 0.65rem; }
  .booking-hero { padding: 50px 20px 12px; gap: 8px; }

  .avatar-label-solo { font-size: 1.8rem; }

  .booking-chat { max-width: 100%; }
  .chat-bubble-text { font-size: 0.88rem; padding: 14px 18px; }

  .status-indicator { padding: 6px 16px; font-size: 0.75rem; }
  .status-text { font-size: 0.75rem; }

  .booking-expect { padding: 0 16px 20px; }
  .expect-content { padding: 20px 16px; }

  .calendly-container { padding: 0 8px 24px; }
}
