/* DrTime public clinic design system — V59.2 */
:root {
  --drt-bg: #fbfaf7;
  --drt-surface: #ffffff;
  --drt-surface-soft: #f3f8f7;
  --drt-ink: #0a343a;
  --drt-muted: #687b7e;
  --drt-primary: #075861;
  --drt-primary-2: #0b7078;
  --drt-mint: #dcefee;
  --drt-mint-2: #eef7f6;
  --drt-gold: #bea45d;
  --drt-line: #dce7e6;
  --drt-line-strong: #c8d8d7;
  --drt-shadow: 0 24px 70px rgba(9, 62, 69, .10);
  --drt-shadow-soft: 0 14px 36px rgba(9, 62, 69, .07);
  --drt-radius-xl: 32px;
  --drt-radius-lg: 24px;
  --drt-radius-md: 18px;
  --drt-container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.drt-public-body {
  margin: 0;
  background:
    radial-gradient(circle at 7% 5%, rgba(220,239,238,.55), transparent 28rem),
    linear-gradient(180deg, #fdfcf9 0%, var(--drt-bg) 100%);
  color: var(--drt-ink);
  font-family: "Vazirmatn", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.drt-public-body a { color: inherit; text-decoration: none; }
body.drt-public-body img { display: block; max-width: 100%; }

.drt-public-container {
  width: min(calc(100% - 40px), var(--drt-container));
  margin-inline: auto;
}

.drt-public-skip {
  position: fixed;
  inset-inline-start: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--drt-primary);
  color: #fff;
  transition: top .2s ease;
}
.drt-public-skip:focus { top: 12px; }

/* Header */
.drt-public-header {
  background: rgba(253,252,249,.94);
  border-bottom: 1px solid rgba(200,216,215,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(8,54,60,.035);
}
.drt-public-nav-shell {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
}
.drt-public-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.drt-public-brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #0b747b, #08707a);
  color: #fff;
  box-shadow: 0 12px 30px rgba(7,88,97,.17);
  overflow: hidden;
  font-weight: 900;
}
.drt-public-brand-mark img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.drt-public-brand-copy { min-width: 0; display: grid; gap: 2px; }
.drt-public-brand-copy strong { font-size: 16px; line-height: 1.45; color: var(--drt-ink); white-space: nowrap; }
.drt-public-brand-copy small { color: #859698; font-size: 11px; }

.drt-public-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 28px);
  min-width: 0;
}
.drt-public-nav a {
  position: relative;
  padding: 12px 0;
  color: #425d61;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .18s ease;
}
.drt-public-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 2px;
  border-radius: 99px;
  background: var(--drt-primary-2);
  transition: left .18s ease, right .18s ease;
}
.drt-public-nav a:hover,
.drt-public-nav a.is-active { color: var(--drt-primary); }
.drt-public-nav a.is-active::after { left: 0; right: 0; }

.drt-public-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  direction: ltr;
}
.drt-public-action,
.drt-public-language-summary {
  min-height: 46px;
  border: 1px solid var(--drt-line);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  background: rgba(255,255,255,.92);
  color: var(--drt-ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(8,54,60,.03);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.drt-public-action {
  direction: rtl;
}
.drt-public-action:hover,
.drt-public-language-summary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(8,54,60,.08);
}
.drt-public-action.is-staff { background: #edf6f4; border-color: #d7e8e5; }
.drt-public-action.is-patient { background: #fff; border-color: #bfd3d5; }
.drt-public-action.is-book { background: var(--drt-primary); border-color: var(--drt-primary); color: #fff; }

.drt-public-language-menu {
  position: relative;
}
.drt-public-language-summary {
  min-width: 104px;
  cursor: pointer;
  list-style: none;
  justify-content: space-between;
  direction: ltr;
}
.drt-public-language-summary::-webkit-details-marker { display: none; }
.drt-public-language-summary::marker { content: ""; }
.drt-public-language-menu[open] .drt-public-language-summary {
  border-color: #b8cfcc;
  box-shadow: 0 14px 30px rgba(8,54,60,.08);
}
.drt-public-language-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.drt-public-language-flag {
  font-size: 16px;
  line-height: 1;
}
.drt-public-language-code {
  color: var(--drt-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}
.drt-public-language-chevron {
  width: 14px;
  height: 14px;
  color: #6f8588;
  flex: 0 0 auto;
  transition: transform .18s ease;
}
.drt-public-language-menu[open] .drt-public-language-chevron {
  transform: rotate(180deg);
}
.drt-public-language-options {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--drt-line);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 40px rgba(8,54,60,.12);
  display: grid;
  gap: 6px;
  z-index: 60;
}
.drt-public-language-options form {
  margin: 0;
}
.drt-public-language-option {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #fff;
  color: var(--drt-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.drt-public-language-option:hover,
.drt-public-language-option.is-active {
  background: var(--drt-surface-soft);
  border-color: var(--drt-line);
}
.drt-public-language-choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.drt-public-language-meta {
  color: #789093;
  font-size: 11px;
  letter-spacing: .04em;
}

.drt-public-mobile-actions {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
}
.drt-public-mobile-actions .drt-public-language-menu {
  width: 100%;
}
.drt-public-mobile-actions .drt-public-language-summary {
  width: 100%;
}
.drt-public-mobile-actions .drt-public-language-options {
  position: static;
  margin-top: 8px;
  box-shadow: none;
}
.drt-public-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--drt-line);
  background: #fff;
  color: var(--drt-primary);
  align-items: center;
  justify-content: center;
}
.drt-public-mobile-panel { padding: 0 0 18px; }
.drt-public-mobile-nav { display: grid; gap: 4px; padding: 12px 0; border-top: 1px solid var(--drt-line); }
.drt-public-mobile-nav a { padding: 11px 4px; color: #3e5a5e; font-weight: 700; }
.drt-public-mobile-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }

/* Global main / typography */
.drt-public-main { overflow: hidden; }
.drt-public-main > section,
.drt-public-section {
  width: min(calc(100% - 40px), var(--drt-container));
  margin-inline: auto;
}
.drt-public-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--drt-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .01em;
}
.drt-public-eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  border-radius: 10px;
  background: currentColor;
}
.drt-public-section { padding-block: 86px; }
.drt-public-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.drt-public-section-heading.is-compact { margin-bottom: 22px; }
.drt-public-section-heading > div { max-width: 720px; }
.drt-public-section-heading h2 {
  margin: 10px 0 10px;
  font-size: clamp(27px, 2.8vw, 40px);
  line-height: 1.35;
  letter-spacing: -.025em;
  color: var(--drt-ink);
  font-weight: 900;
}
.drt-public-section-heading.is-compact h2 { font-size: clamp(24px,2.1vw,32px); }
.drt-public-section-heading p { margin: 0; max-width: 650px; color: var(--drt-muted); font-size: 15px; line-height: 2; }
.drt-public-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--drt-primary);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}
.drt-public-text-link span { transition: transform .18s ease; }
.drt-public-text-link:hover span { transform: translateX(-4px); }

.drt-public-btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.drt-public-btn:hover { transform: translateY(-1px); }
.drt-public-btn.is-primary { background: var(--drt-primary); color: #fff; box-shadow: 0 14px 28px rgba(7,88,97,.18); }
.drt-public-btn.is-primary:hover { background: #064b52; }
.drt-public-btn.is-secondary { background: rgba(255,255,255,.76); color: var(--drt-ink); border-color: #abc3c4; }
.drt-public-btn.is-light { background: #fff; color: var(--drt-primary); }

/* Home hero */
.drt-home-hero {
  margin-top: 38px;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(430px,.92fr);
  gap: clamp(38px, 4.5vw, 70px);
  align-items: center;
  padding: 42px 46px;
  border: 1px solid rgba(206,221,220,.82);
  border-radius: var(--drt-radius-xl);
  background:
    radial-gradient(circle at 93% 4%, rgba(218,239,237,.62), transparent 26rem),
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(251,250,247,.96));
  box-shadow: 0 18px 54px rgba(7,64,71,.045);
  position: relative;
}
html[dir="rtl"] .drt-home-hero { grid-template-areas: "visual copy"; }
html[dir="rtl"] .drt-home-hero-copy { grid-area: copy; }
html[dir="rtl"] .drt-home-hero-visual { grid-area: visual; }
.drt-home-hero-copy { max-width: 650px; }
.drt-home-hero-copy h1 {
  margin: 18px 0 20px;
  font-size: clamp(38px, 3.65vw, 56px);
  line-height: 1.5;
  letter-spacing: -.035em;
  font-weight: 950;
  color: var(--drt-ink);
}
.drt-home-hero-copy > p { margin: 0; max-width: 620px; color: #5e7376; font-size: clamp(14px,1.15vw,17px); line-height: 2.05; }
.drt-home-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.drt-home-hero-visual {
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(145deg,#eef4f1,#ddd9ce);
  box-shadow: 0 24px 60px rgba(8,54,60,.12);
}
.drt-home-hero-visual > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; object-position: center; }
.drt-home-art { min-height: 430px; height: 100%; position: relative; overflow: hidden; background: linear-gradient(145deg,#f1f0eb,#dfeae5); }
.drt-home-art::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 72% 35%,rgba(255,255,255,.92),transparent 17rem), linear-gradient(120deg,rgba(7,88,97,.035),transparent 52%); }
.drt-home-art-arch { position:absolute; width: 72%; height: 78%; left: 11%; top: 8%; border-radius: 50% 50% 16px 16px; background: rgba(210,226,221,.9); border: 1px solid rgba(190,164,93,.42); box-shadow: inset 22px 0 60px rgba(255,255,255,.42); }
.drt-home-art-tooth { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:140px; height:180px; display:grid; place-items:center; color:#fff; border-radius: 48% 48% 38% 38%; filter: drop-shadow(0 20px 28px rgba(58,81,79,.13)); background: linear-gradient(160deg,#fff,#f3f2ed); }
.drt-home-art-tooth svg { color: #729395; opacity: .65; }
.drt-home-art-line { position:absolute; width: 76%; height:76%; left:9%; top:11%; border:1px solid rgba(190,164,93,.52); border-radius:48% 48% 18px 18px; transform:rotate(-6deg); }
.drt-home-art-badge { position:absolute; width:64px; height:64px; border-radius:50%; display:grid; place-items:center; color:var(--drt-primary); background:rgba(255,255,255,.85); border:1px solid rgba(190,164,93,.55); box-shadow:var(--drt-shadow-soft); }
.drt-home-art-badge.is-top { top:48px; left:42px; }
.drt-home-art-badge.is-bottom { bottom:54px; right:42px; }

.drt-home-features {
  margin-top: 22px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}
.drt-home-feature {
  min-height: 170px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--drt-line);
  border-radius: 20px;
}
.drt-home-feature-icon { width: 58px; height: 58px; border-radius: 50%; display:grid; place-items:center; color:var(--drt-primary); background: var(--drt-mint-2); }
.drt-home-feature-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.drt-home-feature h2 { margin: 4px 0 8px; font-size: 17px; color:var(--drt-ink); }
.drt-home-feature p { margin:0; color:var(--drt-muted); font-size: 12px; line-height:1.9; }

/* Services */
.drt-service-grid { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap:16px; }
.drt-service-card { min-width:0; background:#fff; border:1px solid var(--drt-line); border-radius:22px; overflow:hidden; transition:transform .2s ease, box-shadow .2s ease; }
.drt-service-card:hover { transform:translateY(-3px); box-shadow:var(--drt-shadow-soft); }
.drt-service-card-media { height:210px; display:grid; place-items:center; background:linear-gradient(145deg,#edf6f4,#f6f1e8); color:var(--drt-primary); overflow:hidden; }
.drt-service-card-media img { width:100%; height:100%; object-fit:cover; }
.drt-service-card > div:last-child { padding:22px; }
.drt-service-card h3 { margin:0 0 8px; font-size:18px; }
.drt-service-card p { margin:0; color:var(--drt-muted); font-size:13px; line-height:1.9; }
.drt-service-list { display:grid; gap:28px; }
.drt-service-row { min-height:360px; display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); border:1px solid var(--drt-line); border-radius:28px; overflow:hidden; background:#fff; }
.drt-service-row.is-reversed .drt-service-row-media { order:2; }
.drt-service-row-media { min-height:340px; display:grid; place-items:center; background:linear-gradient(145deg,#eaf5f3,#f3eee4); color:var(--drt-primary); }
.drt-service-row-media img { width:100%; height:100%; object-fit:cover; }
.drt-service-row-copy { padding:50px; display:flex; flex-direction:column; justify-content:center; align-items:flex-start; }
.drt-service-row-copy h2 { margin:10px 0 14px; font-size:clamp(27px,2.6vw,38px); line-height:1.5; }
.drt-service-row-copy p { margin:0 0 22px; color:var(--drt-muted); line-height:2; }

/* Doctors */
.drt-doctor-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.drt-doctor-card { display:block; overflow:hidden; background:#fff; border:1px solid var(--drt-line); border-radius:24px; transition:transform .2s ease, box-shadow .2s ease; }
.drt-doctor-card:hover { transform:translateY(-3px); box-shadow:var(--drt-shadow-soft); }
.drt-doctor-card-photo { aspect-ratio: 4/4.5; background:var(--drt-mint-2); display:grid; place-items:center; color:var(--drt-primary); overflow:hidden; }
.drt-doctor-card-photo img { width:100%; height:100%; object-fit:cover; }
.drt-doctor-card > div:last-child { padding:20px; }
.drt-doctor-card h3 { margin:0 0 6px; font-size:18px; }
.drt-doctor-card p { margin:0 0 12px; color:var(--drt-muted); font-size:13px; }
.drt-doctor-card > div:last-child > span { color:var(--drt-primary); font-size:12px; font-weight:900; }
.drt-doctor-page-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.drt-doctor-page-card { display:grid; grid-template-columns:220px 1fr; min-height:300px; border:1px solid var(--drt-line); border-radius:26px; background:#fff; overflow:hidden; }
.drt-doctor-page-photo { display:grid; place-items:center; background:var(--drt-mint-2); color:var(--drt-primary); overflow:hidden; }
.drt-doctor-page-photo img { width:100%; height:100%; object-fit:cover; }
.drt-doctor-page-card > div:last-child { padding:32px; display:flex; flex-direction:column; justify-content:center; }
.drt-doctor-page-card h2 { margin:8px 0; font-size:27px; }
.drt-doctor-specialty { color:var(--drt-primary); font-weight:800; }
.drt-doctor-page-card p { color:var(--drt-muted); line-height:1.9; }
.drt-doctor-page-actions { display:flex; gap:18px; margin-top:14px; font-size:12px; font-weight:900; color:var(--drt-primary); }

/* Branches */
.drt-branch-preview-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.drt-branch-preview-card { background:#fff; border:1px solid var(--drt-line); border-radius:24px; overflow:hidden; }
.drt-branch-preview-media { height:220px; display:grid; place-items:center; background:linear-gradient(145deg,#e9f4f1,#f4efe7); color:var(--drt-primary); overflow:hidden; }
.drt-branch-preview-media img { width:100%; height:100%; object-fit:cover; }
.drt-branch-preview-card > div { padding:22px; }
.drt-branch-preview-card h3 { margin:0 0 8px; font-size:20px; }
.drt-branch-preview-card p { min-height:48px; margin:0; color:var(--drt-muted); font-size:13px; line-height:1.9; }
.drt-branch-preview-actions,.drt-branch-page-actions,.drt-contact-branch-actions { display:flex; justify-content:space-between; gap:12px; margin-top:18px; color:var(--drt-primary); font-size:12px; font-weight:900; }
.drt-branch-page-list { display:grid; gap:28px; }
.drt-branch-page-card { display:grid; grid-template-columns:minmax(340px,.9fr) minmax(0,1.1fr); min-height:380px; border:1px solid var(--drt-line); border-radius:28px; background:#fff; overflow:hidden; }
.drt-branch-page-media { display:grid; place-items:center; background:linear-gradient(145deg,#e9f4f1,#f4efe7); color:var(--drt-primary); overflow:hidden; }
.drt-branch-page-media img { width:100%; height:100%; object-fit:cover; }
.drt-branch-page-copy { padding:44px; display:flex; flex-direction:column; justify-content:center; }
.drt-branch-page-copy h2 { margin:10px 0 12px; font-size:clamp(27px,2.6vw,38px); line-height:1.5; }
.drt-branch-page-copy > p { margin:0 0 20px; color:var(--drt-muted); line-height:2; }
.drt-branch-page-copy dl,.drt-branch-detail-copy dl { margin:0; display:grid; gap:10px; }
.drt-branch-page-copy dl div,.drt-branch-detail-copy dl div { display:grid; grid-template-columns:110px 1fr; gap:14px; padding:10px 0; border-bottom:1px solid #edf2f1; }
.drt-branch-page-copy dt,.drt-branch-detail-copy dt { color:#8b9a9c; font-size:12px; }
.drt-branch-page-copy dd,.drt-branch-detail-copy dd { margin:0; color:var(--drt-ink); font-size:13px; }

/* Page hero */
.drt-page-hero {
  margin-top:38px;
  min-height:350px;
  padding:58px 62px;
  border-radius:30px;
  border:1px solid var(--drt-line);
  background: radial-gradient(circle at 10% 15%,rgba(220,239,238,.8),transparent 23rem), #fff;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:42px;
}
.drt-page-hero.has-media { grid-template-columns:minmax(0,1fr) minmax(320px,.68fr); }
.drt-page-hero-copy { max-width:760px; }
.drt-page-hero h1 { margin:14px 0 14px; font-size:clamp(32px,3.35vw,48px); line-height:1.5; letter-spacing:-.025em; font-weight:950; }
.drt-page-hero p { margin:0 0 24px; max-width:680px; color:var(--drt-muted); line-height:2.05; font-size:15px; }
.drt-page-hero-media { height:260px; border-radius:24px; overflow:hidden; background:var(--drt-mint-2); }
.drt-page-hero-media img { width:100%; height:100%; object-fit:cover; }

/* About / team / facilities */
.drt-about-values { padding-top:28px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.drt-about-value { padding:30px; border-top:1px solid var(--drt-line-strong); }
.drt-about-value > span { color:var(--drt-gold); font-size:12px; font-weight:900; }
.drt-about-value h2 { margin:15px 0 8px; font-size:22px; }
.drt-about-value p { margin:0; color:var(--drt-muted); line-height:1.95; font-size:13px; }
.drt-about-branch-list { display:grid; border-top:1px solid var(--drt-line); }
.drt-about-branch-list a { display:grid; grid-template-columns:54px 1fr auto; align-items:center; gap:18px; padding:20px 6px; border-bottom:1px solid var(--drt-line); }
.drt-about-branch-list a > span { color:var(--drt-gold); font-weight:900; }
.drt-about-branch-list strong { display:block; font-size:17px; }
.drt-about-branch-list small { display:block; color:var(--drt-muted); margin-top:4px; }
.drt-about-branch-list b { color:var(--drt-primary); }
.drt-team-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.drt-team-card { overflow:hidden; background:#fff; border:1px solid var(--drt-line); border-radius:24px; }
.drt-team-card-photo { height:280px; display:grid; place-items:center; background:var(--drt-mint-2); color:var(--drt-primary); overflow:hidden; }
.drt-team-card-photo img { width:100%; height:100%; object-fit:cover; }
.drt-team-card > div:last-child { padding:22px; }
.drt-team-card h3 { margin:0 0 5px; font-size:19px; }
.drt-team-card p { margin:0 0 8px; color:var(--drt-primary); font-size:13px; font-weight:800; }
.drt-team-card small { color:var(--drt-muted); line-height:1.8; }
.drt-facility-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.drt-facility-grid article { background:#fff; border:1px solid var(--drt-line); border-radius:24px; overflow:hidden; }
.drt-facility-grid img { width:100%; height:220px; object-fit:cover; }
.drt-facility-grid article > div { padding:22px; }
.drt-facility-grid article span { color:var(--drt-gold); font-size:11px; font-weight:900; }
.drt-facility-grid h3 { margin:8px 0; font-size:19px; }
.drt-facility-grid p { margin:0; color:var(--drt-muted); font-size:13px; line-height:1.9; }

/* Home trust / gallery */
.drt-home-trust { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:42px; padding:52px; border-radius:28px; background:var(--drt-primary); color:#fff; }
.drt-home-trust .drt-public-eyebrow { color:#d3bd7c; }
.drt-home-trust-copy h2 { margin:12px 0; font-size:clamp(27px,2.7vw,38px); line-height:1.5; }
.drt-home-trust-copy p { margin:0 0 20px; color:#c8d9da; line-height:2; }
.drt-home-trust .drt-public-text-link { color:#fff; }
.drt-home-trust-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.drt-home-trust-list article { display:flex; gap:12px; align-items:center; padding:16px; border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.045); }
.drt-home-trust-thumb { width:54px; height:54px; flex:0 0 auto; border-radius:50%; display:grid; place-items:center; overflow:hidden; background:#fff; color:var(--drt-primary); }
.drt-home-trust-thumb img { width:100%; height:100%; object-fit:cover; }
.drt-home-trust-list strong,.drt-home-trust-list small { display:block; }
.drt-home-trust-list small { margin-top:4px; color:#c6d8d9; font-size:11px; }
.drt-gallery-preview { display:grid; grid-template-columns:1.5fr 1fr 1fr; grid-template-rows:220px 220px; gap:12px; }
.drt-gallery-preview a { overflow:hidden; border-radius:22px; background:var(--drt-mint-2); }
.drt-gallery-preview a:first-child { grid-row:1 / span 2; }
.drt-gallery-preview img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.drt-gallery-preview a:hover img { transform:scale(1.025); }
.drt-gallery-grid { columns:3 280px; column-gap:16px; }
.drt-gallery-grid figure { break-inside:avoid; margin:0 0 16px; overflow:hidden; border-radius:22px; border:1px solid var(--drt-line); background:#fff; }
.drt-gallery-grid img { width:100%; height:auto; }
.drt-gallery-grid figcaption { padding:15px 18px; color:var(--drt-muted); font-size:12px; }

/* Contact / forms / booking */
.drt-contact-layout { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr); gap:26px; }
.drt-contact-branches { display:grid; gap:14px; align-content:start; }
.drt-contact-branches article { padding:24px; border:1px solid var(--drt-line); border-radius:22px; background:#fff; }
.drt-contact-branches h3 { margin:0 0 6px; font-size:19px; }
.drt-contact-branches p { margin:0; color:var(--drt-muted); font-size:13px; line-height:1.9; }
.drt-contact-branches dl { margin:16px 0 0; display:grid; gap:8px; }
.drt-contact-branches dl div { display:flex; justify-content:space-between; gap:16px; font-size:12px; }
.drt-contact-branches dt { color:#8b9a9c; }
.drt-contact-branches dd { margin:0; font-weight:800; }
.drt-public-form-card { padding:30px; border:1px solid var(--drt-line); border-radius:24px; background:#fff; box-shadow:0 16px 42px rgba(8,54,60,.045); }
.drt-public-form { display:grid; gap:16px; }
.drt-public-form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; }
.drt-public-form label { display:grid; gap:7px; color:var(--drt-ink); font-size:12px; font-weight:800; }
.drt-public-form input,.drt-public-form select,.drt-public-form textarea { width:100%; border:1px solid #ccdcdb; border-radius:14px; background:#fdfefe; min-height:48px; padding:11px 14px; color:var(--drt-ink); font:inherit; outline:none; transition:border-color .18s ease, box-shadow .18s ease; }
.drt-public-form textarea { min-height:130px; resize:vertical; }
.drt-public-form input:focus,.drt-public-form select:focus,.drt-public-form textarea:focus { border-color:#81afb1; box-shadow:0 0 0 4px rgba(7,88,97,.08); }
.drt-public-form label small { color:#a23a46; }
.drt-public-alert { margin-bottom:16px; padding:13px 16px; border-radius:14px; font-size:13px; }
.drt-public-alert.is-success { background:#e9f7ef; color:#19613d; }
.drt-public-alert.is-error { background:#fff0f1; color:#9b313d; }
.drt-booking-layout { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.drt-booking-registration { max-width:820px; margin-inline:auto; }
.drt-public-loading { padding:14px; color:var(--drt-muted); }

/* Profiles / details */
.drt-profile-hero,.drt-branch-detail-hero { width:min(calc(100% - 40px),var(--drt-container)); margin:38px auto 0; display:grid; grid-template-columns:minmax(340px,.85fr) minmax(0,1.15fr); min-height:520px; border:1px solid var(--drt-line); border-radius:30px; background:#fff; overflow:hidden; }
.drt-profile-photo,.drt-branch-detail-media { display:grid; place-items:center; background:linear-gradient(145deg,#e8f3f1,#f2ede5); color:var(--drt-primary); overflow:hidden; }
.drt-profile-photo img,.drt-branch-detail-media img { width:100%; height:100%; object-fit:cover; }
.drt-profile-copy,.drt-branch-detail-copy { padding:58px; display:flex; flex-direction:column; justify-content:center; }
.drt-profile-copy h1,.drt-branch-detail-copy h1 { margin:12px 0; font-size:clamp(32px,3.35vw,48px); line-height:1.5; }
.drt-profile-specialty { color:var(--drt-primary); font-weight:900; font-size:16px; }
.drt-profile-bio,.drt-branch-detail-copy > p { color:var(--drt-muted); line-height:2.05; }
.drt-profile-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.drt-profile-branches { display:grid; gap:10px; }
.drt-profile-branches article { display:flex; justify-content:space-between; gap:20px; align-items:center; padding:20px 22px; border:1px solid var(--drt-line); border-radius:18px; background:#fff; }
.drt-profile-branches strong,.drt-profile-branches small { display:block; }
.drt-profile-branches small { margin-top:4px; color:var(--drt-muted); }
.drt-profile-branches article > div:last-child { display:flex; gap:16px; color:var(--drt-primary); font-size:12px; font-weight:900; }
.drt-public-note { width:min(calc(100% - 40px),var(--drt-container)); margin:22px auto 0; padding:18px 20px; display:flex; gap:14px; border-radius:18px; background:var(--drt-mint-2); color:var(--drt-primary); }
.drt-public-note p { margin:4px 0 0; color:var(--drt-muted); }

/* Care path / empty */
.drt-public-care-path { margin-top:0; margin-bottom:80px; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:0; border:1px solid var(--drt-line); border-radius:24px; overflow:hidden; background:#fff; }
.drt-public-care-path article { min-height:150px; padding:28px; border-inline-end:1px solid var(--drt-line); }
.drt-public-care-path article:last-child { border-inline-end:0; }
.drt-public-care-path span { color:var(--drt-gold); font-size:12px; font-weight:900; }
.drt-public-care-path strong,.drt-public-care-path small { display:block; }
.drt-public-care-path strong { margin:10px 0 7px; font-size:17px; }
.drt-public-care-path small { color:var(--drt-muted); line-height:1.8; }
.drt-public-empty { width:min(calc(100% - 40px),820px); margin:80px auto; padding:42px; text-align:center; border:1px solid var(--drt-line); border-radius:24px; background:#fff; color:var(--drt-muted); }
.drt-public-empty > span { width:64px; height:64px; margin:0 auto 16px; border-radius:50%; display:grid; place-items:center; background:var(--drt-mint-2); color:var(--drt-primary); }
.drt-public-empty h2 { margin:0 0 8px; color:var(--drt-ink); }
.drt-public-empty p { margin:0 0 20px; }

/* Footer */
.drt-public-footer { margin-top:82px; padding:46px 0 24px; background:#073f46; color:#fff; }
.drt-public-footer-cta { display:flex; justify-content:space-between; gap:28px; align-items:center; padding:30px 34px; border:1px solid rgba(255,255,255,.14); border-radius:24px; background:linear-gradient(110deg,rgba(255,255,255,.055),rgba(255,255,255,.02)); }
.drt-public-footer-cta span { color:#cfbb7b; font-size:12px; font-weight:900; }
.drt-public-footer-cta h2 { margin:8px 0 6px; font-size:clamp(24px,2.35vw,34px); line-height:1.5; }
.drt-public-footer-cta p { margin:0; color:#c7d7d8; }
.drt-public-footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,minmax(0,1fr)); gap:42px; padding:44px 4px 34px; }
.drt-public-footer .drt-public-brand-copy strong { color:#fff; }
.drt-public-footer-brand p { max-width:390px; margin:18px 0 0; color:#b9ccce; font-size:13px; line-height:1.95; }
.drt-public-footer nav { display:grid; align-content:start; gap:9px; }
.drt-public-footer nav h3 { margin:0 0 7px; color:#fff; font-size:14px; }
.drt-public-footer nav a { color:#bdd0d2; font-size:12px; }
.drt-public-footer nav a:hover { color:#fff; }
.drt-public-footer-bottom { padding-top:20px; border-top:1px solid rgba(255,255,255,.11); display:flex; justify-content:space-between; align-items:center; gap:20px; color:#9fb9bc; font-size:11px; }
.drt-public-footer-support { display:flex; align-items:center; gap:8px; }
.drt-public-footer-support img { width:24px; height:24px; object-fit:contain; }

/* Responsive */
@media (max-width: 1180px) {
  .drt-public-nav-shell { grid-template-columns:auto 1fr auto; gap:14px; }
  .drt-public-nav { gap:14px; }
  .drt-public-nav a { font-size:12px; }
  .drt-public-action { padding-inline:10px; }
  .drt-public-action span { display:none; }
  .drt-public-language-summary { min-width:88px; }
  .drt-home-hero { grid-template-columns:minmax(0,1fr) minmax(360px,.85fr); padding:36px; gap:40px; }
  .drt-home-features { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .drt-service-grid,.drt-doctor-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 960px) {
  .drt-public-nav { display:none; }
  .drt-public-menu-button { display:flex; }
  .drt-public-nav-shell { grid-template-columns:1fr auto; min-height:78px; }
  .drt-public-actions { grid-column:2; }
  .drt-public-actions > .drt-public-action,
  .drt-public-actions > .drt-public-language-menu { display:none; }
  .drt-public-brand { grid-column:1; grid-row:1; }
  .drt-home-hero { grid-template-columns:1fr; min-height:0; }
  html[dir="rtl"] .drt-home-hero { grid-template-areas:"copy" "visual"; }
  .drt-home-hero-copy { max-width:none; }
  .drt-home-hero-visual,.drt-home-art,.drt-home-hero-visual > img { min-height:400px; }
  .drt-branch-preview-grid,.drt-team-grid,.drt-facility-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .drt-doctor-page-grid { grid-template-columns:1fr; }
  .drt-contact-layout,.drt-booking-layout,.drt-home-trust { grid-template-columns:1fr; }
  .drt-branch-page-card,.drt-profile-hero,.drt-branch-detail-hero { grid-template-columns:1fr; }
  .drt-branch-page-media,.drt-profile-photo,.drt-branch-detail-media { min-height:380px; }
  .drt-page-hero,.drt-page-hero.has-media { grid-template-columns:1fr; }
  .drt-page-hero-media { height:320px; }
  .drt-public-footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .drt-public-container,
  .drt-public-main > section,
  .drt-public-section,
  .drt-profile-hero,
  .drt-branch-detail-hero,
  .drt-public-note { width:min(calc(100% - 28px),var(--drt-container)); }
  .drt-public-brand-copy strong { font-size:14px; }
  .drt-public-brand-mark { width:46px; height:46px; border-radius:15px; }
  .drt-public-mobile-actions { grid-template-columns:1fr; }
  .drt-home-hero { margin-top:18px; padding:28px 22px; border-radius:24px; gap:28px; }
  .drt-home-hero-copy h1 { font-size:clamp(31px,8.8vw,40px); line-height:1.55; }
  .drt-home-hero-actions { display:grid; grid-template-columns:1fr; }
  .drt-public-btn { width:100%; }
  .drt-home-hero-visual,.drt-home-art,.drt-home-hero-visual > img { min-height:310px; }
  .drt-home-art-tooth { width:110px; height:145px; }
  .drt-home-features,.drt-service-grid,.drt-doctor-grid,.drt-branch-preview-grid,.drt-team-grid,.drt-facility-grid,.drt-about-values,.drt-home-trust-list,.drt-public-care-path { grid-template-columns:1fr; }
  .drt-home-feature { min-height:0; }
  .drt-public-section { padding-block:60px; }
  .drt-public-section-heading { align-items:start; flex-direction:column; margin-bottom:24px; }
  .drt-public-section-heading h2 { font-size:32px; }
  .drt-service-row,.drt-service-row.is-reversed { grid-template-columns:1fr; }
  .drt-service-row.is-reversed .drt-service-row-media { order:0; }
  .drt-service-row-copy { padding:28px; }
  .drt-doctor-page-card { grid-template-columns:1fr; }
  .drt-doctor-page-photo { min-height:320px; }
  .drt-branch-page-copy,.drt-profile-copy,.drt-branch-detail-copy { padding:30px 24px; }
  .drt-branch-page-copy dl div,.drt-branch-detail-copy dl div { grid-template-columns:1fr; gap:3px; }
  .drt-gallery-preview { grid-template-columns:1fr 1fr; grid-template-rows:220px 180px 180px; }
  .drt-gallery-preview a:first-child { grid-column:1 / span 2; grid-row:1; }
  .drt-contact-layout { padding-block:55px; }
  .drt-public-form-grid { grid-template-columns:1fr; }
  .drt-page-hero { margin-top:18px; padding:34px 24px; min-height:0; border-radius:24px; }
  .drt-page-hero h1 { font-size:32px; line-height:1.55; }
  .drt-public-footer { margin-top:55px; }
  .drt-public-footer-cta,.drt-public-footer-bottom { align-items:flex-start; flex-direction:column; }
  .drt-public-footer-grid { grid-template-columns:1fr; gap:26px; }
  .drt-profile-branches article { align-items:flex-start; flex-direction:column; }
}


/* V68.RC2 — shared patient registration and booking onboarding */
.drt-reg-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(203, 213, 225, .9);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
}
.drt-reg-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.drt-reg-card__head strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
}
.drt-reg-card__head p,
.drt-reg-helper {
  margin: 4px 0 0;
  color: #64748b;
  font-size: .82rem;
  line-height: 1.8;
}
.drt-reg-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.drt-reg-field {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.drt-reg-star {
  color: #e11d48;
  font-weight: 900;
}
.drt-reg-type-control ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.drt-reg-type-control li {
  flex: 1 1 200px;
}
.drt-reg-type-control label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid rgba(148, 163, 184, .45);
  border-radius: 18px;
  background: #f8fafc;
  cursor: pointer;
  font-weight: 800;
  color: #0f172a;
}
.drt-reg-type-control input[type="radio"] {
  accent-color: #0f766e;
}
.drt-booking-onboard {
  display: grid;
  gap: 22px;
}
.drt-booking-onboard__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 260px;
  gap: 18px;
  align-items: start;
}
.drt-booking-onboard__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ecfeff;
  color: #0f766e;
  font-size: .72rem;
  font-weight: 900;
}
.drt-booking-onboard__hero h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.4;
  font-weight: 950;
  color: #0f172a;
}
.drt-booking-onboard__hero p {
  margin: 0;
  color: #475569;
  line-height: 1.95;
}
.drt-booking-onboard__status {
  padding: 18px;
  border: 1px solid rgba(186, 230, 253, .8);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(239, 246, 255, .92), rgba(248, 250, 252, .98));
}
.drt-booking-onboard__status strong {
  display: block;
  color: #0f172a;
  font-size: .95rem;
  font-weight: 900;
}
.drt-booking-onboard__status ul {
  margin: 12px 0 0;
  padding-inline-start: 18px;
  color: #334155;
  line-height: 1.9;
}
.drt-booking-onboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 820px) {
  .drt-reg-grid,
  .drt-booking-onboard__hero {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .drt-reg-card {
    padding: 16px;
    border-radius: 20px;
  }
}
