/* =============================================
   NKY Dispensary Directory — Main Stylesheet
   ============================================= */

:root {
  --green-dark:   #14532d;
  --green:        #16a34a;
  --green-light:  #22c55e;
  --green-pale:   #f0fdf4;
  --green-border: #bbf7d0;
  --text:         #111827;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --bg:           #ffffff;
  --bg-gray:      #f9fafb;
  --radius:       10px;
  --shadow:       0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Header ---- */
.site-header {
  background: var(--green-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.logo-icon { font-size: 1.5rem; }

.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav a {
  color: rgba(255,255,255,0.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s;
  text-decoration: none;
}
.nav a:hover, .nav a.active { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #166534 60%, #15803d 100%);
  color: #fff;
  padding: 4rem 1.25rem;
  text-align: center;
}
.hero--sm { padding: 2.5rem 1.25rem; }

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.hero-sub {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-search {
  display: flex;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-search input {
  flex: 1;
  padding: .85rem 1.25rem;
  border: none;
  font-size: 1rem;
  outline: none;
}

.hero-search button {
  padding: .85rem 1.5rem;
  background: var(--green-light);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.hero-search button:hover { background: var(--green); }

.hero-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
}
.hero-cities span { opacity: .7; }
.hero-cities a {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .85rem;
  text-decoration: none;
  transition: background .15s;
}
.hero-cities a:hover { background: rgba(255,255,255,0.3); }

/* ---- Stats bar ---- */
.stats-bar {
  background: var(--green-pale);
  border-bottom: 1px solid var(--green-border);
  padding: 1rem 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.5rem; color: var(--green-dark); }
.stat span { font-size: .85rem; color: var(--text-muted); }

/* ---- Sections ---- */
.section { padding: 3rem 0; }
.section--green { background: var(--green-pale); border-top: 1px solid var(--green-border); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.section-title { font-size: 1.5rem; font-weight: 700; }

/* ---- Cards ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-link { display: flex; flex-direction: column; height: 100%; color: var(--text); text-decoration: none; }

.card-body { padding: 1.25rem; flex: 1; }

.card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }

.card-meta { display: flex; gap: 1rem; font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem; }

.card-address { font-size: .85rem; color: var(--text-muted); margin-bottom: .4rem; }
.card-phone { font-size: .85rem; color: var(--text-muted); margin-bottom: .5rem; }
.card-desc { font-size: .88rem; color: var(--text-muted); }

.card-footer {
  padding: .75rem 1.25rem;
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: .55rem 1.1rem;
  background: var(--green);
  color: #fff;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background .15s;
}
.btn:hover { background: var(--green-dark); text-decoration: none; }

.btn--sm { padding: .3rem .7rem; font-size: .8rem; }
.btn--full { width: 100%; text-align: center; }
.btn--outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn--outline:hover { background: var(--green-pale); }
.btn--green { background: var(--green); }
.btn--red { background: #dc2626; border-color: #dc2626; }
.btn--red:hover { background: #b91c1c; }
.btn--maps { background: #4285f4; border-color: #4285f4; margin-top: .75rem; }
.btn--maps:hover { background: #2b6cb0; }

/* ---- Badges ---- */
.badge {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}
.badge--featured { background: #fef3c7; color: #92400e; }
.badge--green { background: #dcfce7; color: #166534; }
.badge--yellow { background: #fef3c7; color: #92400e; }
.badge--red { background: #fee2e2; color: #991b1b; }

/* ---- Directory layout ---- */
.directory-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-items: start;
}

.sidebar { position: sticky; top: 76px; }

.sidebar-toggle {
  display: none;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}
.sidebar-toggle-icon {
  transition: transform .2s;
  float: right;
}
.sidebar-toggle[aria-expanded="true"] .sidebar-toggle-icon {
  transform: rotate(180deg);
}

.sidebar-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  margin-bottom: 1.25rem;
}
.sidebar-section h3 { font-size: .95rem; margin-bottom: .75rem; }

.sidebar-input {
  width: 100%;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: .5rem;
  font-size: .9rem;
}

.filter-list { list-style: none; }
.filter-list li { margin-bottom: .25rem; }
.filter-list a {
  display: block;
  padding: .3rem .5rem;
  border-radius: 5px;
  font-size: .88rem;
  color: var(--text);
  text-decoration: none;
  transition: background .1s;
}
.filter-list a:hover { background: var(--bg-gray); }
.filter-list a.active { background: var(--green-pale); color: var(--green-dark); font-weight: 600; }

.directory-header { margin-bottom: 1.25rem; }
.directory-header h1 { font-size: 1.5rem; }
.directory-count { color: var(--text-muted); font-size: .9rem; }

.listing-list { display: flex; flex-direction: column; gap: 1rem; }

.listing-ad { margin: .5rem 0; }

.empty-state { text-align: center; padding: 3rem; color: var(--text-muted); }

/* ---- Pagination ---- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ---- Business page ---- */
.business-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-items: start;
}

.business-main { min-width: 0; }

.breadcrumb {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); }

.business-header { margin-bottom: 1.5rem; }

.business-title-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.business-title-row h1 { font-size: 1.75rem; }

.rating-badge {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  padding: .35rem .75rem;
  border-radius: var(--radius);
  white-space: nowrap;
}
.rating-num { font-size: 1.25rem; font-weight: 700; color: var(--green-dark); }
.rating-count { font-size: .8rem; color: var(--text-muted); }

.star { color: #d1d5db; }
.star--full { color: #f59e0b; }

.business-meta-row { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.meta-item { display: flex; align-items: center; gap: .5rem; font-size: .95rem; }
.meta-icon { width: 1.5rem; text-align: center; }

.business-section { margin-bottom: 2rem; }
.business-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; padding-bottom: .4rem; border-bottom: 2px solid var(--green-pale); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: .45rem .5rem; font-size: .92rem; }
.hours-day { width: 120px; font-weight: 600; color: var(--green-dark); }

.business-map { height: 300px; border-radius: var(--radius); border: 1px solid var(--border); }

.reviews-list { display: flex; flex-direction: column; gap: 1rem; }
.review-card { background: var(--bg-gray); border-radius: var(--radius); padding: 1rem; }
.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .4rem; flex-wrap: wrap; }
.review-date { font-size: .8rem; color: var(--text-muted); }
.review-text { font-size: .92rem; }

.nearby-list { list-style: none; }
.nearby-list li { border-bottom: 1px solid var(--border); }
.nearby-list li:last-child { border-bottom: none; }
.nearby-list a { display: flex; justify-content: space-between; align-items: center; padding: .6rem .25rem; color: var(--text); text-decoration: none; font-size: .9rem; }
.nearby-list a:hover { color: var(--green); }
.nearby-rating { font-size: .8rem; color: var(--text-muted); }

/* ---- Ad placeholders (shown when no AdSense ID) ---- */
.ad-placeholder {
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: .8rem;
  border-radius: 6px;
  margin: .5rem 0;
}
.ad-placeholder--leaderboard { height: 90px; max-width: 728px; margin: .5rem auto; }
.ad-placeholder--rectangle { height: 250px; max-width: 300px; }
.ad-placeholder--inline { height: 90px; }

.ad-slot { margin: .5rem 0; }
.ad-slot:empty { display: none; }
.ad-slot .adsbygoogle:not([data-ad-status]) { display: none !important; }

/* ---- Footer ---- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer-col h3, .footer-col h4 { color: #fff; margin-bottom: .75rem; font-size: 1rem; }
.footer-col p { font-size: .9rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .35rem; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: .9rem; text-decoration: none; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.25rem; }
.footer-bottom p { font-size: .82rem; }
.disclaimer { opacity: .6; margin-top: .4rem; }

/* ---- Admin styles ---- */
.admin-body { background: #f1f5f9; }

.admin-login-wrap {
  max-width: 380px;
  margin: 6rem auto;
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.admin-login-wrap h1 { margin-bottom: 1.5rem; }

.admin-login-form { text-align: left; }
.admin-login-form label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.admin-login-form input { display: block; width: 100%; margin-top: .3rem; padding: .6rem .85rem; border: 1px solid var(--border); border-radius: 6px; font-size: 1rem; }
.admin-login-form button { margin-top: .5rem; }

.admin-layout { display: flex; min-height: 100vh; }

.admin-nav {
  width: 220px;
  min-width: 220px;
  background: var(--green-dark);
  color: #fff;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
}

.admin-nav-logo { padding: 0 1.25rem 1.5rem; font-size: 1.1rem; font-weight: 700; }

.admin-nav ul { list-style: none; flex: 1; }
.admin-nav ul li a, .admin-nav ul li button, .nav-logout {
  display: block;
  width: 100%;
  padding: .6rem 1.25rem;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  transition: background .1s;
}
.admin-nav ul li a:hover, .nav-logout:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-sep { border-top: 1px solid rgba(255,255,255,.15); margin-top: .5rem; padding-top: .5rem; }

.admin-user { padding: 1rem 1.25rem 0; font-size: .8rem; color: rgba(255,255,255,.5); }

.admin-main {
  flex: 1;
  padding: 2rem;
  overflow: auto;
}

.admin-page-title { font-size: 1.5rem; margin-bottom: 1.5rem; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.stat-card--warn { border-left: 4px solid #f59e0b; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--green-dark); }
.stat-label { font-size: .85rem; color: var(--text-muted); }
.stat-link { font-size: .8rem; color: var(--green); }

.admin-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.admin-table th { background: var(--bg-gray); padding: .65rem 1rem; text-align: left; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.admin-table td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-gray); }

.admin-toolbar {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.admin-filter-form { display: flex; gap: .5rem; flex: 1; flex-wrap: wrap; }
.admin-filter-form input, .admin-filter-form select {
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .9rem;
}
.action-btns { display: flex; gap: .4rem; }

.pending-list { display: flex; flex-direction: column; gap: 1.5rem; }
.pending-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.pending-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pending-card-header h2 { font-size: 1.15rem; }
.pending-details p { font-size: .9rem; margin-bottom: .35rem; }
.pending-actions { display: flex; gap: .75rem; margin-top: 1rem; flex-wrap: wrap; }
.pending-meta { margin-top: .75rem; color: var(--text-muted); }

.ai-notes {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: .75rem;
  margin-top: .5rem;
}
.ai-notes pre { white-space: pre-wrap; font-size: .82rem; font-family: inherit; }
.hours-preview { font-size: .85rem; color: var(--text-muted); }
.hours-preview span { margin-right: 1rem; }

.admin-form { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }

.form-group { display: flex; flex-direction: column; font-size: .9rem; font-weight: 600; gap: .3rem; }
.form-group--wide { grid-column: 1 / -1; }
.form-group input, .form-group select, .form-group textarea {
  font-size: .92rem;
  padding: .55rem .75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-weight: 400;
  font-family: inherit;
}
.form-group textarea { resize: vertical; }

.hours-form { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
.hours-row { display: flex; align-items: center; gap: .75rem; font-size: .9rem; }
.hours-day-label { width: 100px; font-weight: 600; }
.hours-closed-label { display: flex; align-items: center; gap: .3rem; width: 80px; font-weight: 400; }
.hours-row input[type="time"] { padding: .35rem .5rem; border: 1px solid var(--border); border-radius: 6px; font-size: .88rem; }

.form-actions { display: flex; gap: .75rem; }

.alert {
  padding: .85rem 1.1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.alert--error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.muted { color: var(--text-muted); }
code { background: #f1f5f9; padding: .1rem .35rem; border-radius: 4px; font-size: .88rem; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .directory-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sidebar-toggle { display: flex; }
  .sidebar-content { display: none; }
  .sidebar-content.open { display: block; }
  .business-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--green-dark); padding: 1rem; }
  .nav-toggle { display: block; }
  .site-header .container { flex-wrap: wrap; }
  .hero { padding: 2.5rem 1.25rem; }
  .stats-bar .container { gap: 1.5rem; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .admin-nav { width: 100%; }
  .hours-row { flex-wrap: wrap; }
}

/* ---- Static pages ---- */
.page-content {
  max-width: 820px;
  margin: 3rem auto;
  padding: 0 1.25rem 4rem;
}
.page-content h1 { font-size: 2rem; margin-bottom: .5rem; }
.page-content h2 { font-size: 1.25rem; margin: 2rem 0 .5rem; color: var(--green-dark); }
.page-content h3 { font-size: 1rem; margin: 1.25rem 0 .35rem; font-weight: 700; }
.page-content p { margin-bottom: 1rem; line-height: 1.75; }
.page-content ul { margin: 0 0 1rem 1.5rem; line-height: 1.75; }
.page-content li { margin-bottom: .3rem; }
.page-lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; border-left: 4px solid var(--green); padding-left: 1rem; }
.page-meta { color: var(--text-muted); font-size: .9rem; margin-bottom: 2rem; }
.alert--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

/* City landing pages */
.city-about {
  background: var(--bg-gray);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.city-about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.city-about-content h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--green-dark); }
.city-about-content p { line-height: 1.8; margin-bottom: 1rem; color: var(--text); }

.city-law-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 76px;
}
.city-law-status {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.city-law-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.city-law-status--legal { color: #166534; }
.city-law-status--legal .city-law-dot { background: #22c55e; }
.city-law-status--medical { color: #92400e; }
.city-law-status--medical .city-law-dot { background: #f59e0b; }
.city-law-facts { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.city-law-facts li { font-size: .9rem; color: var(--text-muted); display: flex; gap: .5rem; align-items: flex-start; }
.city-law-fact-icon { flex-shrink: 0; }

.city-directory-section { margin-top: 2rem; margin-bottom: 2rem; }

.city-suggest {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--bg-gray);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-section {
  background: var(--bg-gray);
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border);
}
.faq-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--green-dark);
}
.faq-list { display: flex; flex-direction: column; gap: .5rem; max-width: 820px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  gap: 1rem;
}
.faq-question:hover { background: var(--bg-gray); }
.faq-question[aria-expanded="true"] { color: var(--green-dark); }
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green);
  transition: transform .2s;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { border-top: 1px solid var(--border); }
.faq-answer-inner {
  padding: 1rem 1.25rem 1.25rem;
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.faq-answer-inner p { margin-bottom: .5rem; }
.faq-answer-inner ul { margin: .5rem 0 .5rem 1.25rem; }
.faq-answer-inner li { margin-bottom: .35rem; }

@media (max-width: 900px) {
  .city-about-grid { grid-template-columns: 1fr; }
  .city-law-card { position: static; }
}

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-info { padding: 1.5rem; background: var(--bg-gray); border-radius: var(--radius); }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }


/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1f2937;
  color: #f9fafb;
  z-index: 999;
  padding: 1rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: .9rem; }
.cookie-banner-inner a { color: var(--green-light); }
