/* ==========================================================================
   Royal Medic Solution — Premium Medevac & Air Ambulance Website
   Design system: white / blue / teal / light gray
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core palette */
  --white: #ffffff;
  --gray-50:  #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #e3e9f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;

  --blue-50:  #eef4ff;
  --blue-100: #dbe8ff;
  --blue-500: #2f6fed;
  --blue-600: #1d5ce0;
  --blue-700: #1547b3;
  --navy:     #0a1e3f;
  --navy-2:   #0e2a54;

  --teal-50:  #e9fbf7;
  --teal-100: #cdf5ec;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0b7a70;

  --ink: #0f1f38;
  --text-body: #4b5b73;
  --text-muted: #7889a0;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 10px rgba(15, 31, 56, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 31, 56, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 31, 56, 0.16);

  --grad-brand: linear-gradient(135deg, var(--blue-600) 0%, var(--teal-500) 100%);
  --grad-navy: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #123a63 100%);

  --container: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: .08s; }
.reveal-delay-2.in-view { transition-delay: .16s; }
.reveal-delay-3.in-view { transition-delay: .24s; }
.reveal-delay-4.in-view { transition-delay: .32s; }

/* ---------- Section heading kit ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow svg { width: 13px; height: 13px; fill: var(--teal-600); }
.eyebrow.on-dark { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: var(--teal-400); }

.heading-xl {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.16;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.heading-xl .accent { color: var(--blue-600); }
.heading-xl .accent-teal { color: var(--teal-600); }
.on-dark .heading-xl, .heading-xl.on-dark { color: var(--white); }

.lede {
  font-size: 16.5px;
  color: var(--text-body);
  max-width: 620px;
  line-height: 1.75;
}
.on-dark .lede { color: rgba(255,255,255,0.68); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .lede { margin: 0 auto; }

.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--grad-navy); }
.bg-navy .lede, .bg-navy p { color: rgba(255,255,255,0.68); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--grad-brand); color: white; box-shadow: 0 10px 26px rgba(29,92,224,0.30); }
.btn-primary svg { fill: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(29,92,224,0.4); }
.btn-outline-light { background: rgba(255,255,255,0.08); color: white; border: 1.5px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.btn-outline-light svg { fill: white; }
.btn-outline-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }
.btn-outline-blue { background: white; color: var(--blue-600); border: 1.5px solid var(--blue-100); }
.btn-outline-blue svg { fill: var(--blue-600); }
.btn-outline-blue:hover { background: var(--blue-50); transform: translateY(-2px); }
.btn-white { background: white; color: var(--navy); }
.btn-white svg { fill: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 13px; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.0);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
#navbar.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); box-shadow: 0 2px 24px rgba(15,31,56,0.08); padding: 12px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: 44px; object-fit: contain; display: block; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition: all .2s;
  white-space: nowrap;
}
#navbar:not(.scrolled) .nav-links a { color: var(--white); }
.nav-links a:hover { background: var(--blue-50); color: var(--blue-700); }
#navbar:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,0.14); color: white; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700; color: var(--white); white-space: nowrap; }
#navbar.scrolled .nav-phone { color: var(--navy); }
.nav-phone svg { width: 15px; height: 15px; fill: var(--teal-400); }
#navbar.scrolled .nav-phone svg { fill: var(--teal-600); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; z-index: 10; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; transition: .3s; }
#navbar.scrolled .hamburger span { background: var(--navy); }

/* ==========================================================================
   HERO
   ========================================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-navy);
  overflow: hidden;
  padding-top: 90px;
}
.hero-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-decor .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .35;
}
.hero-decor .blob-1 { width: 520px; height: 520px; background: var(--teal-500); top: -160px; right: -120px; opacity: .22; }
.hero-decor .blob-2 { width: 420px; height: 420px; background: var(--blue-500); bottom: -140px; left: -100px; opacity: .22; }
.hero-decor .cross-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 40%, black 40%, transparent 90%);
}
.hero-decor .plus {
  position: absolute;
  color: rgba(255,255,255,0.10);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 40px 0 70px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(20,184,166,0.14);
  border: 1px solid rgba(45,212,191,0.4);
  color: #6fe3d3;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--teal-400); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .45; transform: scale(1.5);} }
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}
.hero-title .accent { background: linear-gradient(90deg, #6fe3d3, #7fb2ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-desc { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.75; max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 700; color: white; line-height: 1; }
.hero-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.52); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-photo-wrap {
  position: relative;
  width: min(100%, 400px);
}
.hero-photo-ring {
  position: absolute;
  inset: -18px;
  border-radius: 32px;
  border: 1.5px dashed rgba(255,255,255,0.22);
}
.hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3/3.7;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.14);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,63,0.55) 0%, transparent 34%);
}
.hero-photo-badge {
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-photo-badge .avatar-ring {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.hero-photo-badge strong { display: block; font-size: 14px; color: var(--ink); font-weight: 700; }
.hero-photo-badge span { font-size: 12px; color: var(--text-muted); }
.hero-float-chip {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.hero-float-chip svg { width: 20px; height: 20px; flex-shrink: 0; }
.chip-top { top: 6%; left: -8%; }
.chip-bottom { bottom: 20%; right: -10%; }

/* ---------- Credentials / trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 30px 0;
  position: relative;
  z-index: 3;
}
.trust-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.trust-strip-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0; }
.trust-badges { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; }
.trust-badge img { width: 34px; height: 34px; object-fit: contain; border-radius: 6px; }
.trust-badge span { font-size: 12.5px; font-weight: 600; color: var(--gray-700); }
.trust-badge-pill {
  display: flex; align-items: center; gap: 9px;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  padding: 8px 16px; border-radius: var(--radius-pill);
}
.trust-badge-pill .online-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }
.trust-badge-pill span { font-size: 12.5px; font-weight: 700; color: var(--teal-700); }

/* ==========================================================================
   ABOUT DOCTOR
   ========================================================================== */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/3.6;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-shape {
  position: absolute;
  width: 90%; height: 90%;
  border: 2px solid var(--teal-100);
  border-radius: var(--radius-lg);
  top: -22px; left: -22px;
  z-index: -1;
  background: var(--teal-50);
}
.about-exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--grad-brand);
  color: white;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}
.about-exp-badge .num { font-family: 'Outfit',sans-serif; font-size: 30px; font-weight: 700; line-height: 1; }
.about-exp-badge .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; margin-top: 4px; opacity: .9; }

.about-quals { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 30px; }
.qual-row { display: flex; gap: 14px; align-items: flex-start; }
.qual-ico {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.qual-ico svg { width: 19px; height: 19px; fill: var(--blue-600); }
.qual-row strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.qual-row p { font-size: 13.8px; color: var(--text-body); }

.mission-quote {
  background: var(--gray-50);
  border-left: 4px solid var(--teal-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px;
  font-size: 15.5px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
  position: relative;
}
.mission-quote strong { display: block; margin-top: 12px; font-style: normal; font-size: 13px; color: var(--teal-700); }

.about-inset {
  position: absolute;
  left: -34px; top: 32%;
  width: 42%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
}
.about-inset img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FIELD GALLERY
   ========================================================================== */
#gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/3.8;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,30,63,0.86) 0%, rgba(10,30,63,0.05) 55%, transparent 75%);
}
.gallery-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  color: white;
}
.gallery-cap strong { display: block; font-size: 13.5px; font-weight: 700; }
.gallery-cap span { font-size: 11.5px; color: rgba(255,255,255,0.68); }

/* ==========================================================================
   WHAT IS MEDEVAC
   ========================================================================== */
#what-is { background: var(--gray-50); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.what-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.1; box-shadow: var(--shadow-md); }
.what-img img { width: 100%; height: 100%; object-fit: cover; }
.what-img-badge {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(10,30,63,0.82);
  backdrop-filter: blur(6px);
  color: white; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600;
  border-left: 3px solid var(--teal-400);
}
.points-list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.point-item { display: flex; gap: 16px; align-items: flex-start; }
.point-num {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--grad-brand);
  color: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; font-family: 'Outfit',sans-serif;
}
.point-text h4 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.point-text p { font-size: 13.8px; color: var(--text-body); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
#services { background: white; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: all .28s ease;
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: white;
  border-color: transparent;
}
.service-icon {
  width: 54px; height: 54px;
  background: white;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
  transition: background .28s, transform .28s;
}
.service-card:hover .service-icon { background: var(--grad-brand); transform: scale(1.06) rotate(-4deg); }
.service-icon svg { width: 26px; height: 26px; fill: var(--blue-600); transition: fill .28s; }
.service-card:hover .service-icon svg { fill: white; }
.service-card h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.service-card p { font-size: 13.8px; color: var(--text-body); line-height: 1.65; }

.services-types {
  margin-top: 50px;
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  padding: 34px 38px;
}
.services-types h3 {
  color: var(--teal-400);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.type-tag {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.09);
  text-align: center;
  transition: all .2s;
}
.type-tag:hover { background: rgba(45,212,191,0.14); color: white; border-color: rgba(45,212,191,0.3); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
#why { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; fill: white; }
.why-card h3 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--text-body); line-height: 1.6; }

/* ==========================================================================
   EQUIPMENT
   ========================================================================== */
#equipment { background: white; }
.equipment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.equip-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: all .25s;
}
.equip-card:hover { border-color: var(--teal-400); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.equip-img {
  width: 58px; height: 58px;
  margin: 0 auto 15px;
  background: var(--teal-50);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.equip-img svg { width: 28px; height: 28px; fill: var(--teal-600); }
.equip-card h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.equip-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
#process { background: var(--grad-navy); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 52px; }
.process-steps::before {
  content: '';
  position: absolute; top: 34px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-400));
  opacity: .5;
}
.step { text-align: center; padding: 0 14px; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit',sans-serif; font-size: 20px; font-weight: 700;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.16);
  color: white;
}
.step:nth-child(1) .step-num { background: var(--grad-brand); border-color: transparent; }
.step:nth-child(2) .step-num { background: rgba(47,111,237,0.35); border-color: rgba(47,111,237,0.5); }
.step:nth-child(3) .step-num { background: rgba(20,184,166,0.3); border-color: rgba(20,184,166,0.5); }
.step:nth-child(4) .step-num { background: rgba(47,111,237,0.35); border-color: rgba(47,111,237,0.5); }
.step:nth-child(5) .step-num { background: var(--grad-brand); border-color: transparent; }
.step h3 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 9px; }
.step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 10px; }
.step-sub { display: flex; flex-direction: column; gap: 3px; }
.step-sub span { font-size: 11px; color: rgba(255,255,255,0.4); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
#testimonials { background: white; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  border: 1px solid var(--gray-100);
  transition: all .25s;
  display: flex; flex-direction: column;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); background: white; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars svg { width: 15px; height: 15px; fill: #f5a623; }
.testi-quote { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Outfit',sans-serif; font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.testi-person strong { display: block; font-size: 13.8px; color: var(--ink); font-weight: 700; }
.testi-person span { font-size: 12px; color: var(--text-muted); }

/* ==========================================================================
   CAREERS
   ========================================================================== */
#careers { background: var(--gray-50); }
.careers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.career-card { background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 26px 24px; transition: all .25s; }
.career-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.career-badge {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 14px;
}
.career-card h3 { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.career-card p { font-size: 13.3px; color: var(--text-body); line-height: 1.6; }
.career-apply { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--teal-700); text-decoration: none; }
.career-apply:hover { color: var(--blue-700); }
.career-cta-box {
  margin-top: 40px;
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.career-cta-box h3 { color: white; font-size: 21px; font-weight: 700; margin-bottom: 6px; font-family: 'Outfit', sans-serif; }
.career-cta-box p { color: rgba(255,255,255,0.62); font-size: 14px; }

/* ==========================================================================
   APPOINTMENT CTA BAND
   ========================================================================== */
#appointment {
  position: relative;
  padding: 90px 0;
  background: var(--navy);
  overflow: hidden;
}
.cta-bg-img { position: absolute; inset: 0; z-index: 0; }
.cta-bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.cta-bg-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(10,30,63,0.96) 35%, rgba(13,148,136,0.55) 130%); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Outfit', sans-serif; font-size: clamp(28px,4vw,42px); font-weight: 700; color: white; margin-bottom: 16px; letter-spacing: -0.5px; }
.cta-inner p { color: rgba(255,255,255,0.72); font-size: 16.5px; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   FAQ
   ========================================================================== */
#faq { background: white; }
.faq-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--gray-50); border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--gray-100); transition: border-color .2s; }
.faq-item.open { border-color: var(--teal-100); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 19px 22px; font-size: 14.8px; font-weight: 700; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q .faq-plus { width: 26px; height: 26px; border-radius: 50%; background: white; box-shadow: var(--shadow-sm); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 17px; color: var(--blue-600); font-weight: 400; transition: transform .25s; }
.faq-item.open .faq-plus { transform: rotate(45deg); background: var(--grad-brand); color: white; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s ease; padding: 0 22px; font-size: 13.8px; color: var(--text-body); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 22px 20px; }

.cost-factors { background: var(--grad-navy); border-radius: var(--radius-lg); padding: 30px 28px; }
.cost-factors h3 { color: var(--teal-400); font-size: 15px; font-weight: 700; margin-bottom: 18px; font-family: 'Outfit',sans-serif; }
.factor-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.78); font-size: 13.3px; }
.factor-item:last-child { border-bottom: none; }
.factor-item::before { content: ''; width: 6px; height: 6px; background: var(--teal-400); border-radius: 50%; flex-shrink: 0; }
.cost-note { margin-top: 20px; background: rgba(20,184,166,0.14); border: 1px solid rgba(20,184,166,0.3); border-radius: var(--radius-sm); padding: 15px 16px; color: rgba(255,255,255,0.75); font-size: 12.8px; line-height: 1.65; }
.cost-note strong { color: var(--teal-400); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
#contact { background: var(--gray-50); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-card { background: var(--grad-navy); border-radius: var(--radius-lg); padding: 30px 28px; margin-bottom: 20px; }
.contact-card-title { display: flex; align-items: center; gap: 10px; color: white; font-size: 15.5px; font-weight: 700; margin-bottom: 18px; font-family: 'Outfit',sans-serif; }
.contact-card-title svg { width: 19px; height: 19px; fill: var(--teal-400); }
.c-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.c-row:last-child { border-bottom: none; }
.c-ico { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-ico svg { width: 16px; height: 16px; fill: var(--teal-400); }
.c-label { font-size: 10.5px; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.c-val { font-size: 14.3px; font-weight: 700; color: white; }
.c-val a { color: white; text-decoration: none; }
.c-val a:hover { color: var(--teal-400); }

.social-row { display: flex; gap: 10px; margin-top: 22px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s, transform .2s; }
.social-btn:hover { background: var(--teal-500); transform: translateY(-2px); }
.social-btn svg { width: 17px; height: 17px; fill: white; }

.services-quick-list { background: white; border-radius: var(--radius-md); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.services-quick-list h4 { font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 15px; text-transform: uppercase; letter-spacing: .6px; }
.quick-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-body); padding: 6px 0; }
.quick-item::before { content: '\2192'; color: var(--teal-600); font-weight: 700; font-size: 12px; }

.map-wrap { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 20px; border: 1px solid var(--gray-200); }
.map-wrap iframe { width: 100%; height: 230px; border: 0; display: block; filter: saturate(0.85); }

.contact-form { background: white; border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; font-family: 'Outfit',sans-serif; }
.contact-form > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 12px 15px; font-size: 14px; color: var(--ink);
  font-family: inherit; transition: border-color .2s, background .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal-500); background: white; box-shadow: 0 0 0 4px rgba(20,184,166,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer { background: #061428; color: rgba(255,255,255,0.62); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 44px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.75; max-width: 300px; }
.footer-col h4 { color: white; font-size: 13.5px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .8px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--teal-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.8px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.8px; color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-legal a:hover { color: var(--teal-400); }

/* ==========================================================================
   FLOATING BUTTONS
   ========================================================================== */
.emergency-float { position: fixed; bottom: 26px; right: 26px; z-index: 888; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.float-btn { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-radius: 50px; font-size: 13.5px; font-weight: 700; text-decoration: none; box-shadow: 0 8px 24px rgba(0,0,0,0.22); transition: transform .2s, box-shadow .2s; }
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-btn svg { width: 17px; height: 17px; fill: white; }
.float-emergency { background: var(--grad-brand); color: white; }
.float-whatsapp { background: #25d366; color: white; }

/* ==========================================================================
   LEGAL PAGES (privacy / terms)
   ========================================================================== */
.legal-hero { background: var(--grad-navy); padding: 150px 0 60px; }
.legal-hero h1 { font-family: 'Outfit',sans-serif; color: white; font-size: clamp(28px,4vw,40px); font-weight: 700; margin-bottom: 12px; }
.legal-hero p { color: rgba(255,255,255,0.6); font-size: 14px; }
.legal-body { padding: 70px 0; }
.legal-body .container { max-width: 860px; }
.legal-body h2 { font-family: 'Outfit',sans-serif; font-size: 21px; font-weight: 700; color: var(--ink); margin: 36px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 14.5px; color: var(--text-body); line-height: 1.85; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.legal-body a { color: var(--blue-600); text-decoration: underline; }
.legal-note { background: var(--gray-50); border-left: 4px solid var(--teal-500); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; font-size: 13.5px; color: var(--text-body); margin-bottom: 30px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .careers-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .process-steps::before { display: none; }
  .types-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .what-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 380px; margin: 0 auto 50px; }
  .about-inset { left: 50%; transform: translateX(-50%); top: auto; bottom: -30px; width: 60%; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-phone { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 16px; right: 16px;
    background: white; padding: 14px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    gap: 2px;
  }
  .nav-links.open a { color: var(--navy); padding: 12px 16px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .services-grid, .why-grid, .equipment-grid, .careers-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 22px; }
  .career-cta-box { flex-direction: column; text-align: center; }
  .trust-strip-inner { justify-content: center; text-align: center; }
  .chip-top, .chip-bottom { display: none; }
  .hero-photo-badge { position: static; width: 100%; margin-top: -30px; transform: none; }
  .process-steps { grid-template-columns: 1fr; }
  .quote-widget-grid { grid-template-columns: 1fr; }
  .reach-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   REACH DR FIRAS PAGE — quote widget, schedule call, online consulting
   ========================================================================== */
.reach-hero {
  position: relative;
  background: var(--grad-navy);
  padding: 150px 0 90px;
  overflow: hidden;
}
.reach-hero .hero-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.reach-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.reach-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(30px,4.4vw,48px); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.reach-hero p { color: rgba(255,255,255,0.72); font-size: 16.5px; line-height: 1.7; max-width: 600px; }
.reach-quick-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; margin-top: -56px; position: relative; z-index: 2; }

.quote-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 32px;
}
.quote-card .card-eyebrow { display: flex; align-items: center; gap: 10px; color: var(--teal-700); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.quote-card .card-eyebrow svg { width: 16px; height: 16px; fill: var(--teal-600); }
.quote-card h2 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.quote-card > p { font-size: 13.8px; color: var(--text-muted); margin-bottom: 24px; }

.country-select-row { display: flex; gap: 10px; }
.country-select-row select {
  flex: 0 0 auto;
  width: 128px;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 12px 10px; font-size: 13.5px; color: var(--ink);
  font-family: inherit; outline: none;
}
.country-select-row select:focus { border-color: var(--teal-500); }
.country-select-row input { flex: 1; }

.schedule-card {
  background: var(--grad-navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 32px;
  color: white;
}
.schedule-card .card-eyebrow { display: flex; align-items: center; gap: 10px; color: var(--teal-400); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.schedule-card .card-eyebrow svg { width: 16px; height: 16px; fill: var(--teal-400); }
.schedule-card h2 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: white; margin-bottom: 6px; }
.schedule-card > p { font-size: 13.8px; color: rgba(255,255,255,0.62); margin-bottom: 24px; }
.schedule-card .form-group label { color: rgba(255,255,255,0.85); }
.schedule-card .form-group input, .schedule-card .form-group select {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.14); color: white;
}
.schedule-card .form-group input::placeholder { color: rgba(255,255,255,0.35); }
.schedule-card .form-group input:focus, .schedule-card .form-group select:focus {
  border-color: var(--teal-400); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 4px rgba(45,212,191,0.15);
}
.schedule-card .btn-primary { width: 100%; }

.consult-banner {
  margin-top: 28px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.consult-banner-text { display: flex; align-items: center; gap: 16px; }
.consult-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: white; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.consult-icon svg { width: 26px; height: 26px; fill: var(--teal-600); }
.consult-banner h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.consult-banner p { font-size: 13.3px; color: var(--text-body); margin: 0; }

.reach-channels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.reach-channel-card {
  background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-md);
  padding: 24px 20px; text-align: center; transition: all .25s;
}
.reach-channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.reach-channel-ico {
  width: 52px; height: 52px; margin: 0 auto 14px;
  background: var(--grad-brand); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.reach-channel-ico svg { width: 24px; height: 24px; fill: white; }
.reach-channel-card h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.reach-channel-card p { font-size: 13px; color: var(--text-muted); }
.reach-channel-card a { color: var(--blue-600); text-decoration: none; font-weight: 600; }

.online-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray-700); font-size: 12.5px; font-weight: 600;
}
.online-badge svg { width: 16px; height: 16px; fill: var(--teal-600); }
.online-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }

@media (max-width: 900px) {
  .reach-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .reach-channels { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================================================
   WORLDWIDE MEDICAL EVACUATION SECTION
   ======================================================================== */

.worldwide-section {
  background: var(--grad-navy);
  position: relative;
  overflow: hidden;
}

.worldwide-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(29,92,224,0.18) 0%, rgba(20,184,166,0.08) 40%, transparent 70%);
  pointer-events: none;
}

/* World map container */
.world-map-wrap {
  margin: 48px auto 16px;
  max-width: 700px;
}

.world-map-globe {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  position: relative;
}

.globe-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Pulse animation for HQ dot */
@keyframes pulseRing {
  0% { r: 9; opacity: 0.6; }
  100% { r: 20; opacity: 0; }
}
@keyframes pulseRingOuter {
  0% { r: 14; opacity: 0.4; }
  100% { r: 28; opacity: 0; }
}
.pulse-ring-outer { animation: pulseRingOuter 2.4s ease-out infinite; }
.pulse-ring-mid { animation: pulseRing 2.4s ease-out infinite 0.4s; }

.globe-hq-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(20,184,166,0.15);
  border: 1px solid rgba(20,184,166,0.3);
  color: #4dd9c0;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
}
.globe-hq-label svg { width: 13px; height: 13px; fill: #14b8a6; flex-shrink: 0; }

/* Stats row */
.worldwide-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 48px 0 56px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 32px 24px;
}

.ww-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 8px 16px;
}

.ww-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.ww-stat-num span { font-size: 22px; color: #14b8a6; font-weight: 700; }

.ww-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ww-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Region cards */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.region-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all .3s;
}
.region-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(20,184,166,0.3);
  transform: translateY(-3px);
}

.region-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.region-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.region-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

/* Worldwide CTA */
.worldwide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.25);
  border-radius: 18px;
  padding: 32px 40px;
  flex-wrap: wrap;
}

.worldwide-cta-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.worldwide-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.worldwide-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .worldwide-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
  .ww-stat-divider { display: none; }
  .ww-stat { min-width: 80px; }
  .ww-stat-num { font-size: 28px; }
}

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

/* ========================================================================
   OEUK / OIL & GAS OFFSHORE SECTION
   ======================================================================== */

#offshore {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.offshore-hero {
  background: linear-gradient(135deg, #d9ecff 0%, #eef6ff 40%, #f0f8ff 70%, #e8f4ff 100%);
  position: relative;
}

.offshore-content-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 480px;
  position: relative;
}

.offshore-text-col {
  padding: 64px 48px 48px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.offshore-photo-col {
  position: relative;
  overflow: hidden;
}

.offshore-doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* OEUK Badge — top-right corner */
.oeuk-corner-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(30, 58, 110, 0.18);
  border-radius: 14px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 4px 18px rgba(15,31,56,0.12);
  backdrop-filter: blur(6px);
}

.oeuk-logo-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.oeuk-logo-svg {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: visible;
}

.oeuk-badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.oeuk-badge-text .oeuk-org {
  font-size: 12px;
  font-weight: 800;
  color: #1e3a6e;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.oeuk-badge-text .oeuk-status {
  font-size: 11px;
  color: #4b5b73;
  font-weight: 500;
}

/* Heading block */
.offshore-title-group {
  margin-bottom: 18px;
}

.offshore-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #0a1e3f;
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.offshore-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 800;
  color: #1d5ce0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.offshore-tagline {
  font-size: 14px;
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.offshore-body {
  font-size: 14.5px;
  color: #4b5b73;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}

/* CTA buttons */
.offshore-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-oeuk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e3a6e;
  color: white;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(30,58,110,0.3);
}
.btn-oeuk svg { width: 16px; height: 16px; fill: #4dd9c0; flex-shrink: 0; }
.btn-oeuk:hover { background: #0a1e3f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,58,110,0.4); }

.btn-reach-firas {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #1d5ce0;
  border: 2px solid #1d5ce0;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
}
.btn-reach-firas svg { width: 16px; height: 16px; fill: #1d5ce0; flex-shrink: 0; }
.btn-reach-firas:hover { background: #1d5ce0; color: white; }
.btn-reach-firas:hover svg { fill: white; }

/* Footer bar */
.offshore-footer {
  background: #0a1e3f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.offshore-footer svg { width: 22px; height: 22px; fill: #14b8a6; flex-shrink: 0; }
.offshore-footer strong { color: #14b8a6; margin-left: 4px; }

/* OEUK chip in hero */
.hero-oeuk-chip {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: linear-gradient(135deg, #1e3a6e, #1d5ce0);
  color: white;
  border-radius: 12px;
  padding: 9px 16px 9px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(30,58,110,0.3);
  white-space: nowrap;
}
.hero-oeuk-chip svg { width: 16px; height: 16px; fill: #4dd9c0; flex-shrink: 0; }

/* OEUK trust badge in trust strip */
.trust-badge-oeuk {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(30,58,110,0.08), rgba(29,92,224,0.08));
  border: 1.5px solid rgba(29,92,224,0.2);
  border-radius: 10px;
  padding: 8px 14px;
  flex-shrink: 0;
}
.trust-badge-oeuk .oeuk-mini-logo {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #1e3a6e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-badge-oeuk .oeuk-mini-logo svg { width: 18px; height: 18px; fill: white; }
.trust-badge-oeuk .oeuk-mini-text { display: flex; flex-direction: column; }
.trust-badge-oeuk .oeuk-mini-name { font-size: 11px; font-weight: 800; color: #1e3a6e; text-transform: uppercase; letter-spacing: 0.5px; }
.trust-badge-oeuk .oeuk-mini-sub { font-size: 10px; color: #64748b; font-weight: 500; }

/* Responsive */
@media (max-width: 900px) {
  .offshore-content-wrap { grid-template-columns: 1fr; }
  .offshore-photo-col { height: 320px; }
  .offshore-text-col { padding: 48px 24px 32px; }
  .oeuk-corner-badge { top: 16px; right: 16px; }
  .hero-oeuk-chip { left: 0; }
}

/* ==========================================================================
   EMERGENCY TOP BAR  (competitor-inspired 24/7 call strip)
   ========================================================================== */
#emergency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 42px;
  z-index: 1001;
  background: linear-gradient(90deg, #991b1b 0%, #b91c1c 50%, #991b1b 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.emg-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 0 20px;
}
.emg-pulse {
  width: 8px; height: 8px;
  background: #fca5a5;
  border-radius: 50%;
  flex-shrink: 0;
  animation: emgPulse 1.5s infinite;
}
@keyframes emgPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(252,165,165,0.7); opacity: 1; }
  50%       { box-shadow: 0 0 0 7px rgba(252,165,165,0); opacity: 0.7; }
}
.emg-label {
  font-size: 11.5px;
  font-weight: 800;
  color: #fca5a5;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.emg-divider {
  width: 1px; height: 18px;
  background: rgba(255,255,255,0.22);
  flex-shrink: 0;
}
.emg-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s;
}
.emg-phone svg { width: 13px; height: 13px; fill: #fca5a5; flex-shrink: 0; }
.emg-phone:hover { color: #fca5a5; }
.emg-flag {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-right: -2px;
}
.emg-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #15803d;
  color: white;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 100px;
  flex-shrink: 0;
  letter-spacing: 0.3px;
  transition: background .2s;
}
.emg-wa:hover { background: #166534; }
.emg-wa svg { width: 13px; height: 13px; fill: white; }

/* Push navbar below emergency bar */
#navbar { top: 42px !important; }
#navbar.scrolled { top: 0 !important; }

/* ==========================================================================
   OEUK VERIFIED LISTING CARD
   ========================================================================== */
.oeuk-listing-card {
  background: white;
  border: 1.5px solid rgba(29,92,224,0.18);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: 0 8px 36px rgba(29,92,224,0.10);
  margin-top: 28px;
}
.oeuk-listing-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.oeuk-listing-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #1e3a6e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.oeuk-listing-logo svg { width: 28px; height: 28px; fill: white; }
.oeuk-listing-title h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.oeuk-listing-title span { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.oeuk-verified-badge {
  margin-left: auto;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 100px;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.oeuk-verified-badge svg { width: 12px; height: 12px; fill: #15803d; }
.oeuk-listing-locations {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.oeuk-loc-item { display: flex; flex-direction: column; gap: 3px; }
.oeuk-loc-label {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-muted);
}
.oeuk-loc-val {
  font-size: 12.5px; color: var(--ink);
  font-weight: 500; line-height: 1.45;
}
.oeuk-listing-footer {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.oeuk-verify-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--blue-600); font-size: 12.5px; font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  background: var(--blue-50); border-radius: 100px;
  border: 1px solid var(--blue-100);
  transition: background .2s;
}
.oeuk-verify-link svg { width: 12px; height: 12px; fill: var(--blue-600); }
.oeuk-verify-link:hover { background: var(--blue-100); }
.oeuk-listing-note {
  font-size: 11.5px; color: var(--text-muted); font-weight: 500;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
#float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 990;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease;
}
#float-wa svg { width: 31px; height: 31px; fill: white; }
#float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 34px rgba(37,211,102,0.6); }
#float-wa .float-wa-tip {
  position: absolute;
  right: 68px;
  background: var(--ink);
  color: white; font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
#float-wa .float-wa-tip::after {
  content: '';
  position: absolute; right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-width: 0; border-left-color: var(--ink);
}
#float-wa:hover .float-wa-tip { opacity: 1; }

/* ==========================================================================
   COMPARE SECTION (Accreditations / Affiliations row)
   ========================================================================== */
.affil-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 22px 0;
}
.affil-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: 14px 28px;
}
.affil-label {
  font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.affil-item {
  display: flex; align-items: center; gap: 8px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 12.5px; font-weight: 700;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.affil-item svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Emergency-bar responsive */
@media (max-width: 768px) {
  #emergency-bar { height: 38px; }
  .emg-label { display: none; }
  .emg-flag { display: none; }
  .emg-divider:first-of-type { display: none; }
  .emg-inner { gap: 12px; justify-content: center; }
  .emg-phone { font-size: 12px; }
  #navbar { top: 38px !important; }
}
@media (max-width: 480px) {
  .emg-inner { gap: 8px; }
  .emg-wa { display: none; }
}

/* OEUK listing card responsive */
@media (max-width: 768px) {
  .oeuk-listing-locations { grid-template-columns: 1fr 1fr; }
  .oeuk-listing-card { padding: 20px; }
}

/* ── NAV LAYOUT FIX ── */
.nav-links { flex-shrink: 1; min-width: 0; }
@media (max-width: 1000px) { .nav-logo img { height: 40px; width: 40px; } }

/* ── NAV OVERFLOW FIX ──
   8 menu items + the phone number + the CTA button need ~1245px inside a 1152px
   bar. The two numbers are already in the emergency strip, the footer and the
   contact block, so the navbar phone is dropped and the hamburger takes over
   at 1150px instead of 900px. ── */
.nav-inner { flex-wrap: nowrap; gap: 14px; }
.nav-links { gap: 0; flex-shrink: 1; min-width: 0; }
.nav-links a { white-space: nowrap; padding: 8px 10px; font-size: 14px; }
.nav-logo { flex-shrink: 0; }
.nav-cta, .nav-inner > .btn { flex-shrink: 0; }
.nav-phone { display: none !important; }
@media (max-width: 1150px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; padding: 14px; border-radius: 14px;
    box-shadow: 0 18px 44px rgba(15,31,56,.16);
    gap: 2px;
  }
  .nav-links.open a { color: #0f1f38; padding: 12px 16px; }
}
@media (max-width: 620px) { .nav-phone { display: none; } }
