
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #2E3A32;
  background: #FAFDFB;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
section {
  padding: 4rem 0;
}
h1, h2, h3 {
  font-weight: 700;
  color: #2E3A32;
}
p {
  font-size: 0.95rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #A8C3A0, #6E8F72);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(110, 143, 114, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(110, 143, 114, 0.35);
}
.btn-outline {
  background: #ffffff;
  color: #2E3A32;
  border: 1px solid #DDEEE2;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: #DDEEE2;
  color: #3F5A43;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6E8F72;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 253, 251, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #E4F2E8;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #3F5A43;
}
.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #A8C3A0, #6E8F72);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding-bottom: 0.1rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #6E8F72;
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #2E3A32;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0.8rem 0 1rem;
}
.nav-mobile a {
  font-size: 0.9rem;
}
.nav-mobile.open {
  display: flex;
}

.hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin: 1rem 0 0.5rem;
}
.hero-title span {
  background: linear-gradient(135deg, #A8C3A0, #6E8F72);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 0.98rem;
  color: #4b5563;
  max-width: 30rem;
  margin-bottom: 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.8rem;
  color: #6b7280;
}
.hero-meta strong {
  color: #3F5A43;
}
.hero-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
  border: 1px solid #E4F2E8;
}
.hero-card-title {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.hero-card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #F2FBF5;
  color: #3F5A43;
  margin-bottom: 1rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}
.hero-stat {
  padding: 0.7rem;
  border-radius: 14px;
  background: #F6FBF7;
  text-align: center;
  border: 1px solid #DDEEE2;
}
.hero-stat strong {
  display: block;
  font-size: 0.95rem;
  color: #3F5A43;
}
.hero-stat span {
  font-size: 0.7rem;
  color: #6b7280;
}

/* HERO VISUAL (picture + video-call card) */
.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(145deg, #E4F2E8, #FAFDFB);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.hero-visual-inner {
  position: relative;
  padding: 0.6rem;
}
.hero-video-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(250, 253, 251, 0.96);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-video-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #A8C3A0, #6E8F72);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAFDFB;
  font-size: 0.9rem;
}
.hero-video-text {
  font-size: 0.78rem;
}
.hero-video-text strong {
  display: block;
  font-size: 0.82rem;
  color: #2E3A32;
}
.hero-video-text span {
  color: #6b7280;
}

/* Sections, grids etc. */
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-heading h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.section-heading p {
  color: #6b7280;
  font-size: 0.95rem;
}
.steps-grid,
.features-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.step-card,
.feature-card,
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  border: 1px solid #E4F2E8;
  box-shadow: 0 10px 30px rgba(15,23,42,0.03);
}
.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: #DDEEE2;
  color: #3F5A43;
  margin-bottom: 0.6rem;
}
.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  background: #DDEEE2;
  color: #3F5A43;
}
.testimonials {
  background: radial-gradient(circle at top left, #EEF6F0, #FAFDFB);
}
.testimonial-card p {
  color: #374151;
  margin-bottom: 0.9rem;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: #3F5A43;
}
.testimonial-role {
  font-size: 0.78rem;
  color: #6b7280;
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
}
.faq-item + .faq-item {
  margin-top: 1.2rem;
}
.faq-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.faq-item p {
  font-size: 0.88rem;
  color: #4b5563;
}
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #E4F2E8;
  box-shadow: 0 12px 30px rgba(15,23,42,0.05);
}
.form-group {
  margin-bottom: 0.9rem;
}
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #3F5A43;
}
input, textarea, select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.88rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
  background: #F9FAFB;
}
input:focus, textarea:focus, select:focus {
  border-color: #A8C3A0;
  box-shadow: 0 0 0 1px rgba(168,195,160,0.4);
  background: #ffffff;
}
textarea {
  resize: vertical;
  min-height: 90px;
}
footer {
  border-top: 1px solid #E4F2E8;
  padding: 1.5rem 0 2rem;
  font-size: 0.8rem;
  color: #6b7280;
  background: #F6FBF7;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}
.page-hero {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: #6b7280;
}
.page-section {
  padding-top: 1rem;
}
.login-options {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.login-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  border: 1px solid #E4F2E8;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}
.login-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.login-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 1rem;
}
.login-note {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 0.6rem;
}
.login-divider {
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
  margin: 1rem 0;
}
.whatsapp-btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .two-column,
  .login-options {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .steps-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  section {
    padding: 3rem 0;
  }
}


/* Therapist & specialization sections on home */
.home-section {
  padding-top: 1rem;
  padding-bottom: 3.5rem;
}

.home-section .section-heading {
  margin-bottom: 2rem;
}

.specializations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.specialization-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  border: 1px solid #E4F2E8;
  box-shadow: 0 10px 26px rgba(15,23,42,0.03);
  text-align: left;
}

.specialization-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.specialization-card p {
  font-size: 0.85rem;
  color: #4b5563;
}

.specialization-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  background: #DDEEE2;
  color: #3F5A43;
  font-size: 1rem;
}

.therapist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.therapist-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid #E4F2E8;
  box-shadow: 0 12px 30px rgba(15,23,42,0.04);
  text-align: center;
}

.therapist-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 0 auto 0.8rem;
  background: linear-gradient(135deg, #A8C3A0, #6E8F72);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAFDFB;
  font-weight: 700;
  font-size: 1.2rem;
}

.therapist-name {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.therapist-role {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.7rem;
}

.therapist-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.tag-pill {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #F2FBF5;
  font-size: 0.72rem;
  color: #3F5A43;
}

.therapist-meta-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: #4b5563;
  margin-bottom: 0.9rem;
}

.therapist-card .btn-outline {
  width: 100%;
  font-size: 0.8rem;
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .specializations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .therapist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .specializations-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .therapist-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* === Healing Verse v7: Solid Green Theme ============================ */
:root {
  --hv-green: #2BA84A;
  --hv-green-dark: #268D42;
  --hv-border: #E5E7EB;
}

/* Global */
body {
  background: #F9FAFB;
  color: #111827;
}

/* Buttons */
.btn-primary {
  background: var(--hv-green);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(43, 168, 74, 0.35);
}
.btn-primary:hover {
  background: var(--hv-green-dark);
  box-shadow: 0 12px 22px rgba(38, 141, 66, 0.45);
  transform: translateY(-1px);
}
.btn-outline {
  border-color: var(--hv-border);
}

/* Logo + accents */
.logo-icon {
  background: var(--hv-green);
}
.badge {
  background: rgba(43, 168, 74, 0.12);
  color: #065F2B;
}
.badge-dot {
  background: var(--hv-green);
}
.nav-links a::after {
  background: var(--hv-green);
}

/* Cards & borders */
.hero-card,
.step-card,
.feature-card,
.testimonial-card,
.specialization-card,
.therapist-card,
.contact-card,
.login-card {
  border-color: var(--hv-border);
}
.hero-stat {
  border-color: var(--hv-border);
  background: #ffffff;
}

/* Icons in circles */
.feature-icon,
.specialization-icon {
  background: rgba(43, 168, 74, 0.1);
  color: var(--hv-green-dark);
}
.therapist-avatar {
  background: var(--hv-green);
}

/* Footer */
footer {
  background: #F3F4F6;
  border-top-color: var(--hv-border);
}


.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* v9_clean: bigger logo + pure white background */
body { background:#ffffff !important; }

.hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero { background:#ffffff !important; }
footer { background:#ffffff !important; border-top-color:#E5E7EB !important; }

.logo-img { width:48px !important; height:48px !important; }
.nav .logo span { font-size:1.3rem !important; font-weight:600; }

/* v10: Crisis help banner using solid green */
.crisis-card {
  margin-top: 2.2rem;
  border-radius: 22px;
  padding: 1.6rem 1.7rem;
  background: #2BA84A;
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(43, 168, 74, 0.45);
}

.crisis-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.crisis-card p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #ECFDF3;
}

.crisis-card .crisis-btn {
  display: inline-block;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: #F9FAFB;
  color: #065F2B;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15,23,42,0.16);
}

.crisis-card .crisis-btn:hover {
  background: #ffffff;
}


/* v11: Deep Healing Green theme (#1F7A40) */
:root {
  --hv-green: #1F7A40;
  --hv-green-dark: #176133;
  --hv-border: #E5E7EB;
}

.btn-primary {
  background: var(--hv-green) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 18px rgba(31, 122, 64, 0.35) !important;
}
.btn-primary:hover {
  background: var(--hv-green-dark) !important;
  box-shadow: 0 12px 22px rgba(23, 97, 51, 0.45) !important;
}

.logo-icon {
  background: var(--hv-green) !important;
}
.badge {
  background: rgba(31, 122, 64, 0.08) !important;
  color: #0B3C1E !important;
}
.badge-dot {
  background: var(--hv-green) !important;
}
.nav-links a::after {
  background: var(--hv-green) !important;
}

.feature-icon,
.specialization-icon {
  background: rgba(31, 122, 64, 0.10) !important;
  color: var(--hv-green-dark) !important;
}
.therapist-avatar {
  background: var(--hv-green) !important;
}

/* Crisis card uses same deep green */
.crisis-card {
  background: #1F7A40 !important;
  box-shadow: 0 16px 32px rgba(31, 122, 64, 0.45) !important;
}

/* Keep background white */
body { background:#ffffff !important; }

.hero {
  padding-top: 3rem;
  padding-bottom: 4rem;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero { background:#ffffff !important; }
footer { background:#ffffff !important; border-top-color:#E5E7EB !important; }

/* Logo size tweaks remain */
.logo-img { width:48px !important; height:48px !important; }
.nav .logo span { font-size:1.3rem !important; font-weight:600; }


/* v13: Find Therapists page layout with filters sidebar */
.therapist-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.filter-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.4rem 1.3rem 1.5rem;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 24px rgba(15,23,42,0.04);
  font-size: 0.9rem;
}

.filter-group {
  margin-bottom: 1.2rem;
}

.filter-group h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  color: #374151;
}

.filter-options input[type="checkbox"] {
  width: 14px;
  height: 14px;
}

.filter-select {
  width: 100%;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  font-size: 0.86rem;
}

/* Right side header */
.therapist-results-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.therapist-results-header h2 {
  font-size: 1.3rem;
  margin: 0;
}

.therapist-results-meta {
  font-size: 0.82rem;
  color: #6B7280;
}

/* Stack on mobile */
@media (max-width: 900px) {
  .therapist-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .therapist-results-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* v14: Therapist card actions row */
.therapist-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.btn-sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
}

/* Therapist profile layout */
.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.profile-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.profile-header-left {
  display: flex;
  gap: 1rem;
}

.profile-avatar-large {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #4B5563;
  font-size: 1rem;
}

.profile-header-text h1 {
  font-size: 1.4rem;
  margin-bottom: 0.15rem;
}

.profile-header-text p {
  margin: 0.1rem 0;
  font-size: 0.9rem;
  color: #4B5563;
}

.profile-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.82rem;
  color: #6B7280;
  margin-top: 0.35rem;
}

.profile-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}

.profile-pill-row .tag-pill {
  font-size: 0.74rem;
}

.profile-section {
  background: #F9FAFB;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  border: 1px solid #E5E7EB;
}

.profile-section h2 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.profile-section p {
  font-size: 0.88rem;
  color: #4B5563;
}

/* Sidebar cards */
.profile-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-sidebar-card {
  background: #F9FAFB;
  border-radius: 18px;
  padding: 1rem 1rem;
  border: 1px solid #E5E7EB;
  font-size: 0.88rem;
}

.profile-sidebar-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.5rem;
}

.profile-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.profile-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7280;
}

.profile-sidebar-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
}

.profile-sidebar-list li {
  margin-bottom: 0.25rem;
  display: flex;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #374151;
}

.profile-sidebar-list li::before {
  content: "✓";
  font-size: 0.8rem;
  margin-top: 0.05rem;
  color: #1F7A40;
}

/* Stack layout on smaller screens */
@media (max-width: 900px) {
  .profile-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .profile-header-top {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* v16: center action buttons in therapist cards */
.therapist-actions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.7rem;
}
.btn-sm {
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
}


/* ===== Booking page layout (PKR version) ===== */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.booking-main {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.booking-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.booking-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.booking-subtitle {
  font-size: 1rem;
  margin: 0 0 0.6rem;
}

.date-input {
  width: 100%;
  max-width: 260px;
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.time-slot {
  padding: 0.45rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  font-size: 0.85rem;
  cursor: pointer;
}

.time-slot.selected {
  border-color: #1f7a40;
  background: rgba(31, 122, 64, 0.08);
  color: #1f7a40;
}

.booking-select {
  width: 100%;
  max-width: 260px;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.booking-field-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking-field {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.4rem;
}

.booking-field label {
  font-size: 0.8rem;
  color: #4b5563;
}

.booking-field input,
.booking-field textarea {
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.booking-confirm {
  margin-top: 0.4rem;
  width: 100%;
  max-width: 320px;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  font-size: 0.88rem;
}

.booking-therapist-name {
  font-weight: 600;
}

.booking-therapist-role {
  font-size: 0.86rem;
  color: #4b5563;
  margin-top: 0.15rem;
}

.booking-summary-card {
  background: #1f7a40;
  color: #ffffff;
}

.booking-summary-card h3 {
  margin-bottom: 0.5rem;
}

.summary-line {
  margin: 0.15rem 0;
  font-size: 0.9rem;
}

.summary-price {
  margin-top: 0.6rem;
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Payment options strip under booking */
.payment-options {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  background: #F9FAFB;
  font-size: 0.88rem;
}

.payment-options p {
  margin: 0 0 0.5rem;
}

.payment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.payment-btn {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #D1D5DB;
  background: #ffffff;
  font-size: 0.85rem;
  cursor: pointer;
}

.payment-btn:hover {
  border-color: #1F7A40;
  color: #1F7A40;
}

.payment-note {
  font-size: 0.78rem;
  color: #6B7280;
}


/* Why Choose section for How It Works */
.why-choose-section {
  padding-top: 1rem;
}

.why-rows {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.why-row-reverse {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
}

.why-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(15,23,42,0.12);
}

.why-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.why-text p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.why-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-text li {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1.2rem;
}

.why-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1F7A40;
}

@media (max-width: 900px) {
  .why-row,
  .why-row-reverse {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Center heading on Why Choose Healing Verse in How It Works */
.why-choose-section .section-heading {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}


/* Override Why Choose layout: text left/right/left pattern */
.why-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.why-row .why-text {
  order: 1;
}

.why-row .why-image {
  order: 2;
}

.why-row.why-row-reverse .why-text {
  order: 2;
}

.why-row.why-row-reverse .why-image {
  order: 1;
}

@media (max-width: 900px) {
  .why-row,
  .why-row.why-row-reverse {
    grid-template-columns: minmax(0, 1fr);
  }
  .why-row .why-text,
  .why-row .why-image {
    order: initial;
  }
}


/* Alternate image positions: row1 img left, row2 img right, row3 img left */
.why-rows .why-row:nth-child(1) .why-image { order: 1; }
.why-rows .why-row:nth-child(1) .why-text  { order: 2; }

.why-rows .why-row:nth-child(2) .why-text  { order: 1; }
.why-rows .why-row:nth-child(2) .why-image { order: 2; }

.why-rows .why-row:nth-child(3) .why-image { order: 1; }
.why-rows .why-row:nth-child(3) .why-text  { order: 2; }

@media (max-width: 900px) {
  .why-rows .why-row .why-text,
  .why-rows .why-row .why-image {
    order: initial;
  }
}


/* New footer styles */
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
}
.footer-brand {
  flex: 1 1 260px;
  min-width: 240px;
}
.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: #111827;
}
.footer-tagline {
  margin-top: 0.5rem;
  max-width: 360px;
  font-size: 0.9rem;
  color: #4b5563;
}
.footer-columns {
  display: flex;
  flex: 2 1 260px;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}
.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: #4b5563;
  text-decoration: none;
  margin-bottom: 0.4rem;
}
.footer-column a:hover {
  color: #111827;
}
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 0.75rem 0 1.5rem;
  margin-top: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
  }
  .footer-columns {
    flex-direction: row;
  }
}


/* === Footer (multi-column) === */
.site-footer {
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
  color: #374151;
  font-size: 0.9rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 2.5rem 0 1.75rem 0;
}
.footer-col {
  flex: 1 1 180px;
  min-width: 180px;
}
.footer-brand {
  max-width: 260px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.footer-logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: #059669;
  color: white;
  font-size: 0.9rem;
}
.footer-logo-text {
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}
.footer-tagline {
  margin: 0;
  color: #4b5563;
  line-height: 1.5;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.6rem 0;
  color: #111827;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: #4b5563;
  margin-bottom: 0.35rem;
}
.footer-col a:hover {
  color: #111827;
}
.footer-col p {
  margin: 0 0 0.35rem 0;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 0.75rem 0 1.25rem 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p {
  margin: 0;
  color: #6b7280;
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
}
.footer-bottom-links a {
  text-decoration: none;
  color: #6b7280;
}
.footer-bottom-links a:hover {
  color: #111827;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


.footer-logo-img {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-block;
}

/* Green pill CTA button used for "Find Your Therapist" */
.page-btn {
  background: #1F7A40;
  color: #ffffff;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-btn:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
