/* ==========================================================================
   ADAT Helpline - Clinical Trust #3 Style + Hub & Spoke #9 Architecture
   Generated: 2026-02-13
   ========================================================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1E5AA8;
  --primary-dark: #154580;
  --primary-light: #2A6FC2;
  --secondary: #4A90D9;
  --accent: #28A745;
  --accent-dark: #1E7E34;
  --text: #212529;
  --text-light: #6C757D;
  --text-muted: #ADB5BD;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-blue-tint: #EBF2FA;
  --border: #DEE2E6;
  --border-light: #E9ECEF;
  --shadow: 0 2px 8px rgba(30, 90, 168, 0.08);
  --shadow-md: 0 4px 16px rgba(30, 90, 168, 0.12);
  --shadow-lg: 0 8px 32px rgba(30, 90, 168, 0.16);
  --radius: 4px;
  --radius-md: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

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

p { margin-bottom: 1rem; }

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

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

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: 0.25rem; }

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

.section {
  padding: 5rem 0;
}

.section--light { background: var(--bg-light); }
.section--blue { background: var(--bg-blue-tint); }
.section--dark { background: var(--primary); color: #fff; }

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

.section__header h2 {
  position: relative;
  display: inline-block;
}

.section__header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 0;
}

.section__header p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-light { color: var(--text-light); }
.text-white { color: #fff; }
.fw-500 { font-weight: 500; }
.fw-700 { font-weight: 700; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Skip Nav ---------- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: var(--radius);
}
.skip-nav:focus { top: 0.5rem; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

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

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

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

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

.btn--white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn--white:hover {
  background: var(--bg-light);
  border-color: var(--bg-light);
  color: var(--primary-dark);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

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

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

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  text-decoration: none;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header__nav a {
  padding: 0.5rem 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--primary);
  background: var(--bg-blue-tint);
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  text-decoration: none;
  margin-left: 1rem;
}

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

.header__cta {
  margin-left: 1rem;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 1rem 0;
}

.mobile-nav.active { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

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

.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.mobile-nav__cta {
  padding: 0.75rem 1.5rem;
}

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

.hero--full { min-height: 85vh; }

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 90, 168, 0.88) 0%, rgba(74, 144, 217, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding: 3rem 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.hero__phone a { color: #fff; }
.hero__phone a:hover { opacity: 0.85; color: #fff; }

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

.hero--inner .hero__title { font-size: 2.5rem; }

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

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.breadcrumbs__list li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: var(--text-muted);
}

.breadcrumbs__list a { color: var(--primary); }
.breadcrumbs__list a:hover { text-decoration: underline; }
.breadcrumbs__list .current { color: var(--text-light); }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text);
}

.trust-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Hub Graphic (Homepage) ---------- */
.hub {
  padding: 5rem 0;
  background: var(--bg-white);
}

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

.hub__spoke {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.hub__spoke:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: var(--text);
}

.hub__spoke-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-blue-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition);
}

.hub__spoke:hover .hub__spoke-icon {
  background: var(--primary);
  color: #fff;
}

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

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

.hub__spoke-link {
  font-weight: 500;
  color: var(--primary);
  font-size: 0.9rem;
}

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

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: 1.5rem;
}

.card__category {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

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

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

.card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- Program Cards ---------- */
.program-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
}

.program-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

.program-card__icon {
  width: 56px;
  height: 56px;
  background: var(--bg-blue-tint);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.program-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.program-card p { font-size: 0.95rem; color: var(--text-light); flex: 1; }

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  padding: 1.5rem;
}

.stat__number {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section--dark .stat__number { color: #fff; }

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

.section--dark .stat__label { color: rgba(255,255,255,0.8); }

/* ---------- Why Choose Us / Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.feature__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-blue-tint);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature__content h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.feature__content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial__author {
  font-weight: 600;
  color: var(--text);
}

.testimonial__program {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.gallery-grid img:hover {
  box-shadow: var(--shadow-md);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--primary);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
}

.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

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

.cta-section__phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1.5rem;
}

.cta-section__phone a { color: #fff; }
.cta-section__phone a:hover { opacity: 0.85; color: #fff; }

/* ---------- Admissions Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

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

/* connector line between steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: var(--border);
}

/* ---------- Insurance Grid ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.insurance-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--text);
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}

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

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-item__question { background: var(--bg-blue-tint); }
.faq-item.active .faq-item__question::after { content: '\2212'; }

.faq-item__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.faq-item.active .faq-item__answer { display: block; }

/* ---------- Contact Info ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-blue-tint);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info__text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info__text p { margin-bottom: 0; font-size: 0.95rem; color: var(--text-light); }
.contact-info__text a { color: var(--primary); }

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

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

/* ---------- Blog ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.blog-categories {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-categories__btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-white);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.blog-categories__btn:hover,
.blog-categories__btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Blog Featured - stacked left images */
.blog-featured__image {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  align-self: start;
}

.blog-featured__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.blog-featured__author {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-light);
}

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

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.team-member__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-blue-tint);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.team-member h4 { margin-bottom: 0.25rem; }
.team-member__title { color: var(--primary); font-size: 0.9rem; font-weight: 500; }
.team-member__credentials { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Treatment Modalities ---------- */
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.modality {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.modality__check {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- Continuum of Care ---------- */
.continuum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.continuum__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 120px;
  transition: all var(--transition);
}

.continuum__step:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.continuum__number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.continuum__label {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.continuum__arrow {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  padding: 0 0.25rem;
}

/* ---------- Daily Schedule ---------- */
.schedule {
  max-width: 700px;
  margin: 0 auto;
}

.schedule__item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.schedule__time {
  width: 120px;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

.schedule__activity { flex: 1; color: var(--text-light); }

/* ---------- What to Bring ---------- */
.packing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.packing-list h4 { margin-bottom: 1rem; }
.packing-list ul { list-style: none; padding: 0; }
.packing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  padding-left: 1.5rem;
  position: relative;
}
.packing-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.packing-list--dont li::before {
  content: '\2717';
  color: #DC3545;
}

/* ---------- Privacy Policy ---------- */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-light);
}

.privacy-content h2::after { display: none; }

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

/* ---------- Back to Hub Button ---------- */
.back-to-hub {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 900;
  transition: all var(--transition);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-hub.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-hub:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.footer {
  background: #1A1F2E;
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer__links {
  list-style: none;
  padding: 0;
}

.footer__links li { margin-bottom: 0.5rem; }

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }

.footer__contact-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.7);
}
.footer__contact-item a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
}
.footer__bottom a:hover { color: #fff; }

/* ---------- HIPAA Notice ---------- */
.hipaa-notice {
  background: var(--bg-blue-tint);
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 2rem;
}

/* ---------- Service Area ---------- */
.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-area__city {
  padding: 0.35rem 1rem;
  background: var(--bg-blue-tint);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.two-col__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ---------- Levels of Care comparison ---------- */
.care-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.care-level {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.care-level:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.care-level__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-blue-tint);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

/* Nested care-levels & card-grid inside two-col */
.two-col .care-levels {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.two-col .care-level {
  padding: 1.25rem 1rem;
}

.two-col .card-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.two-col .program-card {
  padding: 1.25rem;
}

.two-col .program-card__icon {
  width: 44px;
  height: 44px;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__phone { display: none; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }

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

  .hub__visual { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .care-levels { grid-template-columns: repeat(2, 1fr); }
  .two-col .care-levels { grid-template-columns: 1fr; }
  .two-col .card-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .hero { min-height: 450px; }
  .hero--full { min-height: 70vh; }
  .hero__title { font-size: 2rem; }
  .hero--inner { min-height: 260px; }
  .hero--inner .hero__title { font-size: 1.75rem; }

  .hub__visual { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { grid-template-columns: 1fr; gap: 1rem; }
  .card-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }
  .packing-grid { grid-template-columns: 1fr; }
  .care-levels { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .continuum { flex-direction: column; gap: 0.75rem; }
  .continuum__step { flex-direction: row; min-width: unset; width: 100%; justify-content: flex-start; padding: 1rem 1.25rem; }
  .continuum__arrow { transform: rotate(90deg); }

  .blog-featured__image { position: static; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-section__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero__title { font-size: 1.65rem; }
  .stat__number { font-size: 2rem; }
}

/* ---------- Print ---------- */
@media print {
  .header, .footer, .back-to-hub, .mobile-nav { display: none; }
  .hero { min-height: auto; margin-top: 0; }
  .hero__overlay { background: none; }
  .hero__content { color: var(--text); }
  .section { padding: 1.5rem 0; }
  body { font-size: 12pt; }
}
