/* ==========================================================================
   VBS Healing Services - Nature Healing #4 + Progressive Disclosure #10
   Colors: Forest Greens, Leaf Patterns, Organic Healing Energy
   Architecture: Progressive Disclosure with scroll-triggered reveals
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #2D5A3D;
  --color-primary-dark: #1E3F2B;
  --color-primary-light: #3A7550;
  --color-secondary: #7CB083;
  --color-secondary-light: #A4CDA9;
  --color-accent: #E8B84A;
  --color-accent-dark: #D4A033;
  --color-text: #1A2E1A;
  --color-text-light: #4A6B4A;
  --color-text-muted: #6B8E6B;
  --color-bg: #F5F9F5;
  --color-bg-white: #FFFFFF;
  --color-bg-soft: #EDF5ED;
  --color-border: #C8DFC8;
  --color-shadow: rgba(45, 90, 61, 0.1);
  --color-shadow-md: rgba(45, 90, 61, 0.15);
  --color-overlay: rgba(30, 63, 43, 0.7);
  --font-heading: 'Libre Baskerville', 'Georgia', serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --max-width: 1200px;
  --header-height: 70px;
}

/* ---------- 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(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary-dark);
  line-height: 1.3;
  font-weight: 600;
}
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }

/* ---------- Accessibility ---------- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: var(--transition);
}
.skip-nav:focus { top: 10px; color: #fff; }

/* ---------- Progress Bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  z-index: 9999;
  transition: width 0.2s linear;
  border-radius: 0 2px 2px 0;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px var(--color-shadow);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-logo .leaf-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50% 50% 50% 10%;
  font-size: 1rem;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-phone a {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-primary);
}
.header-phone a:hover { color: var(--color-accent); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn-cta-header {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-cta-header:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Navigation */
.main-nav { display: flex; align-items: center; }
.main-nav ul { display: flex; gap: 0.3rem; }
.main-nav a {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--color-bg-soft);
  color: var(--color-primary);
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: -5px 0 30px var(--color-shadow-md);
    transition: right 0.4s ease;
    z-index: 1050;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; width: 100%; }
  .main-nav a { display: block; padding: 0.75rem 1rem; font-size: 1.05rem; }
  .header-phone { display: none; }
  .btn-cta-header { display: none; }
  .mobile-phone {
    display: block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-align: center;
    width: 100%;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1040;
  }
  .nav-overlay.active { display: block; }
}
@media (min-width: 769px) {
  .mobile-phone { display: none; }
  .nav-overlay { display: none !important; }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: 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(30, 63, 43, 0.75) 0%, rgba(45, 90, 61, 0.55) 50%, rgba(124, 176, 131, 0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  color: #fff;
}
.hero-content h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 600;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 184, 74, 0.4);
}
.btn-secondary {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
  border-color: #fff;
}
.hero-phone {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.hero-phone a { color: #fff; }
.hero-phone a:hover { color: var(--color-accent); }

/* Inner Hero */
.hero-inner {
  position: relative;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: var(--header-height);
}
.hero-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 63, 43, 0.8), rgba(45, 90, 61, 0.6));
}
.hero-inner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero-inner h1 { font-size: 2.5rem; color: #fff; }
.hero-inner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.6); }

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

/* ---------- Sections ---------- */
.section {
  padding: 5rem 1.5rem;
}
.section-light { background: var(--color-bg-white); }
.section-soft { background: var(--color-bg-soft); }
.section-green {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: #fff;
}
.section-green h2,
.section-green h3,
.section-green h4 { color: #fff; }
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}
.section-green .section-header p { color: rgba(255,255,255,0.85); }

/* Leaf divider */
.leaf-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0.75rem 0 0;
}
.leaf-divider::before,
.leaf-divider::after {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 1px;
}
.leaf-divider span { color: var(--color-secondary); font-size: 1.2rem; }

/* ---------- Progressive Disclosure Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* Continue Button (Progressive Disclosure) */
.continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.continue-btn:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.continue-btn .arrow { font-size: 1.2rem; transition: var(--transition); }
.continue-btn:hover .arrow { transform: translateY(3px); }

/* Skip Button */
.skip-btn {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: underline;
}
.skip-btn:hover { color: var(--color-primary); }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 1rem 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 1rem;
}

/* ---------- Card Grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-shadow);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--color-shadow-md);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card-body p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 1rem; }
.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
}
.card-link:hover { gap: 0.7rem; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(5px);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
}
.stat-label {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}
.section-light .stat-item { background: var(--color-bg-soft); }
.section-light .stat-number { color: var(--color-primary); }

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(30,63,43,0.8));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

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

/* ---------- Timeline / Steps ---------- */
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 18px;
  top: 5px;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 0 0 5px var(--color-bg-soft);
}
.timeline-item h4 { margin-bottom: 0.3rem; }
.timeline-item p { color: var(--color-text-light); margin-bottom: 0; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg-white);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.3rem;
  color: var(--color-secondary);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ---------- Blog Cards ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-shadow);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px var(--color-shadow-md); }
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body { padding: 1.5rem; }
.blog-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-card-body h3 a { color: var(--color-primary-dark); }
.blog-card-body h3 a:hover { color: var(--color-primary); }
.blog-date { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 0.5rem; }
.blog-excerpt { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 1rem; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-card h4 { margin-bottom: 0.15rem; font-size: 1rem; }
.contact-info-card p { margin-bottom: 0; color: var(--color-text-light); font-size: 0.95rem; }
.contact-info-card a { color: var(--color-primary); font-weight: 600; }

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

/* ---------- Insurance Grid ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.insurance-item {
  padding: 1rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  transition: var(--transition);
}
.insurance-item:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-soft);
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; font-size: 2rem; 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: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-phone a { color: var(--color-accent); }
.cta-phone a:hover { color: #fff; }

/* ---------- Feature List ---------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.2rem;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.feature-item p { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 0; }

/* ---------- Two Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--color-shadow-md);
}
.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Daily Schedule Table ---------- */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-shadow);
}
.schedule-table thead { background: var(--color-primary); color: #fff; }
.schedule-table th,
.schedule-table td { padding: 0.9rem 1.25rem; text-align: left; }
.schedule-table tbody tr { background: var(--color-bg-white); border-bottom: 1px solid var(--color-border); }
.schedule-table tbody tr:nth-child(even) { background: var(--color-bg-soft); }
.schedule-table tbody tr:hover { background: #E0F0E0; }

/* ---------- Comparison Table ---------- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--color-shadow);
}
.comparison-table thead { background: var(--color-primary); color: #fff; }
.comparison-table th,
.comparison-table td { padding: 0.9rem 1.25rem; text-align: center; }
.comparison-table th:first-child,
.comparison-table td:first-child { text-align: left; }
.comparison-table tbody tr { background: var(--color-bg-white); border-bottom: 1px solid var(--color-border); }
.comparison-table tbody tr:nth-child(even) { background: var(--color-bg-soft); }

/* ---------- Privacy Page ---------- */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--color-primary); }
.legal-content h3 { font-size: 1.2rem; margin-top: 2rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { list-style: disc; margin-bottom: 0.4rem; color: var(--color-text-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 0;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-about p { font-size: 0.95rem; line-height: 1.6; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.footer-contact-icon { color: var(--color-accent); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 3rem;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--color-accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-inner h1 { font-size: 1.8rem; }
  .section { padding: 3.5rem 1.25rem; }
  .trust-bar-inner { gap: 1.5rem; }
  .trust-item { font-size: 0.85rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges { gap: 0.75rem; }
  .hero-badge { font-size: 0.8rem; padding: 0.4rem 0.8rem; }
  .timeline::before { left: 20px; }
  .timeline-item { padding-left: 55px; }
  .timeline-dot { left: 8px; width: 24px; height: 24px; font-size: 0.7rem; }
  .cta-phone { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.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; }
.mt-3 { margin-top: 3rem; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
