/* ============================================================
   PARWAH — BOOKING FLOW STYLES (booking.css)
   Covers: book-session.html + book-session-form.html
   ============================================================ */

/* ── Custom tokens ────────────────────────────────────────── */
:root {
  --bp-deep:    #4E1E70;
  --bp-rich:    #5a2a82;
  --bp-vivid:   #8B5BE6;
  --bp-soft:    #C4A8FF;
  --bp-mist:    #EDE8FF;
  --bp-blush:   #E87DD0;
  --bp-cream:   #fdfcff;
  --bp-white75: rgba(255,255,255,0.75);
  --bp-shadow:  0 20px 50px rgba(78,30,112,0.12);
  --bp-card-border: 1px solid rgba(139,91,230,0.14);
}

/* ── Body backgrounds ────────────────────────────────────── */
.bs-landing-body {
  background:
    radial-gradient(ellipse at 15% 30%, rgba(139,91,230,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(232,125,208,0.07) 0%, transparent 55%),
    linear-gradient(180deg, #fdfcff 0%, #f8f4ff 100%);
  background-attachment: fixed;
}

.bs-form-body {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(139,91,230,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #f9f6ff 0%, #fdfcff 100%);
  min-height: 100vh;
}

/* ── Active nav link ─────────────────────────────────────── */
.nav-active {
  color: var(--bp-vivid) !important;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   SHARED COMPONENTS
   ══════════════════════════════════════════════════════════ */

/* Section chip */
.bs-chip {
  display: inline-block;
  background: linear-gradient(135deg, rgba(139,91,230,0.15), rgba(78,30,112,0.08));
  color: var(--bp-rich);
  border: 1px solid rgba(139,91,230,0.2);
  border-radius: 999px;
  padding: 5px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bs-chip-light {
  background: rgba(255,255,255,0.3);
  border-color: rgba(139,91,230,0.25);
  color: var(--bp-deep);
}

/* Primary button */
.bs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--bp-rich), var(--bp-deep));
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(90,42,130,0.3);
  text-decoration: none;
  white-space: nowrap;
}

.bs-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(90,42,130,0.4);
}

.bs-btn-primary:active { transform: translateY(-1px); }

.bs-btn-lg { padding: 16px 36px; font-size: 1.08rem; }

/* Ghost button */
.bs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  color: var(--bp-rich);
  border: 2px solid rgba(139,91,230,0.3);
  padding: 12px 26px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.bs-btn-ghost:hover {
  background: rgba(139,91,230,0.1);
  border-color: var(--bp-vivid);
  transform: translateY(-2px);
}

/* Section layout helpers */
.bs-section {
  padding: 100px 8vw;
}

.bs-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.bs-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.bs-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #1e1b2e;
  margin-bottom: 12px;
  line-height: 1.25;
}

.bs-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #5a5474;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   LANDING: HERO
   ══════════════════════════════════════════════════════════ */
.bs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5vw;
  padding: 120px 8vw 80px;
  overflow: hidden;
}

/* Orbs */
.bs-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.bs-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,91,230,0.18), transparent 70%);
  top: -80px; left: -80px;
}

.bs-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,125,208,0.15), transparent 70%);
  bottom: 40px; right: -60px;
}

.bs-orb-3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(78,30,112,0.1), transparent 70%);
  top: 40%; left: 38%;
}

/* Hero content */
.bs-hero-content {
  position: relative; z-index: 2;
  flex: 1;
  max-width: 560px;
}

.bs-hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--bp-vivid);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.85;
}

.bs-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #1e1b2e;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.bs-hero-gradient {
  background: linear-gradient(120deg, var(--bp-deep) 0%, var(--bp-vivid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bs-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #5a5474;
  line-height: 1.7;
  margin-bottom: 36px;
}

.bs-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bs-hero-btns a { text-decoration: none; }

.bs-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bs-trust-chip {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139,91,230,0.16);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bp-rich);
}

/* Hero visual */
.bs-hero-visual {
  position: relative; z-index: 2;
  flex-shrink: 0;
}

.bs-hero-illus-card {
  position: relative;
  width: clamp(260px, 32vw, 400px);
  aspect-ratio: 1;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 36px;
  border: var(--bp-card-border);
  box-shadow: var(--bp-shadow), 0 0 0 1px rgba(255,255,255,0.6) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.bs-illus-svg {
  width: 82%;
  height: 82%;
  animation: bsFloat 5s ease-in-out infinite alternate;
}

@keyframes bsFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.bs-illus-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139,91,230,0.2);
  border-radius: 999px;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bp-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(78,30,112,0.12);
}

.bs-badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bp-vivid);
  animation: bsPulse 2s ease-in-out infinite;
}

@keyframes bsPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.75); opacity: 0.5; }
}

/* Hero responsive */
@media (max-width: 900px) {
  .bs-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 6vw 70px;
    min-height: auto;
    gap: 60px;
  }
  .bs-hero-btns { justify-content: center; }
  .bs-trust-row { justify-content: center; }
  .bs-hero-illus-card { width: clamp(240px, 70vw, 340px); }
}

/* ══════════════════════════════════════════════════════════
   LANDING: HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.bs-how {
  background: none;
}

.bs-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

@media (max-width: 860px) { .bs-how-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; } }

.bs-how-card {
  position: relative;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: var(--bp-card-border);
  border-radius: 24px;
  padding: 36px 28px 32px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bs-how-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bp-vivid), var(--bp-deep));
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bs-how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(78,30,112,0.14);
}

.bs-how-card:hover::before { opacity: 1; }

.bs-how-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(139,91,230,0.12), rgba(78,30,112,0.06));
  border: 1px solid rgba(139,91,230,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--bp-vivid);
  transition: transform 0.3s ease;
}

.bs-how-card:hover .bs-how-icon { transform: scale(1.1) rotate(-3deg); }

.bs-how-step {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--bp-vivid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bs-how-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e1b2e;
  margin-bottom: 10px;
}

.bs-how-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #5a5474;
  line-height: 1.7;
}

.bs-highlight-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139,91,230,0.2);
  border-radius: 999px;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bp-rich);
  margin: 0 auto;
  display: flex;
}

/* ══════════════════════════════════════════════════════════
   LANDING: EMOTIONAL CHECK-IN
   ══════════════════════════════════════════════════════════ */
.bs-checkin {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(139,91,230,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(232,125,208,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #f7f4ff 0%, #fdfcff 100%);
}

.bs-checkin-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.bs-blob-a {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(139,91,230,0.14), transparent 70%);
  top: -100px; left: -100px;
}

.bs-blob-b {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,125,208,0.1), transparent 70%);
  bottom: -60px; right: -60px;
}

.bs-emotion-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.bs-emotion-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(139,91,230,0.15);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.28s ease;
  min-width: 110px;
  font-family: 'Inter', sans-serif;
}

.bs-emotion-btn:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--bp-vivid);
  box-shadow: 0 12px 28px rgba(139,91,230,0.18);
}

.bs-emotion-btn.active {
  border-color: var(--bp-vivid);
  background: linear-gradient(135deg, rgba(139,91,230,0.12), rgba(78,30,112,0.06));
  box-shadow: 0 8px 24px rgba(139,91,230,0.2);
  transform: translateY(-4px) scale(1.04);
}

.bs-emotion-emoji { font-size: 2rem; line-height: 1; }

.bs-emotion-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bp-rich);
  text-align: center;
}

/* Response card */
.bs-emotion-response {
  display: flex;
  justify-content: center;
  animation: bsFadeUp 0.5s ease;
}

@keyframes bsFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bs-response-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border: var(--bp-card-border);
  border-radius: 24px;
  padding: 36px 40px;
  text-align: center;
  max-width: 480px;
  box-shadow: var(--bp-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bs-response-icon { font-size: 2.5rem; }

.bs-response-msg {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #3d3558;
  line-height: 1.7;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   LANDING: SERVICES
   ══════════════════════════════════════════════════════════ */
.bs-services { background: none; }

.bs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) { .bs-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .bs-services-grid { grid-template-columns: 1fr; } }

.bs-service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border: var(--bp-card-border);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bs-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,91,230,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.bs-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(78,30,112,0.13);
  border-color: rgba(139,91,230,0.28);
}

.bs-service-card:hover::after { opacity: 1; }

.bs-svc-emoji { font-size: 2rem; margin-bottom: 4px; }

.bs-svc-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #7a6ea8;
  font-weight: 500;
}

.bs-svc-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e1b2e;
}

.bs-svc-arrow {
  font-size: 1.1rem;
  color: var(--bp-vivid);
  margin-top: auto;
  transition: transform 0.25s ease;
  position: relative; z-index: 1;
}

.bs-service-card:hover .bs-svc-arrow { transform: translateX(5px); }

/* ══════════════════════════════════════════════════════════
   LANDING: CLOSING
   ══════════════════════════════════════════════════════════ */
.bs-closing {
  position: relative;
  padding: 120px 8vw 100px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139,91,230,0.1) 0%, transparent 60%),
    linear-gradient(160deg, #f9f6ff 0%, #fdfcff 100%);
}

.bs-closing-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,91,230,0.12), transparent 70%);
  filter: blur(80px);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.bs-closing-inner {
  position: relative; z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bs-closing-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 7rem;
  line-height: 0.6;
  color: var(--bp-vivid);
  opacity: 0.2;
  user-select: none;
}

.bs-closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  color: #1e1b2e;
  line-height: 1.55;
  border: none;
  padding: 0;
  margin: 0;
}

.bs-closing-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--bp-deep), var(--bp-vivid));
  border-radius: 99px;
}

.bs-closing-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #7a6ea8;
}


/* ══════════════════════════════════════════════════════════
   FORM PAGE: LAYOUT
   ══════════════════════════════════════════════════════════ */
.bsf-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(139,91,230,0.1);
}

.bsf-nav-trust {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bp-rich);
}

.bsf-back-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bp-vivid);
  text-decoration: none;
  transition: opacity 0.2s;
}

.bsf-back-link:hover { opacity: 0.75; }

.bsf-main {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: calc(100vh - 72px);
}

@media (max-width: 900px) {
  .bsf-main { grid-template-columns: 1fr; }
  .bsf-sidebar { display: none; }
}

/* ── Sidebar ──────────────────────────────────────────────── */
.bsf-sidebar {
  background: linear-gradient(160deg, #f4efff 0%, #ede8ff 100%);
  border-right: 1px solid rgba(139,91,230,0.12);
  padding: 48px 32px;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}

.bsf-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bsf-sidebar-h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--bp-deep);
  line-height: 1.35;
  margin-bottom: 12px;
}

.bsf-sidebar-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #5a5474;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Trust block in sidebar */
.bsf-trust-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  padding: 20px;
  background: rgba(255,255,255,0.6);
  border-radius: 16px;
  border: 1px solid rgba(139,91,230,0.15);
}

.bsf-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #4a4560;
}

/* Step labels */
.bsf-step-labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bsf-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #7a6ea8;
  transition: all 0.25s ease;
}

.bsf-step-label.active {
  background: rgba(139,91,230,0.12);
  color: var(--bp-rich);
  font-weight: 700;
}

.bsf-step-label.done {
  color: #6d9f6d;
}

.bsf-sl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(139,91,230,0.3);
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.bsf-step-label.active .bsf-sl-dot { background: var(--bp-vivid); }
.bsf-step-label.done  .bsf-sl-dot { background: #6d9f6d; }

/* ── Form area ────────────────────────────────────────────── */
.bsf-form-area {
  padding: 40px 48px 60px;
  max-width: 720px;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .bsf-form-area { padding: 28px 20px 50px; }
}

/* Progress bar */
.bsf-progress-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.bsf-progress-track {
  flex: 1;
  height: 6px;
  background: rgba(139,91,230,0.12);
  border-radius: 99px;
  overflow: hidden;
}

.bsf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bp-vivid), var(--bp-deep));
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bsf-progress-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bp-vivid);
  white-space: nowrap;
}

/* ── Steps ────────────────────────────────────────────────── */
.bsf-step {
  display: none;
  flex-direction: column;
  gap: 32px;
}

.bsf-step.active { display: flex; }

/* Step header */
.bsf-step-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.bsf-step-badge {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--bp-vivid), var(--bp-deep));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(90,42,130,0.25);
}

.bsf-step-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  color: #1e1b2e;
  margin-bottom: 4px;
  line-height: 1.3;
}

.bsf-step-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #7a6ea8;
}

/* Form body */
.bsf-form-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bsf-mt-20 { margin-top: 8px; }

/* Fields */
.bsf-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bsf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 540px) { .bsf-row-2 { grid-template-columns: 1fr; gap: 16px; } }

.bsf-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3d3558;
}

.bsf-req { color: var(--bp-vivid); }
.bsf-optional { color: #9a8db0; font-weight: 400; }

.bsf-input {
  padding: 14px 18px;
  border: 2px solid rgba(139,91,230,0.2);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1e1b2e;
  background: rgba(255,255,255,0.85);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.bsf-input:focus {
  border-color: var(--bp-vivid);
  box-shadow: 0 0 0 4px rgba(139,91,230,0.12);
  background: #fff;
}

.bsf-input::placeholder { color: #b5a8cc; }

.bsf-input-error {
  border-color: #e87d7d !important;
  box-shadow: 0 0 0 3px rgba(232,125,125,0.15) !important;
}

.bsf-err-msg {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 2px;
}

.bsf-textarea { resize: vertical; min-height: 90px; }

.bsf-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238B5BE6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* Pill group */
.bsf-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bsf-pill {
  padding: 9px 18px;
  border: 2px solid rgba(139,91,230,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  font-weight: 600;
  color: #4a4560;
  cursor: pointer;
  transition: all 0.22s ease;
}

.bsf-pill:hover {
  border-color: var(--bp-vivid);
  color: var(--bp-rich);
}

.bsf-pill.active {
  background: linear-gradient(135deg, rgba(139,91,230,0.15), rgba(78,30,112,0.08));
  border-color: var(--bp-vivid);
  color: var(--bp-rich);
}

/* Concern cards */
.bsf-concern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 560px) { .bsf-concern-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

.bsf-concern-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 12px;
  background: rgba(255,255,255,0.8);
  border: 2px solid rgba(139,91,230,0.16);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.bsf-concern-card:hover {
  border-color: var(--bp-vivid);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139,91,230,0.14);
}

.bsf-concern-card.active {
  background: linear-gradient(135deg, rgba(139,91,230,0.12), rgba(78,30,112,0.06));
  border-color: var(--bp-vivid);
  box-shadow: 0 6px 18px rgba(139,91,230,0.18);
}

.bsf-cc-emoji { font-size: 1.6rem; line-height: 1; }
.bsf-cc-text  { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: #3d3558; }

/* Urgency buttons */
.bsf-urgency-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 560px) { .bsf-urgency-group { grid-template-columns: 1fr; } }

.bsf-urgency-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 14px;
  background: rgba(255,255,255,0.8);
  border: 2px solid rgba(139,91,230,0.16);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.bsf-urgency-btn:hover {
  border-color: var(--bp-vivid);
  transform: translateY(-3px);
}

.bsf-urgency-btn.active {
  background: linear-gradient(135deg, rgba(139,91,230,0.12), rgba(78,30,112,0.06));
  border-color: var(--bp-vivid);
}

.bsf-ug-icon  { font-size: 1.6rem; }
.bsf-ug-text  { font-family: 'Inter', sans-serif; font-size: 0.87rem; font-weight: 700; color: #1e1b2e; }
.bsf-ug-sub   { font-family: 'Inter', sans-serif; font-size: 0.73rem; color: #7a6ea8; }

/* Step footer */
.bsf-step-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(139,91,230,0.1);
  margin-top: 16px;
}

.bsf-step-footer .bsf-back-btn {
  margin-right: auto;
}

.bsf-back-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a6ea8;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}

.bsf-back-btn:hover { color: var(--bp-rich); }

/* ── Step 5: Summary ──────────────────────────────────────── */
.bsf-summary-card {
  background: rgba(255,255,255,0.85);
  border: var(--bp-card-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(78,30,112,0.07);
}

.bsf-summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bp-rich);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(139,91,230,0.12);
}

.bsf-summary-grid { display: flex; flex-direction: column; gap: 10px; }

.bsf-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.bsf-sl {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #7a6ea8;
  font-weight: 500;
  white-space: nowrap;
}

.bsf-sv {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1e1b2e;
  font-weight: 600;
  text-align: right;
}

/* Pricing */
.bsf-pricing-card {
  background: linear-gradient(135deg, rgba(139,91,230,0.08), rgba(78,30,112,0.05));
  border: 1px solid rgba(139,91,230,0.18);
  border-radius: 16px;
  padding: 20px 24px;
}

.bsf-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bsf-pricing-note-row { margin-top: 8px; }

.bsf-pl {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #3d3558;
  font-weight: 600;
}

.bsf-pv {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bp-rich);
}

.bsf-pnote {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #7a6ea8;
  margin: 0;
}

/* Pay trust */
.bsf-pay-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.bsf-pt-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #3d3558;
}

/* Pay button */
.bsf-pay-btn {
  padding: 16px 32px;
  font-size: 1rem;
  gap: 10px;
}

/* ── SUCCESS ──────────────────────────────────────────────── */
.bsf-success-screen {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 20px 0;
}

.bsf-success-screen.active { display: flex !important; }

.bsf-success-icon {
  width: 96px; height: 96px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(34,197,94,0.3);
  animation: bsSuccessPop 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes bsSuccessPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.bsf-success-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1e1b2e;
}

.bsf-success-msg {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #5a5474;
  line-height: 1.7;
  max-width: 420px;
}

.bsf-success-detail {
  background: rgba(255,255,255,0.85);
  border: var(--bp-card-border);
  border-radius: 16px;
  padding: 20px 28px;
  width: 100%;
  max-width: 400px;
}

.bsf-sd-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #3d3558;
  padding: 6px 0;
  border-bottom: 1px solid rgba(139,91,230,0.1);
}

.bsf-sd-row:last-child { border-bottom: none; }
.bsf-sd-row span:first-child { color: #7a6ea8; font-weight: 500; }
.bsf-sd-row span:last-child  { font-weight: 600; text-align: right; }

.bsf-success-urgent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #5a5474;
}

.bsf-success-urgent a { color: var(--bp-vivid); font-weight: 600; }

.bsf-success-home { margin-top: 8px; }

/* ── FAILURE ──────────────────────────────────────────────── */
.bsf-fail-screen {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 20px 0;
}

.bsf-fail-screen.active { display: flex !important; }

.bsf-fail-icon {
  width: 88px; height: 88px;
  background: linear-gradient(135deg, #f87171, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(220,38,38,0.25);
}

.bsf-fail-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e1b2e;
}

.bsf-fail-msg {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #5a5474;
  line-height: 1.7;
  max-width: 380px;
}

.bsf-fail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   MOBILE MENU (shared utility)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: #fbf9ff;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    box-shadow: 0 10px 20px rgba(90,42,130,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    gap: 0;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
  }

  /* Breathing room on mobile */
  .bs-section { padding: 70px 6vw; }
}

/* Main Section Styling */
.counselors-section {
  background-color: #fcfbfe; /* Very soft, calming background */
  padding: 80px 20px;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography & Headings */
.counselors-section h2 {
  text-align: center;
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

/* Responsive Grid Layout */
.counselors-grid {
  display: grid;
  /* This automatically creates columns that fit the screen size */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Individual Card Styling */
.counselor-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0ebf5;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect to make the cards feel interactive */
.counselor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Circular Profile Pictures */
.counselor-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover; /* Prevents the image from stretching */
  border: 4px solid #f0ebf5; /* Subtle ring around the photo */
  margin-bottom: 24px;
}

/* Text Inside the Cards */
.text-content {
  width: 100%;
}

.text-content h3 {
  color: #2d2d2d;
  font-size: 1.5rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
}

.text-content p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: justify; /* Keeps the edges neat for longer bios */
  margin: 0;
}

/* Option 1: Target this specific card using its ID */
#svc-general {
  background-color: #fdf2f8; /* A very soft, calming light pink */
}

/* Option 2: Target the class (if you want to apply it to multiple cards) */
.bsv2-svc-mint {
  background-color: #fdf2f8; 
}

