/* =========================================================
   BEAM-X MEDICAL SERVICES — MAIN STYLESHEET
   ========================================================= */

:root {
  --primary: #083B66;
  --primary-light: #0B4E86;
  --secondary: #0099C8;
  --accent: #00BCD4;
  --bg: #F7FAFC;
  --text: #1B2B34;
  --white: #FFFFFF;
  --muted: #5C7186;
  --border: #E3EBF2;

  --grad-brand: linear-gradient(135deg, #083B66 0%, #0099C8 60%, #00BCD4 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(8,59,102,0.06) 0%, rgba(0,188,212,0.08) 100%);
  --grad-dark: linear-gradient(180deg, #062A4A 0%, #083B66 100%);

  --shadow-sm: 0 4px 16px rgba(8,59,102,0.06);
  --shadow-md: 0 12px 32px rgba(8,59,102,0.10);
  --shadow-lg: 0 24px 60px rgba(8,59,102,0.16);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

p { margin: 0; color: var(--muted); }
a { text-decoration: none; color: inherit; transition: all .3s ease; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--ff-body); }

.container { max-width: 1260px; }

section { position: relative; }

::selection { background: var(--accent); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 10px; }

/* =========================================================
   UTILITIES
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.eyebrow .dot-trail { display:inline-flex; gap:3px; }
.eyebrow .dot-trail span {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  opacity: .55;
}
.eyebrow .dot-trail span:nth-child(2){opacity:.8;}
.eyebrow .dot-trail span:nth-child(3){opacity:1; background:var(--secondary);}

.section-title { font-size: 40px; letter-spacing: -0.5px; }
.section-title span { color: var(--secondary); }
.section-sub {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 640px;
}
.section-head { margin-bottom: 52px; }
.section-head.text-center .section-sub { margin-inline: auto; }

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 80px 0; }
.bg-soft { background: var(--bg); }
.bg-dark { background: var(--grad-dark); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p { color: rgba(255,255,255,.72); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4px;
  background: rgba(0,188,212,.1);
  color: var(--primary);
  border: 1px solid rgba(0,153,200,.18);
}

/* Buttons */
.btn-brand, .btn-outline-brand, .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
}
.btn-brand {
  background: var(--grad-brand);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0,153,200,.32);
}
.btn-brand:hover {
  background-position: 100% 50%;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,153,200,.42);
}
.btn-outline-brand {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn-outline-brand:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--primary);}
.btn-brand i, .btn-outline-brand i, .btn-white i { font-size: 12px; }

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; }
.preloader .scan-ring {
  width: 74px; height: 74px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--accent);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  padding: 10px 0;
  position: relative;
  z-index: 20;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar .tb-left { display:flex; align-items:center; gap:10px; font-weight: 500;}
.top-bar .tb-left i { color: var(--accent); }
.top-bar .tb-right { display:flex; align-items:center; gap:28px; }
.top-bar .tb-right > div { display:flex; align-items:center; gap:8px; }
.top-bar .tb-right i { color: var(--accent); }
.top-bar .tb-right a:hover { color: var(--accent); }
.top-bar .iso-badge {
  display:flex; align-items:center; gap:6px;
  background: rgba(255,255,255,.08);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: .3px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 999;
  padding: 18px 0;
  transition: all .4s ease;
  background: transparent;
}
.site-header.is-transparent { position: absolute; width: 100%; top: 0; left:0; background: transparent; }
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(8,59,102,.08);
  padding: 12px 0;
}
.site-header .logo-img { height: 46px; transition: all .3s ease; }
.site-header.scrolled .logo-img { height: 40px; }

.main-nav { display: flex; align-items: center; gap: 32px !important; }
.main-nav > li > a {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ff-head);
  padding: 8px 0;
  position: relative;
}
.site-header.scrolled .main-nav > li > a { color: var(--primary); }
.main-nav > li > a::after {
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background: var(--grad-brand);
  transition: width .3s ease;
}
.main-nav > li > a:hover::after, .main-nav > li.active > a::after, .main-nav > li.current > a::after { width: 100%; }
.main-nav > li > a:hover { color: var(--accent); }
.site-header.scrolled .main-nav > li > a:hover { color: var(--secondary); }

/* Desktop dropdown */
.main-nav > li { position: relative; }
.main-nav > li.dropdown > a { display:flex; align-items:center; gap:7px; }
.main-nav > li.dropdown > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  transition: transform .3s ease;
}
.main-nav > li.dropdown:hover > a::after { transform: rotate(180deg); }
.main-nav > li > ul {
  position: absolute; top: calc(100% + 18px); left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  z-index: 50;
}
.main-nav > li:hover > ul { opacity:1; visibility:visible; transform: translateY(0); }
.main-nav > li > ul::before {
  content:''; position:absolute; top:-16px; left:0; right:0; height:16px;
}
.main-nav > li > ul li a {
  display:block; padding: 11px 16px; border-radius: 8px;
  font-family: var(--ff-head); font-weight: 500; font-size: 14px;
  color: var(--primary) !important;
}
.main-nav > li > ul li a::after { display:none; }
.main-nav > li > ul li a:hover { background: var(--bg); color: var(--secondary) !important; padding-left: 20px; }

/* Mobile accordion submenu */
.mnav-parent { display:flex; align-items:center; justify-content:space-between; }
.mnav-parent a { flex:1; }
.mnav-caret {
  width: 34px; height:34px; border-radius:50%;
  background: var(--bg); border:none; color: var(--primary);
  display:flex; align-items:center; justify-content:center;
  font-size: 12px; transition: transform .3s ease; flex-shrink:0;
}
.has-children.open .mnav-caret { transform: rotate(180deg); background: var(--secondary); color: var(--white); }
.mnav-sub {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  padding-left: 14px;
}
.has-children.open .mnav-sub { max-height: 400px; }
.mnav-sub li a { border-bottom: 1px dashed var(--border); padding: 12px 0; font-weight: 500; font-size: 14.5px; color: var(--muted); }

.header-cta { display:flex; align-items:center; gap:18px; }
.header-cta .btn-brand { padding: 13px 26px; font-size: 13.5px; }
.mobile-nav-toggle {
  display:none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgb(6 51 83);
  align-items:center; justify-content:center;
  cursor:pointer; color: var(--white); font-size: 18px;
  border: none;
}
.site-header.scrolled .mobile-nav-toggle { background: var(--bg); color: var(--primary); }

/* Mobile Nav */
.mobile-nav-panel {
  position: fixed; top:0; right: -100%;
  width: min(360px, 88%); height: 100%;
  background: var(--white);
  z-index: 1200;
  box-shadow: -20px 0 60px rgba(0,0,0,.2);
  transition: right .45s cubic-bezier(.2,.8,.2,1);
  padding: 34px 30px;
  overflow-y: auto;
}
.mobile-nav-panel.open { right: 0; }
.mobile-nav-panel .close-mnav {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); border:none;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 30px; font-size: 16px; color: var(--primary);
}
.mobile-nav-panel ul li a {
  display:block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-head); font-weight: 600; color: var(--primary);
}
.mnav-overlay {
  position: fixed; inset:0; background: rgba(8,20,35,.55);
  z-index: 1100; opacity:0; visibility:hidden; transition: all .35s ease;
}
.mnav-overlay.show { opacity:1; visibility:visible; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  /*background: var(--grad-dark);*/
  padding: 210px 0 140px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content:'';
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 82% 30%, rgba(0,188,212,.20), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(0,153,200,.16), transparent 40%);
}
.hero-bg-img {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .5;
  -webkit-mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 68%);
  mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 68%);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display:inline-flex; align-items:center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px 18px 8px 8px;
  border-radius: 50px;
  color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  margin-bottom: 28px;
}
.hero-badge .ic {
  width: 26px; height:26px; border-radius:50%;
  background: var(--grad-brand);
  display:flex; align-items:center; justify-content:center;
  font-size: 11px;
}
.hero h1 {
  color: var(--white);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 22px;
}
.hero h1 .accent-word {
  background: linear-gradient(90deg, #4FD8EE, #0099C8);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead-text {
  color: rgba(255,255,255,.78);
  font-size: 17.5px;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-cta { display:flex; gap:18px; flex-wrap: wrap; margin-bottom: 56px;}
.hero-stats { display:flex; gap: 42px; flex-wrap: wrap; }
.hero-stats .hs-item h3 { color: var(--white); font-size: 32px; margin-bottom: 4px; }
.hero-stats .hs-item span { color: rgba(255,255,255,.6); font-size: 13px; font-weight:500; letter-spacing:.3px;}
.hero-stats .hs-item { border-left: 2px solid rgba(255,255,255,.16); padding-left: 18px; }
.hero-stats .hs-item:first-child { border-left: none; padding-left: 0; }

.hero-visual { position: relative; }
.hero-visual .hv-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,.08);
}
.hero-visual .hv-frame img { width: 100%; height: 560px; object-fit: cover; }
.hero-visual .hv-frame svg { width: 100%; height: 560px; display:block; }
.hero-visual .hv-frame::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(6,42,74,0) 40%, rgba(6,42,74,.7) 100%);
  pointer-events: none;
}
.scan-ring-deco {
  position:absolute; top:-60px; right:-60px;
  width: 220px; height:220px;
  border-radius:50%;
  border: 1.5px dashed rgba(0,188,212,.35);
  animation: spin 26s linear infinite;
}
.scan-ring-deco::before {
  content:''; position:absolute; inset: 26px;
  border-radius:50%;
  border: 1.5px dashed rgba(0,188,212,.22);
}
.hero-float-card {
  position:absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:14px;
  animation: floatY 4.5s ease-in-out infinite;
}
.hero-float-card.fc-1 { bottom: -30px; left: -36px; }
.hero-float-card.fc-2 { top: 40px; right: -30px; animation-delay: 1.2s;}
.hero-float-card .fc-icon {
  width: 46px; height:46px; border-radius: 14px;
  background: var(--grad-brand);
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size: 19px; flex-shrink:0;
}
.hero-float-card h4 { font-size: 20px; color: var(--primary); margin-bottom: 2px;}
.hero-float-card span { font-size: 12px; color: var(--muted); font-weight: 500; }
@keyframes floatY { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }

.hero-scroll-cue {
  position:absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.55); display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-cue .line { width:1px; height: 34px; background: linear-gradient(180deg, rgba(255,255,255,.7), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0); transform-origin:top;} 50%{transform:scaleY(1); transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* Marquee client strip below hero */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-strip .ts-label { font-size: 12.5px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color: var(--muted); white-space:nowrap;}
.marquee-track { display:flex; overflow:hidden; }
.marquee-track .mq-inner { display:flex; gap: 70px; animation: mqScroll 26s linear infinite; align-items:center; }
.marquee-track .mq-inner span { font-family: var(--ff-head); font-weight:700; font-size: 19px; color: var(--primary); opacity:.55; white-space:nowrap; }
@keyframes mqScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* =========================================================
   ABOUT
   ========================================================= */
.about-media { position: relative; }
.about-media .am-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-media .am-main img { width:100%; height: 480px; object-fit: cover; }
.about-media .am-main svg { width:100%; height: 480px; display:block; }
.about-media .am-badge {
  position:absolute; bottom: -28px; right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  text-align:center;
  border-top: 4px solid var(--secondary);
}
.about-media .am-badge h3 { font-size: 38px; color: var(--secondary); }
.about-media .am-badge span { font-size: 12.5px; color: var(--muted); font-weight:600; letter-spacing:.4px; }

.about-list { margin-top: 26px; }
.about-list li { display:flex; gap:14px; padding: 12px 0; align-items:flex-start;}
.about-list li i {
  width: 26px; height:26px; border-radius:50%;
  background: rgba(0,153,200,.12); color: var(--secondary);
  display:flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0; margin-top:3px;
}
.about-list li p { color: var(--text); font-size: 15px; }

.policy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border: 1px solid var(--border);
  height: 100%;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.policy-card::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin:left;
  transition: transform .4s ease;
}
.policy-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent;}
.policy-card:hover::before { transform: scaleX(1); }
.policy-card .pc-icon {
  width: 56px; height:56px; border-radius: 16px;
  background: var(--grad-brand-soft);
  display:flex; align-items:center; justify-content:center;
  color: var(--secondary); font-size: 22px; margin-bottom: 22px;
}
.policy-card h4 { font-size: 20px; margin-bottom: 12px; }
.policy-card p { font-size: 14.5px; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all .35s ease;
  border: 1px solid transparent;
}
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: rgba(0,153,200,.18); }
.why-card .wc-icon {
  width: 68px; height:68px; border-radius: 20px;
  background: var(--grad-brand);
  display:flex; align-items:center; justify-content:center;
  color: var(--white); font-size: 26px; margin: 0 auto 22px;
  box-shadow: 0 12px 26px rgba(0,153,200,.28);
}
.why-card h4 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; }

/* =========================================================
   SERVICES
   ========================================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card .sc-img {
  position: relative; height: 150px; overflow:hidden;
  background: var(--grad-brand-soft);
  display:flex; align-items:center; justify-content:center;
}
.service-card .sc-img .sc-icon-big {
  width: 74px; height:74px; border-radius: 20px;
  background: var(--grad-brand);
  color: var(--white); font-size: 30px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 14px 28px rgba(0,153,200,.28);
  transition: transform .4s ease;
}
.service-card:hover .sc-img .sc-icon-big { transform: scale(1.1) rotate(-6deg); }
.service-card .sc-num {
  position:absolute; top:16px; left:16px;
  background: rgba(8,59,102,.1);
  color: var(--primary); font-family: var(--ff-head); font-weight:700; font-size:12.5px;
  padding: 5px 12px; border-radius: 50px;
}
.service-card .sc-body { padding: 26px 24px 28px; }
.service-card h4 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 18px; }
.service-card .sc-link { font-family: var(--ff-head); font-weight:600; font-size:13.5px; color: var(--secondary); display:inline-flex; align-items:center; gap:8px;}
.service-card .sc-link i { font-size: 11px; transition: transform .3s ease; }
.service-card .sc-link:hover i { transform: translateX(5px); }

/* =========================================================
   STATS COUNTER
   ========================================================= */
.stats-section { background: var(--grad-dark); position: relative; overflow:hidden; }
.stats-section::before{
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 90% 10%, rgba(0,188,212,.16), transparent 45%);
}
.stat-item { text-align:center; position:relative; z-index:1; }
.stat-item .stat-num {
  font-family: var(--ff-head); font-weight:700; color: var(--white);
  font-size: 46px; display:flex; align-items:center; justify-content:center; gap:2px;
}
.stat-item .stat-num .suffix { font-size: 30px; color: var(--accent); }
.stat-item .stat-label { color: rgba(255,255,255,.62); font-size: 13.5px; font-weight:500; margin-top: 8px; letter-spacing:.3px;}
.stat-divider { width:1px; background: rgba(255,255,255,.14); }

/* =========================================================
   LEADERSHIP
   ========================================================= */
.leader-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all .35s ease;
  border: 1px solid var(--border);
  position: relative;
}
.leader-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.leader-card .lc-top { display:flex; align-items:center; gap:20px; margin-bottom: 22px; }
.leader-card .lc-avatar {
  width: 76px; height:76px; border-radius: 50%;
  background: var(--grad-brand);
  color: var(--white); font-family: var(--ff-head); font-weight:700; font-size: 24px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  box-shadow: 0 10px 24px rgba(0,153,200,.3);
}
.leader-card h4 { font-size: 21px; margin-bottom:4px; }
.leader-card .lc-role { color: var(--secondary); font-weight:600; font-size:13px; letter-spacing:.5px; text-transform:uppercase; }
.leader-card p.lc-desc { font-size: 14.5px; margin-bottom: 22px; }
.lc-meta { display:flex; gap: 26px; padding-top: 20px; border-top: 1px solid var(--border); }
.lc-meta div span { display:block; font-size: 11.5px; color: var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:.4px;}
.lc-meta div strong { font-family: var(--ff-head); color: var(--primary); font-size: 17px; }

/* =========================================================
   COVERAGE
   ========================================================= */
.coverage-list li {
  display:flex; align-items:center; gap:16px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.coverage-list li:hover { border-color: var(--secondary); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.coverage-list li .cl-dot {
  width: 12px; height:12px; border-radius:50%;
  background: var(--grad-brand); flex-shrink:0;
  box-shadow: 0 0 0 5px rgba(0,153,200,.14);
}
.coverage-list li strong { font-family: var(--ff-head); color: var(--primary); font-weight:600; font-size:15.5px; }

.coverage-map-wrap { position: relative; display:flex; align-items:center; justify-content:center; }
.coverage-map-wrap svg { width: 100%; max-width: 420px; height:auto; }
.map-region { fill: #D9E4EC; stroke: var(--white); stroke-width: 1.2; transition: fill .3s ease; }
.map-region.active { fill: url(#mapGrad); }
.map-pulse {
  fill: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1; r:5;} 50%{opacity:.5; r:8;} }

/* =========================================================
   CAPABILITIES
   ========================================================= */
.cap-item {
  display:flex; gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border);
  height:100%;
  transition: all .3s ease;
}
.cap-item:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); transform: translateY(-4px);}
.cap-item .cap-num {
  font-family: var(--ff-head); font-weight:700; font-size: 26px;
  color: rgba(0,153,200,.28);
  flex-shrink:0; width: 44px;
}
.cap-item h4 { font-size: 16.5px; margin-bottom: 8px; }
.cap-item p { font-size: 13.5px; }

/* =========================================================
   EQUIPMENT PORTFOLIO
   ========================================================= */
.equip-card {
  position: relative; border-radius: var(--radius-md); overflow:hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
  background: var(--grad-dark);
  display:flex; flex-direction:column; justify-content:flex-end; padding: 26px 24px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.equip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.equip-card .eq-icon {
  width: 58px; height:58px; border-radius:16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  display:flex; align-items:center; justify-content:center;
  color: var(--accent); font-size:24px; margin-bottom: auto;
}
.equip-card .eq-overlay {
  position:absolute; inset:0;
  background: radial-gradient(circle at 85% 15%, rgba(0,188,212,.24), transparent 55%);
  pointer-events: none;
}
.equip-card h4 { color: var(--white); font-size: 19px; margin-bottom: 4px; position:relative; z-index:1;}
.equip-card span { color: rgba(255,255,255,.65); font-size: 12.5px; font-weight:500; position:relative; z-index:1;}

/* =========================================================
   PERFORMANCE
   ========================================================= */
.perf-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  border: 1px solid var(--border);
  height: 100%;
}
.perf-card .perf-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom: 18px;}
.perf-card h4 { font-size: 17px; }
.perf-card .perf-tag { font-size: 11.5px; color: var(--muted); }
.perf-card .perf-value { font-family: var(--ff-head); font-size: 30px; color: var(--secondary); font-weight:700; }
.perf-card canvas { width: 100% !important; height: 150px !important; }

/* =========================================================
   INSTALL BASE
   ========================================================= */
.ib-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.ib-card .ib-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.ib-card h4 { font-size: 18px; }
.ib-badge { font-size: 11.5px; font-weight:700; padding: 5px 12px; border-radius:50px; background: rgba(0,188,212,.12); color: var(--secondary); }
.ib-metric-row { display:flex; justify-content:space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px;}
.ib-metric-row:last-child { border-bottom:none; }
.ib-metric-row span:first-child { color: var(--muted); }
.ib-metric-row span:last-child { font-family: var(--ff-head); font-weight:700; color: var(--primary); }
.ccr-bar-track { height: 8px; border-radius:6px; background: var(--bg); overflow:hidden; margin-top: 6px;}
.ccr-bar-fill { height:100%; border-radius:6px; background: var(--grad-brand); }

/* =========================================================
   CLIENTS
   ========================================================= */
.clients-strip { background: var(--white); }
.client-logo-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 28px 18px;
  display:flex; align-items:center; justify-content:center;
  height: 110px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}
.client-logo-card:hover { border-color: var(--secondary); background: var(--white); box-shadow: var(--shadow-sm); }
.client-logo-card span { font-family: var(--ff-head); font-weight:700; font-size: 17px; color: var(--primary); text-align:center; opacity:.75; }

/* =========================================================
   WHY BEAM-X SPLIT
   ========================================================= */
.split-media { position:relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); height: 500px; width:100%; object-fit:cover; }
.split-media svg { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); height: 500px; width:100%; display:block; }
.split-stat-card {
  position:absolute; bottom: -26px; left: -26px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:14px;
}
.split-stat-card .ssc-icon { width:48px; height:48px; border-radius:14px; background:var(--grad-brand); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:20px;}
.split-stat-card h4 { font-size:22px; margin-bottom:2px; }
.split-stat-card span { font-size:12px; color:var(--muted); font-weight:600;}

/* =========================================================
   PROCESS
   ========================================================= */
.process-track { position: relative; }
.process-track::before {
  content:''; position:absolute; top: 34px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
}
.process-step { text-align:center; position:relative; }
.process-step .ps-circle {
  width: 68px; height:68px; border-radius:50%;
  background: var(--white); border: 2px solid var(--secondary);
  color: var(--secondary);
  display:flex; align-items:center; justify-content:center;
  font-size: 24px; margin: 0 auto 20px; position:relative; z-index:2;
  transition: all .35s ease;
}
.process-step:hover .ps-circle { background: var(--grad-brand); color: var(--white); border-color:transparent; transform: scale(1.08); }
.process-step h4 { font-size: 15.5px; margin-bottom:6px; }
.process-step p { font-size: 12.5px; }
.process-step .ps-idx { position:absolute; top:-6px; right: calc(50% - 46px); font-family:var(--ff-head); font-weight:700; font-size:12px; color: var(--muted); }

/* =========================================================
   CTA
   ========================================================= */
.cta-band {
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; top:-80px; right:-80px; width:280px; height:280px;
  border-radius:50%; border: 1.5px dashed rgba(255,255,255,.3);
}
.cta-band h2 { color: var(--white); font-size: 34px; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 15.5px; max-width: 480px; }
.cta-band .cta-actions { display:flex; gap:16px; flex-wrap:wrap; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 26px; border: 1px solid var(--border);
  display:flex; gap: 18px; align-items:flex-start; margin-bottom: 18px;
  transition: all .3s ease;
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); border-color: var(--secondary); }
.contact-info-card .ci-icon {
  width: 50px; height:50px; border-radius:14px; background: var(--grad-brand-soft);
  color: var(--secondary); display:flex; align-items:center; justify-content:center; font-size:19px; flex-shrink:0;
}
.contact-info-card h5 { font-size: 15.5px; margin-bottom:6px; color:var(--primary); }
.contact-info-card p { font-size: 14px; }
.contact-info-card a { color: var(--muted); }
.contact-info-card a:hover { color: var(--secondary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-control-brand {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 18px;
  transition: all .3s ease;
}
.form-control-brand:focus { outline:none; border-color: var(--secondary); background:var(--white); box-shadow: 0 0 0 4px rgba(0,153,200,.1); }
textarea.form-control-brand { resize: vertical; min-height: 130px; }

.map-embed { border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); height: 100%; min-height: 420px; }
.map-embed iframe { width:100%; height:100%; min-height:420px; border:0; filter: grayscale(.15); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--grad-dark); color: rgba(255,255,255,.65); position:relative; overflow:hidden;}
.site-footer::before {
  content:''; position:absolute; top:-120px; left:-120px; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, rgba(0,188,212,.12), transparent 70%);
}
.footer-top { padding: 90px 0 60px; position:relative; z-index:1;}
.footer-about p { color: rgba(255,255,255,.6); font-size: 14.5px; margin: 22px 0 26px; max-width: 320px;}
.footer-logo img { height: 42px; }
.footer-social { display:flex; gap:12px; }
.footer-social a {
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  color: var(--white); font-size: 14px;
}
.footer-social a:hover { background: var(--secondary); transform: translateY(-4px); }
.footer-col h5 { color: var(--white); font-size: 16.5px; margin-bottom: 26px; position:relative; padding-bottom:14px;}
.footer-col h5::after { content:''; position:absolute; left:0; bottom:0; width:34px; height:2px; background: var(--grad-brand); }
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a { color: rgba(255,255,255,.62); font-size: 14.5px; display:flex; align-items:center; gap:8px;}
.footer-col ul li a i { font-size: 10px; color: var(--accent); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li { display:flex; gap:12px; margin-bottom:18px; align-items:flex-start; font-size:14px; color: rgba(255,255,255,.62);}
.footer-contact li i { color: var(--accent); margin-top:4px; }
.newsletter-box { display:flex; margin-top:6px; border-radius:50px; overflow:hidden; background: rgba(255,255,255,.08); padding: 5px; }
.newsletter-box input { flex:1; background:transparent; border:none; padding: 10px 16px; color:var(--white); font-size:13.5px; }
.newsletter-box input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-box input:focus { outline:none; }
.newsletter-box button { border:none; background: var(--grad-brand); color:var(--white); width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; position:relative; z-index:1;}
.footer-bottom p { color: rgba(255,255,255,.55); font-size: 13.5px; }
.footer-bottom .fb-links { display:flex; gap: 24px; }
.footer-bottom .fb-links a { color: rgba(255,255,255,.55); font-size:13.5px; }
.footer-bottom .fb-links a:hover { color: var(--white); }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 500;
  width: 48px; height:48px; border-radius:50%;
  background: var(--grad-brand); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  opacity:0; visibility:hidden; transform: translateY(14px);
  transition: all .35s ease; border:none; cursor:pointer;
}
.back-to-top.show { opacity:1; visibility:visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-5px); }

/* Floating WhatsApp/Call button */
.float-actions { position: fixed; bottom: 30px; left: 30px; z-index: 500; display:flex; flex-direction:column; gap:12px; }
.float-actions a {
  width: 52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--white); font-size:20px; box-shadow: var(--shadow-md);
}
.fa-call-btn { background: var(--grad-brand); animation: ringPulse 2.2s ease-in-out infinite; }
@keyframes ringPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(0,153,200,.45);} 50%{ box-shadow: 0 0 0 12px rgba(0,153,200,0);} }
/* Oral Screening Active */
.main-nav li.oral-active > a{
    background:#0b4e86 !important;
    color:#fff !important;
    padding:12px 18px !important;
    border-radius:4px;
    display:flex;
    align-items:center;
    gap:8px;
}

.main-nav li.oral-active > a::after{
    display:none !important;
}

.main-nav li.oral-active > a:hover{
    background:#083b66 !important;
    color:#fff !important;
}

.main-nav li.oral-active span{
    background:#2ca8e2;
    color:#fff;
    font-size:11px;
    font-weight:600;
    padding:2px 8px;
    border-radius:20px;
    line-height:1.4;
}
.main-nav{
    display:flex;
    align-items:center;
    gap:32px;          /* menu spacing */
}

.menu-highlight > a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:10px 18px;
    min-height:52px;

    background:#005b73;
    color:#fff !important;
    border-radius:4px;

    white-space:nowrap;
}

.new-badge{
    background:#2ca7e3;
    color:#fff;
    font-size:11px;
    padding:3px 8px;
    border-radius:20px;
    line-height:1;
}

