:root {
  --bg: #f2f7fa;
  --surface: #ffffff;
  --soft: #dff2f3;
  --soft-2: #e6f1f8;
  --text: #173043;
  --muted: #4f6675;
  --primary: #07849f;
  --primary-dark: #055f76;
  --accent: #63c7b2;
  --warm: #fff7e8;
  --border: #c9dce6;
  --shadow: 0 20px 48px rgba(9, 44, 62, 0.16);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #eef6f9 0%, var(--bg) 360px, var(--bg) 100%);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--text);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 20;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(242, 247, 250, 0.94);
  border-bottom: 1px solid rgba(201, 220, 230, 0.95);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  font-size: 22px;
}
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand small { color: var(--muted); margin-top: 4px; }
.site-nav { display: flex; align-items: center; gap: 18px; font-weight: 650; }
.site-nav a { text-decoration: none; color: var(--muted); font-size: 15px; }
.site-nav a:hover { color: var(--primary-dark); }
.nav-cta {
  color: white !important;
  background: var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
}
.nav-toggle { display: none; }

/* Keep the full desktop navigation on one clean line. */
@media (min-width: 1181px) {
  .nav-wrap { gap: 16px; }
  .site-nav {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 16px;
  }
  .site-nav a {
    font-size: 14px;
    white-space: nowrap;
  }
  .site-nav .nav-cta + .nav-lang { margin-left: -3px; }
}

/* At narrower desktop widths, use the menu button instead of wrapping labels. */
@media (min-width: 961px) and (max-width: 1180px) {
  .nav-wrap { position: relative; }
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    background: white;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(300px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    width: 100%;
    padding: 10px;
    white-space: nowrap;
  }
  .site-nav .nav-cta {
    justify-content: center;
    text-align: center;
  }
}

.section { padding: 88px 0; }
.section.compact { padding: 28px 0; }
.section.alt { background: #fbfdfe; }
.section.soft { background: linear-gradient(135deg, #dff2f3, #eaf3fb); }
.hero { padding: 32px 0 60px; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(99,199,178,.28), rgba(11,137,166,0));
  transform: translate(20%, -30%);
  pointer-events: none;
}
.hero-grid, .split, .contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}
.hero-grid { align-items: start; }
.reverse { grid-template-columns: .95fr 1.05fr; }
.hero-copy { position: relative; z-index: 1; padding-top: 16px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
h1, h2, h3 { line-height: 1.14; margin: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -0.045em; max-width: 820px; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -0.035em; }
h3 { font-size: 20px; letter-spacing: -0.015em; }
p { color: var(--muted); margin: 16px 0 0; }
.lead { font-size: clamp(19px, 2.2vw, 24px); color: #334c5e; max-width: 760px; margin-top: 24px; }
.hero-intro { font-size: clamp(17px, 1.45vw, 20px); color: #334c5e; max-width: 760px; margin-top: 20px; }
.hero-intro + .hero-intro { margin-top: 14px; }
.lead-small { font-size: 20px; color: #334c5e; }
.doctor-line {
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  box-shadow: 0 10px 25px rgba(16,55,78,.08);
}
.doctor-line span { color: var(--muted); }
.hero-actions, .button-row, .center-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(16,55,78,.12); }
.btn-primary { color: white; background: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { color: var(--primary-dark); background: white; border-color: #b5ceda; }
.btn-ghost { color: var(--text); background: rgba(255,255,255,.5); border-color: var(--border); }
.text-link { color: var(--primary-dark); font-weight: 800; text-decoration: none; border-bottom: 2px solid rgba(11,137,166,.2); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; }
.trust-list li {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 13px;
  color: #324b5e;
  font-size: 14px;
}
.hero-card { position: relative; z-index: 1; }
.photo-frame {
  width: min(360px, 80vw);
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  background: white;
  padding: 12px;
  box-shadow: var(--shadow);
}
.photo-frame img { border-radius: 26px; width: 100%; object-fit: cover; }
.portrait-photo {
  width: min(380px, 82vw);
}
.portrait-photo img {
  aspect-ratio: 4 / 5;
  object-position: center top;
}
.quick-card {
  max-width: 430px;
  margin: -24px auto 0;
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.badge {
  display: inline-block;
  background: var(--warm);
  color: #8a5a00;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fact-grid div {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(9, 44, 62, 0.06);
}
.fact-grid strong { display: block; font-size: 26px; line-height: 1; color: var(--primary-dark); }
.fact-grid span { display: block; color: var(--muted); font-size: 14px; margin-top: 8px; }
.section-head { max-width: 800px; margin-bottom: 34px; }
.section-head p { font-size: 18px; }
.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  grid-template-areas:
    "head photo"
    "cards cards";
  column-gap: 24px;
  row-gap: 28px;
  align-items: end;
}
.audience-section-head { grid-area: head; margin-bottom: 0; }
.audience-card-grid { grid-area: cards; }
.audience-treatment-photo { grid-area: photo; width: min(100%, 280px); margin: 0; justify-self: end; }
.audience-treatment-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 58%;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(16,55,78,.10);
}

/* Bring the audience text and photograph closer together on wide screens. */
@media (min-width: 1080px) {
  .audience-layout {
    width: min(100%, 1080px);
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    column-gap: 18px;
  }
}
.narrow { max-width: 860px; }
.card-grid, .service-grid, .review-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.info-card, .service-grid article, .review-card, .address-card, .notice-card, .link-cards a {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(16,55,78,.06);
}
.info-card .icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--primary-dark);
  font-weight: 900;
  margin-bottom: 18px;
}
.image-panel {
  margin: 0;
  max-width: 430px;
  justify-self: center;
}
.image-panel img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(201,220,230,.9);
}
.image-panel figcaption { color: var(--muted); font-size: 14px; margin-top: 12px; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.media-card {
  margin: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(9, 44, 62, 0.10);
}
.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.media-card figcaption {
  padding: 13px 15px 15px;
  color: var(--muted);
  font-size: 14px;
  background: white;
}

.notice-card {
  margin-top: 22px;
  background: var(--warm);
  border-color: #f0dbb4;
  color: #5f4a22;
}
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.timeline span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 900;
}
.link-cards { display: grid; gap: 14px; }
.link-cards a { text-decoration: none; display: block; }
.link-cards a:hover { border-color: var(--primary); }
.link-cards span { display: block; color: var(--muted); margin-top: 6px; }
.link-cards .link-hint {
  display: block;
  margin-top: 10px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-grid { grid-template-columns: repeat(3, 1fr); }
.stars { color: #f5b400; letter-spacing: .05em; font-size: 18px; margin-bottom: 14px; }
.review-card p { color: #31495a; font-size: 16px; }
.review-card span { display: block; color: var(--muted); margin-top: 18px; font-weight: 700; }
.center-actions { justify-content: center; }
.faq-list { display: grid; gap: 12px; }
details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 20px;
}
summary {
  cursor: pointer;
  font-weight: 850;
  padding: 20px 0;
}
details p { padding-bottom: 20px; margin-top: 0; }
.contact-section { background: linear-gradient(135deg, #0b89a6, #1f5068); color: white; }
.contact-section p, .contact-section .eyebrow { color: rgba(255,255,255,.82); }
.contact-section h2 { color: white; }
.contact-actions { flex-direction: column; align-items: flex-start; }
.address-card { color: var(--text); font-style: normal; display: grid; gap: 6px; }
.address-card strong { font-size: 20px; }
.address-card span { color: var(--muted); }
.address-card hr { width: 100%; border: 0; border-top: 1px solid var(--border); margin: 12px 0; }
.site-footer { background: #102b3d; color: white; padding: 36px 0; }
.site-footer p { color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr 1fr 1fr; gap: 24px; align-items: start; }
.site-footer strong { display: block; margin-bottom: 10px; color: #ffffff; }
.footer-grid a { display: block; color: white; text-decoration: none; margin-bottom: 8px; }
.footer-cookie-settings {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-cookie-settings:hover,
.footer-cookie-settings:focus-visible { text-decoration: underline; }
.legal-note { font-size: 14px; margin: 0; }

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    background: white;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
  }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px; }
  .hero-grid, .split, .reverse, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .media-card img { aspect-ratio: 4 / 3; }
  .fact-grid, .card-grid.three, .service-grid, .review-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding-top: 24px; }
  .hero-copy { padding-top: 0; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { min-height: 68px; }
  .site-nav { top: 68px; }
  .brand small { display: none; }
  .media-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .timeline li { grid-template-columns: 1fr; }
  .quick-card { margin-top: 16px; }
}

.six-grid .media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}


/* Compact clinic gallery: desktop/tablet fix */
.media-grid.six-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.media-grid.six-grid .media-card {
  margin: 0;
}

.media-grid.six-grid .media-card img {
  width: 100%;
  height: 170px;
  aspect-ratio: auto;
  object-fit: cover;
}

.media-grid.six-grid .media-card figcaption {
  min-height: 48px;
}

@media (max-width: 960px) {
  .media-grid.six-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-grid.six-grid .media-card img {
    height: 165px;
  }
}

@media (max-width: 560px) {
  .media-grid.six-grid {
    grid-template-columns: 1fr;
  }
  .media-grid.six-grid .media-card img {
    height: 175px;
  }
}


/* Slovene text update: yellow framed note for first-contact warning */
.contact-notice {
  background: var(--warm);
  border-color: #f2cf7a;
  box-shadow: 0 10px 28px rgba(151, 109, 28, 0.08);
}
.contact-notice strong {
  color: var(--text);
}


/* Contact map update */
.contact-side {
  display: grid;
  gap: 18px;
  align-self: start;
  margin-top: -10px;
}

.map-card {
  padding: 0;
  overflow: hidden;
}

.map-card > strong {
  display: block;
  padding: 18px 18px 0;
}

.map-frame {
  margin-top: 12px;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #eef7f8;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-consent-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 20%, rgba(99, 199, 178, 0.24), transparent 34%),
    linear-gradient(135deg, #eef8f8, #e8f2f8);
  text-align: left;
}

.map-consent-placeholder[hidden] { display: none; }

.map-consent-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary);
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(7, 132, 159, 0.22);
}

.map-consent-copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 560px;
}

.map-consent-copy strong {
  display: block;
  color: var(--text);
  font-size: 17px;
}

.map-consent-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.map-consent-button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  color: #ffffff;
  background: var(--primary);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.map-consent-button:hover { background: var(--primary-dark); }
.map-consent-button:focus-visible { outline: 3px solid rgba(7, 132, 159, 0.28); outline-offset: 3px; }

.map-consent-revoke {
  display: block;
  margin: 10px 18px 0 auto;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.map-consent-revoke[hidden] { display: none; }
.map-consent-revoke:hover { color: var(--primary-dark); }
.map-consent-revoke:focus-visible { outline: 3px solid rgba(7, 132, 159, 0.22); outline-offset: 3px; }

.map-link {
  display: block;
  padding: 13px 18px 16px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .contact-side {
    margin-top: 0;
  }

  .map-frame {
    height: 250px;
  }
}


/* Contact map + HealthTürkiye photo update */
.contact-stack {
  display: grid;
  gap: 24px;
}

.contact-top-grid {
  align-items: start;
}

.wide-map-card {
  padding: 0;
  overflow: hidden;
}

.wide-map-card > strong {
  display: block;
  padding: 18px 20px 0;
}

.wide-map-card .map-frame {
  height: 230px;
  margin-top: 12px;
}

.healthturkiye-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .85fr) 240px;
  gap: 30px;
  align-items: center;
}

.health-photo-card {
  margin: 0;
  justify-self: end;
  max-width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,55,78,.08);
}

.health-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .healthturkiye-grid {
    grid-template-columns: 1fr;
  }

  .health-photo-card {
    justify-self: start;
    max-width: 260px;
  }

  .wide-map-card .map-frame {
    height: 230px;
  }
}

@media (max-width: 560px) {
  .wide-map-card .map-frame {
    height: 220px;
  }

  .map-consent-placeholder {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    text-align: center;
  }

  .map-consent-icon {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }

  .map-consent-copy strong { font-size: 15px; }
  .map-consent-copy p { font-size: 12px; }
  .map-consent-button { padding: 9px 14px; font-size: 13px; }
}


/* Hospital link + contact alignment update */
.inline-link {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--primary-dark);
}

.contact-top-grid > .address-card {
  margin-top: 38px;
}

.contact-section .address-card .inline-link {
  color: var(--primary-dark);
}

.contact-section .address-card .inline-link:hover {
  color: var(--primary);
}

@media (max-width: 960px) {
  .contact-top-grid > .address-card {
    margin-top: 0;
  }
}


/* Contact Google link + HealthTürkiye certification update */
.address-google-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 8px;
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.address-google-link:hover {
  color: var(--primary);
}

.healthturkiye-grid p + p {
  margin-top: 14px;
}


/* HealthTürkiye important notice */
.health-cert-notice {
  margin-top: 18px;
  background: var(--warm);
  border-color: #f2cf7a;
  color: #5f4a22;
  font-size: 14px;
  line-height: 1.5;
}

.health-cert-notice strong {
  color: var(--text);
}


/* Potek collapsible + Google review CTA update */
.process-collapsible {
  margin-top: 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16,55,78,.06);
  overflow: hidden;
}

.process-collapsible summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 900;
  position: relative;
}

.process-collapsible summary::-webkit-details-marker {
  display: none;
}

.process-collapsible summary::after {
  content: "＋";
  position: absolute;
  right: 24px;
  top: 22px;
  color: var(--primary-dark);
  font-size: 22px;
  line-height: 1;
}

.process-collapsible[open] summary::after {
  content: "−";
}

.process-collapsible summary span {
  padding-right: 42px;
}

.process-collapsible summary small {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  padding-right: 42px;
}

.process-collapsible .timeline {
  padding: 0 24px 24px;
}

@media (max-width: 560px) {
  .process-collapsible summary {
    padding: 20px;
  }

  .process-collapsible summary::after {
    right: 20px;
    top: 20px;
  }

  .process-collapsible .timeline {
    padding: 0 20px 20px;
  }
}


/* Final mobile fix: six-grid, HealthTürkiye logo/photo, removed top chips/facts */
.healthturkiye-logo-wrap {
  margin: 0 0 14px;
}

.healthturkiye-logo-img {
  display: block;
  width: min(190px, 55vw);
  height: auto;
  object-fit: contain;
}

.healthturkiye-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .85fr) 240px;
  gap: 30px;
  align-items: center;
}

.health-photo-card {
  margin: 0;
  justify-self: end;
  max-width: 240px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,55,78,.08);
}

.health-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.six-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.six-grid .media-card {
  min-width: 0;
}

.six-grid .media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 960px) {
  .healthturkiye-grid {
    grid-template-columns: 1fr;
  }

  .health-photo-card {
    justify-self: start;
    max-width: 260px;
  }

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

@media (max-width: 560px) {
  .six-grid {
    grid-template-columns: 1fr;
  }

  .healthturkiye-logo-img {
    width: min(170px, 70vw);
  }

  .health-photo-card {
    max-width: 245px;
  }
}


/* Final polish: HealthTürkiye notice placement, O zdravniku image, mobile hero */
.healthturkiye-grid .link-cards .health-cert-notice {
  margin-top: 18px;
}

.healthturkiye-grid .link-cards {
  align-self: center;
}

#o-zdravniku .image-panel img {
  object-position: center top;
}

@media (max-width: 560px) {
  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/waiting-room-top.jpg');
    background-size: cover;
    background-position: center;
    opacity: .08;
    pointer-events: none;
  }

  .hero .container {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.04;
  }
}


/* Final final fix: O zdravniku image, Potek desktop layout, hero size */
#o-zdravniku .image-panel img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  background: #f1ecea;
}

#o-zdravniku .image-panel {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
}

#o-zdravniku .image-panel figcaption {
  margin: 0;
  padding: 12px 16px 16px;
}

.hospital-website-link {
  margin-top: 24px;
}

.hero h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
}

@media (min-width: 900px) {
  #potek .container {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    gap: 34px;
    align-items: start;
  }

  #potek .section-head {
    margin: 0;
  }

  #potek .process-collapsible {
    margin-top: 6px;
  }

  #potek .contact-notice {
    grid-column: 2;
    margin-top: 16px;
  }
}

/* cancel previous mobile faint background */
@media (max-width: 560px) {
  .hero::before {
    content: none !important;
    background-image: none !important;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.04;
  }
}


/* Last fix: O zdravniku image, tighter Potek, floating top button */
#o-zdravniku .image-panel img {
  aspect-ratio: 4 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  background: transparent;
}

#o-zdravniku .image-panel {
  background: #ffffff;
}

#potek.section {
  padding-top: 62px;
  padding-bottom: 54px;
}

#potek .section-head {
  margin-bottom: 10px;
}

#potek .container {
  row-gap: 14px;
}

#potek .process-collapsible {
  margin-top: 8px;
}

#potek .contact-notice {
  margin-top: 12px;
}

@media (min-width: 900px) {
  #potek .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 20px 28px;
    align-items: start;
  }

  #potek .section-head {
    margin: 0;
  }

  #potek .process-collapsible {
    margin-top: 0;
  }

  #potek .contact-notice {
    grid-column: 2;
    margin-top: 8px;
  }
}

@media (max-width: 560px) {
  #potek.section {
    padding-top: 46px;
    padding-bottom: 42px;
  }
}

/* Potek compact vertical layout */
#potek.section {
  padding-top: 44px !important;
  padding-bottom: 42px !important;
}

#potek .container {
  display: block !important;
  max-width: 980px;
}

#potek .section-head {
  margin: 0 0 16px !important;
  max-width: 820px;
}

#potek .section-head h2 {
  max-width: 760px;
}

#potek .process-collapsible {
  margin-top: 0 !important;
  width: 100%;
}

#potek .process-collapsible summary {
  padding: 18px 22px;
}

#potek .process-collapsible summary::after {
  top: 18px;
}

#potek .contact-notice {
  margin-top: 12px !important;
  max-width: 100%;
}

@media (min-width: 900px) {
  #potek .container {
    display: block !important;
  }

  #potek .contact-notice {
    grid-column: auto !important;
  }
}

@media (max-width: 560px) {
  #potek.section {
    padding-top: 36px !important;
    padding-bottom: 34px !important;
  }

  #potek .section-head {
    margin-bottom: 12px !important;
  }

  #potek .process-collapsible summary {
    padding: 16px 18px;
  }

  #potek .process-collapsible summary::after {
    right: 18px;
    top: 16px;
  }

  #potek .contact-notice {
    margin-top: 10px !important;
  }
}

/* Bilingual navigation + reliable brand top link */
.nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary-dark) !important;
  font-weight: 900;
  letter-spacing: .04em;
}

.nav-lang:hover {
  background: var(--soft);
}

.brand {
  cursor: pointer;
}

@media (max-width: 760px) {
  .site-nav .nav-lang {
    width: fit-content;
  }
}


/* Bilingual polish: make Contact and language buttons visually aligned */
.site-nav .nav-cta,
.site-nav .nav-lang {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.site-nav .nav-lang {
  min-width: 52px;
  border: 1px solid var(--border);
}

@media (max-width: 760px) {
  .site-nav .nav-cta,
  .site-nav .nav-lang {
    min-height: 44px;
    width: 100%;
    font-size: 15px;
  }

  .site-nav .nav-lang {
    width: fit-content;
    min-width: 64px;
  }
}


/* Mobile menu refinement: compact right-aligned panel */
@media (max-width: 760px) {
  .nav-wrap {
    position: relative;
  }

  .site-nav {
    left: auto !important;
    right: 0 !important;
    width: min(270px, calc(100vw - 36px)) !important;
    max-width: 270px !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 18px !important;
  }

  .site-nav a {
    width: 100% !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .site-nav .nav-cta {
    text-align: center !important;
  }

  .site-nav .nav-lang {
    width: fit-content !important;
    min-width: 64px !important;
    align-self: flex-end !important;
  }
}


/* Menu fix 2: same compact mobile menu on SL and EN pages */
@media (max-width: 760px) {
  .nav-wrap {
    position: relative !important;
  }

  .site-nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: auto !important;
    right: 0 !important;
    width: min(270px, calc(100vw - 36px)) !important;
    max-width: 270px !important;
    min-width: 0 !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .site-nav a {
    width: 100% !important;
    text-align: left !important;
    white-space: nowrap !important;
  }

  .site-nav .nav-cta {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .site-nav .nav-lang {
    width: fit-content !important;
    min-width: 64px !important;
    align-self: flex-end !important;
    justify-content: center !important;
  }
}


/* 20260716_1212: reduce only the Slovene desktop hero title size */
@media (min-width: 861px) {
.desktop-hero-title-compact {
    font-size: clamp(36px, 4.4vw, 56px);
    max-width: 780px;
    letter-spacing: -0.038em;
  }
}

/* 20260724: compact mobile menu and full-width language control */
@media (max-width: 760px) {
  .site-nav {
    width: min(262px, calc(100vw - 36px)) !important;
    max-width: 262px !important;
  }

  .site-nav .nav-lang {
    width: 100% !important;
    min-width: 0 !important;
    align-self: stretch !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .audience-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "cards"
      "photo";
    gap: 20px;
  }

  .audience-treatment-photo {
    width: min(100%, 360px);
    justify-self: center;
    margin-top: 4px;
  }

  #anestezija .image-panel { order: 2; }
  #anestezija .split > div { order: 1; }
}

@media (min-width: 961px) {
  .healthturkiye-grid .link-cards .health-cert-notice {
    margin-top: 0;
  }
}


/* 20260720_1520: conversion-focused CTA, mobile WhatsApp button, cookie banner */
.cta-note {
  margin-top: 10px;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
}

.mobile-whatsapp-fixed {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid rgba(201, 220, 230, 0.96);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(9, 44, 62, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-copy a {
  color: var(--primary-dark);
  font-weight: 800;
}

.cookie-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.cookie-button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-button.primary {
  color: #ffffff;
  background: var(--primary);
}

.cookie-button.secondary {
  color: var(--primary-dark);
  background: #ffffff;
  border-color: var(--border);
}

@media (max-width: 860px) {
  body {
    padding-bottom: 86px;
  }

  .mobile-whatsapp-fixed {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(9, 44, 62, 0.26);
  }

  .mobile-whatsapp-fixed:hover {
    background: var(--primary-dark);
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 78px;
    padding: 14px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-button {
    flex: 1;
  }
}


/* 20260720_1600: mobile WhatsApp position, delayed visibility, compact cookie banner */
.cookie-banner {
  max-width: 760px;
  padding: 12px 14px;
  gap: 12px;
}

.cookie-copy p {
  font-size: 13px;
  line-height: 1.38;
}

.cookie-copy strong {
  font-size: 14px;
}

.cookie-button {
  padding: 8px 12px;
  font-size: 13px;
}

@media (max-width: 860px) {
  .mobile-whatsapp-fixed {
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    min-height: 50px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .18s ease, transform .18s ease, background .18s ease;
  }

  .mobile-whatsapp-fixed.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 11px 12px;
    gap: 10px;
  }

  body.mobile-whatsapp-visible .cookie-banner {
    bottom: 78px;
  }
}


/* 20260723_1010: quieter process placement and self-hosted minimal video player */
.process-video-card {
  width: min(100%, 660px);
  margin: 28px auto 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(9, 44, 62, 0.07);
}

.minimal-video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #102b3d;
  line-height: 1;
}

.process-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #102b3d;
  -webkit-user-drag: none;
  user-select: none;
}

.minimal-video-start {
  display: none;
}

.minimal-video-player.is-enhanced .minimal-video-start {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  padding: 0;
  place-items: center;
  color: var(--primary-dark);
  background: linear-gradient(180deg, rgba(7, 31, 44, 0.08), rgba(7, 31, 44, 0.2));
  border: 0;
  cursor: pointer;
}

.minimal-video-player.is-enhanced.is-playing .minimal-video-start {
  display: none;
}

.minimal-video-start-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.minimal-video-start-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 7px 22px rgba(5, 33, 46, 0.22);
}

.minimal-video-start-icon svg {
  width: 27px;
  height: 27px;
}

.minimal-video-start:focus-visible .minimal-video-start-icon {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

.minimal-video-start-label {
  display: inline-flex;
  min-height: 38px;
  padding: 9px 14px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(8, 34, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 0 7px 22px rgba(5, 33, 46, 0.2);
}

.minimal-video-controls {
  display: none;
}

.minimal-video-player.is-enhanced.has-started .minimal-video-controls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: auto;
  z-index: 3;
  display: inline-flex;
  gap: 2px;
  align-items: center;
  padding: 4px 5px;
  color: #ffffff;
  background: rgba(8, 34, 48, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.minimal-video-player.is-enhanced.has-ended .minimal-video-controls {
  display: none;
}

.minimal-video-control {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.minimal-video-control:hover {
  background: rgba(255, 255, 255, 0.14);
}

.minimal-video-control:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}

.minimal-video-control svg {
  width: 19px;
  height: 19px;
}

.process-video-card figcaption {
  padding: 10px 14px 12px;
  color: var(--muted);
  background: #ffffff;
  font-size: 13px;
  line-height: 1.45;
}

@media (min-width: 961px) {
  main > .section:not(.hero) {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 960px) {
  .process-video-card {
    width: 100%;
    max-width: 660px;
    margin: 24px auto 0;
  }
}

@media (max-width: 420px) {
  .minimal-video-start-icon {
    width: 58px;
    height: 58px;
  }

  .minimal-video-player.is-enhanced.has-started .minimal-video-controls {
    right: 8px;
    bottom: 8px;
    left: auto;
    gap: 2px;
    padding: 4px 5px;
  }

  .minimal-video-control {
    width: 30px;
    height: 30px;
  }

  .minimal-video-start-label {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Final usability refinements */
@media (max-width: 960px) {
  .health-photo-card {
    justify-self: center !important;
    margin-right: auto;
    margin-left: auto;
  }
}

/* 20260816: compact language switch and accessible animated mobile navigation icon */
.mobile-header-actions,
.mobile-lang-switch {
  display: none;
}

@media (max-width: 1180px) {
  .mobile-header-actions {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .mobile-lang-switch {
    display: inline-flex;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    color: var(--primary-dark);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .04em;
    text-decoration: none;
  }

  .mobile-lang-switch:hover,
  .mobile-lang-switch:focus-visible {
    background: var(--soft);
  }

  .site-nav .nav-lang {
    display: none !important;
  }

  .nav-toggle {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    color: var(--text);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: var(--soft);
  }

  .nav-toggle-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 16px;
  }

  .nav-toggle-icon span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform-origin: center;
    transition: top 200ms ease, transform 200ms ease, opacity 140ms ease;
  }

  .nav-toggle-icon span:nth-child(1) { top: 1px; }
  .nav-toggle-icon span:nth-child(2) { top: 7px; }
  .nav-toggle-icon span:nth-child(3) { top: 13px; }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
    transform: scaleX(.35);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 420px) {
  .nav-wrap { gap: 10px; }
  .brand { min-width: 0; gap: 8px; }
  .brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
  .brand strong { font-size: 15px; white-space: nowrap; }
  .mobile-header-actions { gap: 6px; }
  .mobile-lang-switch { min-width: 40px; height: 42px; padding: 0 8px; }
  .nav-toggle { width: 42px; height: 42px; flex-basis: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-icon span {
    transition: none;
  }
}
