/* ============================================================
   NLSA Helpline - nlsahelpline.xyz
   Style: Nature Healing (#4)
   Architecture: Full-Screen Sections (#8)
   Generated: 2026-02-06
   ============================================================ */

/* --- 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-light: #3a7350;
  --primary-dark: #1e3d2a;
  --secondary: #7CB083;
  --secondary-light: #a0c8a6;
  --accent: #E8B84A;
  --accent-light: #f0cd76;
  --text: #1A2E1A;
  --text-light: #4a5e4a;
  --bg: #F5F9F5;
  --bg-alt: #FFFFFF;
  --bg-card: #FFFFFF;
  --shadow-green: rgba(45, 90, 61, 0.12);
  --shadow-soft: rgba(0, 0, 0, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-snap-type: y proximity;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Navigation --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
}
.skip-nav:focus {
  top: 16px;
  color: #fff;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px var(--shadow-green);
  backdrop-filter: blur(10px);
}

.header-logo a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}

.site-header.scrolled .header-logo a {
  color: var(--primary-dark);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.site-header.scrolled .header-nav a {
  color: var(--text);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.site-header.scrolled .header-phone {
  color: var(--primary);
}

.header-phone svg { width: 18px; height: 18px; }

.btn-cta-header {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}

.btn-cta-header:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  color: var(--primary-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.site-header.scrolled .menu-toggle span {
  background: var(--primary-dark);
}

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

/* ============ FULL-SCREEN SECTIONS ============ */
.fs-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
}

.fs-section.bg-white { background: var(--bg-alt); }
.fs-section.bg-light { background: var(--bg); }
.fs-section.bg-primary { background: var(--primary); color: #fff; }
.fs-section.bg-primary h2,
.fs-section.bg-primary h3 { color: #fff; }
.fs-section.bg-primary p { color: rgba(255,255,255,0.9); }

/* --- Dot Navigation (right side) --- */
.dot-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dot-nav a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(45, 90, 61, 0.25);
  border: 2px solid var(--primary);
  transition: var(--transition);
  position: relative;
}

.dot-nav a.active,
.dot-nav a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

.dot-nav a .dot-label {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.dot-nav a:hover .dot-label {
  opacity: 1;
}

/* --- Progress Bar --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 1100;
  transition: width 0.15s ease-out;
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 26, 0.75) 0%,
    rgba(45, 90, 61, 0.6) 50%,
    rgba(124, 176, 131, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-phone {
  display: block;
  margin-top: 24px;
  color: var(--accent-light);
  font-size: 1.3rem;
  font-weight: 700;
}

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

/* --- Scroll Indicator --- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.7);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  text-align: center;
}

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

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

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

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

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

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

.btn-accent:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  color: #fff;
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--primary);
  padding: 0;
  min-height: auto;
  display: flex;
  align-items: stretch;
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 16px;
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.trust-item:last-child { border-right: none; }

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

.trust-item span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============ SECTION CONTENT LAYOUT ============ */
.section-content {
  width: 100%;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

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

.section-header h2 {
  margin-bottom: 16px;
}

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

/* Leaf divider */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.leaf-divider::before,
.leaf-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--secondary-light);
}

.leaf-divider svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}

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

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45, 90, 61, 0.08);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-green);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg), rgba(124, 176, 131, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--primary);
  fill: none;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

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

/* ============ IMAGE GRID / GALLERY ============ */
.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

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

.img-grid img:hover {
  transform: scale(1.03);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 25px var(--shadow-green);
}

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

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
}

.stat-item p {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials-slider {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 16px var(--shadow-soft);
  display: none;
}

.testimonial-card.active { display: block; }

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--secondary-light);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

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

.testimonial-card .program {
  color: var(--text-light);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary-light);
  transition: var(--transition);
}

.testimonial-dots button.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ============ CTA SECTION ============ */
.cta-section,
.page-section.cta-section,
.page-section.cta-section:nth-child(odd),
.page-section.cta-section:nth-child(even) {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-section .section-content {
  position: relative;
  z-index: 1;
}

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

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

.cta-phone:hover { color: var(--accent-light); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

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

.footer-col h4 {
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  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: var(--accent); }

/* ============ INNER PAGE HERO ============ */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-height);
}

.page-hero .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 46, 26, 0.8) 0%,
    rgba(45, 90, 61, 0.65) 100%
  );
}

.page-hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.breadcrumbs a,
.breadcrumbs span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: rgba(255,255,255,0.4); }

/* ============ INNER PAGE SECTIONS ============ */
.page-section {
  padding: 80px 0;
}

.page-section:nth-child(even) {
  background: var(--bg-alt);
}

.page-section:nth-child(odd) {
  background: var(--bg);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img {
  border-radius: var(--radius);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(45, 90, 61, 0.08);
  transition: box-shadow var(--transition);
}

.team-card:hover {
  box-shadow: 0 8px 30px var(--shadow-green);
}

.team-card .role {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* ============ PROGRAMS TABS / SECTIONS ============ */
.program-section {
  padding: 80px 0;
}

.program-section:nth-child(odd) { background: var(--bg); }
.program-section:nth-child(even) { background: var(--bg-alt); }

.program-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.program-header .program-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-header .program-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}

.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { color: var(--text-light); margin: 0; }

/* Daily schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 24px;
  align-items: baseline;
}

.schedule-time {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  white-space: nowrap;
}

.schedule-activity {
  color: var(--text-light);
}

/* ============ INSURANCE GRID ============ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.insurance-item {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(45, 90, 61, 0.1);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.insurance-item:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 12px var(--shadow-green);
}

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

.faq-item {
  border-bottom: 1px solid rgba(45, 90, 61, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-question .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ============ BLOG CARDS ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45, 90, 61, 0.06);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px var(--shadow-green);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-card .category-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.blog-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid rgba(45, 90, 61, 0.08);
}

.contact-info-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  flex-shrink: 0;
}

.contact-info-card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-info-card a {
  color: var(--primary);
  font-weight: 600;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-green);
}

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

/* ============ PRIVACY PAGE ============ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(45, 90, 61, 0.1);
}

.privacy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.privacy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-content li {
  list-style: disc;
  color: var(--text-light);
  margin-bottom: 6px;
  line-height: 1.7;
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

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

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--primary-light);
}

.back-to-top svg {
  stroke: currentColor;
  fill: none;
}

/* ============ FOCUS STYLES ============ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
  .fade-up, .fade-in, .stagger > * { opacity: 1; transform: none; transition: none; }
  .scroll-indicator { animation: none; }
  .card:hover, .blog-card:hover { transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .menu-toggle { display: flex; }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
  }

  .header-nav.open { right: 0; }

  .header-nav a {
    color: rgba(255,255,255,0.85) !important;
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }

  .btn-cta-header {
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }

  .header-phone { display: none; }

  .dot-nav { display: none; }

  .fs-section { min-height: auto; scroll-snap-align: none; }
  html { scroll-snap-type: none; }

  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }

  .trust-bar .container { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 16px; }
  .trust-item:last-child { border-bottom: none; }

  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

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

  .page-hero { min-height: 40vh; }

  .section-content { padding: 60px 0; }
  .page-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 24px; font-size: 0.95rem; }
}
