/* POM Therapy Collective - Main Stylesheet */
/* 2026 Modern Aesthetic - Purple & Sage */

/* ===== CSS Variables ===== */
:root {
  /* Brand Colors - Purple & Sage Palette */
  --primary: #7c5daa;
  --primary-light: #a88bc8;
  --primary-dark: #5a4580;
  --accent: #9caf88;
  --accent-light: #b8c9a8;
  --accent-dark: #7a9068;

  /* Neutrals */
  --background: #fafaf8;
  --text: #2d2d2d;
  --neutral-50: #fafaf8;
  --neutral-100: #f5f5f3;
  --neutral-200: #e8e8e4;
  --neutral-300: #d4d4d0;
  --neutral-400: #a3a39f;
  --neutral-500: #737370;
  --neutral-600: #525250;
  --neutral-700: #404040;
  --neutral-800: #2d2d2d;
  --neutral-900: #1a1a1a;

  /* Typography - Modern 2026 */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 5rem 1.5rem;
  --container-max: 1200px;

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

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

/* ===== Utilities ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-accent {
  background: var(--accent);
  color: white;
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: white;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-200);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--neutral-700);
  font-weight: 500;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-700);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  display: inline-block;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.highlight-tag {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-ctas .btn-primary {
  background: white;
  color: var(--primary);
}

.hero-ctas .btn-primary:hover {
  background: var(--neutral-100);
  color: var(--primary-dark);
}

.hero-ctas .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.hero-ctas .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-image-wrapper img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

/* Glassmorphism card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2rem;
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: white;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}

.trust-item h3 {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.trust-item p {
  color: var(--neutral-600);
  font-size: 0.875rem;
  margin: 0;
}

/* ===== About Section ===== */
.about {
  background: white;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-image img,
.headshot-img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: 350px;
  width: 100%;
  height: auto;
  transition: transform var(--transition-normal);
}

.about-image img:hover,
.headshot-img:hover {
  transform: scale(1.02);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--neutral-600);
  line-height: 1.8;
}

.about-content p em {
  color: var(--neutral-700);
  font-style: italic;
}

.about-content .about-location {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--neutral-200);
  color: var(--neutral-500);
  font-size: 0.95rem;
}

/* ===== Services Section ===== */
.services {
  background: var(--neutral-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0;
}

/* ===== Telehealth Benefits Section ===== */
.telehealth-benefits {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.benefit-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0;
}

/* ===== FAQ Section ===== */
.faq {
  background: var(--neutral-100);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-200);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--neutral-800);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background: var(--neutral-50);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--neutral-600);
}

/* ===== Crisis Banner ===== */
.crisis-banner {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
}

.crisis-banner h3 {
  color: white;
  margin-bottom: 1rem;
}

.crisis-resources {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.crisis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crisis-item strong {
  font-size: 1.25rem;
}

.crisis-item span {
  opacity: 0.9;
  font-size: 0.875rem;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 5rem 1.5rem;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .btn-primary {
  background: white;
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background: var(--neutral-100);
}

/* ===== Contact Section ===== */
.contact {
  background: white;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--neutral-600);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--neutral-700);
}

.contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* ===== Footer ===== */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-brand-section {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral-700);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--neutral-500);
  font-style: italic;
  font-size: 0.9375rem;
  margin: 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* ===== Blog Styles ===== */
.blog-listing {
  background: var(--neutral-50);
  min-height: 100vh;
  padding-top: 100px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--neutral-200);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--neutral-200);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.875rem;
  color: var(--neutral-500);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--neutral-900);
}

.blog-card-title a:hover {
  color: var(--primary);
}

.blog-card-excerpt {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0;
}

/* Single Blog Post */
.blog-single {
  background: white;
  min-height: 100vh;
  padding-top: 100px;
}

.blog-header {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.blog-header h1 {
  color: white;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.blog-meta {
  opacity: 0.9;
}

.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.blog-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  color: var(--neutral-700);
  line-height: 1.8;
}

.blog-content ul, .blog-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--neutral-700);
}

.blog-content li {
  margin-bottom: 0.5rem;
}

.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--neutral-600);
}

.blog-cta {
  background: var(--neutral-100);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.blog-cta h3 {
  margin-bottom: 1rem;
}

.blog-cta p {
  margin-bottom: 1.5rem;
}

/* Blog Subtitle */
.blog-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 1rem;
  max-width: 700px;
}

/* Reading Time */
.reading-time {
  font-style: italic;
}

.category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Author Box (Header) */
.author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  max-width: fit-content;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: white;
}

.author-title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.share-buttons > span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.share-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
}

.share-copy.copied {
  background: var(--primary-light);
}

/* Table of Contents */
.toc {
  background: var(--neutral-100);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.toc summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--neutral-800);
  margin-bottom: 1rem;
}

.toc nav {
  margin-top: 1rem;
}

.toc ul {
  list-style: none;
  padding-left: 0;
}

.toc li {
  margin: 0.5rem 0;
}

.toc a {
  color: var(--neutral-700);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: block;
  padding: 0.25rem 0;
}

.toc a:hover {
  color: var(--primary);
}

.toc ul ul {
  padding-left: 1.25rem;
  margin-top: 0.25rem;
}

.toc ul ul a {
  font-size: 0.9rem;
  color: var(--neutral-600);
}

/* Blog Tags */
.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}

.tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--neutral-100);
  color: var(--neutral-700);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--primary);
  color: white;
}

/* Bottom Share Section */
.share-bottom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
}

.share-bottom p {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.share-bottom .share-buttons {
  justify-content: center;
}

.share-bottom .share-btn {
  width: auto;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  gap: 0.5rem;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--neutral-100);
  border-radius: 16px;
  margin: 2rem 0;
  align-items: flex-start;
}

.author-bio-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio-content h4 {
  margin-bottom: 0.5rem;
  color: var(--neutral-800);
}

.author-bio-content p {
  color: var(--neutral-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.author-bio-link {
  font-weight: 500;
  color: var(--primary);
}

/* Blog Content Images */
.blog-content img {
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

/* Blog Content Strong/Bold */
.blog-content strong {
  color: var(--neutral-900);
}

/* Blog Content HR */
.blog-content hr {
  border: none;
  height: 1px;
  background: var(--neutral-200);
  margin: 3rem 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .crisis-resources {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 3rem 1rem;
  }

  /* Mobile Header */
  .header-inner {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.125rem;
  }

  .logo svg {
    width: 32px;
    height: 32px;
  }

  /* Hero CTA Buttons Stack */
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  /* Button Touch Targets */
  .btn {
    padding: 1rem 1.75rem;
    font-size: 1.0625rem;
    min-height: 48px;
  }

  /* Service Cards Mobile */
  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-card h3 {
    font-size: 1.125rem;
  }

  .service-card p {
    font-size: 0.9375rem;
  }

  /* FAQ Mobile */
  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-question svg {
    width: 24px;
    height: 24px;
  }

  .faq-answer-inner {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
  }

  /* Trust Bar Mobile */
  .trust-item h3 {
    font-size: 1.5rem;
  }

  .trust-item p {
    font-size: 0.8125rem;
  }

  /* Blog responsive */
  .author-box {
    flex-direction: row;
  }

  .share-buttons {
    justify-content: flex-start;
  }

  .share-bottom .share-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .toc {
    padding: 1rem;
  }
}

/* Small Phone Breakpoint */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.9375rem;
  }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== Print Styles ===== */
@media print {
  .header,
  .footer,
  .crisis-banner,
  .cta-section {
    display: none;
  }

  body {
    font-size: 12pt;
    color: black;
  }
}

/* ===== 2026 Design Enhancements ===== */

/* Organic Background Shapes */
.organic-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-light);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-light);
  bottom: 20%;
  left: -100px;
  animation-delay: -7s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: -100px;
  right: 20%;
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Section Labels */
.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* Hero Image Accent */
.hero-image-wrapper {
  position: relative;
}

.hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 1rem;
  z-index: -1;
  opacity: 0.6;
}

.hero-image-wrapper img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-content video {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.video-modal-close:hover {
  opacity: 1;
}

/* About Section Enhancements */
.about-media {
  position: relative;
}

.about-image-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-img-main {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 450px;
}

.about-video-preview {
  position: relative;
  width: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.about-video-preview:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.about-video-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.about-video-preview:hover .play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.about-cta {
  margin-top: 2rem;
}

/* Trust Bar Enhancements */
.trust-bar {
  background: white;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.trust-text h3 {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--neutral-800);
}

.trust-text p {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  margin: 0;
}

/* Bento Grid for Services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.5rem;
}

.bento-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-featured {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.bento-featured h3,
.bento-featured p {
  color: white;
}

.bento-featured p {
  opacity: 0.9;
}

.bento-featured .bento-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.bento-featured::before {
  display: none;
}

.bento-wide {
  grid-column: span 3;
}

.bento-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: white;
}

.bento-accent h3,
.bento-accent p {
  color: white;
}

.bento-accent p {
  opacity: 0.9;
}

.bento-accent .bento-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.bento-accent::before {
  display: none;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: white;
}

.bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.bento-card p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.bento-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.375rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA Steps */
.cta-steps {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
}

.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.step-text {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Contact Card */
.contact-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
}

.contact-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--primary-light);
}

.contact-card h3 {
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.contact-method svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-method div {
  display: flex;
  flex-direction: column;
}

.contact-method strong {
  font-size: 0.875rem;
  color: var(--neutral-500);
  font-weight: 500;
}

.contact-method span {
  color: var(--neutral-700);
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }

/* Responsive Bento Grid */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .blob {
    display: none;
  }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-featured,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-image-stack {
    align-items: center;
  }

  .about-video-preview {
    position: relative;
    margin-top: 1rem;
  }

  .cta-steps {
    flex-direction: column;
    gap: 1.5rem;
  }

  .video-modal-close {
    top: -40px;
  }
}

@media (max-width: 480px) {
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    flex-direction: row;
    text-align: left;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .video-modal,
  .video-modal-content,
  .bento-card,
  .about-video-preview {
    transition: none;
  }
}

/* ===== NEW SECTIONS - Moon Mission Upgrade ===== */

/* Hero Reassurance Text */
.hero-reassurance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
  margin-top: 1rem;
}

.hero-reassurance svg {
  color: var(--accent-light);
}

/* Testimonials Section */
.testimonials {
  background: var(--neutral-100);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
}

.testimonial-card.featured .testimonial-text {
  color: white;
}

.testimonial-card.featured .author-name {
  color: white;
}

.testimonial-card.featured .author-location {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: #fbbf24;
}

.testimonial-text {
  color: var(--neutral-700);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name {
  font-weight: 600;
  color: var(--neutral-800);
}

.author-location {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Credentials Badge */
.credentials-badge {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}

.credential-item {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
  border-right: 1px solid var(--neutral-200);
}

.credential-item:last-child {
  border-right: none;
}

.credential-item strong {
  color: var(--primary);
  font-size: 1rem;
}

.credential-item span {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

/* Why Choose Section */
.why-choose {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--neutral-100);
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

.why-choose h4 {
  font-size: 1rem;
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.why-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.why-list li span {
  color: var(--neutral-700);
  font-size: 0.9375rem;
}

/* Insurance Section */
.insurance-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 3rem 1.5rem;
  color: white;
}

.insurance-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.insurance-content h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.insurance-content p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.insurance-logo {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.insurance-cta {
  text-align: center;
}

.insurance-cta .btn-primary {
  background: white;
  color: var(--accent-dark);
}

.insurance-cta .btn-primary:hover {
  background: var(--neutral-100);
}

.insurance-note {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}

.faq-cta p {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

/* CTA Guarantee */
.cta-guarantee {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 1rem;
}

/* Sticky Mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 900;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
}

/* Exit Intent Popup */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.exit-popup.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.exit-popup-content {
  position: relative;
  background: white;
  padding: 3rem;
  border-radius: 1.5rem;
  max-width: 450px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.exit-popup.active .exit-popup-content {
  transform: scale(1);
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-500);
  padding: 0.5rem;
}

.exit-popup-close:hover {
  color: var(--neutral-800);
}

.exit-popup-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.exit-popup-content p {
  color: var(--neutral-600);
  margin-bottom: 1.5rem;
}

.exit-popup-content .btn {
  width: 100%;
  margin-bottom: 1rem;
}

.exit-popup-dismiss {
  background: none;
  border: none;
  color: var(--neutral-500);
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
}

.exit-popup-dismiss:hover {
  color: var(--neutral-700);
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card.featured {
    grid-column: span 2;
  }

  .insurance-inner {
    flex-direction: column;
    text-align: center;
  }

  .insurance-logos {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    grid-column: span 1;
  }

  .credentials-badge {
    flex-direction: column;
    text-align: center;
  }

  .credential-item {
    border-right: none;
    border-bottom: 1px solid var(--neutral-200);
    padding: 0.75rem 0;
  }

  .credential-item:last-child {
    border-bottom: none;
  }

  .why-choose {
    padding: 1rem;
  }

  .exit-popup-content {
    padding: 2rem;
  }
}

/* ===== Location Pages ===== */
.location-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}

.location-hero h1 {
  color: white;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.location-hero-subtitle {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.location-content {
  background: var(--neutral-50);
}

.location-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-main h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.location-main h2:first-child {
  margin-top: 0;
}

.location-main p,
.location-main li {
  color: var(--neutral-700);
  line-height: 1.8;
}

.location-main ul {
  padding-left: 1.5rem;
}

.location-main li {
  margin-bottom: 0.75rem;
}

.location-services {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}

.services-list {
  display: grid;
  gap: 1.5rem;
}

.service-item {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--neutral-200);
}

.service-item strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.service-item p {
  margin: 0;
  font-size: 0.9375rem;
}

.location-telehealth {
  margin-top: 2rem;
}

.location-telehealth ul {
  list-style: none;
  padding: 0;
}

.location-telehealth li {
  padding-left: 2rem;
  position: relative;
}

.location-telehealth li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* Location Sidebar */
.location-sidebar {
  position: sticky;
  top: 100px;
}

.therapist-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.therapist-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-light);
}

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

.therapist-card > p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.therapist-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.therapist-specialties span {
  background: var(--neutral-100);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

.therapist-card .btn {
  width: 100%;
}

.location-faq {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
}

.location-faq h4 {
  margin-bottom: 1rem;
  color: var(--neutral-800);
}

.location-faq details {
  border-bottom: 1px solid var(--neutral-200);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.location-faq details:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.location-faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--neutral-800);
  padding: 0.5rem 0;
}

.location-faq details p {
  padding-top: 0.5rem;
  color: var(--neutral-600);
  font-size: 0.9375rem;
  margin: 0;
}

@media (max-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-sidebar {
    position: static;
  }
}
