/* ============================================================
   Find Recovery Help — CSS
   Calming healthcare aesthetic: teals, blues, soft greens
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Primary palette */
  --teal-900: #0a3d3d;
  --teal-800: #0e5555;
  --teal-700: #137272;
  --teal-600: #188a8a;
  --teal-500: #1da3a3;
  --teal-400: #3fbfbf;
  --teal-300: #7dd4d4;
  --teal-200: #b4e6e6;
  --teal-100: #dff5f5;
  --teal-50: #f0fafa;

  /* Accent blues */
  --blue-900: #1a365d;
  --blue-700: #2b6cb0;
  --blue-500: #4299e1;
  --blue-300: #90cdf4;
  --blue-100: #ebf8ff;

  /* Warm greens */
  --green-700: #276749;
  --green-500: #38a169;
  --green-300: #9ae6b4;
  --green-100: #f0fff4;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f1f5f7;
  --gray-200: #e2e8ed;
  --gray-300: #cbd5de;
  --gray-400: #9aa8b7;
  --gray-500: #6b7d8e;
  --gray-600: #4a5e6f;
  --gray-700: #334756;
  --gray-800: #1e3040;
  --gray-900: #0f1c2a;

  /* Warm accents */
  --warm-white: #fefdfb;
  --warm-100: #fdf8f0;
  --gold-500: #d69e2e;
  --gold-300: #f6e05e;
  --orange-500: #dd6b20;

  /* Semantic */
  --cta-bg: #c75526;
  --cta-hover: #b04820;
  --cta-text: #ffffff;
  --link: var(--teal-700);
  --link-hover: var(--teal-900);

  /* Typography */
  --font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --header-height: 68px;
  --top-bar-height: 38px;
  --section-pad: 80px;
  --container-max: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--link-hover); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--gray-900);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin-bottom: 0.4em; }
p { margin-bottom: 1em; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--teal-700);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--teal-900);
  color: var(--teal-200);
  font-size: 13px;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-bar-phone {
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.top-bar-phone:hover { color: var(--gold-300); }

/* ---------- Site Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-800);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-icon { color: var(--teal-600); }
.logo-accent { color: var(--teal-500); }
.logo:hover { color: var(--teal-900); }

/* Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--teal-700);
  background: var(--teal-50);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-700);
  font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: var(--teal-50);
  color: var(--teal-700);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-bg);
  color: var(--cta-text) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.15s;
  flex-shrink: 0;
}
.header-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  color: var(--cta-text) !important;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15,28,42,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.mobile-overlay.active { display: flex; }
.mobile-nav {
  text-align: center;
  padding: 40px;
}
.mobile-nav ul { margin-bottom: 30px; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--teal-300); }
.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-bg);
  color: var(--white) !important;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(168deg, var(--teal-900) 0%, var(--teal-800) 40%, var(--blue-900) 100%);
  color: var(--white);
  padding: clamp(60px, 10vw, 100px) 0 clamp(60px, 10vw, 100px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(29,163,163,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--warm-white), transparent);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-200);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--teal-200);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-bg);
  color: var(--white) !important;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(199,85,38,0.35);
}
.btn-primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(199,85,38,0.45);
  color: var(--white) !important;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white) !important;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: var(--white) !important;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-200);
  font-size: 14px;
  font-weight: 500;
}
.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-pad) 0;
}
.section-alt {
  background: var(--gray-50);
}
.section-teal {
  background: var(--teal-50);
}
.section-dark {
  background: var(--teal-900);
  color: var(--white);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}
.section-dark .section-header p {
  color: var(--teal-200);
}
.section-dark h2 { color: var(--white); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal-600);
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 14px; }
.card-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { gap: 8px; }

/* ---------- Location Grid ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.location-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.location-link:hover {
  border-color: var(--teal-400);
  color: var(--teal-700);
  background: var(--teal-50);
}
.location-link svg { flex-shrink: 0; color: var(--teal-500); }

/* ---------- Signs Section ---------- */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.sign-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sign-num {
  width: 36px;
  height: 36px;
  background: var(--teal-100);
  color: var(--teal-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.sign-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  color: var(--white);
  margin: 40px 0;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 12px; }
.cta-banner p { color: var(--teal-200); margin-bottom: 24px; font-size: 1.05rem; }
.cta-banner .btn-primary {
  font-size: 19px;
  padding: 18px 40px;
}

/* ---------- City / Treatment Pages ---------- */
.page-hero {
  background: linear-gradient(168deg, var(--teal-900) 0%, var(--blue-900) 100%);
  color: var(--white);
  padding: clamp(48px, 8vw, 80px) 0;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--warm-white), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--teal-200); font-size: 1.1rem; max-width: 660px; }
.page-hero .breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
}
.page-hero .breadcrumb a {
  color: var(--teal-300);
}
.page-hero .breadcrumb span { color: var(--teal-400); }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: var(--section-pad) 0;
}
.content-main article {
  line-height: 1.8;
}
.content-main h2 {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.content-main h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.content-main h3 { margin-top: 32px; color: var(--gray-800); }
.content-main ul, .content-main ol {
  margin: 16px 0 24px 24px;
}
.content-main li {
  margin-bottom: 8px;
  color: var(--gray-700);
  list-style: disc;
}
.content-main ol li { list-style: decimal; }

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-900));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.sidebar-cta h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.sidebar-cta p { color: var(--teal-200); font-size: 0.95rem; margin-bottom: 20px; }
.sidebar-cta .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 16px;
}
.sidebar-links {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sidebar-links h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.sidebar-links a {
  display: block;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: 14px;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s;
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--teal-600); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--teal-700); }
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--teal-500);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---------- Insurance ---------- */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.insurance-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.insurance-card:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

/* ---------- About ---------- */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.about-value {
  text-align: center;
  padding: 32px 20px;
}
.about-value-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--teal-600);
}
.about-value h3 { font-size: 1.1rem; }
.about-value p { color: var(--gray-600); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 24px;
  margin-bottom: 62px; /* space for sticky CTA */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
}
.footer-col a {
  color: var(--gray-400);
  font-size: 14px;
  display: block;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-300); }
.footer-phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal-300) !important;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-disclaimers {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-bottom: 16px;
}
.footer-disclaimers p {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.footer-bottom {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

/* ---------- Sticky Bottom CTA ---------- */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--cta-bg);
  padding: 10px 16px;
  display: none;
}
.bottom-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 700;
  padding: 6px;
}

/* ---------- Treatment list inline ---------- */
.treatment-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.treatment-type-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s, transform 0.15s;
}
.treatment-type-card:hover {
  border-color: var(--teal-300);
  transform: translateY(-2px);
}
.treatment-type-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-50);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  flex-shrink: 0;
}
.treatment-type-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.treatment-type-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
  .sidebar-cta { position: static; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 48px;
    --header-height: 60px;
  }
  .top-bar-text { display: none; }
  .top-bar-phone { margin: 0 auto; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .sticky-bottom-cta { display: block; }
  .site-footer { margin-bottom: 56px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 32px 20px; }
  .card-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .insurance-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; gap: 16px; }
  .insurance-grid { grid-template-columns: 1fr; }
}
