/* =====================================================================
   SAELIX MEDICAL TOURISM — GLOBAL DESIGN SYSTEM
   Premium, medical, luxury, international healthcare brand.
   ---------------------------------------------------------------------
   HOW TO EDIT:
   - Brand colours, spacing, fonts and shadows live in :root below.
     Change a token once and it updates across the whole site.
   - Component blocks are labelled. Search the label to find a section.
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. DESIGN TOKENS (CSS VARIABLES)                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Brand palette — taken from the Saelix shield logo */
  --navy-900: #061226;          /* deepest navy */
  --navy-800: #0a1f44;          /* deep navy blue (primary brand) */
  --navy-700: #102a5c;
  --navy-600: #173a78;
  --blue-500: #1f5fbf;          /* medical blue */
  --blue-400: #2f7be0;
  --cyan-400: #38c6e6;          /* light cyan accent */
  --cyan-300: #7fe0f2;
  --silver-300: #c9d4e3;        /* silver accent */
  --silver-200: #e2e9f2;
  --grey-100: #f4f7fb;          /* soft grey background */
  --grey-50:  #fafcff;
  --white:    #ffffff;
  --ink-900:  #0c1726;          /* main text */
  --ink-700:  #38465a;          /* body text */
  --ink-500:  #6b7a90;          /* muted text */
  --line:     #e6ecf4;          /* hairline borders */
  --success:  #1fa874;
  --warn:     #e0a23a;
  --danger:   #d9534f;

  /* Gradients */
  --grad-navy: linear-gradient(135deg, #0a1f44 0%, #173a78 60%, #1f5fbf 100%);
  --grad-hero: linear-gradient(120deg, #061226 0%, #0a1f44 45%, #102a5c 100%);
  --grad-cyan: linear-gradient(135deg, #1f5fbf 0%, #38c6e6 100%);
  --grad-silver: linear-gradient(135deg, #ffffff 0%, #e2e9f2 50%, #c9d4e3 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.55));

  /* Typography */
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --fs-hero: clamp(2rem, 3.6vw, 3.4rem);
  --fs-h1: clamp(2rem, 4vw, 3.2rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 1.4vw, 1.25rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;

  /* Spacing scale */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4rem;
  --sp-9: 6rem; --sp-10: 8rem;

  /* Radius */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;

  /* Shadows — soft, premium */
  --sh-sm: 0 2px 8px rgba(10,31,68,0.06);
  --sh-md: 0 12px 30px rgba(10,31,68,0.10);
  --sh-lg: 0 24px 60px rgba(10,31,68,0.16);
  --sh-glow: 0 10px 40px rgba(31,95,191,0.30);

  /* Layout */
  --container: 1200px;
  --container-wide: 1340px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s; --t-mid: 0.4s; --t-slow: 0.7s;
}

/* ------------------------------------------------------------------ */
/* 2. RESET & BASE                                                     */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-500); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--navy-800); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink-900); line-height: 1.15; font-weight: 700; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p { color: var(--ink-700); }

/* ------------------------------------------------------------------ */
/* 3. LAYOUT HELPERS                                                   */
/* ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: var(--sp-9); position: relative; }
.section-sm { padding-block: var(--sp-8); }
.section-tint { background: var(--grey-100); }
.section-navy { background: var(--grad-navy); color: var(--silver-200); }
.section-navy h1,.section-navy h2,.section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.82); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.center { align-items: center; }
.between { justify-content: space-between; }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 64ch; }
.measure-sm { max-width: 48ch; }

/* Section heading block */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: var(--sp-3);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--grad-cyan); border-radius: 2px; }
.section-navy .eyebrow { color: var(--cyan-300); }
.section-head { max-width: 720px; margin-bottom: var(--sp-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: var(--fs-lead); margin-top: var(--sp-3); }

/* ------------------------------------------------------------------ */
/* 4. BUTTONS                                                          */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 14px 28px; border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-mid), background var(--t-mid);
  white-space: nowrap; cursor: pointer; position: relative; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad-cyan); color: #fff; box-shadow: var(--sh-glow); }
.btn-primary:hover { color: #fff; box-shadow: 0 14px 46px rgba(31,95,191,0.42); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; }
.btn-outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--blue-500); color: var(--blue-500); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb858; color: #fff; }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------------------------ */
/* 5. CARDS & GLASSMORPHISM                                            */
/* ------------------------------------------------------------------ */
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-6);
  box-shadow: var(--sh-sm); transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }

.glass {
  background: var(--grad-glass);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
.glass-dark {
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg);
}

/* Service card */
.service-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--sp-6);
  box-shadow: var(--sh-sm); transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid), border-color var(--t-mid);
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--grad-cyan); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-badge { margin-bottom: var(--sp-4); }
.service-card h3 { margin-bottom: var(--sp-3); min-height: 2.2em; display: flex; align-items: center; }
.service-card p { font-size: 0.95rem; margin-bottom: var(--sp-5); flex: 1; }
.service-card .card-link {
  font-weight: 600; color: var(--blue-500); display: inline-flex; align-items: center;
  gap: 10px; margin-top: auto; font-size: 0.95rem;
}
/* small, elegant arrow chip (was rendering oversized when unconstrained) */
.card-link svg, .service-card .card-link svg {
  width: 18px; height: 18px; flex-shrink: 0; padding: 5px; box-sizing: content-box;
  border-radius: 50%; background: rgba(31,95,191,0.10); color: var(--blue-500);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast);
}
.service-card:hover .card-link svg { transform: translateX(4px); background: rgba(31,95,191,0.18); }

/* Icon badge */
.icon-badge {
  width: 58px; height: 58px; border-radius: var(--r-md);
  display: grid; place-items: center; color: #fff;
  background: var(--grad-navy); box-shadow: var(--sh-glow);
}
.icon-badge svg { width: 28px; height: 28px; stroke-width: 1.8; }
.icon-badge.cyan { background: var(--grad-cyan); }

/* Feature / trust item */
.feature { display: flex; gap: var(--sp-4); align-items: flex-start; }
.feature .feature-ic {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; background: var(--grey-100); color: var(--blue-500);
}
.feature .feature-ic svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; color: var(--ink-900); margin-bottom: 4px; }
.feature p { font-size: 0.92rem; }

/* ------------------------------------------------------------------ */
/* 6. HEADER & NAVIGATION                                              */
/* ------------------------------------------------------------------ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background var(--t-mid), box-shadow var(--t-mid), height var(--t-mid);
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(10,31,68,0.10);
  border-bottom-color: transparent;
  height: 70px;
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: var(--sp-6); }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand { padding-block: 6px; }
.brand img { height: 56px; width: auto; transition: height var(--t-mid); display: block; object-fit: contain; }
.scrolled .brand img { height: 48px; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy-800); line-height: 1; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-500); }
.transparent .brand-name { color: #fff; }
.transparent .brand-sub { color: rgba(255,255,255,0.7); }

.nav-menu { display: flex; align-items: center; gap: var(--sp-2); }
.nav-menu > li > a {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px;
  font-weight: 500; font-size: 0.95rem; color: var(--ink-900); border-radius: var(--r-sm);
}
.transparent .nav-menu > li > a { color: rgba(255,255,255,0.92); }
.nav-menu > li > a:hover { color: var(--blue-500); background: rgba(31,95,191,0.06); }
.transparent .nav-menu > li > a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-menu .chev { width: 14px; height: 14px; transition: transform var(--t-fast); }

/* Mega menu */
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(760px, 90vw); background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: var(--sp-5);
  opacity: 0; visibility: hidden; transition: opacity var(--t-mid), transform var(--t-mid) var(--ease);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3);
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-mega:hover .chev { transform: rotate(180deg); }
.mega-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--r-md); transition: background var(--t-fast); }
.mega-item:hover { background: var(--grey-100); }
.mega-item .mega-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--grad-navy); color: #fff; }
.mega-item .mega-ic svg { width: 20px; height: 20px; }
.mega-item strong { display: block; color: var(--ink-900); font-size: 0.95rem; }
.mega-item span { font-size: 0.82rem; color: var(--ink-500); }

.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }

/* Language selector */
.lang-select { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px;
  border: 1px solid var(--line); border-radius: var(--r-pill); font-size: 0.85rem;
  font-weight: 600; color: var(--ink-900); background: #fff;
}
.transparent .lang-btn { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: #fff; }
.lang-btn svg { width: 16px; height: 16px; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 180px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 6px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all var(--t-fast); z-index: 50;
}
.lang-select.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: left;
  padding: 9px 12px; border-radius: var(--r-sm); font-size: 0.9rem; color: var(--ink-900);
}
.lang-menu button:hover { background: var(--grey-100); }
.lang-menu button.active { color: var(--blue-500); font-weight: 600; }

/* Hamburger */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 12px; place-items: center; background: var(--grey-100); }
.transparent .hamburger { background: rgba(255,255,255,0.14); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-900); border-radius: 2px; position: relative; transition: var(--t-fast); }
.transparent .hamburger span { background: #fff; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: inherit; border-radius: 2px; transition: var(--t-fast); }
.hamburger span::before { top: -7px; } .hamburger span::after { top: 7px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1100; visibility: hidden; pointer-events: none;
}
.mobile-nav.open { visibility: visible; pointer-events: auto; }
.mobile-nav .overlay { position: absolute; inset: 0; background: rgba(6,18,38,0.5); opacity: 0; transition: opacity var(--t-mid); }
.mobile-nav.open .overlay { opacity: 1; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 88vw);
  background: #fff; box-shadow: var(--sh-lg); transform: translateX(100%);
  transition: transform var(--t-mid) var(--ease); display: flex; flex-direction: column;
  padding: var(--sp-5); overflow-y: auto;
}
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mobile-panel .mob-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-5); }
.mobile-panel .mob-close { width: 44px; height: 44px; border-radius: 12px; background: var(--grey-100); display: grid; place-items: center; font-size: 1.4rem; color: var(--ink-900); }
.mob-links { display: flex; flex-direction: column; gap: 2px; }
.mob-links a { padding: 13px 14px; border-radius: var(--r-sm); font-weight: 500; color: var(--ink-900); font-size: 1.02rem; }
.mob-links a:hover { background: var(--grey-100); }
.mob-acc-trigger { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 10px; }
/* keep the dropdown chevron small everywhere (it has no intrinsic size) */
.chev { width: 14px; height: 14px; flex-shrink: 0; }
.mob-acc-trigger .chev, .mob-acc-trigger svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink-500); }
.mob-acc-trigger[aria-expanded="true"] .chev, .mob-sub.open ~ .mob-acc-trigger .chev { transform: rotate(180deg); }
.mob-sub { display: none; padding-left: 14px; }
.mob-sub.open { display: block; }
.mob-sub a { font-size: 0.95rem; color: var(--ink-700); }
.mobile-panel .mob-cta { margin-top: var(--sp-5); display: flex; flex-direction: column; gap: 10px; }

/* ------------------------------------------------------------------ */
/* 7. HERO                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative; min-height: min(92vh, 820px); display: flex; align-items: center;
  background: var(--grad-hero); color: #fff; overflow: hidden;
  padding-top: calc(var(--header-h) + var(--sp-7)); padding-bottom: var(--sp-8);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { /* navy overlay for readability */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(6,18,38,0.92) 0%, rgba(10,31,68,0.82) 45%, rgba(16,42,92,0.55) 100%);
}
.hero .container { position: relative; z-index: 3; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-7); align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: var(--sp-5); backdrop-filter: blur(8px);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-400); box-shadow: 0 0 0 4px rgba(56,198,230,0.25); }
.hero h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: var(--sp-5); }
.hero h1 .accent { background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: var(--fs-lead); color: rgba(255,255,255,0.85); max-width: 60ch; margin-bottom: var(--sp-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); }
.hero-trust .ht { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.hero-trust .ht svg { width: 18px; height: 18px; color: var(--cyan-300); }

/* Hero visual / floating cards */
.hero-visual { position: relative; }
.hero-shield {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,0.12);
}
.hero-shield img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: rgba(255,255,255,0.95); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); color: var(--ink-900);
}
.float-card .fc-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-cyan); display: grid; place-items: center; color: #fff; }
.float-card strong { font-size: 0.95rem; display: block; }
.float-card span { font-size: 0.78rem; color: var(--ink-500); }
.float-card.tl { top: 22px; left: -28px; }
.float-card.br { bottom: 28px; right: -24px; }

/* Animated Dubai flight route */
.flight-route { position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.flight-path { fill: none; stroke: rgba(56,198,230,0.55); stroke-width: 2; stroke-dasharray: 6 8; }
.flight-plane { fill: var(--cyan-300); }

/* Trust strip */
.trust-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-4); padding-block: var(--sp-5); }
.trust-pill { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.trust-pill .tp-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grey-100); color: var(--blue-500); display: grid; place-items: center; }
.trust-pill .tp-ic svg { width: 22px; height: 22px; }
.trust-pill span { font-size: 0.82rem; font-weight: 600; color: var(--ink-900); line-height: 1.3; }

/* ------------------------------------------------------------------ */
/* 8. PAGE HERO (inner pages)                                          */
/* ------------------------------------------------------------------ */
.page-hero {
  position: relative; background: var(--grad-hero); color: #fff;
  padding-top: calc(var(--header-h) + var(--sp-7)); padding-bottom: var(--sp-8); overflow: hidden;
}
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(31,95,191,0.4), transparent 55%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); margin-bottom: var(--sp-4); max-width: 18ch; }
.page-hero .lead { font-size: var(--fs-lead); color: rgba(255,255,255,0.85); max-width: 60ch; }
.page-hero .hero-cta { margin-top: var(--sp-6); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: var(--sp-4); }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--cyan-300); }

/* ------------------------------------------------------------------ */
/* 9. STAT / COUNTER                                                   */
/* ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(2rem,3.5vw,3rem); font-weight: 700; color: var(--navy-800); line-height: 1; }
.section-navy .stat .num { color: #fff; }
.stat .num .accent { color: var(--cyan-400); }
.stat .lbl { font-size: 0.9rem; color: var(--ink-500); margin-top: 8px; }
.section-navy .stat .lbl { color: rgba(255,255,255,0.7); }

/* ------------------------------------------------------------------ */
/* 10. PATIENT JOURNEY TIMELINE                                        */
/* ------------------------------------------------------------------ */
.timeline { position: relative; max-width: 900px; margin-inline: auto; }
.timeline::before { content:""; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--cyan-400), var(--line)); }
.tl-step { position: relative; padding-left: 80px; padding-bottom: var(--sp-7); }
.tl-step:last-child { padding-bottom: 0; }
.tl-num {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad-navy); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; box-shadow: var(--sh-glow); z-index: 2;
}
.tl-step h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; margin-bottom: 6px; }
.tl-step p { font-size: 0.95rem; }

/* Horizontal step row (homepage) */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-5); counter-reset: step; align-items: stretch; }
.step-card { position: relative; padding: var(--sp-6); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); display: flex; flex-direction: column; box-shadow: var(--sh-sm); }
.step-card .step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-4); }
.step-card .step-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--grad-navy); color: #fff; display: grid; place-items: center; }
.step-card .step-ic svg { width: 24px; height: 24px; }
.step-card .step-no { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--silver-300); line-height: 1; }
.step-card h4 { font-family: var(--font-body); margin: 0 0 8px; font-size: 1.08rem; color: var(--ink-900); }
.step-card p { font-size: 0.9rem; color: var(--ink-700); }

/* ------------------------------------------------------------------ */
/* 11. FORMS                                                           */
/* ------------------------------------------------------------------ */
.form-card { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-md); padding: var(--sp-7); border: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; color: var(--ink-900); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 0.95rem; color: var(--ink-900);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--grey-50); transition: border var(--t-fast), box-shadow var(--t-fast); width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(31,95,191,0.10); outline: none;
}
.field .hint { font-size: 0.78rem; color: var(--ink-500); }
.field.file-field label.drop {
  border: 2px dashed var(--silver-300); border-radius: var(--r-md); padding: var(--sp-5);
  text-align: center; cursor: pointer; background: var(--grey-50); transition: var(--t-fast); display: block;
}
.field.file-field label.drop:hover { border-color: var(--blue-500); background: #fff; }
.field.file-field .drop svg { width: 28px; height: 28px; color: var(--blue-500); margin: 0 auto 8px; }
.field.file-field .drop strong { color: var(--navy-800); }
.field.file-field input[type=file] { display: none; }

.checkbox { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue-500); flex-shrink: 0; }
.checkbox span { font-size: 0.85rem; color: var(--ink-700); }

/* Range slider */
.range-field output { font-weight: 700; color: var(--blue-500); }
input[type=range] { accent-color: var(--blue-500); }

/* Pill choice (radio/checkbox visual) */
.pill-choices { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-choice { position: relative; }
.pill-choice input { position: absolute; opacity: 0; }
.pill-choice label {
  display: inline-block; padding: 10px 18px; border: 1.5px solid var(--line);
  border-radius: var(--r-pill); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: var(--t-fast);
}
.pill-choice input:checked + label { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.pill-choice label:hover { border-color: var(--blue-500); }

/* Form progress */
.form-progress { height: 6px; background: var(--grey-100); border-radius: var(--r-pill); overflow: hidden; margin-bottom: var(--sp-5); }
.form-progress .bar { height: 100%; width: 0; background: var(--grad-cyan); transition: width var(--t-mid) var(--ease); }

.form-note { font-size: 0.8rem; color: var(--ink-500); margin-top: var(--sp-4); display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue-500); margin-top: 2px; }

/* ------------------------------------------------------------------ */
/* 12. ACCORDION (FAQ)                                                 */
/* ------------------------------------------------------------------ */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: box-shadow var(--t-fast); }
.faq-item[open] { box-shadow: var(--sh-md); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--ink-900); list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--grey-100); display: grid; place-items: center; color: var(--blue-500); transition: var(--t-fast); }
.faq-item[open] .faq-q .pm { background: var(--navy-800); color: #fff; transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; color: var(--ink-700); font-size: 0.95rem; }

/* ------------------------------------------------------------------ */
/* 13. TESTIMONIALS                                                    */
/* ------------------------------------------------------------------ */
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--sp-6); box-shadow: var(--sh-sm); }
.testi-card .stars { color: #f5b51b; margin-bottom: var(--sp-3); letter-spacing: 2px; }
.testi-card .quote { font-size: 1rem; color: var(--ink-700); margin-bottom: var(--sp-5); }
.testi-card .who { display: flex; align-items: center; gap: 12px; }
.testi-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-navy); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testi-card .who strong { display: block; color: var(--ink-900); font-size: 0.95rem; }
.testi-card .who span { font-size: 0.82rem; color: var(--ink-500); }

/* ------------------------------------------------------------------ */
/* 14. BEFORE/AFTER SLIDER                                             */
/* ------------------------------------------------------------------ */
.ba-slider { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 4/3; cursor: ew-resize; user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.ba-handle::after { content:"⇆"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; background: #fff; border-radius: 50%; display: grid; place-items: center; color: var(--navy-800); font-size: 1.1rem; }
.ba-tag { position: absolute; bottom: 12px; padding: 5px 12px; border-radius: var(--r-pill); font-size: 0.75rem; font-weight: 600; background: rgba(6,18,38,0.7); color: #fff; }
.ba-tag.before { left: 12px; } .ba-tag.after { right: 12px; }

/* ------------------------------------------------------------------ */
/* 15. FLOATING ACTIONS                                                */
/* ------------------------------------------------------------------ */
.float-actions { position: fixed; right: 20px; bottom: 24px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--sh-lg); color: #fff; transition: transform var(--t-fast); position: relative; }
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn.wa { background: #25d366; animation: pulse-wa 2.4s infinite; }
.float-btn.call { background: var(--navy-800); }
@keyframes pulse-wa { 0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* Back to top */
.back-top { position: fixed; right: 20px; bottom: 96px; z-index: 880; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--navy-800); box-shadow: var(--sh-md); display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(12px); transition: var(--t-mid); }
.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* Reading progress */
.read-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--grad-cyan); z-index: 1200; width: 0; }

/* Mobile sticky action bar */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(10,31,68,0.1); }
.mobile-bar .mb-inner { display: grid; grid-template-columns: repeat(3,1fr); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 4px; font-size: 0.7rem; font-weight: 600; color: var(--ink-700); }
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar a.wa { color: #25d366; }
.mobile-bar a.primary { color: var(--blue-500); }

/* ------------------------------------------------------------------ */
/* 16. FOOTER                                                          */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding-top: var(--sp-8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--sp-6); padding-bottom: var(--sp-7); }
.footer-brand img { height: 84px; margin-bottom: var(--sp-4);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35)); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); max-width: 38ch; }
.footer-social { display: flex; gap: 10px; margin-top: var(--sp-4); }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; transition: var(--t-fast); }
.footer-social a:hover { background: var(--grad-cyan); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; margin-bottom: var(--sp-4); }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-col a:hover { color: var(--cyan-300); }
.footer-contact li { display: flex; gap: 11px; font-size: 0.9rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--cyan-300); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: var(--sp-4); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-disclaimer { background: rgba(0,0,0,0.25); font-size: 0.78rem; color: rgba(255,255,255,0.5); padding-block: var(--sp-4); line-height: 1.6; }

/* ------------------------------------------------------------------ */
/* 17. ASSESSMENT TOOL                                                 */
/* ------------------------------------------------------------------ */
.assess-card { max-width: 720px; margin-inline: auto; background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-lg); overflow: hidden; }
.assess-head { background: var(--grad-navy); color: #fff; padding: var(--sp-6); }
.assess-head h3 { color: #fff; font-family: var(--font-body); }
.assess-head p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 6px; }
.assess-body { padding: var(--sp-7); }
.assess-step { display: none; animation: fadeUp var(--t-mid) var(--ease); }
.assess-step.active { display: block; }
.assess-q { font-size: 1.2rem; font-weight: 700; color: var(--ink-900); font-family: var(--font-head); margin-bottom: var(--sp-5); }
.assess-options { display: grid; gap: 12px; }
.assess-opt { display: flex; align-items: center; gap: 12px; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: var(--r-md); cursor: pointer; transition: var(--t-fast); font-weight: 500; color: var(--ink-900); }
.assess-opt:hover { border-color: var(--blue-500); background: var(--grey-50); }
.assess-opt.selected { border-color: var(--navy-800); background: rgba(31,95,191,0.06); }
.assess-opt .tick { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--silver-300); display: grid; place-items: center; flex-shrink: 0; }
.assess-opt.selected .tick { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.assess-nav { display: flex; justify-content: space-between; margin-top: var(--sp-6); }
.assess-result { display: none; }
.assess-result.active { display: block; }
.assess-urgent { background: #fdecea; border: 1px solid #f5c6c1; color: #a33; padding: var(--sp-4); border-radius: var(--r-md); display: flex; gap: 12px; margin-bottom: var(--sp-5); }
.assess-urgent svg { width: 24px; height: 24px; flex-shrink: 0; }
.assess-summary { background: var(--grey-100); border-radius: var(--r-md); padding: var(--sp-5); margin-bottom: var(--sp-5); }
.assess-summary li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.assess-summary li:last-child { border-bottom: none; }
.assess-summary li span:first-child { color: var(--ink-500); }
.assess-summary li span:last-child { font-weight: 600; color: var(--ink-900); text-align: right; }

/* ------------------------------------------------------------------ */
/* 18. MISC / UTILITY                                                  */
/* ------------------------------------------------------------------ */
.divider { height: 1px; background: var(--line); border: none; margin-block: var(--sp-6); }
.tag { display: inline-block; padding: 5px 13px; border-radius: var(--r-pill); font-size: 0.78rem; font-weight: 600; background: rgba(31,95,191,0.1); color: var(--blue-500); }
.note-box { border-left: 4px solid var(--blue-500); background: var(--grey-100); padding: var(--sp-4) var(--sp-5); border-radius: 0 var(--r-md) var(--r-md) 0; font-size: 0.92rem; }
.note-box.warn { border-color: var(--warn); background: #fff8ec; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; }
.check-list li svg { width: 22px; height: 22px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-row .tag { background: #fff; border: 1px solid var(--line); color: var(--ink-700); }

/* Cookie / popups */
.cookie-bar { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 560px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: var(--sp-4) var(--sp-5); z-index: 1300; display: none; }
.cookie-bar.show { display: flex; gap: var(--sp-4); align-items: center; flex-wrap: wrap; }
.cookie-bar p { font-size: 0.85rem; flex: 1; min-width: 220px; }

.modal { position: fixed; inset: 0; z-index: 1400; display: none; align-items: center; justify-content: center; padding: var(--sp-5); }
.modal.open { display: flex; }
.modal .m-overlay { position: absolute; inset: 0; background: rgba(6,18,38,0.6); backdrop-filter: blur(4px); }
.modal .m-box { position: relative; background: #fff; border-radius: var(--r-lg); max-width: 460px; width: 100%; padding: var(--sp-7); box-shadow: var(--sh-lg); text-align: center; animation: fadeUp var(--t-mid) var(--ease); }
.modal .m-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--grey-100); display: grid; place-items: center; font-size: 1.2rem; color: var(--ink-700); }
.modal .m-ic { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-cyan); display: grid; place-items: center; color: #fff; margin: 0 auto var(--sp-4); }

/* Accessibility widget */
.a11y-toggle { position: fixed; left: 20px; bottom: 24px; z-index: 900; width: 48px; height: 48px; border-radius: 50%; background: var(--navy-800); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-md); }
.a11y-toggle svg { width: 24px; height: 24px; }
.a11y-panel { position: fixed; left: 20px; bottom: 84px; z-index: 901; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: var(--sp-5); width: 260px; display: none; }
.a11y-panel.open { display: block; }
.a11y-panel h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: var(--sp-3); }
.a11y-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; font-size: 0.88rem; }
.a11y-row button { padding: 6px 12px; border: 1px solid var(--line); border-radius: var(--r-sm); font-weight: 600; }

/* Body state classes set by a11y / dark mode */
body.font-lg { font-size: 1.12rem; }
body.high-contrast { filter: contrast(1.18); }
body.reduce-motion *, body.reduce-motion *::before, body.reduce-motion *::after { animation: none !important; transition: none !important; }

/* Custom cursor */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: var(--cyan-300); transform: translate(-50%,-50%); }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(56,198,230,0.7); transform: translate(-50%,-50%); transition: width var(--t-fast), height var(--t-fast), background var(--t-fast); }
.cursor-ring.hover { width: 54px; height: 54px; background: rgba(56,198,230,0.12); }

/* Section background flourishes */
.bg-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; z-index: 0; pointer-events: none; }
.bg-orb.cyan { background: rgba(56,198,230,0.4); }
.bg-orb.blue { background: rgba(31,95,191,0.35); }

/* Hide Google Translate's default chrome (keep functionality) */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
body { top: 0 !important; }
.skiptranslate iframe { visibility: hidden !important; height: 0 !important; }

/* Global preloader */
#preloader {
  position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center;
  background: var(--grad-hero);
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader .pl-inner { display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); }
#preloader img { height: 96px; width: auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.35)); animation: float-soft 3s ease-in-out infinite; }
#preloader .pl-spin { width: 40px; height: 40px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.18); border-top-color: var(--cyan-400); animation: spin-slow 0.8s linear infinite; }
@media (prefers-reduced-motion: reduce) { #preloader img, #preloader .pl-spin { animation: none; } }

/* Skip link */
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--navy-800); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); z-index: 2000; }
.skip-link:focus { left: 8px; color: #fff; }
