/* =============================================================
   Biruni Hospital — Cardiovascular Center Landing Page
   Design tokens match the hospital's live brand: navy + clinical
   blue + cyan accent, Figtree (headings) / Poppins (body).
   ============================================================= */

:root {
  --navy-900: #142b4d;
  --navy-800: #182b45;
  --navy-700: #274760;
  --blue-600: #307bc4;
  --blue-500: #3a92e0;
  --cyan-500: #0ba5c4;
  --text-body: #5c6b7d;
  --text-muted: #8b97a8;
  --border: #e5e7eb;
  --surface: #ffffff;
  --surface-alt: #f3f8fb;
  --surface-tint: #eaf3fa;
  --success: #1f9d55;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 8px 30px rgba(20, 43, 77, 0.08);
  --shadow-lift: 0 20px 50px rgba(20, 43, 77, 0.16);
  --container: 1180px;
  --font-head: "Figtree", "Segoe UI", sans-serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
}

/* ---------- Preloader (pulse/EKG loader, matches DC-CIK's) ---------- */
.cs_perloader {
  position: fixed; height: 100vh; width: 100vw; z-index: 99999; left: 0; top: 0;
  background-color: #fff; display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease, visibility .4s ease;
}
.cs_perloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.cs_perloader .cs_perloader_in { position: relative; }
.cs_perloader .cs_perloader_in svg { width: 110px; height: 110px; }
.cs_perloader .cs_wave_first svg { fill: rgba(48, 123, 196, .15); }
.cs_perloader .cs_wave_second {
  position: absolute; top: 0; left: 0; width: 100%; overflow: hidden;
  animation: cs_spark 1.25s linear infinite;
}
.cs_perloader .cs_wave_second svg { fill: var(--blue-600); }
@keyframes cs_spark { 0% { max-width: 0; } 100% { max-width: 100%; } }

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 16px;
}
h1 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: 19px; margin-bottom: 8px; }
p { margin: 0 0 14px; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--blue-600); color: #fff; padding: 10px 18px;
  z-index: 999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utility ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-600);
  margin: 0 0 10px;
}
.eyebrow-light { color: #9fd4ea; }
.section { padding: 88px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #cdd8e6; }
.section-dark h2, .section-dark h3 { color: #fff; }
/* ---------- Section hero — full-bleed image header for a single section,
   same visual language as .full-motto (dark gradient over photo, cyan
   frame) but carrying that section's own eyebrow/title/sub instead of the
   sitewide logo+motto. Used once, at the top of #advanced. ---------- */
.section-hero {
  position: relative; overflow: hidden; min-height: 280px; background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  border-top: 3px solid var(--cyan-500); border-bottom: 3px solid var(--cyan-500);
  margin-bottom: 56px;
}
.section:has(> .section-hero:first-child) { padding-top: 0; }
.section-hero-media { position: absolute; inset: 0; background: var(--navy-900); }
.section-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.section-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,20,36,.92) 0%, rgba(15,35,64,.86) 42%, rgba(21,49,84,.58) 78%, rgba(21,49,84,.38) 100%);
}
.section-hero-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; text-align: center; padding: 56px 24px; }
.section-hero-content h2 { color: #fff; margin-bottom: 12px; }
.section-hero-sub { color: rgba(255,255,255,.85); font-size: 15.5px; line-height: 1.6; margin: 0; }
@media (max-width: 575px) {
  .section-hero { min-height: 200px; margin-bottom: 40px; }
  .section-hero-content { padding: 26px 20px; }
}
.section-heading { max-width: 720px; margin: 0 auto 48px; }
.section-heading.text-center { text-align: center; }
.section-sub { color: var(--text-body); font-size: 16.5px; }
.section-dark .section-sub { color: #b9c7da; }
.fine-note { font-size: 13.5px; color: var(--text-muted); }
.link-arrow { color: var(--blue-600); font-weight: 600; display: inline-block; margin-top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 10px 24px rgba(48,123,196,.30); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-800); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header (transparent-over-hero, matches dc-cik's cs_site_header) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
}
.site-header.is-solid {
  background: var(--navy-700);
  box-shadow: 0 1px 2px rgba(2,0,181,.1);
}
/* Header + hero use dc-cik's real wide container ladder (not the narrower
   1180px content container used by the sections below) so they fill the
   screen horizontally instead of sitting squeezed in the middle. */
.site-header .container,
.hero > .container {
  max-width: 100%;
}
@media (min-width: 576px) {
  .site-header .container, .hero > .container { max-width: 540px; }
}
@media (min-width: 768px) {
  .site-header .container, .hero > .container { max-width: 720px; }
}
@media (min-width: 992px) {
  .site-header .container, .hero > .container { max-width: 960px; }
}
@media (min-width: 1200px) {
  .site-header .container, .hero > .container { max-width: 1140px; }
}
@media (min-width: 1400px) {
  .site-header .container, .hero > .container { max-width: 1320px; }
}
@media (min-width: 1701px) {
  .site-header .container, .hero > .container { max-width: 1650px; }
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px; gap: 20px;
}
@media (max-width: 1199px) { .header-inner { height: 80px; } }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 40px; width: auto; }
.main-nav { min-width: 0; }
.main-nav ul { display: flex; align-items: center; gap: 28px; }
.main-nav li { flex-shrink: 0; }
.main-nav a { color: #fff; font-size: 15px; font-weight: 500; white-space: nowrap; }
.main-nav a:hover { color: var(--cyan-500); }
.nav-item-cta > a {
  background: rgba(255,255,255,.15); padding: 10px 18px; border-radius: 20px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: background .3s ease;
  white-space: nowrap; display: inline-block;
}
.nav-item-cta > a:hover { background: rgba(255,255,255,.28); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.header-socials { display: flex; align-items: center; gap: 10px; margin-inline-end: 18px; }
.header-socials a { display: flex; color: #fff; opacity: .85; transition: opacity .25s ease, transform .25s ease; }
.header-socials a:hover { opacity: 1; transform: scale(1.12); }
@media (max-width: 1199px) { .header-socials { margin-inline-end: 10px; gap: 8px; } }
@media (max-width: 767px) { .header-socials { display: none; } }

/* Language switcher — same widget as dc-cik, hover/focus-reveal dropdown */
.lang-switcher { position: relative; margin-inline-end: 18px; }
@media (max-width: 1199px) { .lang-switcher { margin-inline-end: 10px; } }
.lang-switcher-btn {
  display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35); color: #fff; border-radius: 30px;
  padding: 8px 14px; font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap;
}
.lang-switcher-btn svg { flex: none; }
.lang-arrow { transition: transform .3s ease; flex: none; }
.lang-switcher:hover .lang-arrow, .lang-switcher:focus-within .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 10px); inset-inline-end: 0; min-width: 130px;
  background: #fff; border-radius: 12px; box-shadow: 0 12px 30px rgba(23,43,77,.18);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .25s ease; z-index: 60;
}
.lang-switcher:hover .lang-dropdown, .lang-switcher:focus-within .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a { display: block; padding: 8px 12px; border-radius: 8px; color: var(--navy-700); font-size: 14px; font-weight: 500; }
.lang-dropdown a:hover { background: #f2f6fa; }
.lang-dropdown a.active { color: var(--blue-600); background: var(--surface-tint); }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 34px; height: 34px; background: none; border: none; padding: 0; color: #fff;
}

/* ---------- Hero (matches dc-cik's brn_hero_v2) ---------- */
.hero {
  position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center;
  padding: 130px 0 50px; background: var(--navy-900);
}
@media (max-width: 1199px) { .hero { padding: 118px 0 40px; } }
@media (max-width: 991px) { .hero { min-height: auto; padding: 96px 0 40px; } }
@media (max-width: 480px) { .hero { padding: 88px 0 32px; } }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; background: var(--navy-900); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(9,20,36,.90) 0%, rgba(15,35,64,.82) 32%, rgba(21,49,84,.66) 60%, rgba(21,49,84,.48) 100%);
  opacity: .92;
}
@media (max-width: 991px) {
  .hero-overlay { background: linear-gradient(165deg, rgba(9,20,36,.9) 0%, rgba(15,29,53,.88) 55%, var(--navy-900) 100%); }
}
.hero > .container { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,0.82fr); gap: 40px; align-items: center; }
@media (max-width: 991px) {
  .hero-grid { display: flex; flex-direction: column; gap: 0; }
  .hero-content { display: contents; }
  .hero-title { order: 1; }
  .hero-subtitle { order: 2; margin-bottom: 16px; }
  .hero-divider { display: none; }
  .hero-trust { display: none !important; }
  .hero-btns { display: none !important; }
  .hero-form-col { order: 3; }
  .hero-certs { order: 5; margin-top: 18px !important; }
}
.hero-content { max-width: 650px; }
.hero-title { color: #fff; font-size: 54px; line-height: 1.16em; font-weight: 700; margin-bottom: 20px; }
@media (max-width: 1400px) { .hero-title { font-size: 44px; } }
@media (max-width: 767px) { .hero-title { font-size: 30px; margin-bottom: 14px; } }
@media (max-width: 480px) { .hero-title { font-size: 25px; line-height: 1.24em; } }
.hero-subtitle { color: rgba(255,255,255,.88); font-size: 19px; line-height: 1.6em; max-width: 560px; margin-bottom: 32px; }
@media (max-width: 767px) { .hero-subtitle { font-size: 15px; margin-bottom: 20px; } }
.hero-divider { height: 1px; background: rgba(255,255,255,.25); margin-bottom: 26px; max-width: 560px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 34px; margin-top: 15px; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { color: #fff; font-size: 26px; font-weight: 700; line-height: 1.2em; }
.hero-trust-item span { color: rgba(255,255,255,.75); font-size: 13.5px; }
.hero-trust-sep { width: 1px; height: 34px; background: rgba(255,255,255,.25); }
@media (max-width: 575px) { .hero-trust-sep { display: none; } }
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; margin-bottom: 34px; }
@media (max-width: 767px) { .hero-btns { gap: 12px; margin-bottom: 22px; } }
.btn-outline-hero {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 32px; border-radius: 24px; border: 1.5px solid rgba(255,255,255,.6);
  color: #fff; font-weight: 500; background: transparent; transition: all .3s ease; white-space: nowrap;
}
.btn-outline-hero:hover { background: rgba(255,255,255,.14); border-color: #fff; }
@media (max-width: 991px) { .btn-outline-hero { padding: 12px 26px; } }

.hero-certs { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; max-width: 560px; }
.hero-cert-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 12px; padding: 10px 14px; flex: 1 1 240px; }
.hero-cert-logo { flex: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(11,42,87,.85); border: 1px solid rgba(255,255,255,.28); border-radius: 10px; padding: 5px; }
.hero-cert-logo img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.hero-cert-text { flex: 1 1 auto; min-width: 0; color: rgba(255,255,255,.8); font-size: 11.5px; line-height: 1.4em; }
@media (max-width: 767px) { .hero-certs { margin-top: 18px; gap: 10px; } .hero-cert-item { padding: 9px 12px; flex: 1 1 100%; } }

/* ---------- CTA gradient button (matches dc-cik's cs_btn.cs_style_1) ---------- */
.cs-btn.cs-style-1 {
  border-radius: 24px; box-shadow: 0 4px 20px rgba(39,71,96,.17); font-weight: 500; color: #fff;
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  padding: 12px 40px; outline: none; border: none; position: relative; background: transparent; overflow: hidden;
}
@media (max-width: 991px) { .cs-btn.cs-style-1 { padding: 12px 30px; } }
.cs-btn.cs-style-1 span { position: relative; z-index: 2; }
.cs-btn.cs-style-1 i { display: inline-flex; position: relative; z-index: 2; transition: transform .3s ease; }
.cs-btn.cs-style-1:hover i { transform: translateX(4px); }
.cs-btn.cs-style-1::before, .cs-btn.cs-style-1::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; transition: opacity .4s ease;
}
.cs-btn.cs-style-1::before { background-image: linear-gradient(134deg, var(--blue-600) 0%, var(--navy-700) 100%); }
.cs-btn.cs-style-1::after { background-image: linear-gradient(270deg, var(--blue-600) 0%, var(--navy-700) 100%); opacity: 0; }
.cs-btn.cs-style-1:hover::after { opacity: 1; }

/* ---------- Hero form card — deep glassmorphism, matches dc-cik exactly ---------- */
.hero-form-col { display: flex; }
.hero-form-card {
  background: transparent !important; border: 1px solid rgba(255,255,255,.22); border-radius: 16px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6); padding: 32px 34px; width: 100%; max-width: 460px; margin-inline-start: auto;
}
@media (max-width: 1199px) { .hero-form-card { padding: 26px 24px; } }
@media (max-width: 991px) { .hero-form-card { margin-inline-start: 0; max-width: 100%; padding: 22px 20px; } }
.hero-badge { display: inline-block; background: rgba(255,255,255,.16); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 12px; }
.hero-form-card h3 { color: #fff !important; font-size: 22px; font-weight: 700; line-height: 1.3em; margin-bottom: 6px; }
@media (max-width: 480px) { .hero-form-card h3 { font-size: 18px; } }
.hero-form-card > p { color: #e2e8f0 !important; font-size: 14px; margin-bottom: 16px; }
.hero-form-card .lead-form { margin-top: 4px; display: flex; flex-direction: column; gap: 14px; }
.hero-form-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-form-card .field label { display: block; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 6px; }
.hero-form-card .field input, .hero-form-card .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid rgba(255,255,255,.28); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; color: #fff; background: rgba(255,255,255,.08);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.hero-form-card .field input::placeholder, .hero-form-card .field textarea::placeholder { color: rgba(255,255,255,.45); }
.hero-form-card .field input:focus, .hero-form-card .field textarea:focus {
  outline: none; border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(11,165,196,.2); background: rgba(255,255,255,.14);
}
.hero-form-card .field textarea { resize: vertical; min-height: 60px; }
.hero-form-card .field-error { display: none; color: #ffb4b4; font-size: 12px; margin-top: 4px; }
.hero-form-card .field.has-error input, .hero-form-card .field.has-error textarea { border-color: #ff6b6b; }
.hero-form-card .field.has-error .field-error { display: block; }
.hero-form-card .checkbox-field { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,.8); }
.hero-form-card .checkbox-field input { margin-top: 3px; }
.hero-form-card .checkbox-field a { color: var(--cyan-500); font-weight: 600; }
.hero-form-card .form-note { font-size: 13px; text-align: center; min-height: 18px; margin: 0; color: rgba(255,255,255,.85); }
.hero-form-card .form-note.success { color: #7be6a8; font-weight: 600; }
.hero-form-submit {
  width: 100%; border: none; border-radius: 24px; padding: 13px 20px; font-weight: 600; font-size: 15px;
  color: #fff; cursor: pointer; background-image: linear-gradient(134deg, var(--blue-600) 0%, var(--navy-700) 100%);
  box-shadow: 0 4px 20px rgba(39,71,96,.3); transition: opacity .25s ease, transform .18s ease;
}
.hero-form-submit:hover { opacity: .92; transform: translateY(-1px); }

/* ---------- Lead form (plain white cards elsewhere on the page) ---------- */
.lead-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lift);
}
.lead-card h2, .lead-card h3 { font-size: 22px; margin-bottom: 6px; }
.lead-card p { font-size: 14.5px; }
.badge-pill {
  display: inline-block; background: var(--surface-tint); color: var(--blue-600);
  font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.lead-form { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }

/* ---------- Bitrix24 CRM form embed (design overrides — Bitrix owns field
   labels/markup server-side, so only the outer chrome can be restyled) ---------- */
.b24-form-wrap { min-height: 40px; }
.b24-form-sign { display: none; }
.hero-form-card .b24-form-wrap { margin-top: 4px; }
.hero-form-card .b24-form-wrapper,
.hero-form-card .b24-form-style-classic { background: transparent !important; box-shadow: none !important; border: none !important; }
.hero-form-card .b24-form-header-padding { display: none !important; }
.hero-form-card .b24-form-content { padding: 0 !important; }
.hero-form-card .b24-form-field { margin-bottom: 14px !important; }
.hero-form-card.hero-form-card .b24-form-control-label,
.hero-form-card.hero-form-card .b24-form-control-label * { color: #fff !important; opacity: 1 !important; font-size: 12.5px !important; font-weight: 600 !important; }
.hero-form-card .b24-form-control-desc,
.hero-form-card .b24-form-field-agreement-link { color: rgba(255,255,255,.85) !important; font-size: 12.5px !important; font-weight: 600 !important; }
.hero-form-card .b24-form-control {
  width: 100% !important; min-height: 54px !important; padding: 25px 14px 11px !important; border: 1.5px solid rgba(255,255,255,.28) !important;
  border-radius: var(--radius-sm) !important; font-family: var(--font-body) !important; font-size: 14.5px !important;
  color: #fff !important; background: rgba(255,255,255,.08) !important; box-sizing: border-box !important;
}
.hero-form-card .b24-form-control:focus { outline: none !important; border-color: var(--cyan-500) !important; background: rgba(255,255,255,.14) !important; }
.hero-form-card .b24-form-control::placeholder { color: #fff !important; opacity: 1 !important; font-size: 12.5px !important; font-weight: 600 !important; font-family: var(--font-body) !important; }
/* Chrome/Edge/Safari force black text + a yellow/blue background on
   autofilled inputs, ignoring normal color/background rules — this is the
   standard workaround (fake the background via an inset box-shadow, force
   the text color via -webkit-text-fill-color). */
.hero-form-card .b24-form-control:-webkit-autofill,
.hero-form-card .b24-form-control:-webkit-autofill:hover,
.hero-form-card .b24-form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,.08) inset !important;
  box-shadow: 0 0 0 1000px rgba(255,255,255,.08) inset !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #fff;
}

/* Phone field: intl-tel-input's flag+dial-code replaces the removed floating
   label, so it needs normal centered padding (not the label-reserving
   top-heavy one) plus left room for the flag button. */
.hero-form-card .iti { width: 100%; display: block; }
.hero-form-card.hero-form-card .iti input.b24-form-control {
  padding: 15px 14px 15px 54px !important;
}
.hero-form-card .iti__flag-container { top: 0; bottom: 0; }
.hero-form-card .iti__selected-flag { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.iti__country-list { z-index: 50; color: var(--navy-900); font-size: 14px; }
.hero-form-card .b24-form-btn {
  width: 100% !important; border: none !important; border-radius: 24px !important; padding: 13px 20px !important;
  font-weight: 600 !important; font-size: 15px !important; color: #fff !important; cursor: pointer !important;
  background-image: linear-gradient(134deg, var(--blue-600) 0%, var(--navy-700) 100%) !important;
  box-shadow: 0 4px 20px rgba(39,71,96,.3) !important;
}
.hero-form-card .b24-form-error { color: #ffb4b4 !important; }

.lead-card .b24-form-wrapper,
.lead-card .b24-form-style-classic { background: transparent !important; box-shadow: none !important; border: none !important; }
.lead-card .b24-form-header-padding { display: none !important; }
.lead-card .b24-form-content { padding: 0 !important; }
.lead-card .b24-form-field { margin-bottom: 14px !important; }
.lead-card .b24-form-control-label,
.lead-card .b24-form-control-desc,
.lead-card .b24-form-field-agreement-link { color: var(--text-body) !important; font-size: 12.5px !important; font-weight: 600 !important; }
.lead-card .b24-form-control {
  width: 100% !important; min-height: 54px !important; padding: 21px 14px 11px !important; border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important; font-family: var(--font-body) !important; font-size: 14.5px !important;
  color: var(--navy-900) !important; background: var(--surface-alt) !important; box-sizing: border-box !important;
}
.lead-card .b24-form-control:focus { outline: none !important; border-color: var(--cyan-500) !important; }
/* Same autofill override as the hero form, tuned to the light card's colors. */
.lead-card .b24-form-control:-webkit-autofill,
.lead-card .b24-form-control:-webkit-autofill:hover,
.lead-card .b24-form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--navy-900) !important;
  -webkit-box-shadow: 0 0 0 1000px var(--surface-alt) inset !important;
  box-shadow: 0 0 0 1000px var(--surface-alt) inset !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: var(--navy-900);
}

/* Phone field: intl-tel-input's flag+dial-code replaces the removed floating
   label, so it needs normal centered padding (not the label-reserving
   top-heavy one) plus left room for the flag button. */
.lead-card .iti { width: 100%; display: block; }
.lead-card.lead-card .iti input.b24-form-control {
  padding: 15px 14px 15px 54px !important;
}
.lead-card .iti__flag-container { top: 0; bottom: 0; }
.lead-card .iti__selected-flag { border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.lead-card .b24-form-btn {
  width: 100% !important; border: none !important; border-radius: 24px !important; padding: 13px 20px !important;
  font-weight: 600 !important; font-size: 15px !important; color: #fff !important; cursor: pointer !important;
  background: var(--blue-600) !important;
}
.lead-card .b24-form-error { color: #d9534f !important; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--navy-700); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; color: var(--navy-800); background: #fbfcfe;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(48,123,196,.15); background: #fff;
}
.field textarea { resize: vertical; min-height: 70px; }
.field-error { display: none; color: #c0392b; font-size: 12.5px; margin-top: 4px; }
.field.has-error input, .field.has-error textarea { border-color: #c0392b; }
.field.has-error .field-error { display: block; }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-body); }
.checkbox-field input { margin-top: 3px; }
.checkbox-field a { color: var(--blue-600); font-weight: 600; }
.checkbox-field.has-error ~ .field-error { display: block; }
.form-note { font-size: 13px; text-align: center; min-height: 18px; margin: 0; }
.form-note.success { color: var(--success); font-weight: 600; }

/* ---------- Infra strip ---------- */
/* Elevated stat panel sitting entirely below the hero (not overlapping it) —
   a rounded, shadowed white card rather than a flat full-bleed strip. */
.infra { position: relative; padding: 44px 0; background: var(--surface-alt); border-bottom: none; }
.infra-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(15,32,58,.22);
}
.infra-item { display: flex; align-items: center; gap: 16px; padding: 30px 24px; border-right: 1px solid var(--border); }
.infra-item:last-child { border-right: none; }
.infra-icon {
  flex: none; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: linear-gradient(150deg, var(--surface-tint), #dcecf5); color: var(--blue-600);
}
.infra-text { display: flex; flex-direction: column; min-width: 0; }
.infra-item strong { display: block; font-family: var(--font-head); font-size: 25px; color: var(--navy-800); font-weight: 800; line-height: 1.1; }
.infra-item span { font-size: 12px; color: var(--text-body); line-height: 1.35; margin-top: 3px; }

/* ---------- About / Heart Team ---------- */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.mini-cards { margin: 22px 0; }
.mini-card {
  background: var(--surface-tint); border-inline-start: 4px solid var(--cyan-500);
  border-radius: var(--radius-md); padding: 20px 22px;
}
.mini-card h3 { font-size: 16px; }
.mini-card p { font-size: 14.5px; margin: 0; }

/* ---------- Placeholder media blocks ---------- */
.ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--surface-tint), #dcecf5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  color: var(--blue-600); text-align: center; border: 1px dashed #bcd6e8;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(48,123,196,.05) 0 2px, transparent 2px 14px);
}
.ph span { position: relative; font-size: 12.5px; font-weight: 600; color: var(--navy-700); max-width: 220px; }
.ph svg { position: relative; }
.ph-16x10 { aspect-ratio: 16 / 10; width: 100%; }
.ph-doctor { aspect-ratio: 1 / 1; width: 128px; margin: 0 auto 16px; border-radius: 50%; }

/* ---------- Real section photos (About / International Patients) ---------- */
.media-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  aspect-ratio: 3 / 4; width: 100%;
}
.media-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ---------- Candidate checklist ---------- */
.candidate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.candidate-item {
  background: #fff; border-radius: var(--radius-md); padding: 24px;
  box-shadow: var(--shadow-card); border-top: 3px solid var(--blue-600);
}
.candidate-item h3 { font-size: 16.5px; }
.candidate-item p { font-size: 14px; margin: 0; }
.candidate-item-highlight { background: var(--navy-800); border-top-color: var(--cyan-500); }
.candidate-item-highlight h3, .candidate-item-highlight p { color: #fff; }
.candidate-item-highlight p strong { color: var(--cyan-500); }

/* ---------- Minimally invasive detail ---------- */
.mics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-list li { position: relative; padding-inline-start: 30px; font-size: 15px; color: var(--navy-700); font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; inset-inline-start: 0; top: -1px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--cyan-500); color: #fff;
  font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.mics-cards { display: flex; flex-direction: column; gap: 16px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; box-shadow: var(--shadow-card); }
.stat-card h3 { font-size: 16px; }
.stat-card p { font-size: 14px; margin: 0; }
.stat-card-accent { background: var(--surface-tint); border-color: transparent; }
.stat-number { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--blue-600); margin: 4px 0; }
.stat-number span { font-size: 15px; font-weight: 600; color: var(--text-body); }

/* ---------- Surgical treatments — image-led card grid ---------- */
.treatment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.treatment-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease;
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.treatment-card-media {
  position: relative; aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--surface-tint), #dcecf5);
}
.treatment-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.treatment-num {
  position: absolute; left: 14px; top: 14px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-600); color: #fff; font-family: var(--font-head); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 14px; box-shadow: 0 4px 10px rgba(48,123,196,.4);
}
.treatment-card-body { padding: 22px 24px 26px; }
.treatment-card-body h3 { font-size: 16.5px; margin-bottom: 6px; }
.treatment-card-body p { font-size: 14px; margin: 0; color: var(--text-body); }

/* ---------- Advanced procedures — matching image-led card grid ---------- */
.procedure-grid { display: grid; gap: 22px; margin-bottom: 8px; }
.procedure-grid-5 { grid-template-columns: repeat(5, 1fr); margin-bottom: 52px; }
.procedure-grid-2 { grid-template-columns: repeat(2, 1fr); }
.procedure-grid-3 { grid-template-columns: repeat(3, 1fr); }
.procedure-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease;
}
.procedure-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.procedure-card-media {
  aspect-ratio: 1 / 1; background: linear-gradient(135deg, var(--surface-tint), #dcecf5);
}
.procedure-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.procedure-card-body { padding: 16px 18px 20px; text-align: center; }
.procedure-card-body h3 { font-family: var(--font-head); font-size: 16px; color: var(--navy-800); margin-bottom: 6px; }
.procedure-card-body p { font-size: 12.5px; color: var(--text-body); margin: 0; }
.procedure-subgroup { margin-bottom: 52px; }
.procedure-subgroup:last-child { margin-bottom: 0; }
.procedure-subgroup-title {
  font-size: 20px; text-align: center; margin-bottom: 24px; color: var(--navy-800);
}

/* ---------- Arrhythmia / Peripheral — premium dark detail panel ---------- */
.condition-panel {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  padding: 44px 48px; display: grid; grid-template-columns: 1fr 1px 1fr; gap: 44px;
}
.condition-divider { background: rgba(255,255,255,.14); }
.condition-col-title {
  color: #fff; font-family: var(--font-head); font-size: 17px; font-weight: 700;
  margin: 0 0 20px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.18);
}
.condition-item { display: flex; align-items: center; gap: 22px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.condition-item:last-child { border-bottom: none; padding-bottom: 0; }
.condition-item-media {
  flex-shrink: 0; width: 128px; height: 128px; border-radius: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
}
.condition-item-media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.condition-item-text strong { display: block; color: #fff; font-size: 15.5px; font-weight: 600; margin-bottom: 4px; }
.condition-item-text span { color: #b9c7da; font-size: 13.5px; line-height: 1.55; }
@media (max-width: 480px) {
  .condition-item-media { width: 96px; height: 96px; }
}
@media (max-width: 767px) {
  .condition-panel { grid-template-columns: 1fr; padding: 32px 26px; gap: 8px; }
  .condition-divider { display: none; }
  .condition-col:first-child { margin-bottom: 28px; }
}

/* ---------- Full-width section transition (logo + motto over a photo) ---------- */
.full-motto {
  position: relative; overflow: hidden; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  border-top: 3px solid var(--cyan-500); border-bottom: 3px solid var(--cyan-500);
}
.full-motto-media { position: absolute; inset: 0; }
.full-motto-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.full-motto-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,20,36,.93) 0%, rgba(15,35,64,.88) 40%, rgba(21,49,84,.62) 75%, rgba(21,49,84,.4) 100%);
}
.full-motto-content {
  position: relative; z-index: 2; max-width: 740px; margin: 0 auto; text-align: center;
  padding: 72px 24px;
}
.full-motto-logo { height: 36px; width: auto; margin: 0 auto 24px; }
.full-motto-tagline {
  color: var(--cyan-500); font-family: var(--font-head); font-weight: 700; font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; margin: 0 0 16px;
}
.full-motto-content h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
.full-motto-sub { color: rgba(255,255,255,.85); font-size: 15.5px; line-height: 1.65; margin: 0; }
@media (max-width: 575px) {
  .full-motto { min-height: 220px; }
  .full-motto-content { padding: 28px 20px; }
  .full-motto-logo { height: 30px; margin-bottom: 14px; }
}

/* ---------- Technology ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.tech-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 22px;
}
.tech-card h3 { font-size: 16px; color: #fff; }
.tech-card p { font-size: 14px; color: #b9c7da; margin: 0; }
.tech-devices { text-align: center; color: #d8e2ee; font-size: 14.5px; }
.tech-devices strong { color: #fff; }


/* ---------- Compare cards + FAQ ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px; }
.compare-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card); text-align: center; }
.compare-number { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--blue-600); margin: 6px 0; }
.compare-number span { font-size: 16px; font-weight: 600; color: var(--text-body); }
.compare-stay { font-size: 14px; color: var(--navy-700); background: var(--surface-tint); border-radius: 999px; padding: 8px 16px; display: inline-block; }
.accordion { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.accordion-item { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
.accordion-head { margin: 0; }
.accordion-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: start; padding: 20px 24px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: var(--navy-800);
}
.accordion-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.accordion-icon::before, .accordion-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; background: var(--blue-600);
  transform: translate(-50%, -50%); transition: transform .2s ease;
}
.accordion-icon::before { width: 14px; height: 2px; }
.accordion-icon::after { width: 2px; height: 14px; }
.accordion-item.active .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg) scaleY(0); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 24px; }
.accordion-item.active .accordion-body { max-height: 220px; padding: 0 24px 22px; }
.accordion-body p { font-size: 14.5px; margin: 0; }

/* ---------- Postoperative care & rehabilitation ---------- */
.recovery-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }
.recovery-media { aspect-ratio: 8 / 7; }
.recovery-list li { background: #fff; }

/* ---------- Length of stay in Turkey ---------- */
.stay-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.stay-media { aspect-ratio: 3 / 4; }
.stay-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.stay-stat {
  background: #fff; border-radius: var(--radius-md); padding: 20px; text-align: center; box-shadow: var(--shadow-card);
}
.stay-stat h4 { font-size: 13.5px; color: var(--navy-700); margin-bottom: 6px; }
.stay-stat .stat-number { margin: 2px 0; }
/* Full-width banner giving the wide (2904x1583) telehealth photo real room
   to breathe, instead of squashing it into a small square thumbnail. */
.followup-banner {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 0;
  background: var(--surface-tint); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 56px; box-shadow: var(--shadow-card);
}
.followup-banner-media { aspect-ratio: 2904 / 1583; }
.followup-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.followup-banner-text { padding: 36px 44px; }
.followup-banner-text h3 { font-size: 24px; margin-bottom: 12px; }
.followup-banner-text p { font-size: 14.5px; color: var(--navy-700); margin: 0; }
@media (max-width: 767px) {
  .followup-banner { grid-template-columns: 1fr; }
  .followup-banner-text { padding: 28px 24px; }
}

/* ---------- International patients ---------- */
.international-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.service-list { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 28px; }
.service-list li {
  display: flex; flex-direction: column; gap: 2px; padding: 14px 18px;
  background: var(--surface-alt); border-radius: var(--radius-sm); border-inline-start: 3px solid var(--blue-600);
}
.service-list strong { font-size: 15px; color: var(--navy-800); }
.service-list span { font-size: 13.5px; }

/* ---------- CTA strip ---------- */
.cta-strip { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--blue-600), var(--cyan-500)); padding: 76px 0; }
.cta-strip-pattern {
  position: absolute; top: 50%; right: -40px; transform: translateY(-50%);
  width: 320px; height: 320px; opacity: .1; pointer-events: none;
}
.cta-strip-pulse {
  position: absolute; left: 0; right: 0; bottom: 26px; width: 100%; height: 40px;
  opacity: .18; pointer-events: none;
}
.cta-strip-inner { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 640px; margin: 0 auto; }
.cta-strip-kicker {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin: 0 0 12px;
}
.cta-strip-inner h2 { color: #fff; margin-bottom: 10px; }
.cta-strip-inner p { color: rgba(255,255,255,.92); margin-bottom: 30px; }
.cta-strip-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-strip-trust {
  display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.88);
}
.cta-strip-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.6); }

/* ---------- Contact ---------- */
.contact-section { background: var(--surface-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.contact-card {
  display: flex; align-items: center; gap: 12px; background: #fff; border-radius: var(--radius-sm);
  padding: 14px 16px; box-shadow: var(--shadow-card); font-size: 13.5px;
}
.contact-card strong { display: block; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.contact-ic {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--surface-tint);
  color: var(--blue-600); display: flex; align-items: center; justify-content: center;
}
.contact-ic-wa { background: #e6f8ef; color: #1f9d55; }
.lead-card-static { box-shadow: var(--shadow-card); }
.form-sub { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #b9c7da; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 34px; width: auto; }
.footer-about p { font-size: 13.5px; margin-top: 14px; }
.footer-links h3, .footer-contact h3 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a, .footer-contact li { font-size: 13.5px; color: #b9c7da; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; }

/* ---------- Floating widgets (match dc-cik's brn_whatsapp_float / brn_viber_float / brn_phone_float) ---------- */
.float-btn {
  position: relative; height: 50px; width: 50px; border-radius: 50%; border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center; flex: none; cursor: pointer;
  padding: 0; margin: 0; transition: transform .2s ease, box-shadow .2s ease;
}
.float-btn:hover { transform: translateY(-3px); }
.float-btn img { width: 24px; height: 24px; }

.scrollup {
  position: fixed; bottom: 30px; inset-inline-end: 30px; z-index: 9998;
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy-800); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease;
}
.scrollup.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 575px) { .scrollup { inset-inline-end: 18px; bottom: 18px; } }

.whatsapp-float { position: fixed; bottom: 30px; inset-inline-end: 95px; z-index: 9999; display: flex; align-items: flex-end; flex-direction: column; }
.whatsapp-float-btn { background: linear-gradient(160deg,#3ddc63,#25d366); box-shadow: 0 10px 28px rgba(37,211,102,.5); }
.whatsapp-float-btn:hover { box-shadow: 0 14px 34px rgba(37,211,102,.6); }
.whatsapp-tooltip {
  position: absolute; inset-inline-end: 72px; top: 50%; transform: translateY(-50%);
  background: var(--navy-800); color: #fff; font-size: 14px; font-weight: 500; padding: 8px 16px;
  border-radius: 8px; white-space: nowrap; opacity: 0; visibility: hidden; transition: all .25s ease; pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@media (max-width: 575px) { .whatsapp-float { bottom: 18px; inset-inline-end: 83px; } .whatsapp-tooltip { display: none; } }

.viber-float { position: fixed; bottom: 30px; inset-inline-end: 160px; z-index: 9999; }
.viber-float-btn { background: linear-gradient(160deg,#8f5fd6,#7360f2); box-shadow: 0 10px 28px rgba(115,96,242,.5); }
.viber-float-btn:hover { box-shadow: 0 14px 34px rgba(115,96,242,.6); }
@media (max-width: 575px) { .viber-float { bottom: 18px; inset-inline-end: 148px; } }

.phone-float { position: fixed; bottom: 30px; inset-inline-start: 30px; z-index: 9999; }
.phone-float-btn { background: linear-gradient(160deg,#3a92e0,#235ea8); box-shadow: 0 10px 28px rgba(35,94,168,.5); }
.phone-float-btn:hover { box-shadow: 0 14px 34px rgba(35,94,168,.6); }
@media (max-width: 575px) { .phone-float { bottom: 18px; inset-inline-start: 18px; } }

.mobile-dock { display: none; }
@media (max-width: 991px) {
  .phone-float, .whatsapp-float, .viber-float { display: none !important; }
  .scrollup.show { bottom: 84px !important; }
  .mobile-dock {
    display: flex; align-items: stretch; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
    background: rgba(15,35,64,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.14); box-shadow: 0 -8px 24px rgba(0,0,0,.18);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-dock-item { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 10px 4px; color: #fff; }
  .mobile-dock-item img { width: 20px; height: 20px; }
  .mobile-dock-item span { font-size: 10.5px; font-weight: 600; line-height: 1; }
  .mobile-dock-cta { flex: 1.9 1 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 12px; background: linear-gradient(120deg,var(--blue-500),#235ea8); color: #fff; font-weight: 700; font-size: 13px; line-height: 1.25em; -webkit-tap-highlight-color: transparent; }
  .mobile-dock-cta:active, .mobile-dock-cta:focus-visible { background: linear-gradient(120deg,#3fa3e8,#1c56aa); color: #fff; outline: none; }
}

/* ---------- Cookie consent (Silktide) — brand color for the initial banner.
   The persistent reopen icon is intentionally hidden entirely (client
   preference): the banner already appears on first visit, and that's the
   only prompt they want — no floating icon left behind afterward. */
#silktide-wrapper {
  --primaryColor: var(--blue-600) !important;
}
#silktide-cookie-icon { display: none !important; }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .about-grid, .mics-grid, .international-grid, .contact-grid, .recovery-grid, .stay-grid { grid-template-columns: 1fr; }
  .about-media, .international-media, .stay-media { order: -1; }
  .candidate-grid, .tech-grid, .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .procedure-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .procedure-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .compare-grid, .stay-compare { grid-template-columns: 1fr; }
  .infra { padding: 34px 20px; }
  .infra-grid { grid-template-columns: repeat(2, 1fr); border-radius: 18px; padding: 0; }
  .infra-item { border-right: 1px solid var(--border); border-bottom: none; padding: 22px 18px; }
  .infra-item:nth-child(2n) { border-right: none; }
  .infra-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .field-row { grid-template-columns: 1fr; }
  .candidate-grid, .tech-grid, .contact-cards, .treatment-grid,
  .procedure-grid-5, .procedure-grid-3, .procedure-grid-2 { grid-template-columns: 1fr; }
  .procedure-card { display: flex; align-items: stretch; }
  .procedure-card-media { aspect-ratio: auto; flex: none; width: 112px; }
  .procedure-card-media img { padding: 10px; }
  .procedure-card-body { text-align: start; padding: 14px 16px; }
  .infra { padding: 26px 16px; }
  .infra-grid { grid-template-columns: 1fr; border-radius: 16px; padding: 0; }
  .infra-item { border-right: none !important; border-bottom: 1px solid var(--border); padding: 18px 20px; }
  .infra-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile nav open state — dark scrim, matches dc-cik's cs_nav_list.cs_active ---------- */
.main-nav.open {
  display: block; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(11,23,52,.97) 0%, rgba(16,34,68,.96) 100%);
  padding: 20px 24px; overflow-y: auto;
}
.main-nav.open ul { flex-direction: column; gap: 4px; align-items: stretch; }
.main-nav.open a { display: block; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; }
.main-nav.open .nav-item-cta { margin-top: 12px; }
.main-nav.open .nav-item-cta > a { border-bottom: none; text-align: center; }

/* ---------- International Patients — full-bleed photo section with overlay ---------- */
.intl-photo-section { position: relative; overflow: hidden; }
.intl-photo-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.intl-photo-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,18,48,.92) 0%, rgba(16,48,100,.87) 100%); }
.intl-photo-content { position: relative; z-index: 1; padding: 80px 15px; text-align: center; }
.intl-photo-content .hero-badge { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.intl-photo-content h2 { color: #fff; margin-top: 16px; }
.intl-photo-lead { color: rgba(255,255,255,.8); max-width: 600px; margin: 16px auto 48px; font-size: 16px; line-height: 1.65; }
.intl-cards-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; text-align: left; }
.intl-card-item { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; padding: 24px 18px; color: #fff; transition: background .2s; }
.intl-card-item:hover { background: rgba(255,255,255,.16); }
.intl-card-icon { width: 46px; height: 46px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.intl-card-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.intl-card-desc { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.55; }
@media (max-width: 991px) { .intl-cards-row { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (max-width: 575px) { .intl-cards-row { grid-template-columns: 1fr 1fr; } .intl-photo-content { padding: 56px 15px; } }

/* ---------- Patient review cards (Trustpilot colour theme — green stars, no logo) ---------- */
.pt-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pt-card { background: #fff; border-radius: 16px; padding: 28px 26px 24px; box-shadow: 0 2px 20px rgba(0,0,0,.07); display: flex; flex-direction: column; gap: 14px; }
.pt-stars { color: #00b67a; font-size: 22px; letter-spacing: 3px; line-height: 1; }
.pt-text { font-size: 15px; color: var(--text-body); line-height: 1.65; flex: 1; margin: 0; font-style: italic; }
.pt-meta { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }
.pt-meta strong { font-size: 15px; color: var(--navy-900); font-weight: 700; font-style: normal; }
.pt-meta span { font-size: 13px; color: var(--text-muted); font-style: normal; }
.pt-meta em { font-size: 12px; color: #00b67a; font-style: normal; font-weight: 600; }
@media (max-width: 767px) { .pt-reviews-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Shared Doctor Slider — dr-* classes used across all landing pages.
   3-column outer layout: [prev-btn] [scroll-grid] [next-btn]
   ===================================================================== */
.dr-slider-outer {
  display: grid; grid-template-columns: 64px 1fr 64px; align-items: center;
  gap: 0 12px; margin-top: 40px;
}
.dr-nav-btn {
  width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--navy-800, #0f2144);
  background: var(--navy-800, #0f2144); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s ease;
  box-shadow: 0 4px 16px rgba(20,43,77,.3); flex-shrink: 0;
}
.dr-nav-btn:hover:not(:disabled) { background: var(--blue-600, #1a56db); border-color: var(--blue-600, #1a56db); }
.dr-nav-btn:disabled { opacity: .3; cursor: default; }
[dir="rtl"] .dr-nav-btn svg { transform: scaleX(-1); }

.dr-grid {
  display: grid; grid-auto-flow: column; grid-template-rows: 1fr;
  grid-auto-columns: calc(25% - 18px); gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 4px; -ms-overflow-style: none; scrollbar-width: none;
}
.dr-grid::-webkit-scrollbar { display: none; }

.dr-card {
  scroll-snap-align: start; position: relative;
  display: flex; flex-direction: column; cursor: pointer;
}
.dr-avatar {
  width: 160px; height: 160px; border-radius: 50%; overflow: hidden;
  margin: 0 auto -80px; position: relative; z-index: 2; flex-shrink: 0;
  border: 5px solid #fff; box-shadow: 0 8px 28px rgba(20,43,77,.18);
}
.dr-avatar img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center 10%;
}
.dr-card-box {
  flex: 1; display: flex; flex-direction: column;
  padding-top: 90px; position: relative; z-index: 1;
  background: #fff; border: 2px solid var(--blue-600, #1a56db); border-radius: 22px;
  overflow: hidden; box-shadow: 0 4px 18px rgba(20,43,77,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.dr-card:hover .dr-card-box, .dr-card:focus-visible .dr-card-box {
  transform: translateY(-5px); box-shadow: 0 16px 40px rgba(20,43,77,.15); outline: none;
}
.dr-head { padding: 8px 16px 14px; text-align: center; border-bottom: 1.5px solid #e8edf5; }
.dr-specialty {
  display: inline-block; background: var(--blue-600, #1a56db); color: #fff;
  font-size: 9.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 999px; margin-bottom: 8px;
}
.dr-head h3 { font-size: 13.5px; font-weight: 800; line-height: 1.25; color: var(--navy-800, #0f2144); margin: 0; }
.dr-expertise-panel {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(160deg, var(--navy-900, #0a1832), var(--blue-600, #1a56db));
  padding: 16px 18px; text-align: center;
}
.dr-expertise-panel h4 {
  color: #fff; font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; margin: 0 0 8px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.28);
}
.dr-expertise-list { display: flex; flex-direction: column; gap: 6px; margin: 0 0 12px; padding: 0; list-style: none; }
.dr-expertise-list li {
  color: rgba(255,255,255,.96); font-size: 12.5px; font-weight: 500; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dr-cv-btn {
  align-self: center; border: 1.5px solid rgba(255,255,255,.5); background: rgba(255,255,255,.1);
  color: #fff; font-weight: 600; font-size: 12.5px; padding: 8px 22px;
  border-radius: 999px; cursor: pointer; transition: all .2s ease;
}
.dr-cv-btn:hover { background: #fff; color: var(--navy-800, #0f2144); }

.dr-no-scroll .dr-nav-btn { visibility: hidden; pointer-events: none; }
.dr-no-scroll .dr-grid { justify-content: center; }

@media (max-width: 991px) { .dr-grid { grid-auto-columns: calc(33.333% - 16px); } }
@media (max-width: 767px) {
  .dr-slider-outer { grid-template-columns: 48px 1fr 48px; gap: 0 8px; }
  .dr-nav-btn { width: 44px; height: 44px; }
  .dr-grid { grid-auto-columns: 70%; gap: 14px; }
}
@media (max-width: 480px) { .dr-grid { grid-auto-columns: 82%; } }
