/* ===== HuDir — landing page styles ===== */

:root {
  --navy-900: #10233b;
  --navy-800: #163a5f;
  --navy-700: #1c4c7c;
  --navy-600: #235a92;
  --blue-500: #2490eb;
  --blue-600: #1c72c4;
  --blue-tint-050: #eef6fd;
  --blue-tint-100: #d9ecfb;
  --teal-600: #2c7a76;
  --gray-50: #f7f9fc;
  --gray-100: #eef1f5;
  --gray-200: #e2e7ed;
  --gray-400: #9aa8b8;
  --gray-500: #64748b;
  --text-900: #17222f;
  --text-600: #48586b;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(16, 35, 59, 0.06);
  --shadow-md: 0 12px 32px rgba(16, 35, 59, 0.1);
  --container: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-tint-100);
  padding: 7px 14px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(36, 144, 235, 0.35);
}
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-800);
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #2c9cec, var(--navy-700));
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 28px; height: 28px; }
.logo-text span { color: var(--blue-500); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  display: block;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-600);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.is-active {
  background: var(--blue-tint-050);
  color: var(--blue-600);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-actions .btn { padding: 11px 22px; font-size: 14px; }
.header-actions .btn-primary {
  box-shadow: 0 8px 18px rgba(36, 144, 235, 0.3);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--navy-800); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-doctor-office.jpg") top right / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 620px at 18% 48%, rgba(7, 16, 29, 0.95) 0%, rgba(7, 16, 29, 0.85) 32%, rgba(7, 16, 29, 0.45) 55%, rgba(7, 16, 29, 0) 78%),
    linear-gradient(90deg, rgba(7, 16, 29, 0.55) 0%, rgba(7, 16, 29, 0.08) 40%, rgba(7, 16, 29, 0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 150px;
  padding-bottom: 120px;
}
.hero-copy { max-width: 600px; }
.hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #cfe6fb;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 4.2vw, 52px);
  margin: 22px 0 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.hero h1 em {
  font-style: normal;
  color: #6fc0ff;
}
.hero-lead {
  color: #c3d6e8;
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 34px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-search {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 8px;
  box-shadow: var(--shadow-md);
  max-width: 620px;
}
.hero-search .field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
}
.hero-search .field:hover { background: var(--gray-50); }
.hero-search .field svg { width: 19px; height: 19px; color: var(--blue-500); flex-shrink: 0; }
.hero-search input,
.hero-search select {
  border: none;
  outline: none;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--text-900);
  background: transparent;
  width: 100%;
  appearance: none;
}
.hero-search .field + .field { border-left: 1px solid var(--gray-200); }
.hero-search .btn-primary { padding: 12px 24px; }

/* ===== Categories ===== */
.categories {
  padding: 70px 0 90px;
  background: var(--gray-50);
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy-800);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.category-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--blue-tint-050);
  display: grid;
  place-items: center;
}
.category-icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue-500);
}
.category-text h3 {
  font-size: 16.5px;
  color: var(--text-900);
  margin-bottom: 4px;
}
.category-text p {
  font-size: 13.5px;
  color: var(--gray-500);
}

/* ===== Ügyelet banner ===== */
.ugyelet-banner {
  padding: 0 0 70px;
  background: var(--gray-50);
}
.ugyelet-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  flex-wrap: wrap;
}
.ugyelet-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ugyelet-icon svg {
  width: 32px;
  height: 32px;
  color: #6fc0ff;
}
.ugyelet-text {
  flex: 1;
  min-width: 240px;
}
.ugyelet-text h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 8px;
}
.ugyelet-text p {
  color: #c3d6e8;
  font-size: 15px;
  line-height: 1.6;
}
.ugyelet-card .btn-primary {
  flex-shrink: 0;
}

/* ===== Trust strip ===== */
.trust-strip {
  padding: 46px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.trust-grid span {
  font-size: 14px;
  color: var(--gray-500);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-900);
  color: #b9c8da;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #a2b4c8;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a {
  font-size: 14.5px;
  color: #a2b4c8;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: #a2b4c8;
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  color: #6fc0ff;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
  color: #7f93a9;
}
.footer-bottom-links {
  display: flex;
  gap: 22px;
}
.footer-bottom-links a:hover { color: var(--white); }
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--blue-500); }
.social-row svg { width: 16px; height: 16px; color: var(--white); }

/* ===== Impresszum page ===== */
.page-hero {
  background: linear-gradient(155deg, var(--navy-700), var(--navy-900));
  padding: 150px 0 60px;
  color: var(--white);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); }
.legal {
  padding: 60px 0 100px;
  max-width: 760px;
  margin: 0 auto;
}
.legal h2 {
  font-size: 20px;
  color: var(--navy-800);
  margin: 32px 0 12px;
}
.legal p, .legal li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-600);
}
.legal ul { padding-left: 20px; list-style: disc; }
.legal a { color: var(--blue-500); font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: grid; }
  .hero-inner { padding-top: 130px; padding-bottom: 90px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 640px) {
  .header-inner { height: 70px; }
  .header-actions .btn-primary { display: none; }
  .hero::before { background-position: top right; }
  .hero::after { background: linear-gradient(175deg, rgba(8, 19, 33, 0.96) 0%, rgba(11, 26, 44, 0.93) 55%, rgba(14, 33, 56, 0.9) 100%); }
  .hero-inner { padding-top: 110px; padding-bottom: 70px; }
  .hero-search { grid-template-columns: 1fr; }
  .hero-search .field + .field { border-left: none; border-top: 1px solid var(--gray-200); }
  .category-grid { grid-template-columns: 1fr; }
  .ugyelet-card { padding: 28px; }
  .ugyelet-card .btn-primary { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .header-actions .btn-primary { padding: 9px 16px; font-size: 13px; }
}

/* ===== Mobile nav drawer ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 35, 59, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 84%);
  height: 100%;
  background: var(--white);
  padding: 26px 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-nav-close {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  display: grid; place-items: center;
  background: none;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav ul li a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gray-100);
}

/* ===== Hero search: select mező + form (a keresőoldalakon is használt minta) ===== */
.hero-search { flex-wrap: wrap; }
.field-select {
  appearance: none;
  border: none;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  height: 52px;
  font-size: 15px;
  color: var(--text-900);
  min-width: 180px;
}

/* ===== Page header (belső oldalak fejléce) ===== */
.page-header, .page-hero {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  padding: 48px 0 40px;
  color: var(--white);
}
.page-header h1, .page-hero h1 { color: var(--white); font-size: clamp(26px, 4vw, 38px); }
.page-header p { color: #c3d6e8; margin-top: 10px; font-size: 15px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a9c4dd;
  margin-bottom: 16px;
}
.breadcrumb a { color: #cfe6fb; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== Kereső / szűrő sáv (lista, település oldalak) ===== */
.search-section { padding: 28px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.search-form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}
.search-input-wrap {
  position: relative;
  flex: 2 1 260px;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0 14px;
}
.search-icon-inline { color: var(--gray-400); flex-shrink: 0; }
.search-input-wrap input {
  border: none;
  outline: none;
  height: 48px;
  padding: 0 10px;
  font-size: 15px;
  width: 100%;
  font-family: inherit;
}
.filter-select {
  flex: 1 1 160px;
  height: 50px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 0 14px;
  font-size: 14px;
  color: var(--text-900);
}
.btn-search-inline {
  flex: 0 0 auto;
  height: 50px;
  padding: 0 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--blue-500);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}
.btn-search-inline:hover { background: var(--blue-600); }

/* Autocomplete dropdown */
.autocomplete-wrap { position: relative; }
.autocomplete-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 320px;
  overflow-y: auto;
  z-index: 50;
}
.autocomplete-dropdown.active { display: block; }
.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.selected { background: var(--blue-tint-050); }
.autocomplete-item-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  flex-shrink: 0;
  background: var(--blue-tint-100);
  color: var(--blue-600);
}
.autocomplete-item-icon svg { width: 16px; height: 16px; }
.autocomplete-item-text { flex: 1; min-width: 0; }
.autocomplete-item-name { font-size: 14px; font-weight: 600; color: var(--text-900); }
.autocomplete-item-sub { font-size: 12px; color: var(--text-600); }
.autocomplete-item-count { font-size: 12px; color: var(--gray-500); white-space: nowrap; }

/* ===== Találati lista ===== */
.results-section { padding: 40px 0 70px; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.result-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.result-card-header { display: flex; align-items: center; gap: 12px; }
.result-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-tint-100);
  color: var(--blue-600);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.result-card-icon svg { width: 22px; height: 22px; }
.result-card-title h3 { font-size: 16px; }
.result-card-title .doctor-name { font-size: 13px; color: var(--text-600); margin-top: 2px; }
.result-card-info { display: flex; flex-direction: column; gap: 8px; }
.info-row { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-600); }
.info-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gray-400); }
.result-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--text-600);
}
.tag.primary { background: var(--blue-tint-100); color: var(--blue-600); }
.result-card-actions { margin-top: auto; }
.btn-details {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue-600);
}
.btn-details:hover { text-decoration: underline; }

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-500);
}
.no-results svg { margin: 0 auto 16px; color: var(--gray-400); }
.no-results h3 { color: var(--text-900); margin-bottom: 6px; }

/* Telefonszám — közvetlen, kattintható link */
.phone-link { color: var(--blue-600); font-weight: 600; }
.phone-link:hover { text-decoration: underline; }

/* Lapozó */
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 36px; }
.page-btn {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-600);
}
.page-btn.active { background: var(--blue-500); border-color: var(--blue-500); color: var(--white); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }
.page-btn:hover:not(.disabled):not(.active) { border-color: var(--blue-500); color: var(--blue-600); }
.page-info { display: inline-flex; align-items: center; color: var(--gray-400); padding: 0 4px; }

/* ===== Orvos adatlap ===== */
.detail-section { padding: 40px 0 70px; }
.detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.type-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #cfe6fb;
  background: rgba(255,255,255,0.12);
  padding: 6px 14px;
  border-radius: 999px;
}
.detail-actions-row { display: flex; justify-content: flex-end; margin-bottom: 24px; }
.route-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
}
.route-btn:hover { background: var(--blue-600); }

.detail-list { display: flex; flex-direction: column; gap: 12px; }
.detail-list-main { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-100); }
.detail-list-item { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.detail-list-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gray-400); }
.detail-link { color: var(--blue-600); font-weight: 600; }

.info-section { margin-bottom: 32px; }
.info-section h2 {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; margin-bottom: 14px; color: var(--navy-800);
}
.info-section h2 svg { width: 20px; height: 20px; color: var(--blue-500); }
.info-text { font-size: 14.5px; color: var(--text-600); line-height: 1.7; }
.info-text-empty { color: var(--gray-500); font-style: italic; }

.schedule-section { margin-bottom: 32px; }
.schedule-section h2 {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; margin-bottom: 16px; color: var(--navy-800);
}
.schedule-section h2 svg { width: 20px; height: 20px; color: var(--blue-500); }
.schedule-notice {
  font-size: 12px; font-weight: 700;
  background: #fff3d6; color: #92650a;
  padding: 4px 10px; border-radius: 999px;
}
.schedule-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.schedule-table th, .schedule-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-100);
}
.schedule-table th { color: var(--gray-500); font-weight: 600; font-size: 12.5px; text-transform: uppercase; }
.schedule-table tr.schedule-today { background: var(--blue-tint-050); }
.schedule-today-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  background: var(--blue-500); color: var(--white);
  padding: 2px 6px; border-radius: 6px;
  margin-right: 8px;
}
.schedule-dash { color: var(--gray-400); }
.schedule-notes, .schedule-disclaimer { font-size: 12.5px; color: var(--gray-500); margin-top: 12px; }

.map-section { margin-bottom: 32px; }
.map-section h2 {
  display: flex; align-items: center; gap: 8px;
  font-size: 18px; margin-bottom: 16px; color: var(--navy-800);
}
.map-section h2 svg { width: 20px; height: 20px; color: var(--blue-500); }
.map-section iframe { width: 100%; height: 320px; border: none; border-radius: var(--radius-md); }

.settlement-link { color: var(--blue-600); font-weight: 600; }

.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-size: 14px; font-weight: 600;
  color: var(--blue-600);
}
.back-btn svg { width: 16px; height: 16px; }

/* ===== Település statisztika ===== */
.settlement-stats-section { padding: 28px 0 0; }
.settlement-stats { display: flex; flex-wrap: wrap; gap: 24px; }
.settlement-stat { display: flex; flex-direction: column; }
.settlement-stat-num { font-size: 28px; font-weight: 700; color: var(--navy-800); font-family: "Poppins", sans-serif; }
.settlement-stat-label { font-size: 13px; color: var(--gray-500); }
.settlement-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.settlement-filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-600);
}
.settlement-filter-btn.active { background: var(--blue-500); border-color: var(--blue-500); color: var(--white); }

/* ===== Népszerű települések (főoldal) ===== */
.top-towns { padding: 70px 0; }
.top-towns-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; margin-top: 32px; }
.top-town-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.top-town-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-sm); }
.top-town-name { font-weight: 600; font-size: 15px; color: var(--navy-800); }
.top-town-count { font-size: 12.5px; color: var(--gray-500); }

/* ===== Orvosi ügyelet "hamarosan" oldal ===== */
.coming-soon-section { padding: 60px 0 90px; }
.coming-soon-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}
.coming-soon-card .ugyelet-icon { margin: 0 auto 20px; }
.coming-soon-card h2 { margin-bottom: 12px; }
.coming-soon-card p { color: var(--text-600); margin-bottom: 24px; }

/* ===== Impresszum ===== */
.legal { padding: 50px 0 90px; }
.legal h2 { font-size: 19px; margin: 32px 0 10px; color: var(--navy-800); }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--text-600); line-height: 1.7; }
.legal a { color: var(--blue-600); font-weight: 600; }

@media (max-width: 640px) {
  .search-form-inline { flex-direction: column; }
  .detail-actions-row { justify-content: stretch; }
  .route-btn { width: 100%; justify-content: center; }
  .field-select { width: 100%; }
}
.mobile-nav .btn { margin-top: 24px; width: 100%; }

/* ===== Orvos lista (sorok) ===== */
.doctor-list { display: flex; flex-direction: column; gap: 16px; }
.doctor-row {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.doctor-row-avatar {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--blue-tint-050);
  color: var(--blue-600);
  display: grid; place-items: center;
}
.doctor-row-avatar svg { width: 40px; height: 40px; }
.doctor-row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.doctor-row-main h3 { font-size: 20px; color: var(--navy-800); }
.doctor-row-meta { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 14.5px; color: var(--text-600); }
.doctor-row-item { display: inline-flex; align-items: center; gap: 8px; }
.doctor-row-item svg { width: 18px; height: 18px; color: var(--blue-500); flex-shrink: 0; }
.doctor-row .btn-details {
  flex-shrink: 0;
  background: var(--blue-500);
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
}
.doctor-row .btn-details:hover { background: var(--blue-600); text-decoration: none; }
@media (max-width: 640px) {
  .doctor-row { flex-wrap: wrap; padding: 16px; gap: 16px; }
  .doctor-row-avatar { width: 56px; height: 56px; }
  .doctor-row-main { flex-basis: calc(100% - 72px); }
  .doctor-row .btn-details { width: 100%; text-align: center; }
}
