/* Minimalistic Bold Treatment Center Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #6B705C;
  background: #F8F4E3;
  overflow-x: hidden;
}

/* Nature-Inspired Color Palette */
:root {
  /* Nature-Inspired Colors */
  --soft-moss: #A3B18A;
  --willow-bark: #6B705C;
  --mist-grey: #DAD7CD;
  --warm-cream: #FDFCF9;
  --deep-forest: #3A5A40;
  
  /* Core Colors - Updated */
  --black: #3A5A40;
  --white: #FDFCF9;
  --gray-50: #FDFCF9;
  --gray-100: #DAD7CD;
  --gray-200: #DAD7CD;
  --gray-300: #A3B18A;
  --gray-400: #A3B18A;
  --gray-500: #6B705C;
  --gray-600: #6B705C;
  --gray-700: #3A5A40;
  --gray-800: #3A5A40;
  --gray-900: #3A5A40;
  
  /* Accent Colors */
  --accent-primary: #3A5A40;
  --accent-success: #A3B18A;
  --accent-warning: #6B705C;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(58, 90, 64, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(58, 90, 64, 0.12), 0 2px 4px -1px rgba(58, 90, 64, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(58, 90, 64, 0.12), 0 4px 6px -2px rgba(58, 90, 64, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(58, 90, 64, 0.12), 0 10px 10px -5px rgba(58, 90, 64, 0.06);
  
  /* Border Radius */
  --radius: 0px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 120px 0;
  --mobile-section-padding: 80px 0;
}

/* Container and Layout Utilities */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

/* Navigation Header */
.main-navigation {
  position: fixed;
  top: -100px; /* Hidden initially */
  left: 0;
  width: 100%;
  background: var(--warm-cream);
  border-bottom: 2px solid var(--deep-forest);
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-navigation.visible {
  top: 0; /* Show when scrolling */
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

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

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

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

.nav-link {
  color: var(--black);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.nav-link:hover {
  color: var(--gray-600);
}

.nav-cta-btn {
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.nav-cta-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--black);
  transition: all 0.3s ease;
}

/* Bold Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

/* Therapy section heading adjustment */
.therapy-section .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-weight: 400;
}

strong {
  color: var(--black);
  font-weight: 600;
}

/* Clean Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--black);
  background: var(--white);
  overflow: hidden;
  margin-top: 0; /* No margin needed since nav is hidden initially */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
  filter: grayscale(20%);
}

.header {
  padding: 3rem 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--gray-200);
}

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

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.logo {
  height: 80px;
  width: auto;
  filter: contrast(1.2);
}

.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}

/* Values Section */
.values-section {
  padding: 8rem 0;
  background: var(--mist-grey);
  border-top: 1px solid var(--soft-moss);
  border-bottom: 1px solid var(--soft-moss);
}

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

.value-item {
  background: var(--warm-cream);
  padding: 3rem 2rem;
  border: 1px solid var(--soft-moss);
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--deep-forest);
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px var(--deep-forest);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.value-item p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}





/* Contact Section */
.contact-section {
  padding: 8rem 0;
  background: var(--mist-grey);
  border-bottom: 1px solid var(--soft-moss);
}

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

.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

.contact-method {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.contact-method:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-method h4 {
  color: var(--black);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-method p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-method a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
}

.contact-method a:hover {
  color: var(--gray-600);
}

.crisis-notice {
  background: var(--white);
  padding: 2rem;
  border: 2px solid var(--accent-warning);
  margin-top: 2rem;
}

.crisis-notice p {
  color: var(--accent-warning);
  margin-bottom: 0;
  font-size: 1rem;
  text-align: center;
}

.contact-cta {
  background: var(--white);
  padding: 3rem;
  border: 2px solid var(--black);
  text-align: center;
  transition: all 0.2s ease;
}

.contact-cta:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px var(--black);
}

.contact-cta h3 {
  color: var(--black);
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.contact-cta .cta-subtitle {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Bold Minimal Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.btn:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-large {
  padding: 1.5rem 4rem;
  font-size: 1.1rem;
}

/* Clean Content Sections */
.content-section {
  padding: 8rem 0;
  position: relative;
  background: var(--warm-cream);
}

.content-section:nth-child(even) {
  background: var(--mist-grey);
}

.therapy-section {
  background: var(--warm-cream) !important;
  border-top: 1px solid var(--soft-moss);
  border-bottom: 1px solid var(--soft-moss);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 3px;
  background: var(--black);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 400;
}

/* Minimal Grid Layout */
.three-column-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.cta-sidebar {
  background: var(--white);
  padding: 4rem 3rem;
  border: 2px solid var(--black);
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.cta-sidebar:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px var(--black);
}

.cta-sidebar .cta-content h2 {
  color: var(--black);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.cta-sidebar .cta-subtitle {
  color: var(--gray-600);
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 500;
}

.cta-sidebar .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-sidebar .cta-buttons .btn,
.cta-sidebar .cta-buttons .info-btn {
  width: 100%;
}

.treatment-content {
  background: var(--white);
  padding: 4rem 3rem;
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.treatment-content:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.sidebar-checklist {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--black);
}

/* Minimal Checkmarks */
.checkmarks-list {
  list-style: none;
  margin-top: 2rem;
}

.checkmarks-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}

.checkmarks-list li::before {
  content: '✓';
  margin-right: 1.5rem;
  font-size: 1.25rem;
  color: var(--white);
  background: var(--black);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Mission Layout */
.mission-cta-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.mission-content {
  background: var(--white);
  padding: 4rem 3rem;
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.mission-content:hover {
  border-color: var(--black);
  transform: translateY(-2px);
}

.cta-sidebar-alt {
  background: var(--white);
  padding: 4rem 3rem;
  border: 2px solid var(--black);
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.cta-sidebar-alt:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px var(--black);
}

.cta-sidebar-alt .cta-content h2 {
  color: var(--black);
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.cta-sidebar-alt .cta-subtitle {
  color: var(--gray-600);
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 500;
}

.cta-sidebar-alt .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-sidebar-alt .cta-buttons .btn,
.cta-sidebar-alt .cta-buttons .info-btn {
  width: 100%;
}

/* Clinical Specialties */
.specialties-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  align-items: start;
}

.doctor-image {
  width: 100%;
  border: 2px solid var(--black);
  transition: all 0.2s ease;
  filter: contrast(1.1);
}

.doctor-image:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0px var(--black);
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.specialty-item {
  background: var(--white);
  color: var(--black);
  padding: 2rem;
  border: 1px solid var(--gray-300);
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.specialty-item:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* Treatment Types Grid */
.treatment-types {
  background: var(--deep-forest);
  padding: 8rem 0;
  color: var(--warm-cream);
  position: relative;
}

.treatment-types .section-header h2 {
  color: var(--warm-cream);
}

.treatment-types .section-header p {
  color: var(--mist-grey);
}

.treatment-types .section-title::after {
  background: var(--white);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 6rem;
}

.treatment-item {
  background: var(--warm-cream);
  color: var(--willow-bark);
  padding: 3rem 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.treatment-item:hover {
  background: var(--soft-moss);
  color: var(--deep-forest);
  border-color: var(--warm-cream);
  transform: translateY(-4px);
}

/* Minimal Therapy Programs Toggle */
.therapy-programs {
  max-width: 900px;
  margin: 0 auto;
}

.toggle-item {
  background: var(--white);
  margin-bottom: 2rem;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.2s ease;
}

.toggle-item:hover {
  border-color: var(--black);
}

.toggle-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-header:hover {
  background: var(--gray-50);
}

.toggle-header.active {
  background: var(--black);
  color: var(--white);
}

.toggle-icon {
  font-size: 1.5rem;
  color: var(--black);
  transition: all 0.2s ease;
  width: 3rem;
  height: 3rem;
  background: var(--white);
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.toggle-header.active .toggle-icon {
  transform: rotate(90deg);
  background: var(--white);
  color: var(--black);
}

.toggle-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.toggle-header.active .toggle-title {
  color: var(--white);
}

.toggle-content {
  display: none;
  padding: 0 3rem 3rem 3rem;
  background: var(--gray-50);
}

.toggle-content.active {
  display: block;
}

.toggle-content p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}

/* Clean Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 6rem;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid var(--gray-200);
}

.gallery-grid img:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  box-shadow: 8px 8px 0px var(--black);
}

.gallery-grid.collapsed {
  max-height: 620px;
  overflow: hidden;
  position: relative;
}

.gallery-grid.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}

.gallery-grid.expanded {
  max-height: none;
  overflow: visible;
}

.gallery-toggle {
  text-align: center;
  margin-top: 4rem;
}

.gallery-toggle .btn {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  padding: 1.25rem 3rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.gallery-toggle .btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.toggle-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
  font-weight: 700;
}

.gallery-grid.expanded + .gallery-toggle .toggle-icon {
  transform: rotate(180deg);
}

/* Minimal Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 2px solid var(--black);
}

.lightbox-close {
  position: absolute;
  top: -4rem;
  right: 0;
  background: var(--white);
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10001;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 700;
}

.lightbox-close:hover {
  background: var(--black);
  color: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--black);
  color: var(--black);
  font-size: 1.5rem;
  cursor: pointer;
  width: 3rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 700;
}

.lightbox-nav:hover {
  background: var(--black);
  color: var(--white);
}

.lightbox-prev {
  left: -5rem;
}

.lightbox-next {
  right: -5rem;
}

.lightbox-counter {
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--black);
  font-size: 1rem;
  background: var(--white);
  padding: 1rem 2rem;
  border: 2px solid var(--black);
  white-space: nowrap;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

/* Reviews Section */
.reviews-section {
  background: var(--mist-grey);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--soft-moss);
  border-bottom: 1px solid var(--soft-moss);
}

.reviews-section .section-header {
  text-align: center;
}

.reviews-section .reviews-grid {
  text-align: left;
}

.google-logo {
  max-width: 300px;
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 6rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Dynamic Review Card Styles */
.review-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  filter: grayscale(100%);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  filter: grayscale(0%);
  box-shadow: 8px 8px 0px var(--black);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-google-icon {
  width: 40px;
  height: 40px;
  background: #4285f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.review-author {
  flex-grow: 1;
  text-align: left;
}

.review-author-name {
  font-weight: 600;
  color: var(--black);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  text-align: left;
}

.review-date {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: left;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: flex-start;
}

.review-star {
  color: #ffb400;
  font-size: 1.25rem;
}

.review-text {
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: left;
}

.review-card:hover .review-text {
  color: #4a4a4a;
}

.review-card:hover .review-author-name {
  color: #4a4a4a;
}

/* Removed .review-platform - no longer needed */

/* Legacy image support for lightbox */
.review-image {
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid var(--gray-200);
  filter: grayscale(100%);
}

.review-image:hover {
  transform: translateY(-4px);
  border-color: var(--black);
  filter: grayscale(0%);
  box-shadow: 8px 8px 0px var(--black);
}

/* Bold CTA Section */
.cta-section {
  background: var(--warm-cream);
  color: var(--deep-forest);
  text-align: center;
  padding: 2.5rem 0;
  position: relative;
  border-top: 2px solid var(--deep-forest);
  border-bottom: 2px solid var(--deep-forest);
}

.cta-content h2 {
  color: var(--deep-forest);
  margin-bottom: 2rem;
}

.cta-subtitle {
  margin-bottom: 4rem;
  font-size: 1.25rem;
  color: var(--willow-bark);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.cta-buttons .btn,
.cta-buttons .info-btn {
  width: 100%;
  max-width: 300px;
}

.cta-section .btn-outline {
  border-color: var(--deep-forest);
  color: var(--deep-forest);
  background: transparent;
}

.cta-section .btn-outline:hover {
  background: var(--deep-forest);
  color: var(--warm-cream);
}

/* Clean Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
}

.popup-content {
  background: var(--white);
  padding: 4rem 3rem;
  border: 2px solid var(--black);
  max-width: 600px;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  color: var(--black);
  text-align: left;
  margin: auto;
  transform: translateZ(0);
  box-shadow: var(--shadow-xl);
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  border: 2px solid var(--black);
  font-size: 1rem;
  cursor: pointer;
  color: var(--black);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 700;
}

.close-popup:hover {
  background: var(--black);
  color: var(--white);
}

.popup-content h3 {
  color: var(--black);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

.popup-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.popup-content a {
  color: var(--black);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.popup-content a:hover {
  color: var(--gray-600);
}

/* Minimal Info Button */
.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--black);
  color: var(--black);
  padding: 1.25rem 3rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-family: 'Space Grotesk', sans-serif;
}

.info-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}



/* Clean Footer */
.footer {
  background: var(--deep-forest);
  color: var(--mist-grey);
  text-align: center;
  padding: 6rem 0 4rem 0;
  border-top: 1px solid var(--deep-forest);
}

.footer p {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
}

.footer a {
  color: var(--warm-cream);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--soft-moss);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  /* Mobile Navigation */
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-brand-name {
    font-size: 1rem;
  }

  .nav-logo-img {
    height: 30px;
  }

  .main-navigation {
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-content {
    padding: 0.75rem 0;
  }

  .hero-section {
    min-height: 90vh;
    margin-top: 0;
  }

  .header {
    padding: 2rem 0;
  }

  .hero-main {
    padding: 4rem 0;
  }

  .logo-section {
    gap: 1rem;
  }

  .logo {
    height: 60px;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  /* Mobile Values Section */
  .values-section {
    padding: 5rem 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }

  .value-item {
    padding: 2rem 1.5rem;
  }

  .value-icon {
    font-size: 2.5rem;
  }



  /* Mobile Contact */
  .contact-section {
    padding: 5rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-cta {
    order: -1;
    padding: 2rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .contact-method {
    padding: 1.5rem;
  }

  .three-column-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .cta-sidebar {
    order: -1;
    padding: 3rem 2rem;
  }

  .mission-cta-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .cta-sidebar-alt {
    order: -1;
    padding: 3rem 2rem;
  }

  .specialties-section {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }

  .doctor-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .treatment-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-grid img {
    height: 250px;
  }

  .gallery-grid.collapsed {
    max-height: 500px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-text {
    font-size: 0.9rem;
  }

  .popup-overlay {
    padding: 1.5rem;
  }

  .popup-content {
    padding: 3rem 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
  }

  .treatment-content {
    padding: 3rem 2rem;
  }

  .mission-content {
    padding: 3rem 2rem;
  }

  .content-section {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 4rem;
  }

  /* Mobile Lightbox */
  .lightbox-close {
    top: -3rem;
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .lightbox-nav {
    font-size: 1.25rem;
    width: 2.5rem;
    height: 3rem;
  }

  .lightbox-prev {
    left: -3.5rem;
  }

  .lightbox-next {
    right: -3.5rem;
  }

  .lightbox-counter {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 80vh;
    margin-top: 0;
  }

  .container {
    padding: 0 1rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }

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

  .info-btn {
    padding: 1rem 2rem;
    font-size: 0.875rem;
  }

  /* Small Mobile Navigation */
  .nav-brand-name {
    font-size: 0.875rem;
  }

  .nav-logo-img {
    height: 25px;
  }

  .nav-content {
    padding: 0.5rem 0;
  }

  /* Small Mobile Values */
  .values-section {
    padding: 4rem 0;
  }

  .value-item {
    padding: 1.5rem 1rem;
  }

  .value-icon {
    font-size: 2rem;
  }



  /* Small Mobile Contact */
  .contact-section {
    padding: 4rem 0;
  }

  .contact-cta {
    padding: 1.5rem;
  }

  .contact-method {
    padding: 1.25rem;
  }

  .contact-method h4 {
    font-size: 1rem;
  }

  .crisis-notice {
    padding: 1.5rem;
  }

  .crisis-notice p {
    font-size: 0.875rem;
  }

  .gallery-grid img {
    height: 200px;
  }

  .gallery-grid.collapsed {
    max-height: 400px;
  }

  .content-section {
    padding: 4rem 0;
  }

  .cta-sidebar,
  .cta-sidebar-alt {
    padding: 2.5rem 1.5rem;
  }

  .treatment-content,
  .mission-content {
    padding: 2.5rem 1.5rem;
  }

  .popup-overlay {
    padding: 1rem;
  }

  .popup-content {
    padding: 2.5rem 1.5rem;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
  }

  /* Small Mobile Lightbox */
  .lightbox-container {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox-close {
    top: -2.5rem;
    right: 0;
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
  }

  .lightbox-nav {
    font-size: 1rem;
    width: 2rem;
    height: 2.5rem;
  }

  .lightbox-prev {
    left: -3rem;
  }

  .lightbox-next {
    right: -3rem;
  }

  .lightbox-counter {
    bottom: -3rem;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }
.visible { display: block; }

/* Focus and Accessibility */
.btn:focus,
.toggle-header:focus,
.info-btn:focus {
  outline: 3px solid var(--black);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .hero-section,
  .cta-section,
  .footer {
    background: white !important;
    color: black !important;
  }
  
  .btn {
    border: 2px solid black !important;
    background: white !important;
    color: black !important;
  }
}