/* ============================================================
   AXS Rehab - Compassionate Care #10 + Full-Screen Sections #8
   Colors: Soft purples, gentle pinks, nurturing warmth
   Architecture: Immersive full-viewport sections
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --primary: #7B68A6;
  --primary-dark: #5E4D8A;
  --primary-light: #9B8BC6;
  --secondary: #C9A0C9;
  --accent: #F0B5B5;
  --accent-dark: #D4908F;
  --text: #3D3250;
  --text-light: #6B5F7E;
  --text-muted: #8A7FA0;
  --bg: #FBF9FC;
  --bg-alt: #F3EEF6;
  --white: #FFFFFF;
  --border: #E8DFF0;
  --shadow: rgba(123, 104, 166, 0.12);
  --shadow-lg: rgba(123, 104, 166, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--primary-dark); }
ul, ol { list-style: none; }

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.25;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.6em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 0.4em; }
h4 { font-size: 1.15rem; margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 249, 252, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px var(--shadow);
}
.header-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-logo:hover { color: var(--primary-dark); }
.header-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

/* --- Navigation --- */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--bg-alt);
  color: var(--primary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--shadow-lg);
  color: var(--white) !important;
}

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

/* --- Mobile Nav --- */
@media (max-width: 991px) {
  .hamburger { display: flex; }
  .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px var(--shadow-lg);
    padding: 100px 2rem 2rem;
    transition: right var(--transition);
    z-index: 1050;
    overflow-y: auto;
  }
  .nav-wrapper.open { right: 0; }
  .main-nav { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .main-nav a { padding: 0.8rem 1rem; font-size: 1.05rem; }
  .header-cta { justify-content: center; margin-top: 1rem; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(61, 50, 80, 0.4);
    z-index: 1040;
  }
  .nav-overlay.show { display: block; }
}

/* --- Full-Screen Section Base --- */
.fs-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 2rem 60px;
  position: relative;
  overflow: hidden;
}
.fs-section:nth-child(odd) { background: var(--white); }
.fs-section:nth-child(even) { background: var(--bg); }

.section-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 120px 2rem 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 104, 166, 0.85), rgba(201, 160, 201, 0.7));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--white);
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--white);
  margin-bottom: 0.5em;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero-content p {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-phone {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.5rem;
  display: inline-block;
}
.hero-phone:hover { color: var(--accent); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 6px 28px rgba(240,181,181,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow);
}
.btn-accent:hover {
  box-shadow: 0 6px 28px var(--shadow-lg);
  color: var(--white);
}

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

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.section-header h2 { color: var(--text); }
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px var(--shadow-lg);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--bg-alt), rgba(201, 160, 201, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; }
.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link:hover { gap: 0.7rem; }

/* --- Card Grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card-grid-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

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

/* --- Stats Bar --- */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2.5rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 24px var(--shadow);
  border-left: 4px solid var(--secondary);
  position: relative;
}
.testimonial-card .quote-mark {
  font-size: 3rem;
  color: var(--secondary);
  line-height: 1;
  opacity: 0.5;
  font-family: Georgia, serif;
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0.5rem 0 1rem;
}
.testimonial-card .author {
  font-weight: 600;
  color: var(--text);
  font-size: 0.92rem;
}
.testimonial-card .author span {
  font-weight: 400;
  color: var(--text-muted);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 5rem 2rem;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-phone {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-top: 1rem;
}
.cta-phone:hover { color: var(--accent); }

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

/* --- Accordion / FAQ --- */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--bg-alt); }
.accordion-btn .icon-toggle {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}
.accordion-item.active .accordion-btn { background: var(--bg-alt); }
.accordion-item.active .icon-toggle { transform: rotate(45deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-content-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Timeline / Steps --- */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.step-item {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  position: relative;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-item h4 { margin-bottom: 0.4rem; }
.step-item p { color: var(--text-light); font-size: 0.92rem; }

/* --- Contact Info --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
}
.contact-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.contact-card h4 { margin-bottom: 0.5rem; }
.contact-card p, .contact-card a { color: var(--text-light); font-size: 0.95rem; }

/* --- Map --- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* --- Insurance Grid --- */
.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.insurance-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
}
.insurance-badge:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 36px var(--shadow-lg);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
}
.blog-card-meta .category {
  background: var(--bg-alt);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  color: var(--primary);
  font-weight: 600;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { color: var(--text-light); font-size: 0.92rem; }

/* --- Footer --- */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-about p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-about .footer-phone {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-about .footer-phone:hover { color: var(--secondary); }
.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), padding-left var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--accent); }

/* --- Dot Navigation (Full-Screen Sections) --- */
.dot-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dot-nav a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid transparent;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  display: block;
}
.dot-nav a:hover,
.dot-nav a.active {
  background: var(--primary);
  transform: scale(1.3);
  border-color: var(--secondary);
}

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

/* --- Content Sections --- */
.content-section {
  padding: 5rem 2rem;
}
.content-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.two-col-text h2 { margin-bottom: 0.5em; }
.two-col-text p { color: var(--text-light); }
.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 36px var(--shadow);
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }

/* --- Schedule Table --- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}
.schedule-table th {
  background: var(--primary);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}
.schedule-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}
.schedule-table tr:nth-child(even) td { background: var(--bg); }
.schedule-table tr:hover td { background: var(--bg-alt); }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  font-size: 0.92rem;
}
.comparison-table th {
  background: var(--bg-alt);
  padding: 1rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--border);
}
.comparison-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.comparison-table td:first-child { text-align: left; font-weight: 600; }

/* --- Tags --- */
.tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--primary);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0.2rem;
}

/* --- Privacy / Legal --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
.legal-content h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--primary); }
.legal-content h3 { font-size: 1.15rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-content p { color: var(--text-light); margin-bottom: 1em; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1em; }
.legal-content ul li {
  color: var(--text-light);
  margin-bottom: 0.4em;
  position: relative;
  padding-left: 1.2rem;
}
.legal-content ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.55em;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 1rem 0;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* --- Packing List --- */
.packing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.packing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.packing-card h4 { margin-bottom: 0.75rem; color: var(--primary); }
.packing-card ul { padding: 0; }
.packing-card li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 0.92rem;
}
.packing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .site-header { padding: 0 1rem; }
  .fs-section { padding: 80px 1.25rem 40px; }
  .hero-section { padding: 100px 1.25rem 60px; }
  .content-section { padding: 3.5rem 1.25rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-bar { gap: 1.5rem; }
  .stats-bar { gap: 2rem; }
  .dot-nav { display: none; }
  .cta-section { padding: 3.5rem 1.25rem; }
  .hero-content h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .steps { flex-direction: column; align-items: center; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
