:root {
  --map-primary: #2c2e4a;
  --map-accent: #0d8abc;
  --map-accent-soft: #e8f4fb;
  --map-bg: #eef4f9;
  --map-text: #1f2937;
  --map-muted: #6b7280;
  --map-border: rgba(255, 255, 255, 0.78);
  --map-glass: rgba(255, 255, 255, 0.62);
  --map-glass-strong: rgba(255, 255, 255, 0.84);
  --map-shadow: 0 14px 32px rgba(32, 66, 98, 0.12);
}

body {
  background:
    radial-gradient(90% 50% at 10% 0%, rgba(191, 227, 244, 0.45) 0%, transparent 60%),
    radial-gradient(70% 50% at 90% 100%, rgba(210, 230, 248, 0.55) 0%, transparent 60%),
    var(--map-bg);
}

.content-2026 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 20px 56px;
}

.map-hero {
  margin-bottom: 20px;
}

.map-hero-inner {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(140deg, var(--map-glass-strong), var(--map-glass));
  border: 1px solid var(--map-border);
  border-radius: 22px;
  box-shadow: var(--map-shadow);
  padding: 34px 30px;
}

.map-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--map-accent);
  background: rgba(13, 138, 188, 0.1);
  border: 1px solid rgba(13, 138, 188, 0.2);
  border-radius: 100px;
  padding: 6px 12px;
}

.map-title {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  color: var(--map-primary);
}

.map-sub {
  margin-top: 12px;
  max-width: 700px;
  color: var(--map-muted);
  line-height: 1.6;
}

.map-hero-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  border: 1px solid rgba(13, 138, 188, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  padding: 7px 13px;
}

.map-hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 15px;
  transition: all 0.25s ease;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #0ea5e9, var(--map-accent));
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 138, 188, 0.28);
}

.hero-btn-ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--map-primary);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.map-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
}

.map-sidebar {
  position: sticky;
  top: 84px;
  height: fit-content;
}

.toc-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--map-glass);
  border: 1px solid var(--map-border);
  border-radius: 16px;
  box-shadow: var(--map-shadow);
  padding: 14px;
}

.toc-title {
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 10px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-list a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
  transition: all 0.2s ease;
}

.toc-list a:hover {
  background: rgba(13, 138, 188, 0.1);
  color: var(--map-accent);
}

.toc-count {
  background: #fff;
  border: 1px solid rgba(13, 138, 188, 0.18);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
}

.map-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-group {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--map-glass);
  border: 1px solid var(--map-border);
  border-radius: 18px;
  box-shadow: var(--map-shadow);
  padding: 16px;
  scroll-margin-top: 134px;
}

.spec-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.spec-group-head h2 {
  font-size: 22px;
  color: var(--map-primary);
}

.spec-group-head span {
  color: #64748b;
  font-size: 13px;
}

.clinic-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(13, 138, 188, 0.2);
  background: rgba(13, 138, 188, 0.1);
  color: #0b7a9e !important;
  font-weight: 700;
  font-size: 11px !important;
  line-height: 1;
  padding: 4px 9px;
}

.spec-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.spec-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spec-photo-wrap {
  height: 170px;
  background: linear-gradient(160deg, #e7f3fb, #d6e7f5);
}

.spec-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spec-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.spec-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--map-accent);
  font-weight: 700;
}

.spec-name {
  margin-top: 4px;
  display: inline-block;
  text-decoration: none;
  color: var(--map-primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
}

.spec-availability {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #334155;
}

.availability-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot-green { background: #10b981; }
.dot-orange { background: #f59e0b; }

.spec-address {
  margin-top: 8px;
  color: #64748b;
  font-size: 12px;
}

.spec-btn {
  margin-top: 12px;
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: all 0.25s ease;
}

.spec-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.34);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

@media (max-width: 980px) {
  .map-page {
    grid-template-columns: 1fr;
  }

  .map-sidebar {
    position: static;
  }
}
