/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────────────────────── */
:root {
  --green-900: #1B5E20;
  --green-800: #2E7D32;
  --green-700: #388E3C;
  --green-600: #43A047;
  --green-100: #E8F5E9;
  --green-50:  #F1F8F2;
  --teal:      #00897B;
  --teal-light:#E0F2F1;
  --amber:     #F57F17;
  --amber-light:#FFF8E1;
  --text:      #1C2B1C;
  --text-muted:#546754;
  --border:    #D8E8D8;
  --bg:        #F5F8F5;
  --white:     #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);
  --radius:    12px;
  --radius-sm: 8px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-800); text-decoration: none; }
a:hover { color: var(--green-700); text-decoration: underline; }
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--text);
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 840px; margin: 0 auto; padding: 0 20px; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--green-900);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}
.logo-sub {
  font-size: .7rem;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  display: block;
}
.header-search {
  flex: 1;
  max-width: 460px;
}
.header-search-form {
  display: flex;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  overflow: hidden;
}
.header-search-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  color: #fff;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
}
.header-search-form input::placeholder { color: rgba(255,255,255,.6); }
.header-search-form button {
  background: var(--green-600);
  border: none;
  padding: 8px 16px;
  color: #fff;
  cursor: pointer;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}
.header-search-form button:hover { background: var(--green-700); }
.header-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-shrink: 0;
}
.header-nav a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}
.header-nav a:hover { color: #fff; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, #2E7D32 50%, #1B5E20 100%);
  color: #fff;
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-search {
  max-width: 600px;
  margin: 0 auto;
}
.hero-search-form {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.hero-search-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}
.hero-search-form button {
  background: var(--green-700);
  border: none;
  padding: 16px 28px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background .2s;
  white-space: nowrap;
}
.hero-search-form button:hover { background: var(--green-600); }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: 4px;
}

/* ── Search Results ───────────────────────────────────────────────────────── */
.search-page { padding: 40px 20px; }
#search-results-list { list-style: none; }
#search-results-list li { margin-bottom: 1px; }
#search-results-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: box-shadow .15s, border-color .15s;
  gap: 12px;
}
#search-results-list a:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-600);
}
.sr-name { font-weight: 600; color: var(--text); }
.sr-location { font-size: .85rem; color: var(--text-muted); }
.sr-arrow { color: var(--green-700); font-size: 1.2rem; }
#search-count { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
#search-empty { display: none; text-align: center; padding: 40px 0; color: var(--text-muted); }

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green-800); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--text-muted); }

/* ── Page Header ──────────────────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: #fff;
  padding: 48px 20px;
}
.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.page-header p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 600px;
}
.page-header-meta {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.page-header-meta span {
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .85rem;
  font-weight: 500;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.card-body { padding: 20px; }
.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--green-800); }
.card-meta {
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-meta-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.card-icon { flex-shrink: 0; width: 16px; }
.card-badge {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: .75rem;
  font-weight: 600;
  margin-top: 10px;
}
.card-link-btn {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--green-50);
  color: var(--green-800);
  font-weight: 600;
  font-size: .85rem;
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: background .2s;
}
.card-link-btn:hover {
  background: var(--green-100);
  text-decoration: none;
}
/* Stretched link — makes the entire card clickable */
.card-link-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── Center Detail Page ───────────────────────────────────────────────────── */
.center-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  padding: 40px 0;
}
.center-main {}
.center-sidebar {}
.center-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
  background: var(--green-50);
}
.center-image-placeholder {
  width: 100%;
  height: 240px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--green-100), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 24px;
}
.detail-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-100);
  color: var(--green-900);
}
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.detail-row:last-child { border-bottom: none; }
.detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.detail-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.detail-value {
  font-size: .95rem;
  color: var(--text);
}
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-800);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}
.phone-btn:hover {
  background: var(--green-700);
  color: #fff;
  text-decoration: none;
}
.website-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s;
}
.website-btn:hover {
  background: #00796B;
  color: #fff;
  text-decoration: none;
}
.action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 8px 4px;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.hours-table td:first-child { font-weight: 600; color: var(--text); }
.hours-table td:last-child { color: var(--text-muted); text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-closed { color: #B71C1C !important; font-style: italic; }
.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-sm);
  border: none;
  overflow: hidden;
}
.map-link-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 10px;
  background: var(--amber-light);
  color: var(--amber);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  border: 1px solid #FFE082;
  transition: background .2s;
}
.map-link-btn:hover {
  background: #FFECB3;
  text-decoration: none;
}

/* ── Top 5 Section ────────────────────────────────────────────────────────── */
.top5-section {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  color: #fff;
  padding: 32px;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.top5-section h2 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.top5-list { list-style: none; }
.top5-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.top5-item:last-child { border-bottom: none; }
.top5-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.top5-rank.gold { background: #FFD700; color: #1B5E20; }
.top5-rank.silver { background: #C0C0C0; color: #1B5E20; }
.top5-rank.bronze { background: #CD7F32; color: #fff; }
.top5-name { font-weight: 600; font-size: 1rem; }
.top5-address { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.top5-arrow { margin-left: auto; color: rgba(255,255,255,.6); }
.top5-item a { color: #fff; text-decoration: none; }
.top5-item a:hover { text-decoration: underline; }

/* ── State/City Grid ──────────────────────────────────────────────────────── */
.section {
  padding: 60px 0;
}
.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.state-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: box-shadow .15s, border-color .15s;
  color: var(--text);
}
.state-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--green-600);
  text-decoration: none;
  color: var(--text);
}
.state-card-name { font-weight: 600; font-size: .95rem; }
.state-card-count {
  font-size: .8rem;
  color: var(--text-muted);
  background: var(--green-50);
  border-radius: 999px;
  padding: 2px 8px;
  font-weight: 600;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: box-shadow .15s, border-color .15s;
  color: var(--text);
}
.city-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-600);
  text-decoration: none;
  color: var(--text);
}
.city-card-name { font-weight: 500; font-size: .9rem; }
.city-card-count {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Info Box ─────────────────────────────────────────────────────────────── */
.info-box {
  background: var(--green-50);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.info-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green-900);
}
.info-box p { font-size: .92rem; color: var(--text-muted); }
.tip-box {
  background: var(--amber-light);
  border: 1px solid #FFE082;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.tip-box h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #E65100;
  margin-bottom: 8px;
}
.tip-box ul { padding-left: 20px; }
.tip-box li { font-size: .9rem; color: #5D4037; margin-bottom: 4px; }

/* ── Articles ─────────────────────────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.article-card-thumb {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.article-card-body { padding: 20px; }
.article-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.article-card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}
.article-card-title a { color: var(--text); text-decoration: none; }
.article-card-title a:hover { color: var(--green-800); }
.article-card-intro {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: .8rem;
  color: var(--text-muted);
}
.article-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-100);
}
.article-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--text);
}
.article-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 6px;
  color: var(--text);
}
.article-content p {
  margin-bottom: 16px;
  line-height: 1.75;
}
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.article-content li {
  margin-bottom: 6px;
  line-height: 1.65;
}
.article-content strong { color: var(--text); }
.article-header {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  padding: 48px 0 56px;
  color: #fff;
}
.article-header h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 700px;
  margin-bottom: 12px;
}
.article-header-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
}
.article-header-meta .article-cat { background: rgba(255,255,255,.15); color: #fff; }

/* ── Nearby Centers ───────────────────────────────────────────────────────── */
.nearby-list { list-style: none; }
.nearby-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nearby-item:last-child { border-bottom: none; }
.nearby-item a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nearby-item a:hover { color: var(--green-800); }
.nearby-item-addr {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── AdSense Placeholders ─────────────────────────────────────────────────── */
.ad-unit { margin: 24px 0; text-align: center; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,.8);
  margin-top: 80px;
}
.footer-top {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text { font-size: 1.3rem; }
.footer-brand p {
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

/* ── Pagination ───────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: .9rem;
  text-decoration: none;
  color: var(--text);
  background: var(--white);
  font-weight: 500;
  transition: all .15s;
}
.pagination a:hover {
  border-color: var(--green-600);
  color: var(--green-800);
}
.pagination .current {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

/* ── Intro description block ──────────────────────────────────────────────── */
.intro-text {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
  line-height: 1.75;
  font-size: .97rem;
}
.intro-text p { margin-bottom: 8px; }
.intro-text p:last-child { margin-bottom: 0; }

/* ── Contact Form ─────────────────────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 560px;
  margin: 0 auto;
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form p { color: var(--text-muted); margin-bottom: 28px; font-size: .95rem; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green-600);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  background: var(--green-800);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.form-submit:hover { background: var(--green-700); }

/* ── Static pages ─────────────────────────────────────────────────────────── */
.static-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px;
}
.static-content h1 { margin-bottom: 8px; }
.static-content h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.static-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.static-content p { margin-bottom: 14px; line-height: 1.75; }
.static-content ul { padding-left: 24px; margin-bottom: 14px; }
.static-content li { margin-bottom: 6px; }
.static-date { color: var(--text-muted); font-size: .9rem; margin-bottom: 32px; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .center-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; }
  .header-search { max-width: 100%; order: 3; flex: 0 0 100%; }
  .header-nav { gap: 12px; }
  .hero { padding: 48px 20px; }
  .hero-stats { gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cards-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 480px) {
  .header-nav .hide-mobile { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .action-buttons { flex-direction: column; }
  .phone-btn, .website-btn { justify-content: center; }
}
