/* TherapaJi - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
  /* Brand Colors */
  --primary: #0d9488;
  --primary-light: #14b8a6;
  --primary-dark: #0f766e;
  --accent: #6366f1;
  --accent-light: #818cf8;

  /* Neutrals */
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;

  /* Typography */
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;

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

  /* Effects */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --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(--neutral-800);
  background: var(--neutral-50);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  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-light);
  color: white;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 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;
}

/* ===== Header Branding ===== */
.logo-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-divider {
  width: 1px;
  height: 36px;
  background: var(--neutral-300);
}

/* EPP Primary Brand */
.epp-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.epp-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.epp-letters {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  letter-spacing: 0.05em;
}

.epp-tagline {
  font-size: 0.65rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.epp-brand:hover .epp-letters {
  color: var(--primary);
}

/* Practitioner Identity */
.practitioner-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.practitioner-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.practitioner-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--neutral-800);
  font-weight: 500;
}

.practitioner-title {
  font-size: 0.7rem;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.practitioner-brand:hover .practitioner-name {
  color: var(--primary);
}

/* TherapaJi Mark - Subtle Brand Accent */
.therapaji-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 6px;
  color: white;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.therapaji-mark svg {
  width: 18px;
  height: 18px;
}

.practitioner-brand:hover .therapaji-mark {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

/* Legacy support */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  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-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.language-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);
}

/* Hero Video Section */
.hero-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.9);
  border: 3px solid white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  z-index: 10;
}

.video-play-btn:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-container video::-webkit-media-controls {
  opacity: 0;
  transition: opacity 0.3s;
}

.video-container video:hover::-webkit-media-controls,
.video-container video:focus::-webkit-media-controls {
  opacity: 1;
}

/* Glassmorphism card in hero */
.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: 2rem;
  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;
}

/* Jeffrey Photo */
.jeffrey-photo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: linear-gradient(135deg, var(--neutral-100) 0%, rgba(13, 148, 136, 0.05) 100%);
  border-radius: 1rem;
  border: 1px solid var(--neutral-200);
}

.jeffrey-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.jeffrey-caption {
  font-size: 0.95rem;
  color: var(--neutral-600);
  font-style: italic;
}

@media (max-width: 480px) {
  .jeffrey-photo {
    flex-direction: column;
    text-align: center;
  }

  .jeffrey-photo img {
    width: 100px;
    height: 100px;
  }
}

/* ===== 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;
}

/* ===== Testimonials ===== */
.testimonials {
  background: white;
}

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

.testimonial-card {
  background: var(--neutral-50);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
}

.testimonial-quote {
  font-style: italic;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--primary-light);
  position: absolute;
  left: 0;
  top: -0.5rem;
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--neutral-900);
}

/* ===== 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 h3 {
  margin-bottom: 0.5rem;
}

.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* EPP Primary Practice */
.footer-practice {
  text-align: center;
}

.footer-epp-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-epp-letters {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
}

.footer-epp-name {
  font-size: 0.75rem;
  color: var(--neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.footer-epp-brand:hover .footer-epp-letters {
  color: var(--primary-light);
}

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

/* TherapaJi Personal Brand */
.footer-therapaji {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--neutral-800);
  border-radius: 0.75rem;
  border: 1px solid var(--neutral-700);
}

.footer-therapaji-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 8px;
  color: white;
}

.footer-therapaji-mark svg {
  width: 22px;
  height: 22px;
}

.footer-therapaji-text {
  display: flex;
  flex-direction: column;
}

.footer-therapaji-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: white;
}

.footer-therapaji-desc {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

/* Ji Meaning */
.footer-ji {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-700);
  width: 100%;
  max-width: 500px;
}

.footer-ji-meaning {
  color: var(--neutral-400);
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* Disclosure */
.footer-disclosure {
  background: var(--neutral-800);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  text-align: center;
  max-width: 700px;
}

.footer-disclosure a {
  color: var(--primary-light);
}

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

/* Contact & Copyright */
.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 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.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;
}

.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 for new blog elements */
@media (max-width: 768px) {
  .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;
  }
}

/* ===== Location Pages ===== */
.location-page {
  background: white;
  min-height: 100vh;
}

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

.location-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.location-hero p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  padding: 4rem 1.5rem;
}

.location-content .container {
  max-width: 900px;
}

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

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

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

  .hero-image,
  .hero-video {
    order: -1;
  }

  .video-container {
    max-width: 100%;
  }

  .video-play-btn {
    width: 70px;
    height: 70px;
  }

  .services-grid,
  .testimonials-grid,
  .blog-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,
  .testimonials-grid,
  .blog-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 Compression */
  .header-inner {
    padding: 0.75rem 1rem;
  }

  .logo-group {
    gap: 0.75rem;
  }

  .logo-divider {
    height: 28px;
  }

  .epp-letters {
    font-size: 1.25rem;
  }

  .epp-tagline {
    font-size: 0.55rem;
  }

  .practitioner-name {
    font-size: 0.95rem;
  }

  .practitioner-title {
    font-size: 0.6rem;
  }

  .therapaji-mark {
    width: 24px;
    height: 24px;
  }

  .therapaji-mark svg {
    width: 14px;
    height: 14px;
  }

  /* Legacy */
  .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;
  }
}

/* Small Phone Breakpoint */
@media (max-width: 480px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-quote {
    padding-left: 1rem;
  }

  .testimonial-quote::before {
    font-size: 2rem;
    left: -0.25rem;
  }

  .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;
  }
}
