/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --deep-teal: #0a3d3d;
  --forest: #00261b;
  --teal-mid: #1a5c5c;
  --teal-light: #2a7a7a;
  --cream: #fdf9f0;
  --cream-dark: #f5ede0;
  --saffron: #c4956a;
  --saffron-dark: #a87850;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-muted: #7a7a7a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(10,61,61,0.08);
  --shadow-md: 0 6px 24px rgba(10,61,61,0.12);
  --shadow-lg: 0 16px 48px rgba(10,61,61,0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Noto Serif', serif; line-height: 1.25; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ===== CRISIS BANNER ===== */
.crisis-banner {
  background: linear-gradient(90deg, #7a1515, #a01c1c);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1000;
}
.crisis-banner a { color: var(--gold-light); text-decoration: underline; }
.crisis-banner .numbers { display: inline-flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}
.nav-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-logo span.gold { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.1); color: var(--gold-light); }
.nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 24px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--saffron-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  background: var(--forest);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.mobile-menu.open { display: block; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--saffron); color: var(--white); }
.btn-primary:hover { background: var(--saffron-dark); }
.btn-outline { background: transparent; border: 2px solid var(--saffron); color: var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: var(--white); }
.btn-teal { background: var(--deep-teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-mid); }
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: var(--gold-light); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep-teal) 50%, #1a5c4a 100%);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(196,149,106,0.12) 0%, transparent 70%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: 0.5; transform: scale(1); }
  to   { opacity: 1; transform: scale(1.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
}
.hero-content { position: relative; z-index: 2; max-width: 740px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.2);
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 em { color: var(--saffron); font-style: normal; }
.hero p {
  font-size: 1.1rem;
  color: rgba(253,249,240,0.82);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-search {
  background: var(--white);
  border-radius: 20px;
  padding: 8px;
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: 640px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-lg);
}
.hero-search select, .hero-search input {
  flex: 1; min-width: 140px;
  border: none; outline: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
}
.hero-search .btn { flex-shrink: 0; border-radius: 14px; }

.trust-strip {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  color: rgba(253,249,240,0.7);
  font-size: 0.85rem; font-weight: 600;
}
.trust-strip span { display: flex; align-items: center; gap: 6px; }
.trust-strip .dot { color: var(--gold); font-size: 1.2rem; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(10,61,61,0.08);
  color: var(--deep-teal);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--deep-teal); margin-bottom: 12px; }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; line-height: 1.7; margin-bottom: 40px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto 40px; }

/* ===== CONDITION CARDS ===== */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.condition-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
}
.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}
.condition-card .icon { font-size: 2.2rem; margin-bottom: 10px; }
.condition-card h4 { font-size: 0.9rem; color: var(--deep-teal); font-family: 'Manrope', sans-serif; font-weight: 700; }

/* ===== THERAPIST CARDS ===== */
.therapists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.therapist-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.therapist-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.therapist-card .card-header {
  background: linear-gradient(135deg, var(--deep-teal), var(--teal-mid));
  padding: 24px;
  display: flex; align-items: center; gap: 16px;
}
.therapist-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--cream);
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.3);
}
.therapist-info { flex: 1; min-width: 0; }
.therapist-info h3 { color: var(--cream); font-size: 1.05rem; margin-bottom: 4px; font-family: 'Noto Serif', serif; }
.therapist-info .qual { color: rgba(253,249,240,0.75); font-size: 0.78rem; }
.therapist-info .location { color: rgba(253,249,240,0.65); font-size: 0.78rem; margin-top: 4px; }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; }
.badge-gold { background: var(--gold); color: var(--forest); }
.badge-teal { background: rgba(42,122,122,0.18); color: var(--teal-light); }
.badge-verified { background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.4); }
.card-body { padding: 20px 24px; }
.card-body .rating { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.card-body .stars { color: #f59e0b; }
.card-body .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { background: rgba(10,61,61,0.07); color: var(--deep-teal); padding: 4px 12px; border-radius: 20px; font-size: 0.73rem; font-weight: 600; }
.card-footer { padding: 0 24px 20px; display: flex; align-items: center; justify-content: space-between; }
.card-footer .fee { font-weight: 700; color: var(--deep-teal); font-size: 0.9rem; }
.card-footer .fee span { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }

/* ===== HOW IT WORKS ===== */
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-number {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--deep-teal), var(--teal-mid));
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Noto Serif', serif;
}
.step-card h3 { font-size: 1.1rem; color: var(--deep-teal); margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Noto Serif', serif;
  font-size: 5rem;
  color: var(--cream-dark);
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
  z-index: 0;
}
.testimonial-card p { position: relative; z-index: 1; color: var(--text-mid); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem;
}
.author-info .name { font-weight: 700; font-size: 0.88rem; color: var(--deep-teal); }
.author-info .detail { font-size: 0.78rem; color: var(--text-muted); }

/* ===== ASSESSMENT SECTION ===== */
.assessment-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.assessment-card {
  background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--cream);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: var(--shadow-md);
}
.assessment-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.assessment-card .assess-icon { font-size: 2.8rem; margin-bottom: 16px; }
.assessment-card h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 8px; }
.assessment-card p { color: rgba(253,249,240,0.75); font-size: 0.88rem; margin-bottom: 20px; }
.assessment-card .assess-meta { font-size: 0.78rem; color: rgba(253,249,240,0.6); display: flex; gap: 16px; }

/* ===== FOOTER ===== */
footer {
  background: var(--forest);
  color: rgba(255,255,255,0.72);
  padding: 60px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { font-family: 'Noto Serif', serif; font-size: 1.4rem; color: var(--cream); margin-bottom: 12px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { color: var(--cream); font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.83rem; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; font-size: 0.78rem; gap: 12px; flex-wrap: wrap; }
.footer-bottom .disclaimer { max-width: 500px; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* ===== SEARCH PAGE ===== */
.search-header {
  background: linear-gradient(135deg, var(--forest), var(--deep-teal));
  padding: 48px 24px;
  text-align: center;
}
.search-header h1 { color: var(--cream); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 10px; }
.search-header p { color: rgba(253,249,240,0.72); font-size: 0.95rem; }
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.filter-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky; top: 88px;
}
.filter-panel h3 { color: var(--deep-teal); font-size: 1rem; margin-bottom: 20px; font-family: 'Manrope', sans-serif; font-weight: 700; }
.filter-group { margin-bottom: 24px; }
.filter-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-mid); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.filter-group select, .filter-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(10,61,61,0.15);
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--teal-light); }
.chip-group { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  padding: 5px 13px;
  border: 1.5px solid rgba(10,61,61,0.18);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.chip:hover, .chip.active { background: var(--deep-teal); color: var(--cream); border-color: var(--deep-teal); }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-header .count { font-size: 0.9rem; color: var(--text-muted); }
.results-header select { padding: 8px 14px; border: 1.5px solid rgba(10,61,61,0.15); border-radius: 10px; font-family: 'Manrope', sans-serif; font-size: 0.85rem; background: var(--white); }

/* ===== PROFILE PAGE ===== */
.profile-hero {
  background: linear-gradient(135deg, var(--forest), var(--deep-teal));
  padding: 60px 24px;
}
.profile-hero-inner { max-width: 1000px; margin: 0 auto; display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.profile-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid), var(--saffron));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--white);
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  flex-shrink: 0;
  border: 4px solid rgba(255,255,255,0.25);
}
.profile-details { flex: 1; min-width: 0; }
.profile-details h1 { color: var(--cream); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 6px; }
.profile-details .qual-line { color: rgba(253,249,240,0.72); font-size: 0.9rem; margin-bottom: 12px; }
.profile-details .badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.profile-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.profile-stats .stat { text-align: center; }
.profile-stats .stat .val { font-size: 1.8rem; font-weight: 700; color: var(--cream); font-family: 'Noto Serif', serif; }
.profile-stats .stat .lbl { font-size: 0.72rem; color: rgba(253,249,240,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.profile-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; max-width: 1000px; margin: 0 auto; padding: 40px 24px; }
.profile-main > * + * { margin-top: 24px; }
.profile-section { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.profile-section h2 { font-size: 1.15rem; color: var(--deep-teal); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(10,61,61,0.08); }
.profile-section p { color: var(--text-mid); line-height: 1.75; font-size: 0.92rem; }
.timings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
.timing-slot { background: rgba(10,61,61,0.05); border-radius: 10px; padding: 10px 12px; font-size: 0.8rem; }
.timing-slot .day { font-weight: 700; color: var(--deep-teal); margin-bottom: 2px; }
.timing-slot .time { color: var(--text-muted); }
.review-item { border-bottom: 1px solid rgba(10,61,61,0.07); padding: 16px 0; }
.review-item:last-child { border-bottom: none; }
.review-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.review-meta .reviewer { font-weight: 700; font-size: 0.88rem; color: var(--deep-teal); }
.review-meta .date { font-size: 0.75rem; color: var(--text-muted); }
.review-item p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.65; }
.sticky-sidebar { position: sticky; top: 88px; }
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.lead-form h3 { font-size: 1.1rem; color: var(--deep-teal); margin-bottom: 6px; }
.lead-form .sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(10,61,61,0.15);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal-light); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success { background: rgba(10,100,61,0.08); border: 1px solid rgba(10,100,61,0.2); border-radius: 12px; padding: 16px; text-align: center; color: #1a6b3a; font-size: 0.88rem; display: none; }

/* ===== PRICING PAGE ===== */
.pricing-section { background: var(--cream); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto 60px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: linear-gradient(160deg, var(--deep-teal), var(--teal-mid));
  color: var(--cream);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--saffron); color: var(--white);
  padding: 4px 20px; border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pricing-card.featured h3 { color: var(--cream); }
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-amount .amt { font-size: 2.8rem; font-weight: 800; font-family: 'Noto Serif', serif; color: var(--deep-teal); }
.pricing-card.featured .amt { color: var(--gold-light); }
.pricing-amount .per { color: var(--text-muted); font-size: 0.85rem; }
.pricing-card.featured .per { color: rgba(253,249,240,0.65); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(253,249,240,0.72); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-mid); padding: 7px 0; border-bottom: 1px solid rgba(10,61,61,0.06); }
.pricing-card.featured .pricing-features li { color: rgba(253,249,240,0.85); border-color: rgba(255,255,255,0.08); }
.pricing-features li .check { color: var(--teal-light); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-features li .check { color: var(--gold-light); }
.pricing-features li .cross { color: #ccc; flex-shrink: 0; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-md); margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: none; border: none; font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--deep-teal); cursor: pointer; text-align: left; gap: 12px; }
.faq-q .arrow { transition: transform 0.2s; flex-shrink: 0; }
.faq-q.open .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; padding: 0 24px 18px; }
.faq-a p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--forest), var(--deep-teal));
  padding: 80px 24px;
  text-align: center;
}
.about-hero h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.about-hero p { color: rgba(253,249,240,0.8); max-width: 580px; margin: 0 auto; font-size: 1.05rem; line-height: 1.75; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.mission-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.mission-card .m-icon { font-size: 2.4rem; margin-bottom: 16px; }
.mission-card h3 { color: var(--deep-teal); font-size: 1.05rem; margin-bottom: 10px; }
.mission-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--deep-teal), var(--teal-light)); margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--cream); font-family: 'Noto Serif', serif; font-weight: 700; }
.team-card h4 { color: var(--deep-teal); font-size: 0.95rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.78rem; color: var(--saffron); font-weight: 700; margin-bottom: 8px; }
.team-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ASSESSMENT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  max-width: 560px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  position: relative;
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }
.modal h2 { color: var(--deep-teal); margin-bottom: 6px; font-size: 1.4rem; }
.modal .modal-sub { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }
.quiz-progress { height: 6px; background: rgba(10,61,61,0.1); border-radius: 3px; margin-bottom: 24px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, var(--teal-mid), var(--saffron)); border-radius: 3px; transition: width 0.4s ease; }
.quiz-q { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; margin-bottom: 16px; line-height: 1.5; }
.quiz-options { display: grid; gap: 8px; }
.quiz-option {
  padding: 12px 16px;
  border: 1.5px solid rgba(10,61,61,0.15);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.87rem;
  color: var(--text-mid);
  cursor: pointer;
  text-align: left;
  background: var(--cream);
  transition: all 0.18s;
}
.quiz-option:hover { border-color: var(--teal-light); background: rgba(10,61,61,0.05); }
.quiz-option.selected { border-color: var(--deep-teal); background: rgba(10,61,61,0.08); color: var(--deep-teal); font-weight: 600; }
.quiz-nav { display: flex; gap: 12px; margin-top: 20px; }
.quiz-result { text-align: center; padding: 12px 0; }
.quiz-result .score-circle { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--deep-teal), var(--teal-mid)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; flex-direction: column; }
.quiz-result .score-circle .score-num { font-size: 2rem; font-weight: 700; color: var(--cream); font-family: 'Noto Serif', serif; }
.quiz-result .score-circle .score-max { font-size: 0.75rem; color: rgba(253,249,240,0.7); }
.quiz-result h3 { color: var(--deep-teal); margin-bottom: 8px; }
.quiz-result .result-band { display: inline-block; padding: 4px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; margin-bottom: 14px; }
.quiz-result p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== AI CHAT WIDGET ===== */
.chat-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--deep-teal), var(--teal-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 8000;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-fab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(10,61,61,0.35); }
.chat-bubble {
  position: absolute; bottom: 70px; right: 0;
  background: var(--forest); color: var(--cream);
  padding: 8px 14px;
  border-radius: 16px 16px 4px 16px;
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: chatBounce 3s ease-in-out infinite;
}
@keyframes chatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) { @keyframes chatBounce { from { transform: none; } to { transform: none; } } }
.chat-window {
  position: fixed; bottom: 100px; right: 28px;
  width: 340px; max-height: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 8000;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
  transform-origin: bottom right;
}
.chat-window.open { transform: scale(1) translateY(0); opacity: 1; visibility: visible; }
.chat-head {
  background: linear-gradient(135deg, var(--deep-teal), var(--teal-mid));
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.chat-head .mano-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.chat-head .mano-info { flex: 1; }
.chat-head .mano-info .name { color: var(--cream); font-weight: 700; font-size: 0.9rem; }
.chat-head .mano-info .status { color: rgba(253,249,240,0.7); font-size: 0.72rem; }
.chat-head .close-chat { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1.1rem; }
.chat-messages { flex: 1; padding: 16px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 80%; }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg .bubble { padding: 10px 14px; border-radius: 16px; font-size: 0.83rem; line-height: 1.55; }
.chat-msg.bot .bubble { background: var(--cream-dark); color: var(--text-dark); border-radius: 4px 16px 16px 16px; }
.chat-msg.user .bubble { background: var(--deep-teal); color: var(--cream); border-radius: 16px 16px 4px 16px; }
.chat-quick { padding: 0 16px 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.quick-btn { padding: 5px 12px; background: rgba(10,61,61,0.07); border: 1.5px solid rgba(10,61,61,0.15); border-radius: 20px; font-size: 0.75rem; font-weight: 600; color: var(--deep-teal); cursor: pointer; transition: all 0.18s; }
.quick-btn:hover { background: var(--deep-teal); color: var(--cream); }
.chat-input-row { display: flex; gap: 8px; padding: 12px 16px; border-top: 1px solid rgba(10,61,61,0.08); }
.chat-input-row input { flex: 1; padding: 10px 14px; border: 1.5px solid rgba(10,61,61,0.15); border-radius: 24px; font-family: 'Manrope', sans-serif; font-size: 0.85rem; outline: none; background: var(--cream); }
.chat-input-row input:focus { border-color: var(--teal-light); }
.chat-send { width: 38px; height: 38px; background: var(--deep-teal); border: none; border-radius: 50%; color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; transition: background 0.2s; }
.chat-send:hover { background: var(--teal-mid); }

/* ===== MOBILE NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--forest);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  z-index: 700;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-bottom-nav nav { display: flex; justify-content: space-around; }
.mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; color: rgba(255,255,255,0.55); font-size: 0.65rem; font-weight: 600; padding: 4px 12px; }
.mobile-bottom-nav a .icon { font-size: 1.3rem; }
.mobile-bottom-nav a.active { color: var(--gold-light); }

/* ===== MISC ===== */
.teal-bg { background: linear-gradient(135deg, var(--deep-teal) 0%, #1a5c4a 100%); }
.stats-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; padding: 48px 24px; background: var(--deep-teal); }
.stat-item { text-align: center; }
.stat-item .val { font-size: 2.2rem; font-weight: 800; color: var(--gold-light); font-family: 'Noto Serif', serif; }
.stat-item .lbl { font-size: 0.82rem; color: rgba(253,249,240,0.7); margin-top: 4px; }
.divider { height: 1px; background: rgba(10,61,61,0.1); max-width: 1200px; margin: 0 auto; }
.empty-state { text-align: center; padding: 60px 24px; color: var(--text-muted); font-size: 0.95rem; }
.empty-state .icon { font-size: 3rem; margin-bottom: 12px; }
.page-hidden { display: none !important; }

/* ===== DIRECTORY LAYOUT ===== */
.dir-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  align-items: start;
}
.search-bar-wrap {
  background: var(--cream-dark);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(10,61,61,0.08);
}
.search-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.search-bar-inner input, .search-bar-inner select {
  flex: 1;
  min-width: 150px;
  padding: 11px 16px;
  border: 1.5px solid rgba(10,61,61,0.15);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.search-bar-inner input:focus, .search-bar-inner select:focus { border-color: var(--teal-light); }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form-wrap { min-width: 0; }
.contact-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ctab {
  padding: 9px 20px;
  border: 1.5px solid rgba(10,61,61,0.18);
  border-radius: 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.ctab:hover { border-color: var(--teal-mid); color: var(--teal-mid); }
.ctab.active { background: var(--deep-teal); color: var(--cream); border-color: var(--deep-teal); }
.contact-form { display: none; }
.contact-form.active-form { display: block; }
.contact-form h3 { color: var(--deep-teal); font-size: 1.3rem; margin-bottom: 6px; }
.form-intro { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 24px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-privacy { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; }
.form-success {
  background: rgba(10,100,61,0.08);
  border: 1px solid rgba(10,100,61,0.2);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  color: #1a6b3a;
  font-size: 0.9rem;
  display: none;
  line-height: 1.6;
  margin-top: 12px;
}
.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h3 { color: var(--deep-teal); font-size: 1rem; margin-bottom: 16px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; }
.ci-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.ci-val { font-size: 0.88rem; color: var(--deep-teal); font-weight: 600; margin-top: 2px; display: block; }
.crisis-contact-card {
  background: linear-gradient(135deg, #7a1515, #a01c1c);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  color: var(--cream);
}
.crisis-contact-card h4 { color: var(--cream); font-size: 1rem; margin-bottom: 8px; }
.crisis-contact-card p { font-size: 0.82rem; color: rgba(253,249,240,0.8); line-height: 1.6; margin-bottom: 16px; }

/* ===== PROFILE PAGE ===== */
.profile-wrap { min-height: 80vh; }
.story-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-stat {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.story-stat .val { font-size: 1.8rem; font-weight: 800; color: var(--deep-teal); font-family: 'Noto Serif', serif; }
.story-stat .lbl { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.trust-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.trust-icon { font-size: 2rem; margin-bottom: 10px; }
.trust-block h3 { color: var(--deep-teal); font-size: 1rem; margin-bottom: 8px; }
.trust-block p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ===== PRICING COMPARE TABLE ===== */
.compare-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 0;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.compare-table th, .compare-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(10,61,61,0.07);
}
.compare-table th { font-weight: 700; color: var(--deep-teal); background: rgba(10,61,61,0.04); }
.compare-table td:first-child { text-align: left; color: var(--text-mid); }
.compare-table .featured-col { background: rgba(10,61,61,0.04); color: var(--deep-teal); font-weight: 600; }
.compare-table th.featured-col { background: rgba(10,61,61,0.1); }

/* ===== FOR-THERAPISTS HERO ===== */
.ft-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep-teal) 60%, #1a5c4a 100%);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ft-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201,162,39,0.1) 0%, transparent 70%);
  animation: heroGlow 7s ease-in-out infinite alternate;
}
.ft-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.ft-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--cream); margin-bottom: 16px; }
.ft-hero h1 em { color: var(--saffron); font-style: normal; }
.ft-hero p { color: rgba(253,249,240,0.82); font-size: 1.05rem; max-width: 540px; margin: 0 auto; line-height: 1.75; }

/* ===== BREADCRUMB BAR ===== */
.breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(10,61,61,0.08);
  padding: 12px 24px;
}
.breadcrumb-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.breadcrumb-inner a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-mid);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.breadcrumb-inner a:hover { color: var(--deep-teal); }

/* ===== RESPONSIVE SPLIT (about / index sections) ===== */
.responsive-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ===== PROFILE PAGE FULL ===== */
#profileHeroContent {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.profile-back-bar {
  background: rgba(255,255,255,0.07);
  padding: 10px 24px;
  font-size: 0.82rem;
}
.profile-back-bar a { color: rgba(253,249,240,0.7); }

/* ===== SIMILAR THERAPISTS ===== */
#similarTherapists {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ===== ABOUT VISUAL ===== */
.about-story-visual {
  padding: 8px 0;
}

/* ===== SEARCH BAR RESPONSIVE ===== */
@media (max-width: 900px) {
  .search-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .search-bar-inner input,
  .search-bar-inner select {
    min-width: unset;
    width: 100%;
  }
  .responsive-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .dir-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px 48px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .search-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: none; }
  .filter-panel.mobile-open { display: block; }
  .profile-layout { grid-template-columns: 1fr; padding: 24px 16px 48px; }
  .sticky-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #profileHeroContent { flex-direction: column; align-items: center; text-align: center; }
  .profile-stats { justify-content: center; }
  .profile-details .badges { justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 56px 16px; }
  .hero { padding: 56px 16px 72px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 72px; }
  .chat-fab { bottom: 90px; right: 18px; }
  .chat-window { right: 10px; width: calc(100vw - 20px); bottom: 110px; }
  .pricing-card.featured { transform: scale(1); }
  .hero-search { flex-direction: column; }
  .hero-search select, .hero-search input { min-width: unset; }
}


/* ─── Locked contact / claim overlay ───────────────────────── */
.contact-locked { position: relative; border-radius: 16px; overflow: hidden; }
.contact-blur { filter: blur(6px); user-select: none; pointer-events: none; padding: 18px; background: rgba(10,61,61,0.04); border-radius: 16px; font-size: 1rem; line-height: 2; }
.contact-locked-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 16px; background: rgba(253,249,240,0.55); }
#dirPagination button[disabled] { opacity: 0.4; cursor: not-allowed; }


/* ─── Join / registration page ─────────────────────────────── */
.join-wrap { max-width: 720px; margin: 32px auto 64px; padding: 0 20px; display: flex; flex-direction: column; gap: 24px; }
.join-card { background: #fff; border-radius: 20px; padding: 28px; box-shadow: 0 6px 24px rgba(10,61,61,0.08); }
.join-card h3 { font-family: 'Noto Serif', serif; color: var(--teal-deep, #0a3d3d); margin-bottom: 8px; }
.join-tabs { display: flex; gap: 8px; margin-bottom: 20px; border-bottom: 1px solid rgba(10,61,61,0.1); }
.join-tab { background: none; border: none; padding: 10px 18px; font-weight: 700; color: var(--text-muted, #6b7b73); cursor: pointer; border-bottom: 3px solid transparent; font-family: inherit; font-size: 0.95rem; }
.join-tab.active { color: var(--teal-deep, #0a3d3d); border-bottom-color: var(--saffron, #c4956a); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field-hint { font-size: 0.78rem; color: var(--text-muted, #6b7b73); margin-top: 5px; line-height: 1.5; }
.field-hint-inline { font-weight: 400; font-size: 0.78rem; color: var(--text-muted, #6b7b73); }
.form-error { background: rgba(220,38,38,0.08); color: #b91c1c; border-radius: 12px; padding: 12px 16px; font-size: 0.88rem; margin-top: 14px; }
.check-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border: 1.5px solid rgba(10,61,61,0.15); border-radius: 999px; font-size: 0.88rem; cursor: pointer; }
.badge-selflisted { background: rgba(196,149,106,0.15); color: #8a5a2b; border: 1px solid rgba(196,149,106,0.4); }


/* ─── Admin area ───────────────────────────────────────────── */
.admin-stats { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-bottom: 20px; }
.stat-tile { background: #fff; border-radius: 16px; padding: 18px; text-align: center; box-shadow: 0 4px 16px rgba(10,61,61,0.06); }
.stat-tile .num { font-family: 'Noto Serif', serif; font-size: 1.6rem; font-weight: 700; color: var(--teal-deep, #0a3d3d); }
.stat-tile .lbl { font-size: 0.75rem; color: var(--text-muted, #6b7b73); margin-top: 4px; }
.admin-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 800px) { .admin-cols { grid-template-columns: 1fr; } }
.admin-list { margin-top: 10px; }
.admin-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(10,61,61,0.08); font-size: 0.92rem; flex-wrap: wrap; }
.admin-row:last-child { border-bottom: none; }
.muted { color: var(--text-muted, #6b7b73); font-size: 0.82rem; }


/* ─── Crawlable card links & pagination ────────────────────── */
a.therapist-card { display: block; text-decoration: none; color: inherit; }
.pg-disabled { opacity: 0.4; pointer-events: none; }
