/* ==========================================================================
   Nova Way Wellness - Compassionate Care Style (#10) + Classic Multi-Page (#1)
   Domain: aadetox.org
   Colors: Soft Purple #7B68A6, Lavender #C9A0C9, Blush #F0B5B5
   Fonts: Poppins (headings), Open Sans (body)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --primary: #7B68A6;
  --primary-dark: #5E4D8A;
  --primary-light: #9B8BBF;
  --secondary: #C9A0C9;
  --secondary-light: #E0CBE0;
  --accent: #F0B5B5;
  --accent-dark: #D9908F;
  --text: #3D3250;
  --text-light: #6B5E7B;
  --bg: #FBF9FC;
  --bg-alt: #FFFFFF;
  --bg-card: #FFFFFF;
  --border: #E8DFF0;
  --shadow: rgba(123, 104, 166, 0.12);
  --shadow-hover: rgba(123, 104, 166, 0.22);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --sidebar-width: 280px;
}

/* --- 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;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
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 { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.35rem; }

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

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

/* --- Header --- */
.site-header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}

.header-top {
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top a { color: #fff; }
.header-top a:hover { color: var(--accent); }

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}
.logo:hover { color: var(--primary-dark); }
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

/* --- Navigation --- */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
}
.main-nav a {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--text);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-size: 0.95rem;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--bg);
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(123, 104, 166, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(123, 104, 166, 0.4);
  color: #fff;
}
.btn-secondary {
  background: var(--bg-alt);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 181, 181, 0.4);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.125rem; }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.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(61, 50, 80, 0.75), rgba(123, 104, 166, 0.55));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding: 3rem 0;
}
.hero-content h1 {
  color: #fff;
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-phone {
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-top: 1.5rem;
}
.hero-phone a { color: var(--accent); }
.hero-phone a:hover { color: #fff; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 4rem 0 3rem;
  color: #fff;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 2.25rem; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin: 0.5rem auto 0; }

/* --- Breadcrumbs --- */
.breadcrumbs {
  background: var(--bg-alt);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.breadcrumbs ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.breadcrumbs li::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-light);
}
.breadcrumbs li:last-child::after { content: ''; }
.breadcrumbs a { color: var(--primary); }
.breadcrumbs span { color: var(--text-light); }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--bg-alt);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
}
.trust-item h4 { font-size: 1rem; margin-bottom: 0; }
.trust-item p { font-size: 0.875rem; color: var(--text-light); margin: 0; }

/* --- Sections --- */
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header h2 {
  position: relative;
  padding-bottom: 1rem;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}
.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.25rem; }
.card-body p { color: var(--text-light); font-size: 0.95rem; }

/* Icon Card (no image) */
.icon-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}
.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}
.icon-card .card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--secondary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: var(--primary-dark);
}

/* --- Page Layout with Sidebar --- */
.page-content {
  padding: 3rem 0;
}
.page-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 3rem;
  align-items: start;
}
.main-content { min-width: 0; }

/* --- Sidebar --- */
.sidebar {
  position: sticky;
  top: 140px;
}
.sidebar-widget {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
}
.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav li { margin-bottom: 0.25rem; }
.sidebar-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.925rem;
  transition: all var(--transition);
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--bg);
  color: var(--primary);
  padding-left: 1rem;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}
.sidebar-cta h3 { color: #fff; border: none; padding: 0; margin-bottom: 0.75rem; }
.sidebar-cta p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.sidebar-cta .phone-link {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.75rem;
  font-family: 'Poppins', sans-serif;
}
.sidebar-cta .phone-link:hover { color: #fff; }

/* --- Content Sections (inner pages) --- */
.content-section {
  margin-bottom: 3rem;
  scroll-margin-top: 160px;
}
.content-section h2 {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}
.content-section h3 { margin-top: 1.5rem; }

/* --- Amenities Grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.amenity-item span { font-size: 1.25rem; }

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 4rem;
  color: var(--secondary-light);
  font-family: 'Poppins', serif;
  line-height: 1;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1rem;
  padding-top: 1.5rem;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 2.5rem 0;
}
.stat-item h3 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.stat-item p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* --- Timeline / Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
  margin: 2rem 0;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* --- FAQ Accordion --- */
.faq-list { margin: 2rem 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition);
}
.faq-question:hover { color: var(--primary); background: var(--bg); }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-question::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Insurance Grid --- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.insurance-item {
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.insurance-item:hover {
  border-color: var(--primary);
  background: var(--bg-card);
}

/* --- Blog Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-hover);
}
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}
.blog-card-meta .category {
  background: var(--secondary-light);
  color: var(--primary-dark);
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.blog-card-body h3 { font-size: 1.15rem; }
.blog-card-body h3 a { color: var(--text); }
.blog-card-body h3 a:hover { color: var(--primary); }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }

/* --- Contact Info Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}
.contact-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
}
.contact-card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--secondary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 4px 20px var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  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-phone {
  font-size: 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-phone a { color: var(--accent); }
.cta-phone a:hover { color: #fff; }

/* --- Footer --- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.footer-col p { font-size: 0.925rem; line-height: 1.7; margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: var(--accent); }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.925rem;
  transition: all var(--transition);
}
.footer-links a:hover { padding-left: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}
.comparison-table th {
  background: var(--primary);
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
.comparison-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--bg); }

/* --- Daily Schedule --- */
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.schedule-list li {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.schedule-time {
  font-weight: 600;
  color: var(--primary);
  min-width: 100px;
  font-family: 'Poppins', sans-serif;
}

/* --- Highlight Box --- */
.highlight-box {
  background: linear-gradient(135deg, var(--secondary-light), var(--accent));
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  border-left: 4px solid var(--primary);
}
.highlight-box h3 { color: var(--primary-dark); }

/* --- Privacy Page --- */
.privacy-content h2 {
  margin-top: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}
.privacy-content h2:first-child { margin-top: 0; }

/* --- Blog Full Post --- */
.blog-featured {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 3rem;
}
.blog-featured-img { height: 350px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body { padding: 2rem; }
.blog-featured-body h2 { font-size: 1.5rem; }
.blog-featured-body h2 a { color: var(--text); }
.blog-featured-body h2 a:hover { color: var(--primary); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .hero { min-height: 500px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1.05rem; }
  .section { padding: 3.5rem 0; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
    padding: 1rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav a { padding: 0.875rem 1rem; }
  .header-cta .btn { display: none; }

  .trust-items { grid-template-columns: 1fr; gap: 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-featured-img { height: 220px; }
  .comparison-table { font-size: 0.875rem; }
  .comparison-table th, .comparison-table td { padding: 0.625rem 0.75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.75rem; }
  .hero { min-height: 420px; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-btns { flex-direction: column; }
  .hero-phone { font-size: 1.25rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

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