/* ═══════════════════════════════════════════════════════
   LOISTO SIIVOUS — main.css
   Design: Bold Clean — Cool Grey + Sky Blue + Amber
   Nav:  Deep Ink #1E2A3B
   Bg:   Cool Grey #F4F7FB
   Cards: White, sharp corners, top-border accent
   Primary: #0EA5E9  Amber: #F59E0B
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --navy:        #1E2A3B;
  --navy-2:      #253347;
  --navy-3:      #2D3F55;
  --sky:         #0EA5E9;
  --sky-light:   #7DD3FC;
  --sky-pale:    #E0F2FE;
  --amber:       #F59E0B;
  --amber-light: #FCD34D;
  --amber-pale:  #FEF3C7;
  --emerald:     #10B981;
  --violet:      #8B5CF6;
  --bg:          #F4F7FB;
  --bg-2:        #EAF0F8;
  --white:       #FFFFFF;
  --text-100:    #1E2A3B;
  --text-300:    #4A5B6E;
  --text-500:    #94A3B8;
  --border:      rgba(14,165,233,.10);
  --border-mid:  rgba(14,165,233,.18);
  --green-ok:    #10B981;
  --urgent:      #EF4444;

  --shadow-sm:   0 1px 8px rgba(30,42,59,.07);
  --shadow-md:   0 4px 20px rgba(30,42,59,.11);
  --shadow-lg:   0 8px 36px rgba(30,42,59,.15);
  --shadow-hover:0 12px 44px rgba(30,42,59,.20);

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --nav-h: 68px;
  --r:     8px;
  --r-sm:  5px;
  --r-lg:  14px;

  --ease: cubic-bezier(0.16,1,0.3,1);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--sky); color: #fff; }

/* ── Typography ─────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--white);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-100);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-100);
}

/* Eyebrow — diamond dot instead of line */
.eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Layout ─────────────────────────────────────────── */
.container { width: min(1200px, 92vw); margin: 0 auto; }
.section-pad { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: .7rem; }
.section-head p { color: var(--text-300); font-size: .92rem; }

/* Floating card base */
.card {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

/* ── DEMO BANNER ────────────────────────────────────── */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: 34px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; font-size: .73rem; color: rgba(255,255,255,.55);
  flex-wrap: wrap; padding: 0 16px;
}
.demo-banner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.demo-banner b { color: #fff; font-weight: 600; }
.demo-banner a { color: var(--sky-light); display: inline-flex; align-items: center; gap: 4px; transition: .2s; }
.demo-banner a:hover { color: #fff; }
.demo-banner .bn-sep { opacity: .3; }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(30,42,59,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
}
.nav-inner {
  display: flex; align-items: center; height: 100%; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-size: 1.05rem; color: #fff; font-weight: 400;
  flex-shrink: 0;
}
.logo b { font-weight: 700; }
.logo-mark {
  width: 36px; height: 36px; border-radius: var(--r);
  background: var(--sky);
  display: grid; place-items: center;
  font-size: 1rem; color: #fff; flex-shrink: 0;
}
.logo-sub {
  display: block; font-size: .55rem; font-weight: 400;
  color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase;
  margin-top: 1px;
}
.nav-links {
  display: flex; gap: 1.8rem; flex: 1;
}
.nav-links a {
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.7);
  transition: color .2s; letter-spacing: .01em;
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: .8rem; margin-left: auto; }

/* Lang switch */
.lang-switch { display: flex; gap: .2rem; }
.lang-btn {
  padding: .25rem .45rem; border-radius: var(--r-sm);
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,255,255,.5); transition: .2s; border: 1px solid transparent;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }

/* Urgent/Quick button */
.btn-urgent {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .85rem; border-radius: var(--r-sm);
  background: var(--amber); color: var(--navy);
  font-size: .78rem; font-weight: 700; letter-spacing: .02em;
  transition: .2s; border: none;
}
.btn-urgent:hover { background: var(--amber-light); }
.btn-urgent i { font-size: .9rem; }

/* Nav CTA */
.nav-cta {
  padding: .45rem 1.1rem; border-radius: var(--r);
  background: var(--sky); color: #fff;
  font-size: .82rem; font-weight: 600;
  transition: .2s;
}
.nav-cta:hover { background: #0284C7; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0; z-index: 250;
  background: var(--navy);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding-top: 34px;
}
.mob-menu.open { transform: none; }
.mob-menu-top { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.mob-menu-top .logo { color: #fff; }
.mob-close { color: rgba(255,255,255,.6); font-size: 1.3rem; }
.mob-nav { flex: 1; display: flex; flex-direction: column; padding: 1rem 0; }
.mob-nav a { padding: .9rem 1.4rem; font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.05); }
.mob-nav a:hover { color: #fff; background: rgba(255,255,255,.04); }
.mob-bottom { padding: 1.2rem 1.4rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; gap: .7rem; }
.mob-book-btn { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem; border-radius: var(--r); background: var(--sky); color: #fff; font-size: .95rem; font-weight: 600; }
.mob-lang { display: flex; gap: .4rem; justify-content: center; padding-top: .2rem; }

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(15,28,48,.92) 0%, rgba(15,28,48,.75) 55%, rgba(15,28,48,.5) 100%);
}
.hero-slide-caption { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero-caption-pill {
  display: inline-block; padding: .3rem .9rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 20px;
  font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.85);
  opacity: 0; transform: translateY(6px); transition: opacity .4s, transform .4s;
  white-space: nowrap;
}
.hero-caption-pill.visible { opacity: 1; transform: none; }
.hero-dots { position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .5rem; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; transition: .3s; padding: 0; cursor: pointer; }
.hero-dot.active { background: var(--amber); width: 24px; border-radius: 4px; }
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 4rem;
  min-height: calc(100svh - 34px - var(--nav-h));
  padding: 2rem 0 4rem;
}

/* Hero Left */
.hero-left { flex: 1; max-width: 580px; }
.hero-badge-top {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .3rem .9rem; border-radius: 20px;
  background: rgba(16,185,129,.15); border: 1px solid rgba(16,185,129,.3);
  font-size: .74rem; font-weight: 600; color: #6EE7B7;
  margin-bottom: 1.2rem;
}
.hero-title { margin-bottom: .9rem; }
.hero-sub { color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.65; margin-bottom: 1.8rem; max-width: 480px; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero-langs {
  display: flex; align-items: center; gap: .5rem;
  font-size: .76rem; color: rgba(255,255,255,.5);
}
.lang-flag {
  padding: .18rem .45rem; border-radius: 4px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.75); letter-spacing: .06em;
}

/* Hero Card */
.hero-card {
  width: 360px; flex-shrink: 0; margin-left: auto;
  background: rgba(255,255,255,.97);
  border-radius: var(--r-lg); padding: 1.4rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.hero-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .9rem; }
.hero-card-label { font-size: .72rem; font-weight: 700; color: var(--text-300); letter-spacing: .06em; text-transform: uppercase; }
.hero-card-live {
  font-size: .68rem; font-weight: 700; padding: .2rem .55rem;
  border-radius: 20px; background: #D1FAE5; color: #065F46;
}
.hero-time { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--text-100); letter-spacing: -.04em; line-height: 1; }
.hero-time-sub { font-size: .72rem; color: var(--text-500); margin: .3rem 0 .9rem; }
.hero-slots { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.hero-slot {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem .7rem; border-radius: var(--r-sm);
  background: var(--bg); border: 1px solid var(--border);
  cursor: pointer; transition: .15s;
}
.hero-slot:hover { border-color: var(--sky); background: var(--sky-pale); }
.hero-slot.urgent-slot { border-color: rgba(239,68,68,.2); background: rgba(239,68,68,.04); }
.hero-slot-time { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--text-100); }
.hero-slot-doc { font-size: .68rem; font-weight: 600; }
.hero-slot-type { font-size: .64rem; font-weight: 700; padding: .15rem .4rem; border-radius: 4px; }
.hero-slot-type.free { background: #D1FAE5; color: #065F46; }
.hero-slot-type.urgent { background: rgba(239,68,68,.12); color: var(--urgent); }
.hero-card-cta { width: 100%; justify-content: center; margin-bottom: .55rem; }
.hero-card-note { font-size: .66rem; color: var(--text-500); text-align: center; line-height: 1.4; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.4rem; border-radius: var(--r);
  font-family: var(--font-display); font-size: .84rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent; transition: .2s var(--ease);
}
.btn-primary { background: var(--sky); color: #fff; border-color: var(--sky); }
.btn-primary:hover { background: #0284C7; border-color: #0284C7; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.3); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-white { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.btn-white:hover { background: rgba(255,255,255,.18); }
.btn-sm { padding: .4rem .9rem; font-size: .78rem; }
.btn-disabled { background: var(--bg-2); color: var(--text-500); border-color: var(--border); cursor: default; }

/* ── TRUST BAR ──────────────────────────────────────── */
/* Dark background — very different from helmivet */
.trust {
  background: var(--navy);
  padding: 0;
}
.trust-grid {
  display: flex; flex-wrap: wrap;
}
.trust-item {
  flex: 1; min-width: 160px;
  padding: 2rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,.04); }
.trust-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--sky); letter-spacing: -.04em; line-height: 1;
  margin-bottom: .3rem;
}
.trust-num .sfx { font-size: 1.6rem; }
.trust-label { font-size: .76rem; color: rgba(255,255,255,.5); font-weight: 500; }

/* ── URGENT BAR ─────────────────────────────────────── */
.urgent-bar {
  background: var(--amber);
  padding: .9rem 0;
}
.urgent-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.urgent-text strong { color: var(--navy); font-size: .95rem; font-weight: 700; display: block; }
.urgent-text span { color: rgba(30,42,59,.65); font-size: .8rem; }
.urgent-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .55rem 1.2rem; border-radius: var(--r);
  background: var(--navy); color: #fff;
  font-size: .82rem; font-weight: 700; border: none; cursor: pointer;
  transition: .2s; flex-shrink: 0;
}
.urgent-btn:hover { background: var(--navy-2); }

/* ── SERVICES ───────────────────────────────────────── */
.service-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem;
}
.svc-tab {
  display: flex; align-items: center; gap: .4rem;
  padding: .45rem 1rem; border-radius: var(--r-sm);
  font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--border-mid); color: var(--text-300);
  transition: .2s; cursor: pointer; background: var(--white);
}
.svc-tab:hover { border-color: var(--sky); color: var(--sky); }
.svc-tab.active { background: var(--sky); border-color: var(--sky); color: #fff; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.2rem;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  /* Top accent border — different from helmivet */
  border-top: 3px solid var(--doc-color, var(--sky));
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .7rem;
  transition: box-shadow .2s, transform .2s;
}
.svc-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
/* No accent bar needed (helmivet has .svc-card-accent) */
.svc-card-accent { display: none; }
.svc-doc {
  display: flex; align-items: center; gap: .65rem;
  padding-bottom: .7rem; border-bottom: 1px solid var(--border);
}
.svc-doc-photo {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg-2) center/cover no-repeat;
}
.svc-doc-name { font-size: .82rem; font-weight: 700; color: var(--text-100); }
.svc-doc-role { font-size: .68rem; color: var(--text-500); }
.svc-badge {
  margin-left: auto; padding: .15rem .5rem; border-radius: 20px;
  font-size: .64rem; font-weight: 700;
  background: var(--amber-pale); color: #92400E; border: 1px solid rgba(245,158,11,.25);
}
.svc-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-100); }
.svc-desc { font-size: .82rem; color: var(--text-300); line-height: 1.55; flex: 1; }
.svc-pricing { margin-top: auto; }
.svc-price-row { display: flex; align-items: center; justify-content: space-between; }
.svc-own-price {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  color: var(--text-100); letter-spacing: -.03em;
}
.svc-own-price small { font-size: .9rem; font-weight: 600; margin-left: .1rem; color: var(--text-300); }
.svc-dur { display: flex; align-items: center; gap: .3rem; font-size: .76rem; color: var(--text-500); }
.svc-book-btn {
  width: 100%; padding: .6rem; border-radius: var(--r-sm);
  background: var(--sky-pale); color: var(--sky);
  font-size: .82rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: .4rem;
  border: 1.5px solid var(--border-mid); transition: .2s;
}
.svc-book-btn:hover { background: var(--sky); color: #fff; border-color: var(--sky); }
.insurance-note {
  margin-top: 1.8rem; text-align: center;
  font-size: .82rem; color: var(--text-300);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}

/* ── TEAM (doctors) — HORIZONTAL CARD LAYOUT ────────── */
/* Different from helmivet's vertical photo-on-top cards */
.doctors-section { background: var(--white); }
.doctors-grid {
  display: flex; flex-direction: column; gap: 1.4rem;
}
.doctor-card {
  background: var(--bg);
  border-radius: var(--r);
  border: 1px solid var(--border);
  display: flex; gap: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.doctor-photo-wrap {
  width: 220px; flex-shrink: 0; position: relative;
  min-height: 260px;
}
.doctor-photo {
  position: absolute; inset: 0;
  background: var(--bg-2) center/cover no-repeat;
}
.doctor-quote {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .9rem 1rem;
  background: linear-gradient(0deg, rgba(30,42,59,.88) 0%, transparent 100%);
  font-size: .72rem; color: rgba(255,255,255,.85); font-style: italic; line-height: 1.45;
}
.doctor-body {
  flex: 1; padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem;
}
.doctor-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }
.doctor-role { font-size: .82rem; font-weight: 600; }
.doctor-bio { font-size: .84rem; color: var(--text-300); line-height: 1.6; flex: 1; }
.doctor-meta { display: flex; gap: .5rem; flex-wrap: wrap; }
.meta-pill {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .6rem; border-radius: var(--r-sm);
  background: var(--white); border: 1px solid var(--border);
  font-size: .72rem; font-weight: 600; color: var(--text-300);
}
.doctor-langs { display: flex; gap: .35rem; flex-wrap: wrap; }
.lang-tag {
  padding: .18rem .5rem; border-radius: 4px;
  background: var(--sky-pale); color: var(--sky);
  font-size: .66rem; font-weight: 700; letter-spacing: .06em;
}
.doctor-certs { display: flex; gap: .35rem; flex-wrap: wrap; }
.cert-tag {
  padding: .18rem .5rem; border-radius: 4px;
  background: var(--amber-pale); color: #92400E;
  font-size: .64rem; font-weight: 600; border: 1px solid rgba(245,158,11,.2);
}

/* ── REVIEWS ────────────────────────────────────────── */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem;
}
.review-card {
  background: var(--white); border-radius: var(--r);
  padding: 1.4rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .8rem;
}
.review-stars { display: flex; gap: .2rem; color: var(--amber); font-size: .9rem; }
.review-text { font-size: .84rem; color: var(--text-300); line-height: 1.6; flex: 1; }
.review-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-size: .75rem; font-weight: 700; color: #fff;
}
.review-name { font-size: .84rem; font-weight: 700; }
.review-proc { font-size: .72rem; color: var(--text-500); }

/* ── GALLERY ────────────────────────────────────────── */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .9rem;
}
.gallery-item {
  border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer;
  aspect-ratio: 4/3; background: var(--bg-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-zoom {
  position: absolute; inset: 0; background: rgba(30,42,59,.35);
  display: grid; place-items: center;
  color: #fff; font-size: 1.6rem;
  opacity: 0; transition: opacity .2s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* ── CONTACT ────────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.contact-card {
  background: var(--white); border-radius: var(--r);
  padding: 1.6rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem;
}
.contact-row { display: flex; align-items: flex-start; gap: .9rem; }
.contact-ic {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: var(--sky-pale); color: var(--sky);
  display: grid; place-items: center; flex-shrink: 0; font-size: 1rem;
}
.urgent-ic { background: rgba(245,158,11,.12); color: var(--amber); }
.contact-label { font-size: .7rem; color: var(--text-500); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.contact-val { font-size: .9rem; font-weight: 600; color: var(--text-100); }
.contact-side { background: var(--white); border-radius: var(--r); padding: 1.6rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.contact-side h3 { margin-bottom: .6rem; }
.contact-side p { font-size: .84rem; color: var(--text-300); line-height: 1.6; margin-bottom: 1.2rem; }
.hours-table { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .84rem; padding: .4rem .6rem; border-radius: var(--r-sm); background: var(--bg); }
.hours-row span:last-child { font-weight: 700; color: var(--sky); }
.social-btns { display: flex; gap: .6rem; }
.social-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .55rem; border-radius: var(--r-sm);
  font-size: .8rem; font-weight: 600; transition: .2s;
}
.social-btn.ig { background: rgba(225,48,108,.08); color: #E1306C; border: 1px solid rgba(225,48,108,.15); }
.social-btn.ig:hover { background: #E1306C; color: #fff; }
.social-btn.wa { background: rgba(37,211,102,.08); color: #25D366; border: 1px solid rgba(37,211,102,.15); }
.social-btn.wa:hover { background: #25D366; color: #fff; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 2rem 0;
}
.footer-grid {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.4rem;
}
footer .logo { color: #fff; }
.footer-tag { font-size: .82rem; color: rgba(255,255,255,.4); margin-top: .3rem; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .74rem; color: rgba(255,255,255,.3);
}

/* ── LIGHTBOX ───────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.93); display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--r); }
.lb-close, .lb-arrow {
  position: absolute; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center;
  font-size: 1.1rem; transition: background .2s;
}
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-close:hover, .lb-arrow:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ── BOOKING DRAWER ─────────────────────────────────── */
.drawer-bg {
  position: fixed; inset: 0; z-index: 350;
  background: rgba(30,42,59,.5); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; right: 0; top: 0; bottom: 0; z-index: 360;
  width: min(420px, 100vw);
  background: var(--white); box-shadow: -8px 0 40px rgba(0,0,0,.15);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--ease);
}
.drawer.open { transform: none; }
.drawer-head {
  padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); flex-shrink: 0;
}
.drawer-head h3 { font-size: 1rem; font-weight: 700; }
.drawer-close { font-size: 1.2rem; color: var(--text-300); transition: .2s; }
.drawer-close:hover { color: var(--text-100); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; display: flex; flex-direction: column; gap: 1.2rem; }
.drawer-foot { padding: 1rem 1.4rem; border-top: 1px solid var(--border); background: var(--white); flex-shrink: 0; }

/* Booking steps */
.bk-step {}
.bk-step-label { font-size: .78rem; font-weight: 700; color: var(--text-100); margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; letter-spacing: .02em; text-transform: uppercase; }
.bk-step-label .n { width: 20px; height: 20px; border-radius: 50%; background: var(--sky); color: #fff; display: grid; place-items: center; font-size: .7rem; font-weight: 800; flex-shrink: 0; }
.bk-options { display: flex; gap: .4rem; flex-wrap: wrap; }
.bk-opt {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .75rem; border-radius: var(--r-sm);
  font-size: .78rem; font-weight: 500; border: 1.5px solid var(--border-mid);
  background: var(--bg); color: var(--text-300); cursor: pointer; transition: .15s;
}
.bk-opt:hover { border-color: var(--sky); color: var(--sky); }
.bk-opt.sel { background: var(--sky-pale); border-color: var(--sky); color: var(--sky); font-weight: 700; }
.bk-opt .av { width: 24px; height: 24px; border-radius: 50%; background: center/cover no-repeat var(--bg-2); flex-shrink: 0; }
.bk-svc-opt { width: 100%; justify-content: space-between; }
.bk-svc-opt .pr { font-weight: 700; color: var(--text-100); }
.bk-days { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .7rem; }
.bk-day {
  display: flex; flex-direction: column; align-items: center;
  padding: .5rem .55rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .7rem; color: var(--text-300); cursor: pointer; transition: .15s; min-width: 44px;
}
.bk-day:hover:not(:disabled) { border-color: var(--sky); }
.bk-day.sel { background: var(--sky); border-color: var(--sky); color: #fff; }
.bk-day.full { opacity: .45; }
.bk-day:disabled { cursor: default; }
.dow { font-weight: 700; font-size: .65rem; letter-spacing: .04em; }
.dnum { font-size: .95rem; font-weight: 700; }
.dfree { font-size: .6rem; }
.bk-slots { display: flex; gap: .35rem; flex-wrap: wrap; }
.bk-slot {
  padding: .38rem .7rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .82rem; font-weight: 600; cursor: pointer; transition: .15s;
}
.bk-slot:hover { border-color: var(--sky); }
.bk-slot.sel { background: var(--sky); border-color: var(--sky); color: #fff; }
.bk-empty {
  padding: .9rem; border-radius: var(--r-sm);
  background: var(--bg); border: 1px solid var(--border);
  font-size: .8rem; color: var(--text-500); text-align: center;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.bk-field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: .6rem; }
.bk-field label { font-size: .74rem; font-weight: 600; color: var(--text-300); }
.bk-input {
  padding: .55rem .75rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border-mid); background: var(--bg);
  font-size: .85rem; font-family: inherit; color: var(--text-100);
  transition: border-color .2s; outline: none;
}
.bk-input:focus { border-color: var(--sky); }
textarea.bk-input { resize: vertical; min-height: 72px; }
.bk-summary { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; font-size: .82rem; color: var(--text-300); }
.bk-summary b { font-size: 1rem; color: var(--text-100); }
.bk-success { text-align: center; padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.bk-success .ic { width: 56px; height: 56px; border-radius: 50%; background: #D1FAE5; color: #065F46; display: grid; place-items: center; font-size: 1.6rem; }
.bk-success h3 { font-size: 1.1rem; }
.bk-success p { color: var(--text-300); font-size: .85rem; }

/* ── TOAST ──────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--navy); color: #fff; padding: .65rem 1.3rem; border-radius: var(--r);
  font-size: .82rem; font-weight: 500; box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  display: flex; align-items: center; gap: .5rem; z-index: 500; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── ANIMATIONS ─────────────────────────────────────── */
.anim-up { opacity: 0; transform: translateY(24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.anim-left { opacity: 0; transform: translateX(-24px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.anim-fade { opacity: 0; transition: opacity .5s ease; }
.anim-d2 { transition-delay: .08s; }
.anim-d3 { transition-delay: .16s; }
.anim-up.visible, .anim-left.visible, .anim-fade.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .btn-urgent, .nav-cta { display: none; }
  .hero-inner { flex-direction: column; padding-top: 2rem; }
  .hero-card { width: 100%; }
  .hero-left { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .doctor-card { flex-direction: column; }
  .doctor-photo-wrap { width: 100%; min-height: 240px; }
}
@media (max-width: 600px) {
  .trust-item { min-width: 50%; }
  .trust-num { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
}
