:root {
  --navy: #0b2443;
  --blue: #acd9e8;
  --lavender: #c6c1da;
  --mint: #c0e6da;
  --slate: #b1b9c2;
  --stone: #e6e4e1;
  --paper: #fbfaf8;
  --white: #ffffff;
  --ink: #10233b;
  --text: #4b5968;
  --muted: #718092;
  --line: #dfe6ea;
  --danger: #9b2432;
  --danger-soft: #fff2f2;
  --shadow: 0 14px 40px rgba(11, 36, 67, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Gill Sans", "Gill Sans MT", "Noto Sans", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.lang-ar {
  direction: rtl;
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

h2,
h3,
strong,
b {
  font-weight: 600;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 8px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.emergency-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.emergency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffced4;
  box-shadow: 0 0 0 4px rgba(255, 206, 212, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 36, 67, 0.1);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 310px;
  min-width: 0;
}

.brand img {
  width: min(300px, 58vw);
  height: auto;
}

.brand-icon {
  display: none;
  width: 45px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: #263a54;
  font-size: 14px;
  white-space: nowrap;
}

.desktop-nav a[aria-current="page"] {
  color: var(--navy);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.language-switcher button {
  min-width: 38px;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 9px;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--navy);
  color: var(--white);
}

.mobile-menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
}

.mobile-menu-button span {
  margin: 4px 0;
}

.mobile-panel {
  position: fixed;
  inset: 119px 0 auto 0;
  z-index: 45;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateY(calc(-100% - 140px));
  transition: transform 0.2s ease;
  visibility: hidden;
  pointer-events: none;
}

.nav-open .mobile-panel {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-panel .container {
  padding: 18px 0 22px;
  display: grid;
  gap: 10px;
}

.mobile-panel a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.btn {
  border: 1px solid transparent;
  border-radius: var(--radius);
  min-height: 44px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(11, 36, 67, 0.18);
}

.btn-soft {
  background: var(--blue);
  color: var(--navy);
}

.btn-outline {
  border-color: rgba(11, 36, 67, 0.18);
  background: var(--white);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.display {
  font-size: 38px;
  line-height: 1.02;
  margin: 10px 0 18px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-title {
  font-size: 36px;
  line-height: 1.02;
  color: var(--navy);
  margin: 10px 0 16px;
  font-weight: 400;
  letter-spacing: 0;
}

.section-title {
  font-size: 30px;
  line-height: 1.1;
  color: var(--navy);
  margin: 8px 0 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.subhead {
  color: var(--text);
  font-size: 18px;
  max-width: 720px;
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-alt {
  background: var(--white);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-title,
.section-dark .eyebrow,
.section-dark .subhead {
  color: var(--white);
}

.hero {
  padding: 28px 0 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 250, 248, 0.9)),
    var(--paper);
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.hero-copy,
.hero-media,
.dictionary,
.care-card,
.doctor-card,
.service-card,
.location-card,
.info-panel,
.support-panel,
.insight-card {
  min-width: 0;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: url("../images/kings-dubai-hills-hero.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--white);
  padding: 14px 16px;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.dictionary-shell {
  padding: 0 0 54px;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.dictionary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.dictionary-top {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.dictionary-field {
  min-height: 54px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--ink);
  background: #fbfdfe;
}

.dictionary-tabs,
.filter-pills,
.alpha-row,
.popular-searches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.alpha-row {
  margin-bottom: 22px;
}

.tab-button,
.filter-pill,
.alpha-row a,
.popular-searches button {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 8px 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.popular-searches {
  margin-top: 12px;
}

.popular-searches span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-inline-end: 2px;
}

.popular-searches button {
  background: #f8fafb;
}

.popular-searches button:hover,
.popular-searches button:focus-visible {
  border-color: var(--blue);
  background: #eef8fb;
}

.tab-button.is-active,
.filter-pill.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.dictionary-results {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.result-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 0;
  background: var(--white);
}

.result-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 600;
  margin: 0 0 8px;
}

.result-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.result-card:hover {
  border-color: var(--blue);
}

.result-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.badge,
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 5px 8px;
  color: var(--text);
  background: #f8fafb;
  font-size: 12px;
  font-weight: 600;
}

.badge-danger {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(155, 36, 50, 0.24);
}

.card-grid {
  display: grid;
  gap: 14px;
}

.card,
.care-card,
.doctor-card,
.service-card,
.location-card,
.info-panel,
.support-panel,
.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.card h3,
.care-card h3,
.doctor-card h3,
.service-card h3,
.location-card h3,
.info-panel h3,
.support-panel h2,
.insight-card h3 {
  margin: 8px 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 600;
}

.card p,
.care-card p,
.doctor-card p,
.service-card p,
.location-card p,
.info-panel p,
.support-panel p,
.insight-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.care-card {
  display: grid;
  gap: 10px;
}

.care-card-danger {
  border-color: rgba(155, 36, 50, 0.26);
}

.icon-tile {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
}

.icon-mint {
  background: var(--mint);
}

.icon-lavender {
  background: var(--lavender);
}

.icon-stone {
  background: var(--stone);
}

.split {
  display: grid;
  gap: 24px;
}

.physician-intro {
  display: grid;
  gap: 18px;
  align-content: start;
}

.physician-intro .subhead {
  margin-bottom: 0;
}

.physician-finder {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(172, 217, 232, 0.78);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(172, 217, 232, 0.28), rgba(192, 230, 218, 0.2)),
    var(--white);
  box-shadow: 0 14px 32px rgba(11, 36, 67, 0.08);
}

.finder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
}

.finder-header strong {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.finder-list {
  display: grid;
  gap: 10px;
}

.finder-list a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(223, 230, 234, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.finder-list a:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 22px rgba(11, 36, 67, 0.08);
}

.finder-list span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.finder-list strong {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

.finder-list small {
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.finder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.finder-stats div {
  padding: 12px;
  border-inline-end: 1px solid var(--line);
}

.finder-stats div:last-child {
  border-inline-end: 0;
}

.finder-stats strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
}

.finder-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.service-list,
.doctor-list,
.content-list {
  display: grid;
  gap: 12px;
}

.doctor-card {
  display: grid;
  gap: 16px;
}

.doctor-photo {
  min-height: 190px;
  border-radius: var(--radius);
  background: var(--stone) center / cover;
}

.doctor-photo.mehmood {
  background-image: url("../images/doctor_portrait.jpg");
}

.doctor-photo.layla {
  background-image: url("../images/consultation.jpg");
}

.doctor-photo.team {
  background-image: url("../images/surgeons.jpg");
}

.doctor-meta,
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.location-grid {
  display: grid;
  gap: 14px;
}

.map-panel {
  min-height: 360px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.map-fallback {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.location-cards {
  align-content: start;
}

.location-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.location-actions a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 10px;
  color: var(--navy);
  background: #f8fafb;
  font-size: 13px;
  font-weight: 600;
}

.pin {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 4px solid var(--blue);
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(11, 36, 67, 0.18);
}

.pin:nth-child(2) {
  left: 26%;
  top: 46%;
}

.pin:nth-child(3) {
  left: 51%;
  top: 36%;
}

.pin:nth-child(4) {
  left: 69%;
  top: 62%;
}

.pin:nth-child(5) {
  left: 38%;
  top: 72%;
}

.support-grid {
  display: grid;
  gap: 16px;
}

.support-panel {
  padding: 24px;
}

.support-panel-blue {
  background: #eef8fb;
}

.language-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.language-chips span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 10px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 42px 0 88px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  width: 260px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.82);
}

.bottom-nav {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 55;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: calc(72px + env(safe-area-inset-bottom));
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 28px rgba(11, 36, 67, 0.08);
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  min-height: 56px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.bottom-nav-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.bottom-nav-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.bottom-nav-label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bottom-nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(172, 217, 232, 0.28);
}

.page-hero {
  padding: 36px 0 40px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero-visual {
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  gap: 26px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.hero-visual-stage {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(172, 217, 232, 0.36), rgba(192, 230, 218, 0.24)),
    var(--white);
  box-shadow: var(--shadow);
}

.hero-visual-stage::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: min(58%, 300px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(198, 193, 218, 0.28);
}

.hero-visual-stage::after {
  content: "";
  position: absolute;
  inset: auto 28px 30px auto;
  width: 104px;
  height: 4px;
  border-radius: 99px;
  background: var(--lavender);
}

.hero-image-tile {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 36, 67, 0.14);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 42px rgba(11, 36, 67, 0.16);
}

.hero-image-main {
  inset: 28px 30px auto 30px;
  height: 58%;
}

.hero-image-secondary {
  right: 26px;
  bottom: 58px;
  width: 42%;
  aspect-ratio: 4 / 3;
}

.services-care-image {
  background-image: url("../images/services-care-pathway.jpeg");
  background-position: center;
}

.services-hospital-image {
  background-image: url("../images/kings-dubai-hills-hero.jpeg");
  background-position: center;
}

.services-visual {
  outline: 6px solid rgba(11, 36, 67, 0.04);
  min-height: 350px;
}

.services-visual::after {
  display: none;
}

.services-visual .hero-image-main {
  inset: 26px 28px 96px 28px;
  width: auto;
  height: auto;
  background-size: cover;
}

.services-visual .hero-image-secondary {
  display: none;
  border-color: rgba(172, 217, 232, 0.72);
}

.services-visual .hero-chip-row {
  bottom: 24px;
}

.hero-chip-row {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid rgba(11, 36, 67, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(11, 36, 67, 0.1);
  line-height: 1.15;
  text-align: center;
}

.symptom-visual {
  background:
    linear-gradient(135deg, rgba(255, 242, 242, 0.9), rgba(172, 217, 232, 0.34)),
    var(--white);
}

.symptom-visual::before {
  inset: auto auto 24px 18px;
  width: min(54%, 280px);
  background: rgba(192, 230, 218, 0.34);
}

.symptom-visual::after {
  inset: 0 auto 0 0;
  width: 7px;
  height: auto;
  border-radius: 0;
  background: var(--danger);
}

.symptom-care-image {
  inset: 26px 28px 70px 28px;
  height: auto;
  background-image: url("../images/symptom-chest-pain-consultation.jpeg");
  background-position: 50% 40%;
}

.hero-ecg-line {
  position: absolute;
  z-index: 2;
  left: 42px;
  right: 42px;
  bottom: 78px;
  height: 46px;
  pointer-events: none;
  opacity: 0.92;
}

.hero-ecg-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 6%, var(--danger) 6% 20%, transparent 20% 100%),
    linear-gradient(90deg, var(--danger), var(--danger));
  clip-path: polygon(0 55%, 16% 55%, 21% 55%, 24% 28%, 28% 84%, 33% 44%, 39% 55%, 100% 55%, 100% 61%, 40% 61%, 34% 50%, 28% 92%, 24% 38%, 22% 61%, 0 61%);
}

.visual-chip-danger {
  border-color: rgba(155, 36, 50, 0.24);
  background: var(--danger);
  color: var(--white);
}

.profile-hero {
  display: grid;
  gap: 24px;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.profile-hero .profile-card:first-child {
  padding: 0;
  overflow: hidden;
}

.profile-photo {
  min-height: 360px;
  height: 100%;
  border-radius: var(--radius);
  background: url("../images/dr-mehmood-butt-live.jpg") center / cover;
}

.profile-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.fact {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.fact span {
  color: var(--muted);
}

.two-column {
  display: grid;
  gap: 22px;
}

.sticky-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px;
}

.sticky-panel p,
.sticky-panel .tag {
  color: rgba(255, 255, 255, 0.82);
}

.booking-field {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 12px;
  margin-bottom: 10px;
}

.sticky-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.sticky-actions + .content-section {
  margin-top: 24px;
}

.warning-banner {
  border: 1px solid rgba(155, 36, 50, 0.28);
  background: var(--danger-soft);
  color: #5d111a;
  border-radius: var(--radius);
  padding: 18px;
}

.warning-banner h2,
.warning-banner h3 {
  color: var(--danger);
  margin-top: 0;
}

.content-section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 24px;
}

.content-section:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.content-section h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.content-section h3 {
  color: var(--navy);
  margin: 18px 0 8px;
}

.content-section li {
  margin-bottom: 8px;
  color: var(--text);
}

.service-filter-bar {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  margin: 22px 0;
}

.service-filter-bar input,
.service-filter-bar select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #fbfdfe;
}

.service-card[hidden] {
  display: none;
}

[data-i18n] {
  transition: opacity 0.12s ease;
}

@media (max-width: 979px) {
  .header-actions .btn-primary {
    display: none;
  }

  .header-inner {
    min-height: 86px;
    gap: 12px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-full {
    display: none;
  }

  .brand .brand-icon {
    display: block;
    width: 48px;
  }
}

@media (max-width: 430px) {
  .topbar-group.secondary {
    display: none;
  }

  .hero-actions .btn,
  .action-row .btn {
    width: 100%;
  }

  .popular-searches span {
    flex-basis: 100%;
  }

  .hero-visual-stage {
    min-height: 280px;
  }

  .services-visual {
    min-height: 330px;
  }

  .hero-chip-row {
    left: 16px;
    right: 16px;
  }

  .visual-chip {
    font-size: 12px;
    padding-inline: 9px;
  }

  .finder-header {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (min-width: 700px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor-card {
    grid-template-columns: 150px 1fr;
    align-items: center;
  }

  .doctor-photo {
    min-height: 160px;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-filter-bar {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
  }

  .mobile-menu-button {
    display: none;
  }

  .mobile-panel,
  .bottom-nav {
    display: none;
  }

  .hero {
    padding: 46px 0 58px;
  }

  .display {
    font-size: 58px;
    max-width: 760px;
  }

  .page-title {
    font-size: 64px;
  }

  .section-title {
    font-size: 44px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 520px;
    align-items: center;
    gap: 44px;
  }

  .hero-photo {
    height: 360px;
    aspect-ratio: auto;
    background-position: center;
  }

  .dictionary {
    padding: 22px;
  }

  .dictionary-top {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .dictionary-results {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .split {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .physician-intro {
    position: sticky;
    top: 120px;
  }

  .location-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .location-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-panel {
    position: sticky;
    top: 104px;
  }

  .profile-hero {
    grid-template-columns: 390px 1fr;
    align-items: stretch;
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 42px;
  }

  .hero-visual-stage {
    min-height: 360px;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
  }

  .sticky-panel {
    position: sticky;
    top: 104px;
  }

  .section {
    padding: 78px 0;
  }
}

@media (min-width: 1200px) {
  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }
}
