/* ═══════════════════════════════════════════════════════
   LUMIDENT — main.css
   Design: Floating White Cards on Ice Blue
   Nav: Deep Navy #0A1628
   Bg:  Ice Blue #F0F7FF
   Cards: Pure White, blue-tinted shadow
   Accent: #2B7FD4
   ═══════════════════════════════════════════════════════ */

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

/* ── Tokens ─────────────────────────────────────────── */
:root {
  /* Palette */
  --navy:        #0A1628;
  --navy-2:      #122040;
  --navy-3:      #1A2F4A;
  --blue:        #2B7FD4;
  --blue-light:  #64B5F6;
  --blue-pale:   #E8F4FF;
  --teal:        #38B2AC;
  --violet:      #9F7AEA;
  --rose:        #E53E6D;
  --bg:          #F0F7FF;
  --bg-2:        #E6F0FB;
  --white:       #FFFFFF;
  --text-100:    #0D1F35;
  --text-300:    #3D5A7A;
  --text-500:    #7A96B3;
  --border:      rgba(43,127,212,.10);
  --border-mid:  rgba(43,127,212,.18);
  --green:       #38A169;
  --urgent:      #E53E3E;

  /* Shadow — the signature element */
  --shadow-sm:   0 2px 12px rgba(43,127,212,.07);
  --shadow-md:   0 4px 24px rgba(43,127,212,.11);
  --shadow-lg:   0 8px 40px rgba(43,127,212,.15);
  --shadow-hover:0 12px 48px rgba(43,127,212,.20);

  /* Type */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --nav-h: 72px;
  --r:     12px;
  --r-sm:  8px;
  --r-lg:  20px;

  /* Motion */
  --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(--blue); color: #fff; }

/* ── Typography ─────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--white);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--text-100);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-100);
}
.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

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

/* Floating card — the signature */
.card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* ── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-light); }

/* ── Demo Banner ────────────────────────────────────── */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 7px 16px;
  font-size: .75rem; color: rgba(255,255,255,.7);
  flex-wrap: wrap;
}
.demo-banner .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80; box-shadow: 0 0 8px #4ADE80;
  flex-shrink: 0;
}
.demo-banner b { color: #fff; font-weight: 600; }
.demo-banner a {
  color: var(--blue-light); font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
  border-bottom: 1px solid transparent; transition: .2s;
}
.demo-banner a:hover { border-color: var(--blue-light); }
.demo-banner .bn-sep { opacity: .3; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 900;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s, top .3s;
}
.navbar.no-banner { top: 0; }
.navbar.scrolled {
  top: 0;
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 1.5rem;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.55rem; color: var(--white); letter-spacing: -.01em;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  flex-shrink: 0;
}
.logo b { color: var(--blue-light); }
.logo-sub {
  display: block; font-size: .52rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); font-family: var(--font-body); line-height: 1;
  white-space: nowrap; overflow: hidden; max-width: 120px;
}
.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
}
.nav-links a {
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.65);
  letter-spacing: .02em; transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1.5px; background: var(--blue-light); transition: width .3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: .8rem; }
.lang-switch {
  display: flex; gap: 2px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 3px;
}
.lang-btn {
  font-size: .7rem; font-weight: 600; padding: 4px 8px;
  border-radius: 6px; color: rgba(255,255,255,.5);
  transition: .2s; letter-spacing: .06em;
}
.lang-btn.active { background: var(--blue); color: #fff; }
.btn-urgent {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border-radius: var(--r-sm);
  background: var(--urgent); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  transition: .25s;
}
.btn-urgent:hover { background: #C53030; transform: translateY(-1px); }
.btn-urgent .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  animation: pulseAnim 1.6s ease-in-out infinite;
}
@keyframes pulseAnim {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.4); }
}
.nav-cta {
  padding: .5rem 1.1rem; border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,.2); color: #fff;
  font-size: .8rem; font-weight: 500; transition: .25s;
}
.nav-cta:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 22px; height: 1.5px; background: #fff; transition: .3s; display: block; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mob-menu {
  position: fixed; inset: 0; z-index: 950;
  background: var(--navy); display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.mob-menu.open { opacity: 1; pointer-events: auto; }
.mob-menu-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.2rem; border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0;
}
.mob-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: grid; place-items: center;
  color: rgba(255,255,255,.6); font-size: 1rem; transition: .2s;
}
.mob-close:hover { border-color: var(--blue-light); color: var(--blue-light); }
.mob-nav { display: flex; flex-direction: column; padding: .6rem 1.2rem; flex: 1; overflow-y: auto; }
.mob-nav a {
  font-family: var(--font-display); font-size: clamp(1.2rem,4.5vw,1.6rem);
  font-weight: 600; color: rgba(255,255,255,.55); padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between; transition: color .2s;
}
.mob-nav a:last-child { border-bottom: none; }
.mob-nav a:hover { color: #fff; }
.mob-nav a::after { content: '→'; font-family: var(--font-body); font-size: .85rem; color: rgba(255,255,255,.2); transition: .2s; }
.mob-nav a:hover::after { color: var(--blue-light); transform: translateX(3px); }
.mob-bottom {
  padding: .9rem 1.2rem; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-direction: column; gap: .6rem; flex-shrink: 0;
  padding-bottom: max(calc(env(safe-area-inset-bottom) + .9rem), 1rem);
}
.mob-book-btn {
  width: 100%; padding: .9rem; border-radius: var(--r-sm);
  background: var(--blue); color: #fff;
  font-weight: 600; font-size: .88rem; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center; gap: .5rem; transition: .2s;
}
.mob-book-btn:hover { background: #1A6DC2; }
.mob-lang { display: flex; gap: .4rem; }
.mob-lang .lang-btn {
  flex: 1; padding: .5rem; border-radius: var(--r-sm);
  font-size: .76rem; font-weight: 600; letter-spacing: .06em;
  border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); transition: .2s;
}
.mob-lang .lang-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .86rem; padding: .8rem 1.6rem;
  border-radius: var(--r-sm); transition: transform .25s var(--ease), box-shadow .25s, background .25s;
  white-space: nowrap; letter-spacing: .02em;
}
.btn i { font-size: 1rem; }
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 4px 16px rgba(43,127,212,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,127,212,.45); background: #1A6DC2; }
.btn-ghost {
  background: transparent; border: 1.5px solid var(--border-mid); color: var(--text-100);
}
.btn-ghost:hover { background: var(--blue-pale); border-color: var(--blue); transform: translateY(-2px); }
.btn-white {
  background: #fff; color: var(--navy); box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: .55rem 1.1rem; font-size: .8rem; }

/* Kela badge */
.kela-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .22rem .6rem; border-radius: 20px;
  background: rgba(56,178,172,.12); color: var(--teal);
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid rgba(56,178,172,.25);
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + 34px);
}
/* subtle grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(43,127,212,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,127,212,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
/* top-right glow */
.hero::after {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,127,212,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 520px) 360px;
  align-items: center; justify-content: center; gap: 5rem;
  padding: 3rem 0 4rem;
  width: 100%;
  min-height: calc(100vh - var(--nav-h) - 34px);
}
.hero-left { display: flex; flex-direction: column; gap: 1.4rem; }
.hero-kela-top {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .4rem .9rem; border-radius: 20px;
  background: rgba(43,127,212,.12); border: 1px solid rgba(43,127,212,.25);
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-light); width: fit-content;
}
.hero-title { margin: 0; }
.hero-title em {
  font-style: normal; color: var(--blue-light);
}
.hero-sub {
  font-size: clamp(.92rem,1.4vw,1.05rem); color: rgba(255,255,255,.6);
  max-width: 44ch; line-height: 1.7; font-weight: 300;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-langs {
  display: flex; align-items: center; gap: .6rem;
  font-size: .76rem; color: rgba(255,255,255,.4);
}
.hero-langs .lang-flag {
  padding: .2rem .55rem; border-radius: 4px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6); font-weight: 500; font-size: .7rem;
}

/* Urgent booking card — right side */
.hero-card {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.6rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.hero-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-label {
  font-size: .7rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-500);
}
.hero-card-live {
  display: flex; align-items: center; gap: .4rem;
  font-size: .7rem; color: var(--green); font-weight: 600;
}
.hero-card-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulseAnim 1.6s infinite;
}
.hero-time {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
  color: var(--text-100); letter-spacing: -.02em; line-height: 1;
}
.hero-time-sub { font-size: .78rem; color: var(--text-500); margin-top: .25rem; }
.hero-slots { display: flex; flex-direction: column; gap: .5rem; }
.hero-slot {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem .9rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  cursor: pointer; transition: .2s;
}
.hero-slot:hover { border-color: var(--blue); background: var(--blue-pale); }
.hero-slot.urgent-slot { border-color: rgba(229,62,62,.25); background: rgba(229,62,62,.04); }
.hero-slot.urgent-slot:hover { border-color: var(--urgent); background: rgba(229,62,62,.08); }
.hero-slot-time { font-weight: 700; font-size: .9rem; color: var(--text-100); }
.hero-slot-doc { font-size: .75rem; color: var(--text-500); }
.hero-slot-type {
  font-size: .65rem; font-weight: 600; padding: .18rem .5rem;
  border-radius: 4px; letter-spacing: .06em; text-transform: uppercase;
}
.hero-slot-type.free { background: rgba(56,161,105,.1); color: var(--green); }
.hero-slot-type.urgent { background: rgba(229,62,62,.1); color: var(--urgent); }
.hero-card-cta { width: 100%; justify-content: center; font-size: .85rem; }
.hero-card-note { font-size: .72rem; color: var(--text-500); text-align: center; }

/* ── TRUST BAR ──────────────────────────────────────── */
.trust { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item {
  padding: 2rem 1.2rem; text-align: center; position: relative;
}
.trust-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%;
  width: 1px; background: rgba(255,255,255,.07);
}
.trust-num {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3rem);
  font-weight: 700; color: #fff; line-height: 1;
}
.trust-num .sfx { color: var(--blue-light); }
.trust-label { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: .5rem; letter-spacing: .06em; }

/* ── URGENT BLOCK ───────────────────────────────────── */
.urgent-bar {
  background: linear-gradient(135deg, #C53030 0%, #E53E3E 100%);
  padding: 1rem 0;
}
.urgent-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.urgent-text { color: #fff; }
.urgent-text strong { font-weight: 700; font-size: 1rem; display: block; }
.urgent-text span { font-size: .84rem; opacity: .85; }
.urgent-btn {
  background: #fff; color: var(--urgent); font-weight: 700;
  padding: .7rem 1.4rem; border-radius: var(--r-sm); font-size: .86rem;
  display: flex; align-items: center; gap: .5rem; white-space: nowrap; transition: .2s;
  flex-shrink: 0;
}
.urgent-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.2); }

/* ── SERVICES ───────────────────────────────────────── */
.services-section { background: var(--bg); }
.service-tabs {
  display: flex; gap: .5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.svc-tab {
  display: flex; align-items: center; gap: .4rem;
  padding: .55rem 1.1rem; border-radius: 20px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: .8rem; font-weight: 500; color: var(--text-300);
  transition: .25s; cursor: pointer;
}
.svc-tab i { font-size: .9rem; }
.svc-tab:hover { border-color: var(--blue); color: var(--blue); }
.svc-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.svc-card {
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  padding: 1.6rem; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.svc-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--doc-color, var(--blue)); opacity: 0;
  transition: opacity .3s;
}
.svc-card:hover .svc-card-accent { opacity: 1; }
.svc-doc {
  display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
}
.svc-doc-photo {
  width: 36px; height: 36px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--doc-color, var(--blue)); flex-shrink: 0;
}
.svc-doc-name { font-size: .76rem; font-weight: 600; color: var(--text-100); }
.svc-doc-role { font-size: .68rem; color: var(--text-500); }
.svc-badge {
  margin-left: auto; font-size: .62rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: .2rem .55rem; border-radius: 4px;
  background: var(--blue-pale); color: var(--blue); border: 1px solid var(--border-mid);
}
.svc-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  margin-bottom: .4rem; color: var(--text-100);
}
.svc-desc { font-size: .82rem; color: var(--text-300); margin-bottom: 1.2rem; line-height: 1.6; flex: 1; }
.svc-pricing { border-top: 1px solid var(--border); padding-top: 1rem; margin-bottom: 1rem; }
.svc-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.svc-price-full { font-size: .78rem; color: var(--text-500); }
.svc-kela-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; color: var(--teal); margin-top: .25rem;
}
.svc-own-price {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--text-100); line-height: 1;
}
.svc-own-price small { font-size: .75rem; font-family: var(--font-body); color: var(--text-500); font-weight: 400; }
.svc-dur { display: flex; align-items: center; gap: .3rem; font-size: .74rem; color: var(--text-500); }
.svc-book-btn {
  width: 100%; padding: .65rem; border-radius: var(--r-sm); font-size: .8rem; font-weight: 600;
  border: 1.5px solid var(--doc-color, var(--blue));
  color: var(--doc-color, var(--blue)); background: transparent;
  transition: .25s; display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.svc-book-btn:hover { background: var(--doc-color, var(--blue)); color: #fff; }
.kela-note {
  text-align: center; font-size: .73rem; color: var(--text-500);
  margin-top: 1.5rem; padding: .8rem; background: var(--blue-pale);
  border-radius: var(--r-sm); border: 1px solid var(--border);
}
.kela-note a { color: var(--blue); }

/* ── DOCTORS ────────────────────────────────────────── */
.doctors-section { background: var(--white); }
.doctors-grid { display: flex; flex-direction: column; gap: 1px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.doctor-card {
  display: grid; grid-template-columns: 340px 1fr;
  background: var(--white); transition: background .3s;
}
.doctor-card:nth-child(even) { grid-template-columns: 1fr 340px; }
.doctor-card:nth-child(even) .doctor-photo-wrap { order: 2; }
.doctor-card:not(:last-child) { border-bottom: 1px solid var(--border); }
.doctor-card:hover { background: var(--bg); }
.doctor-photo-wrap { position: relative; overflow: hidden; }
.doctor-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transition: transform .7s var(--ease);
}
.doctor-card:hover .doctor-photo { transform: scale(1.04); }
.doctor-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.5), transparent 55%);
}
.doctor-quote {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem; z-index: 2;
  font-size: .88rem; color: rgba(255,255,255,.9); line-height: 1.45;
  font-style: italic; font-weight: 300;
  opacity: 0; transform: translateY(10px); transition: .4s var(--ease);
}
.doctor-card:hover .doctor-quote { opacity: 1; transform: translateY(0); }
.doctor-body { padding: 2.4rem; display: flex; flex-direction: column; justify-content: center; }
.doctor-name {
  font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 700; line-height: 1.1; margin-bottom: .3rem; color: var(--text-100);
}
.doctor-role {
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.doctor-bio { font-size: .86rem; color: var(--text-300); margin-bottom: 1.2rem; line-height: 1.7; font-weight: 400; }
.doctor-meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1rem; }
.meta-pill {
  display: flex; align-items: center; gap: .35rem;
  padding: .38rem .75rem; border-radius: 20px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: .76rem; font-weight: 500; color: var(--text-300);
}
.meta-pill i { font-size: .85rem; }
.doctor-langs { display: flex; gap: .4rem; margin-bottom: 1.4rem; }
.lang-tag {
  padding: .2rem .55rem; border-radius: 4px;
  background: var(--blue-pale); color: var(--blue);
  font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--border-mid);
}
.doctor-certs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.cert-tag {
  font-size: .7rem; padding: .22rem .6rem; border-radius: 4px;
  background: var(--bg); color: var(--text-500); border: 1px solid var(--border);
}

/* ── RESULTS (before/after) ─────────────────────────── */
.results-section { background: var(--navy); }
.results-section h2 { color: var(--white); }
.results-section .section-head p { color: rgba(255,255,255,.5); }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.result-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.result-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.result-images {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; position: relative;
}
.result-img {
  height: 200px; background-size: cover; background-position: center;
}
.result-divider {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: 0;
  z-index: 2;
}
.result-label {
  padding: .9rem 1rem; display: flex; align-items: center; justify-content: space-between;
}
.result-title { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.8); }
.result-doc { font-size: .72rem; color: rgba(255,255,255,.35); }
.result-before-after {
  display: flex; gap: 2px; font-size: .58rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.ba-before {
  padding: .18rem .45rem; background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.4); border-radius: 3px 0 0 3px;
}
.ba-after {
  padding: .18rem .45rem; background: rgba(56,178,172,.2);
  color: var(--teal); border-radius: 0 3px 3px 0;
}

/* ── REVIEWS ────────────────────────────────────────── */
.reviews-section { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.review-card {
  background: var(--white); border-radius: var(--r);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  padding: 1.8rem; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-card::before {
  content: '\201C';
  position: absolute; top: -.5rem; right: 1.2rem;
  font-size: 6rem; color: var(--blue-pale);
  font-family: var(--font-display); line-height: 1; font-weight: 700;
}
.review-stars { display: flex; gap: 2px; color: #F6AD55; margin-bottom: .9rem; font-size: .9rem; }
.review-text {
  font-size: .9rem; color: var(--text-300); margin-bottom: 1.2rem;
  line-height: 1.7; position: relative; z-index: 1; font-weight: 400;
}
.review-author { display: flex; align-items: center; gap: .7rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: .82rem; color: #fff;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .88rem; color: var(--text-100); }
.review-proc { font-size: .74rem; color: var(--text-500); }

/* ── CONTACT ────────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-card {
  background: var(--bg); border-radius: var(--r);
  border: 1px solid var(--border); padding: 2rem;
}
.contact-row {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-ic {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--blue-pale); color: var(--blue);
  display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-ic.urgent-ic { background: rgba(229,62,62,.08); color: var(--urgent); }
.contact-label { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-500); margin-bottom: .2rem; }
.contact-val { font-size: .9rem; color: var(--text-100); font-weight: 500; }
.contact-side {
  background: var(--navy); border-radius: var(--r);
  padding: 2rem; display: flex; flex-direction: column;
}
.contact-side h3 { font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: .5rem; }
.contact-side p { color: rgba(255,255,255,.5); font-size: .86rem; margin-bottom: 1.6rem; line-height: 1.6; }
.hours-table { margin-bottom: 1.6rem; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: .86rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: rgba(255,255,255,.45); }
.hours-row span:last-child { color: var(--blue-light); font-weight: 600; }
.social-btns { display: flex; gap: .6rem; margin-top: auto; }
.social-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .75rem; border-radius: var(--r-sm); font-size: .8rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.6); transition: .25s;
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn.ig { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color: #fff; border: none; }
.social-btn.wa { background: rgba(37,211,102,.06); color: #25D366; border-color: rgba(37,211,102,.2); }

/* ── GALLERY ────────────────────────────────────────── */
.gallery-section { background: var(--bg); }
.gallery-grid { columns: 3; column-gap: .8rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: .8rem;
  border-radius: var(--r-sm); overflow: hidden; cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; transition: transform .6s var(--ease); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,22,40,.5); opacity: 0; transition: .3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }
.gallery-zoom {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 1.4rem; color: #fff; opacity: 0; transition: .3s; z-index: 2;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(10,22,40,.97); display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 84vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); }
.lb-close { position: absolute; top: 20px; right: 24px; font-size: 1.6rem; color: rgba(255,255,255,.6); }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center;
  font-size: 1.2rem; color: #fff; transition: .2s; background: rgba(255,255,255,.04);
}
.lb-arrow:hover { background: var(--blue); border-color: var(--blue); }
.lb-prev { left: 24px; } .lb-next { right: 24px; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.06);
  padding: 3rem 0 1.8rem;
}
.footer-grid {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.footer-tag { color: rgba(255,255,255,.35); font-size: .84rem; max-width: 38ch; margin-top: .3rem; }
.footer-bottom {
  padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: .8rem; font-size: .74rem; color: rgba(255,255,255,.3);
}

/* ── BOOKING DRAWER ─────────────────────────────────── */
.drawer-bg {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(10,22,40,.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: .3s;
}
.drawer-bg.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(480px,100vw); z-index: 1310;
  background: var(--white); box-shadow: -4px 0 40px rgba(10,22,40,.2);
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.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; flex-shrink: 0;
}
.drawer-head h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-100); }
.drawer-close { font-size: 1.2rem; color: var(--text-500); padding: .3rem; border-radius: var(--r-sm); transition: .2s; }
.drawer-close:hover { background: var(--bg); color: var(--text-100); }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.4rem; }
.drawer-foot { padding: 1.1rem 1.4rem; border-top: 1px solid var(--border); flex-shrink: 0; }

/* Booking steps */
.bk-step { margin-bottom: 1.6rem; }
.bk-step-label {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-500); margin-bottom: .7rem;
  display: flex; align-items: center; gap: .5rem;
}
.bk-step-label .n {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue);
  display: grid; place-items: center; font-size: .68rem; font-weight: 700;
}
.bk-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.bk-opt {
  padding: .55rem 1rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .8rem; font-weight: 500; color: var(--text-300);
  transition: .2s; display: flex; align-items: center; gap: .45rem; cursor: pointer;
}
.bk-opt:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }
.bk-opt.sel { background: var(--blue); color: #fff; border-color: var(--blue); }
.bk-opt .av { width: 22px; height: 22px; border-radius: 50%; background-size: cover; }
.bk-svc-opt { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.bk-svc-opt .pr { font-weight: 700; font-size: .9rem; }
.bk-days { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .6rem; scroll-snap-type: x mandatory; }
.bk-days::-webkit-scrollbar { height: 3px; }
.bk-day {
  flex: 0 0 auto; width: 62px; min-width: 62px; padding: .55rem .3rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  display: flex; flex-direction: column; align-items: center; gap: .1rem; transition: .2s; cursor: pointer;
}
.bk-day:hover:not(.full) { border-color: var(--blue); background: var(--blue-pale); }
.bk-day .dow { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-500); }
.bk-day .dnum { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text-100); line-height: 1; }
.bk-day .dfree { font-size: .56rem; color: var(--green); font-weight: 600; }
.bk-day.sel { background: var(--blue); border-color: var(--blue); }
.bk-day.sel .dow, .bk-day.sel .dnum, .bk-day.sel .dfree { color: #fff; }
.bk-day.full { opacity: .35; cursor: not-allowed; }
.bk-slots { display: grid; grid-template-columns: repeat(4,1fr); gap: .4rem; }
.bk-slot {
  padding: .5rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .78rem; font-weight: 600; text-align: center; transition: .2s; cursor: pointer;
  color: var(--text-100);
}
.bk-slot:hover { border-color: var(--blue); background: var(--blue-pale); }
.bk-slot.sel { background: var(--blue); color: #fff; border-color: var(--blue); }
.bk-empty { display: flex; align-items: center; justify-content: center; gap: .4rem; padding: 1rem; border: 1.5px dashed var(--border); border-radius: var(--r-sm); color: var(--text-500); font-size: .82rem; }
.bk-field { margin-bottom: .9rem; }
.bk-field label { display: block; font-size: .76rem; color: var(--text-300); margin-bottom: .35rem; font-weight: 500; }
.bk-input {
  width: 100%; padding: .72rem .9rem; border-radius: var(--r-sm);
  background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text-100); font-family: inherit; font-size: .86rem; transition: .2s;
}
.bk-input:focus { outline: none; border-color: var(--blue); background: var(--white); }
.bk-input::placeholder { color: var(--text-500); }
textarea.bk-input { resize: vertical; min-height: 65px; }
.bk-summary { display: flex; justify-content: space-between; font-size: .8rem; color: var(--text-300); margin-bottom: .8rem; }
.bk-summary b { color: var(--blue); }
.bk-success { text-align: center; padding: 2.5rem 1rem; }
.bk-success .ic {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(56,161,105,.1); color: var(--green);
  display: grid; place-items: center; font-size: 2rem; margin: 0 auto 1.2rem;
}
.bk-success h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: .5rem; }
.bk-success p { color: var(--text-300); margin-bottom: 1.6rem; font-size: .9rem; }

/* Toast */
.toast {
  position: fixed; bottom: 20px; left: 50%; transform: translate(-50%,120%); z-index: 1400;
  background: var(--navy); border: 1px solid rgba(255,255,255,.1);
  color: #fff; padding: .75rem 1.3rem; border-radius: var(--r-sm);
  font-size: .84rem; box-shadow: var(--shadow-lg);
  transition: transform .35s var(--ease); display: flex; align-items: center; gap: .5rem;
}
.toast.show { transform: translate(-50%,0); }
.toast i { color: var(--blue-light); }

/* ── Scroll animations ──────────────────────────────── */
.anim-up, .anim-left, .anim-fade {
  opacity: 0; transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.anim-up    { transform: translateY(28px); }
.anim-left  { transform: translateX(-28px); }
.anim-fade  { transform: scale(.97); }
.anim-up.visible, .anim-left.visible, .anim-fade.visible { opacity: 1; transform: none; }
.anim-d1 { transition-delay: .1s; } .anim-d2 { transition-delay: .2s; }
.anim-d3 { transition-delay: .3s; } .anim-d4 { transition-delay: .4s; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media(max-width:1100px){
  .hero-inner { grid-template-columns: minmax(0,480px) 340px; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .doctor-card, .doctor-card:nth-child(even) { grid-template-columns: 280px 1fr; }
  .doctor-card:nth-child(even) .doctor-photo-wrap { order: 0; }
}
@media(max-width:900px){
  .hero-inner { grid-template-columns: 1fr; min-height: unset; padding: 3rem 0 4rem; }
  .hero-left { min-height: unset; }
  .hero-card { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid, .contact-grid { grid-template-columns: 1fr; }
  .doctor-card, .doctor-card:nth-child(even) { grid-template-columns: 1fr; }
  .doctor-photo-wrap { height: 280px; }
  .doctor-quote { opacity: 1; transform: none; }
}
@media(max-width:768px){
  :root { --nav-h: 58px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-right .lang-switch { display: none; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2)::after { display: none; }
  .gallery-grid { columns: 2; }
  .drawer { width: 100vw; border-radius: 16px 16px 0 0; top: auto; height: 92dvh; }
  .contact-side { padding: 1.6rem; }
  .section-pad { padding: clamp(2.5rem,6vw,4rem) 0; }
  .demo-banner { font-size: .7rem; gap: 8px; padding: 5px 10px; }
  .demo-banner .bn-sep { display: none; }
  .urgent-inner { flex-direction: column; text-align: center; }
}
@media(max-width:480px){
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { columns: 1; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .bk-slots { grid-template-columns: repeat(3,1fr); }
  .bk-day { width: 50px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .doctor-photo-wrap { height: 240px; }
}
@media(max-width:380px){
  .trust-num { font-size: 2rem; }
  .doctor-body { padding: 1.4rem; }
  .bk-slots { grid-template-columns: repeat(2,1fr); }
}
@supports(padding-top: env(safe-area-inset-top)){
  .demo-banner { padding-top: max(5px, env(safe-area-inset-top)); }
}
