/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2744;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-pale: #dbeafe;
  --blue-xpale: #eff6ff;
  --teal: #0891b2;
  --green: #059669;
  --green-pale: #d1fae5;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f9fafb;
  --white: #ffffff;
  --red: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,.12), 0 8px 32px rgba(0,0,0,.08);
}

body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: var(--blue); text-decoration: none; cursor: pointer; }
a:hover { text-decoration: underline; }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 60px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 0 var(--border);
}
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.2rem; font-weight: 800; color: var(--navy); text-decoration: none; }
.logo-icon { font-size: 1.3rem; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .9rem; }
.nav-links a { color: var(--text-muted); font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); text-decoration: none; }
.btn-nav-client {
  background: var(--navy); color: white !important; border-radius: var(--radius-sm);
  padding: 6px 16px; font-size: .85rem; font-weight: 600; transition: background .15s;
}
.btn-nav-client:hover { background: var(--blue) !important; text-decoration: none !important; }
.btn-nav-client.logged-in { background: transparent; color: var(--navy) !important; border: 1.5px solid var(--border); }
.btn-nav-client.logged-in:hover { border-color: var(--navy); background: transparent !important; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0f1f3d 0%, #1a2744 55%, #1e3a5f 100%);
  color: white; text-align: center; padding: 72px 24px 80px;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px; padding: 5px 14px; font-size: .82rem; font-weight: 500;
  margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero-sub { font-size: 1.1rem; opacity: .88; margin-bottom: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-location { font-size: .88rem; opacity: .65; margin-bottom: 32px; }

.search-bar {
  display: flex; background: white; border-radius: 50px;
  overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.25);
  max-width: 480px; margin: 0 auto;
}
.search-field { flex: 1; display: flex; align-items: center; padding: 0 20px; gap: 10px; }
.search-field input { border: none; outline: none; font-size: 1rem; width: 100%; color: var(--text); }
.search-icon { font-size: 1rem; }
.btn-search {
  background: var(--blue); color: white; border: none; cursor: pointer;
  padding: 0 28px; font-size: 1rem; font-weight: 600; border-radius: 0 50px 50px 0;
  transition: background .15s;
}
.btn-search:hover { background: var(--blue-light); }
.search-hint { font-size: .78rem; opacity: .55; margin-top: 12px; }

/* ── Main Layout ──────────────────────────────────────────── */
.main-layout { display: flex; gap: 24px; max-width: 1200px; margin: 0 auto; padding: 32px 24px; align-items: flex-start; }

/* ── Filters ──────────────────────────────────────────────── */
.filters-panel {
  width: 260px; flex-shrink: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; position: sticky; top: 76px;
}
.filters-panel h3 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .05em; }
.filter-group { margin-bottom: 18px; }
.filter-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.filter-group select, .filter-group input[type="text"] {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px 10px; font-size: .9rem; background: var(--bg); color: var(--text);
  outline: none; transition: border-color .15s;
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--blue-light); }
.fee-row { display: flex; align-items: center; gap: 10px; }
.fee-row input[type="range"] { flex: 1; accent-color: var(--blue-light); }
#fee-label { font-size: .85rem; font-weight: 600; color: var(--blue); min-width: 44px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 400 !important; color: var(--text) !important; text-transform: none !important; letter-spacing: 0 !important; cursor: pointer; }
.checkbox-label input { accent-color: var(--blue-light); width: 15px; height: 15px; }
.btn-filter {
  width: 100%; background: var(--navy); color: white; border: none; border-radius: var(--radius-sm);
  padding: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; margin-top: 8px; transition: background .15s;
}
.btn-filter:hover { background: var(--blue); }
.btn-clear {
  width: 100%; background: none; color: var(--text-muted); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 8px; font-size: .85rem; cursor: pointer; margin-top: 8px; transition: all .15s;
}
.btn-clear:hover { border-color: var(--text-muted); color: var(--text); }

/* ── Results ──────────────────────────────────────────────── */
.results-section { flex: 1; min-width: 0; }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.results-count { font-size: .95rem; color: var(--text-muted); font-weight: 500; }
.availability-badge { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--green); font-weight: 600; background: var(--green-pale); padding: 5px 12px; border-radius: 20px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; display: inline-block; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.results-grid { display: flex; flex-direction: column; gap: 16px; }

/* ── Therapist Card ───────────────────────────────────────── */
.therapist-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 20px; transition: box-shadow .2s, transform .15s;
  cursor: pointer; text-decoration: none; color: inherit; position: relative;
}
.therapist-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-1px); text-decoration: none; }

.card-avatar {
  width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 700; color: var(--navy); overflow: hidden;
}
.card-avatar img { width: 100%; height: 100%; object-fit: cover; }

.card-body { flex: 1; min-width: 0; }
.card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.card-name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.card-creds { font-size: .83rem; color: var(--text-muted); margin-bottom: 3px; }
.card-location { font-size: .83rem; color: var(--text-muted); margin-bottom: 10px; }
.card-bio { font-size: .88rem; color: #374151; line-height: 1.55; margin-bottom: 12px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tag { background: var(--blue-xpale); color: var(--blue); border: 1px solid var(--blue-pale); border-radius: 20px; padding: 2px 10px; font-size: .78rem; font-weight: 500; }
.tag.insurance { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.tag.format { background: #fef9c3; color: #854d0e; border-color: #fef08a; }
.tag.plpc { background: #faf5ff; color: #7c3aed; border-color: #e9d5ff; font-weight: 600; }

.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.card-fee { font-size: .88rem; font-weight: 600; color: var(--text); }
.card-fee .sliding { color: var(--green); font-weight: 400; font-size: .8rem; margin-left: 6px; }
.card-accepting { display: flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 600; color: var(--green); background: var(--green-pale); padding: 4px 10px; border-radius: 20px; }
.card-accepting::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; }

/* Favorite button on card */
.fav-btn {
  position: absolute; top: 16px; right: 16px; background: none; border: none;
  font-size: 1.4rem; cursor: pointer; opacity: .4; transition: opacity .15s, transform .15s;
  line-height: 1; padding: 4px;
}
.fav-btn:hover { opacity: .8; transform: scale(1.15); }
.fav-btn.active { opacity: 1; }

/* ── Full Profile ─────────────────────────────────────────── */
.profile-page { max-width: 860px; margin: 40px auto; padding: 0 24px 80px; }
.profile-hero { display: flex; gap: 32px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 24px; }
.profile-avatar {
  width: 120px; height: 120px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; font-weight: 700; color: var(--navy); overflow: hidden;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { flex: 1; }
.profile-name { font-size: 1.7rem; font-weight: 800; margin-bottom: 4px; }
.profile-creds { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.profile-location { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
.profile-accepting-banner {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green-pale);
  color: #065f46; border: 1px solid #6ee7b7; border-radius: var(--radius-sm);
  padding: 8px 16px; font-weight: 600; font-size: .88rem; margin-bottom: 16px;
}
.profile-accepting-banner::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: #22c55e; display: inline-block; }
.profile-contact-btns { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-contact {
  background: var(--navy); color: white; border: none; border-radius: var(--radius-sm);
  padding: 10px 20px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: background .15s;
  text-decoration: none; display: inline-block;
}
.btn-contact:hover { background: var(--blue); color: white; text-decoration: none; }
.btn-contact.secondary { background: var(--white); color: var(--navy); border: 1.5px solid var(--navy); }
.btn-contact.secondary:hover { background: var(--blue-xpale); }
.btn-contact.fav { background: var(--white); color: #be185d; border: 1.5px solid #fbcfe8; font-size: .88rem; }
.btn-contact.fav:hover { background: #fdf2f8; }
.btn-contact.fav.active { background: #fdf2f8; border-color: #f9a8d4; }

.profile-sections { display: flex; flex-direction: column; gap: 20px; }
.profile-section { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.profile-section h3 { font-size: .95rem; font-weight: 700; margin-bottom: 14px; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 10px; text-transform: uppercase; letter-spacing: .04em; }
.profile-bio { font-size: .95rem; line-height: 1.75; color: #374151; }
.profile-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.detail-item label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); display: block; margin-bottom: 4px; }
.detail-item span { font-size: .92rem; font-weight: 500; color: var(--text); }

/* ── Loading / Empty ──────────────────────────────────────── */
.loading-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--blue-light); border-radius: 50%; animation: spin .7s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); max-width: 360px; margin: 0 auto; }

/* ── Auth ─────────────────────────────────────────────────── */
.auth-container { max-width: 480px; margin: 56px auto 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); }
.auth-tab { flex: 1; padding: 14px; border: none; background: var(--bg); font-size: .95rem; font-weight: 600; cursor: pointer; color: var(--text-muted); transition: all .15s; }
.auth-tab.active { background: var(--white); color: var(--navy); border-bottom: 2.5px solid var(--navy); }
.auth-form { padding: 32px; }
.auth-form h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.auth-sub { color: var(--text-muted); margin-bottom: 24px; font-size: .9rem; }
.form-error { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; border-radius: var(--radius-sm); padding: 10px 14px; font-size: .88rem; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.label-hint { font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .8rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 12px; font-size: .95rem; background: var(--white); color: var(--text);
  outline: none; transition: border-color .15s; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue-light); }
.form-group textarea { resize: vertical; }
.form-row { display: flex; gap: 12px; }
.form-row .form-group { flex: 1; }
.btn-primary {
  background: var(--navy); color: white; border: none; border-radius: var(--radius-sm);
  padding: 11px 24px; font-size: .95rem; font-weight: 600; cursor: pointer; transition: background .15s;
}
.btn-primary:hover { background: var(--blue); }
.btn-primary.full-width { width: 100%; }
.auth-switch { margin-top: 16px; font-size: .88rem; color: var(--text-muted); }
.auth-switch a { color: var(--blue); cursor: pointer; }
.demo-note { margin-top: 16px; font-size: .8rem; color: var(--text-muted); background: var(--bg); border-radius: var(--radius-sm); padding: 10px 12px; border: 1px solid var(--border); }

/* ── Why Join ─────────────────────────────────────────────── */
.why-join { max-width: 860px; margin: 48px auto; padding: 0 24px; }
.why-join h3 { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 24px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.why-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Dashboard ────────────────────────────────────────────── */
.dashboard-layout { display: flex; max-width: 1100px; margin: 0 auto; padding: 32px 24px; gap: 28px; align-items: flex-start; }
.dash-sidebar {
  width: 220px; flex-shrink: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  position: sticky; top: 76px; text-align: center;
}
.dash-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 0 auto 12px;
}
.dash-name { font-weight: 700; font-size: 1rem; margin-bottom: 2px; }
.dash-creds { font-size: .82rem; color: var(--text-muted); margin-bottom: 12px; }
.dash-preview-link { font-size: .82rem; color: var(--blue); display: block; margin-bottom: 20px; }
.dash-nav { display: flex; flex-direction: column; gap: 4px; text-align: left; }
.dash-nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 12px; border-radius: var(--radius-sm); font-size: .88rem; font-weight: 500;
  color: var(--text-muted); cursor: pointer; transition: all .15s; text-decoration: none; position: relative;
}
.dash-nav-item:hover, .dash-nav-item.active { background: var(--blue-xpale); color: var(--navy); text-decoration: none; }
.unread-badge {
  background: var(--red); color: white; border-radius: 10px;
  padding: 1px 7px; font-size: .72rem; font-weight: 700; margin-left: auto;
}

.dash-content { flex: 1; }
.dash-tab { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.dash-section-header { margin-bottom: 28px; }
.dash-section-header h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.dash-section-header p { color: var(--text-muted); font-size: .92rem; }

/* ── Availability Card ────────────────────────────────────── */
.availability-card {
  background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; transition: border-color .3s, background .3s;
}
.availability-card.open { border-color: #86efac; background: #f0fdf4; }
.availability-card.closed { border-color: #fca5a5; background: #fff5f5; }
.avail-badge { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.avail-badge.open { color: #065f46; }
.avail-badge.closed { color: #dc2626; }
.avail-dot { width: 12px; height: 12px; border-radius: 50%; background: #22c55e; display: inline-block; animation: pulse 1.8s infinite; }
.avail-badge.closed .avail-dot { background: #ef4444; animation: none; }
.avail-desc { font-size: .88rem; color: var(--text-muted); }
.toggle-switch { position: relative; display: inline-block; width: 60px; height: 32px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: #d1d5db; border-radius: 32px; cursor: pointer; transition: .3s; }
.toggle-slider::before { content: ''; position: absolute; width: 26px; height: 26px; left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: .3s; box-shadow: 0 1px 4px rgba(0,0,0,.2); }
input:checked + .toggle-slider { background: #22c55e; }
input:checked + .toggle-slider::before { transform: translateX(28px); }
.avail-explainer { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px 24px; background: var(--bg); }
.avail-explainer h4 { font-size: .9rem; font-weight: 700; margin-bottom: 12px; }
.avail-explainer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.avail-explainer li { font-size: .88rem; color: var(--text-muted); }

/* ── Inquiry cards (therapist dashboard) ─────────────────── */
.inquiry-card { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 12px; background: var(--bg); }
.inquiry-card.unread { background: var(--blue-xpale); border-color: var(--blue-pale); }
.inquiry-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.inquiry-from { font-weight: 700; font-size: .92rem; }
.inquiry-date { font-size: .78rem; color: var(--text-muted); }
.inquiry-contact { font-size: .82rem; color: var(--text-muted); margin-bottom: 8px; }
.inquiry-msg { font-size: .9rem; color: #374151; line-height: 1.6; }
.inquiry-reply { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; background: var(--navy); color: white; padding: 6px 14px; border-radius: var(--radius-sm); font-size: .82rem; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: background .15s; }
.inquiry-reply:hover { background: var(--blue); text-decoration: none; color: white; }

/* ── Client inquiry list ──────────────────────────────────── */
.client-inquiry-card { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 12px; background: var(--white); }
.client-inquiry-to { font-weight: 700; margin-bottom: 4px; font-size: .92rem; }
.client-inquiry-date { font-size: .78rem; color: var(--text-muted); margin-bottom: 8px; }
.client-inquiry-msg { font-size: .88rem; color: #374151; line-height: 1.6; }

/* ── Tag checkboxes ───────────────────────────────────────── */
.tag-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cb { display: none; }
.tag-cb-label { background: var(--bg); border: 1.5px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: .82rem; font-weight: 500; cursor: pointer; transition: all .15s; user-select: none; }
.tag-cb:checked + .tag-cb-label { background: var(--blue-pale); border-color: var(--blue-light); color: var(--blue); font-weight: 600; }
.tag-cb-label:hover { border-color: var(--blue-light); }

/* ── Save indicator ───────────────────────────────────────── */
.save-indicator { margin-left: 12px; font-size: .88rem; font-weight: 600; color: var(--green); }

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal { background: white; border-radius: var(--radius); max-width: 480px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px 0; margin-bottom: 16px; }
.modal-header h3 { font-size: 1.1rem; font-weight: 800; }
.modal-close { background: none; border: none; font-size: 1.1rem; cursor: pointer; color: var(--text-muted); padding: 4px; line-height: 1; }
.modal-close:hover { color: var(--text); }
.modal-sub { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
.modal > div { padding: 0 24px 24px; }
.inquiry-sent { text-align: center; padding: 16px 0 8px; }
.sent-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-pale); color: var(--green); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.inquiry-sent h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.inquiry-sent p { font-size: .9rem; color: var(--text-muted); margin-bottom: 20px; }

/* ── PLPC Dashboard ───────────────────────────────────────── */
.plpc-info-box {
  background: #faf5ff; border: 1px solid #e9d5ff; border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 20px; font-size: .88rem; color: #4c1d95;
}
.plpc-info-box strong { display: block; margin-bottom: 6px; font-size: .92rem; }
.plpc-info-box p { margin: 0; line-height: 1.6; color: #5b21b6; }
.supervisor-status { margin-bottom: 16px; font-size: .88rem; font-weight: 600; padding: 10px 14px; border-radius: var(--radius-sm); }
.supervisor-status.verified { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.supervisor-status.pending  { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.btn-verify {
  background: #7c3aed; color: white; border: none; border-radius: var(--radius-sm);
  padding: 10px 20px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: background .15s;
}
.btn-verify:hover { background: #6d28d9; }

/* ── PLPC Banner ──────────────────────────────────────────── */
.plpc-banner {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: var(--radius-sm); padding: 8px 14px;
  font-size: .85rem; font-weight: 600; margin-bottom: 14px;
}
.plpc-banner.verified { background: #faf5ff; color: #6d28d9; border: 1px solid #e9d5ff; }
.plpc-banner.pending  { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--navy); color: #9ca3af; text-align: center; padding: 40px 24px; margin-top: 80px; }
.footer-inner { max-width: 480px; margin: 0 auto; }
.footer-logo { font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 10px; }
.footer p { font-size: .88rem; line-height: 1.8; }
.footer a { color: #93c5fd; }
.footer-note { margin-top: 10px; }

/* ── Misc ─────────────────────────────────────────────────── */
.hidden { display: none !important; }
.btn-nav-logout { background: none; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 6px 14px; font-size: .85rem; cursor: pointer; color: var(--text-muted); transition: all .15s; }
.btn-nav-logout:hover { border-color: var(--red); color: var(--red); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-layout { flex-direction: column; padding: 16px; }
  .filters-panel { width: 100%; position: static; }
  .hero h1 { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .dashboard-layout { flex-direction: column; padding: 16px; }
  .dash-sidebar { width: 100%; position: static; }
  .profile-hero { flex-direction: column; align-items: center; text-align: center; }
  .profile-details-grid { grid-template-columns: 1fr; }
  .therapist-card { flex-direction: column; }
  .form-row { flex-direction: column; gap: 0; }
}
