/* ==========================================================================
   Silver Hill Healing - Style: Mountain Serenity (#9) | Architecture: Sidebar Navigation (#4)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Source+Sans+3:wght@400;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #4A5568;
  --primary-dark: #2D3748;
  --secondary: #48624D;
  --secondary-light: #5A7A60;
  --accent: #9DC3C1;
  --accent-light: #C5DFDE;
  --text: #1A202C;
  --text-light: #4A5568;
  --text-muted: #718096;
  --bg: #F7F8F9;
  --bg-white: #FFFFFF;
  --bg-alt: #EDF2F7;
  --border: #E2E8F0;
  --border-light: #EDF2F7;
  --shadow: rgba(26, 32, 44, 0.08);
  --shadow-md: rgba(26, 32, 44, 0.12);
  --sidebar-width: 280px;
  --topbar-height: 52px;
  --radius: 6px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: 2.25rem; margin-bottom: 1rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}
.skip-nav:focus { left: 0; }

/* --- Top Bar --- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background: var(--primary-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 1000;
  box-shadow: 0 2px 8px var(--shadow-md);
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar__brand {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.topbar__brand:hover { color: var(--accent-light); }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.topbar__phone {
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar__phone:hover { color: #fff; }
.topbar__phone svg { width: 16px; height: 16px; fill: currentColor; }
.topbar__cta {
  background: var(--secondary);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.topbar__cta:hover { background: var(--secondary-light); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #fff;
}
.hamburger svg { width: 24px; height: 24px; fill: currentColor; }

/* --- Sidebar --- */
.sidebar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--bg-white);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  z-index: 900;
  padding: 1.5rem 0;
  transition: transform var(--transition);
}
.sidebar__nav { padding: 0; }
.sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.sidebar__link:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
  border-left-color: var(--accent);
}
.sidebar__link--active {
  background: var(--bg-alt);
  color: var(--primary-dark);
  border-left-color: var(--secondary);
}
.sidebar__link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.sidebar__divider {
  height: 1px;
  background: var(--border-light);
  margin: 0.75rem 1.5rem;
}

/* Sub-menu */
.sidebar__submenu { display: none; }
.sidebar__submenu.open { display: block; }
.sidebar__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}
.sidebar__toggle:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
  border-left-color: var(--accent);
}
.sidebar__toggle--active {
  background: var(--bg-alt);
  color: var(--primary-dark);
  border-left-color: var(--secondary);
}
.sidebar__toggle-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition);
}
.sidebar__toggle.open .sidebar__toggle-icon { transform: rotate(180deg); }
.sidebar__sublink {
  display: block;
  padding: 0.5rem 1.5rem 0.5rem 3rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 400;
  transition: all var(--transition);
}
.sidebar__sublink:hover {
  color: var(--secondary);
  background: var(--bg);
}

/* Sidebar footer */
.sidebar__footer {
  padding: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-light);
}
.sidebar__footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.sidebar__footer-phone svg { width: 18px; height: 18px; fill: currentColor; }
.sidebar__footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Main Content Area --- */
.main-content {
  margin-left: var(--sidebar-width);
  margin-top: var(--topbar-height);
  min-height: calc(100vh - var(--topbar-height));
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,55,72,0.82) 0%, rgba(72,98,77,0.65) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 3rem 3rem 3rem 3.5rem;
  color: #fff;
}
.hero__title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--secondary);
  color: #fff;
}
.btn--primary:hover { background: var(--secondary-light); color: #fff; }
.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--secondary:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
.btn--accent {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn--accent:hover { background: var(--accent-light); color: var(--primary-dark); }
.btn--outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.btn--outline:hover { background: var(--secondary); color: #fff; }
.btn--lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn--block { width: 100%; justify-content: center; }

/* --- Sections --- */
.section {
  padding: 3.5rem 3rem;
}
.section--alt { background: var(--bg-white); }
.section--accent { background: var(--bg-alt); }
.section__header {
  margin-bottom: 2.5rem;
}
.section__header--center { text-align: center; }
.section__overline {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: 1.85rem;
  position: relative;
}
.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.75rem;
  border-radius: 2px;
}
.section__header--center .section__title::after {
  margin-left: auto;
  margin-right: auto;
}
.section__desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin-top: 1rem;
}
.section__header--center .section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* --- Trust Bar --- */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 2rem 3rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar__icon svg { width: 22px; height: 22px; fill: var(--secondary); }
.trust-bar__text { font-weight: 600; font-size: 0.9rem; color: var(--primary-dark); }

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}
.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card__body { padding: 1.25rem; }
.card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.card__link:hover { gap: 0.5rem; }

/* --- Icon Cards (programs etc.) --- */
.icon-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.icon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}
.icon-card__icon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-card__icon svg { width: 26px; height: 26px; fill: var(--secondary); }
.icon-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.icon-card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.stat {
  text-align: center;
  padding: 1.25rem;
}
.stat__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 600;
}

/* --- Testimonials --- */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-slide {
  display: none;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.testimonial-slide.active { display: block; }
.testimonial__quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}
.testimonial__author {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}
.testimonial__program {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.testimonial-dot.active { background: var(--secondary); }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-grid__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-grid__item:hover img { transform: scale(1.05); }

/* --- Accordion (FAQs) --- */
.accordion { margin: 1rem 0; }
.accordion__item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.accordion__header {
  width: 100%;
  background: var(--bg-white);
  border: none;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}
.accordion__header:hover { background: var(--bg-alt); }
.accordion__header.active { background: var(--bg-alt); }
.accordion__icon {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion__header.active .accordion__icon { transform: rotate(180deg); }
.accordion__body {
  display: none;
  padding: 0 1.25rem 1.25rem;
  background: var(--bg-white);
}
.accordion__body.open { display: block; }
.accordion__body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Timeline / Steps --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step__number {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step__content { flex: 1; }
.step__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}
.step__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  padding: 3rem;
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  margin: 2rem 0;
}
.cta-banner__title {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.cta-banner__text {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__phone {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 1.25rem;
}
.cta-banner__phone:hover { color: #fff; }

/* --- Insurance Grid --- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.insurance-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-dark);
  text-align: center;
}

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--shadow);
}
.blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card__body { padding: 1.25rem; }
.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.blog-card__title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Contact Info --- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; fill: var(--secondary); }
.contact-info__label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}
.contact-info__value {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-info__value a { color: var(--secondary); font-weight: 600; }

/* --- Map --- */
.map-container {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 1.5rem 0;
  border: 1px solid var(--border-light);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-member {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  text-align: center;
}
.team-member__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}
.team-member__title {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-member__bio {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- Schedule Table --- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.schedule-table th,
.schedule-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}
.schedule-table th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.schedule-table td { color: var(--text-light); }
.schedule-table tr:last-child td { border-bottom: none; }

/* --- Two-Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.two-col__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- List Styles --- */
.check-list { margin: 1rem 0; }
.check-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 3rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
}
.breadcrumbs a { color: var(--secondary); font-weight: 600; }
.breadcrumbs span { margin: 0 0.4rem; color: var(--border); }

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__list li { margin-bottom: 0.5rem; }
.footer__list a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__list a:hover { color: var(--accent-light); }
.footer__contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  align-items: flex-start;
}
.footer__contact-item svg { width: 16px; height: 16px; fill: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: rgba(255,255,255,0.8); }
.footer__contact-item a:hover { color: var(--accent-light); }
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--accent-light); }
.footer__hipaa {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* --- Privacy Page --- */
.privacy-content h2 { margin-top: 2rem; }
.privacy-content h3 { margin-top: 1.5rem; }
.privacy-content ul { margin: 0.5rem 0 1rem 1.25rem; list-style: disc; }
.privacy-content ul li { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.3rem; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* --- Overlay for mobile --- */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 850;
}
.sidebar-overlay.active { display: block; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .hamburger { display: flex; }
  .hero__content { padding: 2.5rem 2rem; }
  .section { padding: 2.5rem 2rem; }
  .trust-bar { padding: 1.5rem 2rem; }
  .breadcrumbs { padding: 1rem 2rem; }
  .footer { padding: 2.5rem 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-banner { margin: 1.5rem 0; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .hero { min-height: 380px; }
  .hero__title { font-size: 1.85rem; }
  .hero__subtitle { font-size: 1rem; }
  .section { padding: 2rem 1.25rem; }
  .trust-bar { padding: 1.25rem; grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .breadcrumbs { padding: 0.75rem 1.25rem; }
  .cta-banner { padding: 2rem 1.25rem; }
  .cta-banner__title { font-size: 1.4rem; }
  .cta-banner__phone { font-size: 1.35rem; }
}

@media (max-width: 480px) {
  .hero__content { padding: 2rem 1.25rem; }
  .hero__title { font-size: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .topbar__phone span { display: none; }
}

/* --- Print Styles --- */
@media print {
  .sidebar, .topbar, .hamburger, .sidebar-overlay { display: none !important; }
  .main-content { margin-left: 0 !important; margin-top: 0 !important; }
  .hero { min-height: auto; }
  .hero::before { background: rgba(0,0,0,0.1); }
}
