/* ==========================================================================
   Behavioral Pathways Helpline - behavioralpathways.xyz
   Style: Nature Healing #4 | Architecture: Classic Multi-Page #1
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #2D5A3D;
  --primary-dark: #1E3F2B;
  --primary-light: #3A7550;
  --secondary: #7CB083;
  --secondary-light: #A3CBA8;
  --accent: #E8B84A;
  --accent-dark: #D4A02E;
  --text: #1A2E1A;
  --text-light: #4A6B4A;
  --bg: #F5F9F5;
  --bg-alt: #FFFFFF;
  --bg-card: #FFFFFF;
  --border: #D4E5D4;
  --shadow: rgba(45, 90, 61, 0.1);
  --shadow-lg: rgba(45, 90, 61, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

/* ---------- 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(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--accent-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;
  margin-bottom: 0.6em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.skip-nav:focus {
  top: 0;
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg-alt);
  border-bottom: 2px solid var(--border);
  z-index: 900;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}

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

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

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 22px; height: 22px; fill: #fff; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Navigation ---------- */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

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

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 0.6rem 1.25rem !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-right: 1rem;
}

.header-phone svg { width: 16px; height: 16px; fill: var(--primary); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,90,61,0.85) 0%, rgba(45,90,61,0.55) 50%, rgba(124,176,131,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4rem 1.5rem;
}

.hero h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

/* Inner page hero */
.hero--inner {
  min-height: 320px;
}

.hero--inner .hero-content {
  padding: 3rem 1.5rem;
}

.hero--inner h1 {
  font-size: 2.25rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,184,74,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}

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

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

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-green {
  background: var(--primary);
  color: #fff;
}

.btn-green:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-lg);
}

.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--primary);
  padding: 1.25rem 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-item svg { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; }

/* ---------- Section Styles ---------- */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--green {
  background: var(--primary);
  color: #fff;
}

.section--green h2,
.section--green h3 {
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding: 1rem 0;
  margin-top: var(--header-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
}

.breadcrumbs li + li::before {
  content: '/';
  margin-right: 0.3rem;
  color: var(--text-light);
}

.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs .current { color: var(--text-light); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-lg);
}

.card-img {
  height: 200px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.card-link:hover { color: var(--accent-dark); }

/* ---------- Icon Box ---------- */
.icon-box {
  text-align: center;
  padding: 2rem 1.5rem;
}

.icon-box-icon {
  width: 64px;
  height: 64px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.icon-box-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

/* ---------- Two Column Layout (Inner pages) ---------- */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  padding: 3rem 0;
}

.page-content h2 { margin-top: 2.5rem; }
.page-content h2:first-child { margin-top: 0; }

.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }

.page-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.sidebar-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.sidebar-card h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--secondary-light);
}

.sidebar-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--primary); }

.sidebar-cta {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}

.sidebar-cta h4 { color: #fff; border-bottom-color: var(--secondary); }

.sidebar-cta .phone-link {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.75rem 0;
}

.sidebar-cta .phone-link:hover { color: #fff; }

.sidebar-cta p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--secondary-light);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  padding-top: 1.5rem;
  font-style: italic;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.testimonial-author span {
  font-weight: 400;
  color: var(--text-light);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}

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

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ---------- Image Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

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

.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.cta-phone:hover { color: #fff; }

/* ---------- Blog Cards ---------- */
.blog-card .card-body { padding: 1.25rem; }

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.blog-meta .category {
  background: var(--bg);
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  color: var(--primary);
  font-weight: 600;
}

/* ---------- Insurance Grid ---------- */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.insurance-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

/* ---------- Step Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h4 { font-size: 1.1rem; }
.step p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Contact Info ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.contact-info-item p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0; }

/* ---------- Map ---------- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-about .logo-text {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact p,
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.footer-contact a:hover { color: var(--accent); }

.footer-contact svg { width: 16px; height: 16px; fill: var(--secondary); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Privacy Page ---------- */
.privacy-content h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

.privacy-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .header-phone { display: flex; }
}

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

  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-alt);
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
  }

  .hamburger { display: block; }

  .hero {
    min-height: 480px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section {
    padding: 3rem 0;
  }

  .trust-bar .container {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

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

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

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

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

@media (max-width: 480px) {
  .hero h1 { font-size: 1.65rem; }
  .hero { min-height: 420px; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Page Hero (inner page alternate pattern) ---------- */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  background-size: cover;
  background-position: center;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  color: #fff;
  font-size: 2.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 0.75rem;
}

.page-hero .hero-sub,
.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

.page-hero + .breadcrumbs { margin-top: 0; }

/* ---------- Content Sections ---------- */
.content-section { margin-bottom: 3rem; }

.content-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0 0.5rem;
}

.image-caption {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ---------- Contact Cards ---------- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

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

.contact-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-card a { font-weight: 700; color: var(--primary); }
.contact-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 0; }
.contact-card address { font-style: normal; color: var(--text-light); font-size: 0.9rem; }

/* ---------- Department List ---------- */
.department-list {
  display: grid;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.department-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.department-item h4 { margin-bottom: 0.5rem; }
.department-item p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.35rem; }

/* ---------- Directions Grid ---------- */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.direction-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.direction-card h4 { margin-bottom: 0.75rem; }
.direction-card ol { list-style: decimal; padding-left: 1.5rem; }
.direction-card li { margin-bottom: 0.4rem; color: var(--text-light); font-size: 0.9rem; }

/* ---------- Service Area Grid ---------- */
.service-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.area-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

/* ---------- Hours Table ---------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

.hours-table td:last-child { text-align: right; }

.hours-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* ---------- HIPAA Notice ---------- */
.hipaa-notice {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}

/* ---------- Emergency Card ---------- */
.emergency-card {
  background: #FFF5F5;
  border-color: #E53E3E;
}

/* ---------- Sidebar Contact Item ---------- */
.sidebar-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.sidebar-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ---------- Sidebar h3 support ---------- */
.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--secondary-light);
}

.sidebar-cta h3 {
  color: #fff;
  border-bottom-color: var(--secondary);
}

/* ---------- Sidebar links (ul variant) ---------- */
ul.sidebar-links {
  list-style: none;
  padding: 0;
}

ul.sidebar-links li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}

ul.sidebar-links li:last-child { border-bottom: none; }
ul.sidebar-links li a { color: var(--text-light); }
ul.sidebar-links li a:hover { color: var(--primary); }

/* ---------- Button Variants ---------- */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  justify-content: center;
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,184,74,0.35);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.small-text { font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem; }

/* ---------- Steps Grid (Admissions) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.step-card {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* ---------- Info Box ---------- */
.info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box h4 { margin-bottom: 0.5rem; }

/* ---------- Insurance Cards (Admissions) ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.insurance-card { padding: 1.5rem; }
.insurance-card h4 { margin-bottom: 0.5rem; }

/* ---------- CTA Box (Admissions/Contact alternate) ---------- */
.content-cta { margin-top: 2rem; }

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: #fff;
}

.cta-box h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-box p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 1.5rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-content {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: #fff;
}

.cta-content h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-content p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 1.5rem; }

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Checklist (Admissions sidebar) ---------- */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ---------- Sidebar Note ---------- */
.sidebar-note {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.sidebar-note p { color: var(--text-light); margin-bottom: 0; }

/* ---------- FAQ icon (hide SVG, use CSS ::after) ---------- */
.faq-icon { display: none; }

/* ---------- Responsive additions ---------- */
@media (max-width: 768px) {
  .page-hero { min-height: 240px; }
  .page-hero h1 { font-size: 1.75rem; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .cta-box, .cta-content { padding: 2rem 1.5rem; }
  .cta-actions, .cta-buttons { flex-direction: column; align-items: center; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-section, .sidebar-cta, .btn { display: none; }
  body { background: #fff; color: #000; }
  .page-layout { grid-template-columns: 1fr; }
}
