﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SOULY â€“ CSS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
  --green: #6B9E7E;
  --green-light: #8fbfa0;
  --green-dark: #4d7a5e;
  --lavender: #B8A9D4;
  --peach: #F2A97E;
  --off-white: #F8F6F2;
  --dark: #1a1c20;
  --dark-2: #2a2d33;
  --text: #3a3d42;
  --text-muted: #7a7d85;
  --border: #e8e5df;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; width: 100%; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* â”€â”€ PAGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  color: var(--dark);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.logo-dot {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 15px; font-weight: 500;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-link:hover { color: var(--dark); }

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary {
  background: var(--green);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  border: none; cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(107,158,126,0.35); }

.btn-outline {
  background: transparent;
  color: var(--green);
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--green);
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--green); color: white; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 50px;
  border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--off-white); }

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; text-align: center; display: block; }

/* â”€â”€ CONTAINER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f7f3 0%, var(--off-white) 50%, #f5f0fa 100%);
  padding: 100px 0 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 { width: 500px; height: 500px; background: var(--green); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: var(--lavender); bottom: -80px; left: -80px; animation: float 10s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: var(--peach); top: 40%; right: 30%; animation: float 6s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start;
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title em { color: var(--green); font-style: italic; }

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: white;
  border-radius: var(--radius);
  padding: 20px 32px;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease 0.5s both;
}
.stat { text-align: center; padding: 0 28px; }
.stat-num { display: block; font-size: 28px; font-weight: 700; color: var(--green); font-family: var(--font-display); }
.stat-label { display: block; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section { padding: 100px 0; }
.section-alt { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(107,158,126,0.12);
  color: var(--green-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  font-weight: 700;
}

/* â”€â”€ STEPS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 220px; max-width: 300px;
  text-align: center; padding: 40px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
}
.step:hover { transform: translateY(-6px); }
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--dark); }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-arrow {
  font-size: 28px; color: var(--border);
  padding: 0 12px; padding-top: 60px;
  flex-shrink: 0;
}

/* â”€â”€ TIERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.tier-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.tier-card:hover { border-color: var(--green); box-shadow: var(--shadow-lg); }
.tier-featured { border-color: var(--green); background: linear-gradient(135deg, #f0f7f3, white); }
.tier-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.tier-badge.student { background: rgba(107,158,126,0.15); color: var(--green-dark); }
.tier-badge.therapist { background: rgba(184,169,212,0.2); color: #7b6fad; }
.tier-card h3 { font-family: var(--font-display); font-size: 24px; margin-bottom: 12px; color: var(--dark); }
.tier-card > p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.tier-list { list-style: none; margin-bottom: 24px; }
.tier-list li { padding: 6px 0; font-size: 15px; color: var(--text); }
.tier-price { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--green); }
.tier-price span { font-size: 15px; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }

/* â”€â”€ TESTIMONIALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s;
}
.testimonial:hover { transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.testimonial p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* â”€â”€ CTA BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 80px 0; text-align: center; color: white;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 36px; margin-bottom: 16px; }
.cta-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
.cta-banner .btn-primary { background: white; color: var(--green-dark); }
.cta-banner .btn-primary:hover { background: var(--off-white); }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-logo .logo { color: white; margin-bottom: 8px; }
.footer-logo p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); width: 100%; text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }

/* â”€â”€ PAGE HERO SM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero-sm {
  background: linear-gradient(135deg, #f0f7f3, var(--off-white));
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-sm h1 { font-family: var(--font-display); font-size: 42px; color: var(--dark); margin-bottom: 10px; }
.page-hero-sm p { color: var(--text-muted); font-size: 17px; }

/* â”€â”€ PROVIDERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.providers-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 80px;
}
.filter-sidebar h3 { font-size: 16px; font-weight: 700; margin-bottom: 24px; color: var(--dark); }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}
.filter-group select:focus { outline: none; border-color: var(--green); }

.providers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; align-content: start; }
.provider-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.provider-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.provider-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.provider-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; font-weight: 700;
  flex-shrink: 0;
}
.provider-info-name { font-weight: 700; font-size: 16px; color: var(--dark); }
.provider-info-type {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 3px;
}
.type-student { background: rgba(107,158,126,0.12); color: var(--green-dark); }
.type-therapist { background: rgba(184,169,212,0.2); color: #7b6fad; }
.provider-bio { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.provider-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.provider-tag {
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 12px; font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
}
.provider-footer { display: flex; align-items: center; justify-content: space-between; }
.provider-rating { font-size: 14px; color: #f59e0b; font-weight: 600; }
.provider-price { font-size: 14px; font-weight: 700; color: var(--green); }

/* â”€â”€ PRICING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 60px 0; }
.pricing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-featured { border-color: var(--green); background: linear-gradient(160deg, #f0f7f3, white); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white;
  padding: 4px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.plan-name { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.plan-price { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.plan-price span { font-size: 16px; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li { padding: 8px 0; font-size: 15px; border-bottom: 1px solid var(--border); }
.plan-features li.disabled { color: var(--text-muted); text-decoration: line-through; }
.plan-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 12px; }

.pricing-faq { max-width: 700px; margin: 0 auto; padding-bottom: 80px; }
.pricing-faq h3 { font-family: var(--font-display); font-size: 28px; margin-bottom: 32px; color: var(--dark); text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 20px 0;
  font-size: 16px; font-weight: 600; color: var(--dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green); }
.faq-a { padding: 0 0 20px; font-size: 15px; color: var(--text-muted); display: none; line-height: 1.7; }
.faq-a.open { display: block; }

/* â”€â”€ AUTH â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.auth-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.auth-visual {
  background: linear-gradient(135deg, var(--green-dark), var(--green), var(--lavender));
  display: flex; align-items: flex-end; padding: 60px;
  position: relative; overflow: hidden;
}
.auth-orb {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.auth-quote {
  position: relative; z-index: 1;
  color: white;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  max-width: 400px;
}
.auth-form-wrap {
  display: flex; flex-direction: column; justify-content: center;
  padding: 60px;
  background: white;
}
.auth-logo { margin-bottom: 40px; }
.auth-form-wrap h2 { font-family: var(--font-display); font-size: 32px; color: var(--dark); margin-bottom: 8px; }
.auth-sub { color: var(--text-muted); font-size: 15px; margin-bottom: 32px; }
.auth-sub a { color: var(--green); font-weight: 600; }

.role-toggle {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
}
.role-btn {
  padding: 10px; border: none; background: none;
  border-radius: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  transition: all 0.2s;
}
.role-btn.active { background: white; color: var(--dark); box-shadow: var(--shadow); }

.auth-form { display: flex; flex-direction: column; gap: 20px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green);
}
.form-error { color: #e53e3e; font-size: 14px; min-height: 20px; }
.forgot-link { font-size: 14px; color: var(--text-muted); text-align: center; }
.forgot-link:hover { color: var(--green); }
.terms-note { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.5; }
.terms-note a { color: var(--green); }

/* â”€â”€ DASHBOARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page#page-dashboard { background: var(--off-white); }
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.dash-sidebar {
  background: var(--dark);
  padding: 32px 20px;
  display: flex; flex-direction: column;
  position: sticky; top: 0; height: 100vh;
}
.dash-user { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.dash-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--lavender));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.dash-name { font-size: 15px; font-weight: 600; color: white; }
.dash-plan { font-size: 12px; color: rgba(255,255,255,0.4); }
.dash-nav { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.dash-nav-item {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  cursor: pointer;
}
.dash-nav-item:hover { background: rgba(255,255,255,0.08); color: white; }
.dash-nav-item.active { background: rgba(107,158,126,0.25); color: var(--green-light); }
.dash-logout { margin-top: auto; color: rgba(255,255,255,0.3); font-size: 14px; text-align: left; padding: 12px 16px; }

.dash-main { padding: 48px 48px; }
.dash-main h2 { font-family: var(--font-display); font-size: 32px; color: var(--dark); margin-bottom: 32px; }
.dash-tab { display: none; }
.dash-tab.active { display: block; }

.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.dash-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.dash-card-cta { cursor: pointer; border: 2px dashed var(--border); background: transparent; }
.dash-card-cta:hover { border-color: var(--green); background: rgba(107,158,126,0.05); }
.dash-card-icon { font-size: 32px; }
.dash-card-num { display: block; font-size: 28px; font-weight: 700; color: var(--dark); font-family: var(--font-display); }
.dash-card-label { display: block; font-size: 13px; color: var(--text-muted); }
.dash-section h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }

.empty-state { text-align: center; padding: 60px; background: white; border-radius: var(--radius); }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

.settings-section { background: white; border-radius: var(--radius); padding: 32px; margin-bottom: 24px; box-shadow: var(--shadow); }
.settings-section h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.current-plan-box { display: flex; align-items: center; justify-content: space-between; padding: 20px; background: var(--off-white); border-radius: var(--radius-sm); }

/* â”€â”€ HAMBURGER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: white; flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .tiers { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: fixed; left: -100%; transition: left 0.3s; z-index: 200; }
  .providers-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { display: none; }
  .dash-cards { grid-template-columns: 1fr; }
}

/* â”€â”€ BACK BTN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.back-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px;
  color: var(--text-muted); padding: 8px 0;
  margin-bottom: 32px; display: inline-block;
  transition: color 0.2s;
}
.back-btn:hover { color: var(--green); }

/* â”€â”€ PROVIDER DETAIL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.provider-detail-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px;
}
.provider-detail-card {
  background: white; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
  position: sticky; top: 100px;
}
.provider-detail-top {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px;
}
.provider-avatar-lg {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--lavender));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 28px; font-weight: 700; flex-shrink: 0;
}
.provider-detail-top h2 { font-family: var(--font-display); font-size: 24px; color: var(--dark); margin-bottom: 6px; }
.detail-rating { font-size: 14px; color: var(--text-muted); margin-top: 6px; }
.detail-section { margin-bottom: 24px; }
.detail-section h4 { font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.detail-section p { font-size: 15px; color: var(--text); line-height: 1.7; }
.detail-price-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 16px 20px; margin-top: 8px;
}
.detail-price-box strong { font-size: 22px; color: var(--green); font-family: var(--font-display); }
.detail-covered { font-size: 13px; color: var(--green-dark); font-weight: 600; }

/* â”€â”€ BOOKING CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-card {
  background: white; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.booking-card h3 { font-family: var(--font-display); font-size: 24px; color: var(--dark); margin-bottom: 24px; }
.booking-step-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 16px; }
.selected-date-label { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }

/* â”€â”€ CALENDAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.calendar { user-select: none; }
.cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cal-title { font-weight: 700; font-size: 16px; color: var(--dark); }
.cal-nav {
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--text-muted); padding: 4px 10px;
  border-radius: 8px; transition: all 0.2s;
}
.cal-nav:hover { background: var(--off-white); color: var(--dark); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day-label { text-align: center; font-size: 12px; font-weight: 600; color: var(--text-muted); padding: 8px 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
}
.cal-day:hover:not(.cal-day-disabled):not(.cal-day-empty) { background: rgba(107,158,126,0.15); color: var(--green-dark); }
.cal-day-today { border: 2px solid var(--green); color: var(--green-dark); font-weight: 700; }
.cal-day-selected { background: var(--green) !important; color: white !important; }
.cal-day-disabled { color: var(--border); cursor: not-allowed; }
.cal-day-empty { cursor: default; }

/* â”€â”€ TIME SLOTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.time-slot {
  padding: 12px 8px; text-align: center;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all 0.15s;
}
.time-slot:hover { border-color: var(--green); color: var(--green-dark); }
.time-slot.selected { background: var(--green); border-color: var(--green); color: white; }
.time-slot.taken { background: var(--off-white); color: var(--border); cursor: not-allowed; border-color: var(--border); }

/* â”€â”€ BOOKING SUMMARY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-summary {
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 20px; margin-bottom: 24px;
}
.summary-row {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--text-muted); }

/* â”€â”€ BOOKING SUCCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-success { text-align: center; padding: 20px 0; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.booking-success h3 { font-family: var(--font-display); font-size: 26px; color: var(--dark); margin-bottom: 10px; }
.booking-success p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }

/* â”€â”€ MODALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: white; border-radius: var(--radius);
  padding: 40px; max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.25s ease;
}
.modal-box h3 { font-family: var(--font-display); font-size: 26px; color: var(--dark); margin-bottom: 10px; }
.modal-box p { color: var(--text-muted); margin-bottom: 28px; }

/* â”€â”€ UPGRADE MODAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.upgrade-options { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.upgrade-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 24px 16px; text-align: center; cursor: pointer;
  transition: all 0.2s; position: relative;
  display: flex; flex-direction: column; gap: 4px;
}
.upgrade-card:hover { border-color: var(--green); }
.upgrade-card strong { font-size: 20px; color: var(--dark); }
.upgrade-card span { font-size: 15px; color: var(--green); font-weight: 700; }
.upgrade-card small { font-size: 12px; color: var(--text-muted); }
.upgrade-card-featured { border-color: var(--green); background: linear-gradient(160deg, #f0f7f3, white); }

@media (max-width: 900px) {
  .provider-detail-layout { grid-template-columns: 1fr; }
  .provider-detail-card { position: static; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
  .upgrade-options { grid-template-columns: 1fr; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DASHBOARD 2.0 â€“ Inspired by Aepsy / BetterHelp
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

.page#page-dashboard { background: #F7F5F2; width: 100%; }

.dash2-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

/* â”€â”€ SIDEBAR â”€â”€ */
.dash2-sidebar {
  background: white;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
}

.dash2-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 24px 24px;
  border-bottom: 1px solid var(--border);
}

.dash2-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 12px;
  gap: 2px;
  flex: 1;
}

.dash2-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
}

.dash2-nav-item:hover { background: var(--off-white); color: var(--dark); }
.dash2-nav-item.active { background: rgba(107,158,126,0.1); color: var(--green-dark); }
.dash2-nav-item svg { flex-shrink: 0; }

.dash2-user-bottom {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash2-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.dash2-user-info { flex: 1; min-width: 0; }
.dash2-user-name { font-size: 13px; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash2-user-plan { font-size: 11px; color: var(--text-muted); }

.dash2-logout {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 6px;
  border-radius: 6px;
  transition: all 0.15s;
  display: flex;
  align-items: center;
}
.dash2-logout:hover { background: var(--off-white); color: var(--dark); }

/* â”€â”€ MAIN â”€â”€ */
.dash2-main {
  padding: 40px 48px;
  max-width: 900px;
  width: 100%;
}

.dash2-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}

.dash2-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.dash2-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.dash2-book-btn {
  background: var(--green);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.dash2-book-btn:hover { background: var(--green-dark); transform: translateY(-1px); }

/* â”€â”€ STATS â”€â”€ */
.dash2-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}

.dash2-stat {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.dash2-stat-accent {
  background: linear-gradient(135deg, #f0f7f3, #f5f0fa);
  border-color: rgba(107,158,126,0.2);
  cursor: pointer;
}
.dash2-stat-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,158,126,0.12); }

.dash2-stat-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 10px; }
.dash2-stat-val { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--dark); line-height: 1; }
.dash2-stat-sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* â”€â”€ SECTION â”€â”€ */
.dash2-section { margin-bottom: 24px; }
.dash2-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash2-section-title { font-size: 16px; font-weight: 600; color: var(--dark); }

/* â”€â”€ EMPTY STATE â”€â”€ */
.dash2-empty {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.dash2-empty-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  color: var(--text-muted);
}

.dash2-empty-text { font-size: 16px; font-weight: 600; color: var(--dark); }
.dash2-empty-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }

/* â”€â”€ UPGRADE BANNER â”€â”€ */
.dash2-upgrade-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 8px;
}

.dash2-upgrade-title { font-size: 16px; font-weight: 600; color: white; margin-bottom: 4px; }
.dash2-upgrade-sub { font-size: 13px; color: rgba(255,255,255,0.75); }

.dash2-upgrade-btn {
  background: white;
  color: var(--green-dark);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.dash2-upgrade-btn:hover { background: var(--off-white); }

/* â”€â”€ FILTERS â”€â”€ */
.dash2-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.dash2-filters select {
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: white;
  cursor: pointer;
}

/* â”€â”€ PROVIDERS GRID â”€â”€ */
.dash2-providers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

/* â”€â”€ SETTINGS â”€â”€ */
.dash2-settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dash2-settings-card { background: white; border-radius: 16px; border: 1px solid var(--border); padding: 28px; }
.dash2-settings-title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 20px; }

.dash2-plan-current {
  background: var(--off-white);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.dash2-plan-name { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.dash2-plan-desc { font-size: 13px; color: var(--text-muted); }

.dash2-plan-options { display: flex; flex-direction: column; gap: 10px; }
.dash2-plan-option {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.dash2-plan-option:hover { border-color: var(--green); }
.dash2-plan-option-featured { border-color: var(--green); background: linear-gradient(135deg, #f0f7f3, white); }
.dash2-plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.dash2-plan-option-name { font-size: 15px; font-weight: 600; color: var(--dark); }
.dash2-plan-option-price { font-size: 18px; font-weight: 700; color: var(--green); margin: 4px 0; }
.dash2-plan-option-feat { font-size: 12px; color: var(--text-muted); }

@media (max-width: 900px) {
  .dash2-layout { grid-template-columns: 1fr; }
  .dash2-sidebar { position: static; height: auto; flex-direction: row; flex-wrap: wrap; }
  .dash2-stats { grid-template-columns: 1fr; }
  .dash2-settings-grid { grid-template-columns: 1fr; }
  .dash2-main { padding: 24px 20px; }
}








#page-provider-dashboard {
  min-height: 100vh;
  overflow-y: auto;
}

#page-provider-dashboard .dash2-main {
  overflow-y: auto;
  height: 100vh;
}

#page-provider-dashboard .dash2-main {
  padding-top: 40px;
  overflow-y: auto;
}

#page-provider-dashboard .dash2-layout {
  min-height: 100vh;
}

#page-provider-dashboard {
  padding-top: 0 !important;
}

#page-provider-dashboard .dash2-layout {
  min-height: 100vh;
}

#page-provider-dashboard .dash2-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 10;
}

#page-provider-dashboard .dash2-main {
  margin-left: 220px;
  padding: 40px 48px;
  min-height: 100vh;
}

#page-provider-dashboard .dash2-header {
  padding-top: 20px;
}

#page-provider-dashboard .dash2-main {
  padding: 60px 48px 40px 48px;
  flex: 1;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

#page-provider-dashboard .dash2-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

#page-provider-dashboard .dash2-empty {
  width: 100%;
  box-sizing: border-box;
}

#prov-bookings-list {
  width: 100%;
}
