/* ==========================================================================
   01. Accessibility
   ========================================================================== */
/* ── Skip Navigation Link ──────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--blue-deep, #2d4a6f);
  color: #fff;
  padding: 10px 20px;
  z-index: 10000;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  top: 0;
}

/* ── Keyboard Focus Styles ─────────────────────────────────────── */
:focus-visible {
  outline: 3px solid #89cff0;
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   02. Theme + Base layout
   ========================================================================== */
:root{
  --blue:#4a6a8f;
  --blue-deep:#2d4a6f;
  --blue-night:#3a5a7f;
  --blue-glow:#89cff0;
  --grey:#dfe4ff;
  --muted:rgba(255,255,255,.95);
  --ink:#ffffff;
  --surface:rgba(45,74,111,.75);
  --surface-strong:rgba(40,65,95,.85);
  --surface-soft:rgba(255,255,255,.08);
  --radius:22px;
  /* JS keeps this in sync with the actual header height */
  --header-height:110px;
  --anchor-offset:calc(var(--header-height, 110px) + 8px);
  --blur-strength:18px;
}
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  /* Prevent “white” overscroll areas on mobile */
  background:linear-gradient(135deg,var(--blue-deep) 0%,var(--blue) 50%,#2a4560 100%);
  background-color:var(--blue-deep);
  min-height:100%;
}
html{
  scroll-padding-top:var(--anchor-offset);
  overflow-y:auto;
  overflow-x:clip;
  background:linear-gradient(135deg,var(--blue-deep) 0%,var(--blue) 50%,#2a4560 100%);
  /* Solid fallback AFTER the shorthand so mobile overscroll never flashes white */
  background-color:var(--blue-deep);
}

/* Keep native momentum scrolling available on touch devices. */
@media (hover:none) and (pointer:coarse){
  html,body{
    overscroll-behavior-y:auto;
    touch-action:pan-y;
    -webkit-overflow-scrolling:touch;
  }
}
body{
  font-family:'Montserrat','Open Sans',ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--ink);
  background:linear-gradient(135deg,var(--blue-deep) 0%,var(--blue) 50%,#2a4560 100%);
  background-color:var(--blue-deep);
  min-height:100vh;
  line-height:1.6;
  overflow-x:visible;
  position:relative;
  display:flex;
  flex-direction:column;
}
.site-main{
  flex:1;
  display:flex;
  flex-direction:column;
  /* Make room for the fixed header */
  padding-top:var(--header-height, 110px);
}
a,button,input,textarea,select{
  cursor:pointer !important;
}
a,p,h1,h2,h3,h4,h5,h6,li,span,address{
  user-select:text;
  -webkit-user-select:text;
  -moz-user-select:text;
  -ms-user-select:text;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  background:radial-gradient(circle at 20% 20%,rgba(137,207,240,.3),transparent 45%),
             radial-gradient(circle at 80% 0%,rgba(167,216,231,.22),transparent 40%);
  pointer-events:none;
  z-index:-1;
}
/* Base gradient layer (prevents iOS “white gap” at page edges) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:linear-gradient(135deg,var(--blue-deep) 0%,var(--blue) 50%,#2a4560 100%);
  pointer-events:none;
  z-index:-2;
}
.container{
  width:min(1180px,92%);
  margin-inline:auto;
}
p,
li{
  color:var(--muted);
  font-family:'Montserrat',sans-serif;
}
h1,h2,h3,h4,h5,h6{
  color:#fff;
  font-family:'Montserrat',sans-serif;
}
strong{
  color:#fff;
}
a{
  color:#e0f2ff;
  font-family:'Montserrat',sans-serif;
}
a:hover{
  color:#ffffff;
}
.hero-cta-btn:hover,
.contact-call-btn:hover,
.mobile-call-fab:hover{
  color:var(--blue-deep);
}
.hero-cta-btn--ghost:hover{
  color:#fff;
}

/* ==========================================================================
   03. Header + Navigation
   ========================================================================== */
/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  z-index:200;
  background:linear-gradient(120deg,rgba(45,74,111,.85),rgba(74,106,143,.35));
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 25px 50px rgba(0,0,0,.45);
  backdrop-filter:blur(var(--blur-strength));
}
.header-inner{
  display:flex;
  align-items:center;
  gap:18px;
  padding:24px 0;
}
.brand{
  font-weight:600;
  font-size:1.4rem;
  letter-spacing:.3px;
  text-decoration:none;
  color:var(--ink);
  background:rgba(255,255,255,.12);
  padding:10px 22px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
}
.brand-logo{
  height:85px;
  width:auto;
  display:block;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  aspect-ratio:1;
  width:85px;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
  text-align:left;
}
.brand-subtitle{
  font-size:.85rem;
  font-weight:700;
  letter-spacing:1.2px;
  opacity:.85;
}
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(255,255,255,.35);
  font-size:28px;
  color:var(--ink);
  cursor:pointer;
  border-radius:12px;
  padding:4px 10px;
}
.site-nav{
  flex:1;
  display:flex;
  justify-content:flex-end;
}
.nav-pill{
  width:100%;
  max-width:620px;
  background:linear-gradient(90deg,rgba(255,255,255,.18),rgba(255,255,255,.05));
  border-radius:16px;
  padding:6px 16px;
  box-shadow:0 20px 40px rgba(2,6,24,.55);
  border:1px solid rgba(255,255,255,.15);
}
.menu{
  list-style:none;
  display:flex;
  gap:0;
  margin:0;
  padding:0;
  width:100%;
  align-items:center;
}
.menu>li{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.menu a,
.menu button.dropdown-toggle{
  color:var(--ink);
  text-decoration:none;
  font-weight:600;
  font-size:1.1rem;
  background:transparent;
  border:0;
  cursor:pointer;
  padding:14px 0;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  letter-spacing:.15px;
  width:100%;
  appearance:none;
}
.menu a:hover,
.menu button.dropdown-toggle:hover{
  color:#fff;
  text-shadow:0 0 12px rgba(255,255,255,.8);
}

/* Dropdown */
.has-dropdown{position:relative;}
.dropdown{
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:280px;
  max-width:calc(100vw - 24px);
  background:linear-gradient(140deg,#3a5a7f,#2d4a6f 65%);
  color:var(--ink);
  border-radius:var(--radius);
  padding:20px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 30px 60px rgba(0,0,0,.55), inset 0 0 25px rgba(58,90,127,.45);
  margin-top:0;
  display:none;
  z-index:1000;
  backdrop-filter:blur(12px);
}
@media (hover:hover){
  .has-dropdown:hover .dropdown{display:block;}
}
.dropdown-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}
.drop-col{
  margin:0;
}
.drop-col h4{
  margin:4px 0 8px;
  font-family:'Montserrat',sans-serif;
  color:var(--ink);
}
.drop-col ul{
  list-style:none;
  margin:0;
  padding:0;
}
.drop-col a{
  color:var(--muted);
  text-decoration:none;
  display:block;
  padding:6px 8px;
  border-radius:8px;
}
.drop-col a:hover{
  background:rgba(255,255,255,.12);
  color:#fff;
}
.drop-col .drop-heading{
  display:block;
  margin:0;
  padding:12px 16px;
  font-family:'Montserrat',sans-serif;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  border-radius:12px;
  transition:background .2s ease;
}
.drop-col .drop-heading:hover{
  color:#fff;
  background:rgba(255,255,255,.12);
  text-decoration:none;
}

/* ==========================================================================
   04. Hero
   ========================================================================== */
/* Hero */
.hero{
  padding:90px 0 40px;
}
.hero-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}
.hero-copy{
  flex:1 1 360px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero-eyebrow{
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:3px;
  margin:0 0 14px;
  color:#e0f2ff;
}
.hero h1{
  font-size:clamp(2.5rem,4.5vw,4.2rem);
  margin:0 0 16px;
  color:#fff;
  line-height:1.1;
  text-shadow:0 10px 35px rgba(0,0,0,.6);
  white-space:nowrap;
}
.hero-lead{
  font-size:1rem;
  max-width:600px;
  line-height:1.5;
  margin:0;
}
.hero-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.hero-cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:14px;
  background:#fff;
  color:var(--blue-deep);
  text-decoration:none;
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  font-size:1rem;
  letter-spacing:.2px;
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  border:1px solid rgba(255,255,255,.35);
  white-space:nowrap;
}
.hero-cta-btn:hover{
  background:#f0f4ff;
  transform:translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.42);
}
.hero-cta-btn--ghost{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:none;
}
.hero-cta-btn--ghost:hover{
  background:rgba(255,255,255,.18);
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,.28);
}
@media (max-width:600px){
  .hero-actions{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }
  .hero-cta-btn{
    width:100%;
  }
}

/* ==========================================================================
   05. CTAs + Disclaimers (service pages)
   ========================================================================== */
/* CTA blocks (service pages) */
.cta-section{
  padding:22px 0 12px;
}
.cta-block{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:26px 24px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 25px 60px rgba(3,6,24,.6);
}
.cta-text{
  flex:1 1 360px;
  min-width:260px;
}
.cta-heading{
  margin:0 0 8px;
  font-size:clamp(1.2rem,2.2vw,1.6rem);
  font-weight:800;
}
.cta-sub{
  margin:0;
  opacity:.88;
  max-width:58ch;
}
.cta-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex:0 0 auto;
  flex-wrap:wrap;
}
@media (max-width:760px){
  .cta-actions{
    width:100%;
    justify-content:stretch;
  }
  .cta-actions .hero-cta-btn{
    width:100%;
  }
}

/* Medical Disclaimer */
.medical-disclaimer{
  padding:10px 0 4px;
}
.medical-disclaimer .container{
  border-top:1px solid rgba(255,255,255,0.15);
  padding-top:1.2rem;
}
.medical-disclaimer__heading{
  margin:0 0 .35rem;
  font-size:1rem;
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  color:#fff;
}
.medical-disclaimer__text{
  margin:0;
  font-size:.9rem;
  opacity:.85;
}
.hero-highlight{
  flex:1 1 260px;
  position:relative;
  min-height:240px;
}
.hero-glow{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 30% 30%,rgba(137,207,240,.65),transparent 60%),
             radial-gradient(circle at 70% 70%,rgba(255,255,255,.25),transparent 65%);
  filter:blur(12px);
  border-radius:30px;
  opacity:.9;
}
.hero-spot{
  position:relative;
  background:var(--surface);
  border-radius:30px;
  padding:40px 30px;
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 40px 80px rgba(0,0,0,.55);
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:1rem;
  text-align:left;
}
.hero-spot span{
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:.75rem;
  color:#e0f2ff;
}
.hero-spot strong{
  font-size:1.2rem;
  color:#fff;
  white-space:nowrap;
}

/* ==========================================================================
   06. Home intro + Service cards
   ========================================================================== */
/* Intro cards */
.immersive-services{
  padding:30px 0 50px;
}
.immersive-services .container{
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 25px 60px rgba(3,6,24,.65);
}
.services-intro{
  text-align:center;
  margin-bottom:24px;
  padding-bottom:20px;
  border-bottom:2px solid rgba(137,207,240,.25);
}
.services-intro__title{
  font-size:1.5rem;
  font-weight:700;
  color:var(--blue-glow);
  margin:0 0 8px 0;
  letter-spacing:1.5px;
  text-transform:uppercase;
}
.services-intro__subtitle{
  font-size:1.05rem;
  font-weight:500;
  color:rgba(255,255,255,.9);
  margin:0;
}
.trust-stats{
  margin-top:16px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}
.trust-stat{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:10px 14px;
  min-width:160px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.trust-stat__value{
  color:#fff;
  font-weight:900;
  letter-spacing:.2px;
}
.trust-stat__label{
  margin-top:2px;
  font-size:.85rem;
  color:rgba(255,255,255,.9);
}
.services-nav-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.service-nav-card{
  background:var(--surface);
  border-radius:14px;
  padding:14px;
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 15px 35px rgba(2,6,24,.5);
}
.service-nav-card__title{
  margin:0;
  font:inherit;
}
.service-nav-card__heading{
  display:block;
  font-size:1.1rem;
  font-weight:700;
  color:#fff;
  text-decoration:none;
  margin-bottom:8px;
  padding-bottom:6px;
  border-bottom:2px solid rgba(137,207,240,.4);
  transition:color .2s ease, border-color .2s ease;
}
.service-nav-card__heading:hover{
  color:var(--blue-glow);
  border-color:var(--blue-glow);
}
.services-page-grid .service-nav-card__heading{
  font-size:1rem;
  white-space:nowrap;
}
.service-nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.service-nav-list li a{
  position:relative;
  display:block;
  padding:8px 14px;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-size:.85rem;
  font-weight:600;
  background:linear-gradient(135deg, rgba(137,207,240,.18) 0%, rgba(255,255,255,.12) 100%);
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 4px 12px rgba(0,0,0,.2),
             inset 0 1px 0 rgba(255,255,255,.15);
  transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow:hidden;
  z-index:1;
}
.service-nav-list li a > *{
  position:relative;
  z-index:2;
}
.service-nav-list li a::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  transition:left .6s ease;
  z-index:1;
  pointer-events:none;
}
.service-nav-list li a::after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(137,207,240,.3) 0%, rgba(255,255,255,.2) 100%);
  opacity:0;
  transition:opacity .3s ease;
  z-index:0;
}
.service-nav-list li a:hover{
  background:linear-gradient(135deg, rgba(137,207,240,.25) 0%, rgba(255,255,255,.18) 100%);
  transform:translateY(-2px) scale(1.02);
  color:#fff;
  border-color:rgba(255,255,255,.4);
  box-shadow:0 8px 24px rgba(0,0,0,.3),
             0 0 20px rgba(137,207,240,.3),
             inset 0 1px 0 rgba(255,255,255,.2);
}
.service-nav-list li a:hover::before{
  left:100%;
}
.service-nav-list li a:hover::after{
  opacity:1;
}
.service-nav-list li a:active{
  transform:translateY(-1px) scale(0.98);
  box-shadow:0 4px 12px rgba(0,0,0,.25),
             inset 0 2px 4px rgba(0,0,0,.15);
}

/* ==========================================================================
   07. Page hero + anchor nav
   ========================================================================== */
/* Page hero */
.page-hero{
  padding:30px 0 10px;
}
.page-hero .container{
  background:var(--surface);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 25px 60px rgba(3,6,24,.65);
}
.page-hero h1{
  color:#fff;
  margin:0 0 16px;
  font-size:2.2rem;
}
.page-hero p{
  margin:8px 0 0;
}
.page-nav{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}
.page-nav-link{
  position:relative;
  display:inline-block;
  padding:12px 24px;
  background:linear-gradient(135deg, rgba(137,207,240,.18) 0%, rgba(255,255,255,.12) 100%);
  color:#fff;
  text-decoration:none;
  border-radius:12px;
  font-size:.95rem;
  font-weight:600;
  transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
  border:1px solid rgba(255,255,255,.25);
  box-shadow:0 4px 12px rgba(0,0,0,.2),
             inset 0 1px 0 rgba(255,255,255,.15);
  overflow:hidden;
  z-index:1;
}
.page-nav-link > *{
  position:relative;
  z-index:2;
}
.page-nav-link::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  transition:left .6s ease;
  z-index:1;
  pointer-events:none;
}
.page-nav-link::after{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:linear-gradient(135deg, rgba(137,207,240,.3) 0%, rgba(255,255,255,.2) 100%);
  opacity:0;
  transition:opacity .3s ease;
  z-index:0;
}
.page-nav-link:hover{
  background:linear-gradient(135deg, rgba(137,207,240,.25) 0%, rgba(255,255,255,.18) 100%);
  transform:translateY(-3px) scale(1.02);
  color:#fff;
  border-color:rgba(255,255,255,.4);
  box-shadow:0 8px 24px rgba(0,0,0,.3),
             0 0 20px rgba(137,207,240,.3),
             inset 0 1px 0 rgba(255,255,255,.2);
}
.page-nav-link:hover::before{
  left:100%;
}
.page-nav-link:hover::after{
  opacity:1;
}
.page-nav-link:active{
  transform:translateY(-1px) scale(0.98);
  box-shadow:0 4px 12px rgba(0,0,0,.25),
             inset 0 2px 4px rgba(0,0,0,.15);
}
@media (max-width:760px){
  .page-nav{
    flex-direction:column;
  }
  .page-nav-link{
    text-align:center;
    padding:14px 24px;
  }
}

/* ==========================================================================
   08. Service pages layout + images
   ========================================================================== */
/* Services layout */
.service-section{
  padding:40px 0;
  scroll-margin-top:var(--anchor-offset);
}
.service-section .container{
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:0 25px 60px rgba(3,6,24,.7);
}
.service-section.alt .container{
  background:rgba(58,90,127,.8);
}
.service-section h2{
  color:#fff;
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:20px;
  text-shadow:0 4px 12px rgba(0,0,0,.4);
  border-bottom:3px solid rgba(137,207,240,.5);
  padding-bottom:12px;
}
.service-section h3{
  color:#fff;
  font-size:1.5rem;
  font-weight:600;
  margin-top:28px;
  margin-bottom:16px;
}
.service-section .subheading{
  display:block;
  font-weight:700;
  font-size:1.15rem;
  color:#fff;
  margin-top:14px;
}
.service-section .subheading.subheading-plain{
  font-weight:400;
}
.subsection{margin:14px 0 18px;}
.bullets{
  padding-left:18px;
  color:var(--muted);
}
.subgrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.card{
  background:var(--surface);
  padding:20px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}

/* Services images */
.svc-img-row{
  display:grid;
  gap:16px;
  align-items:start;
  margin:12px 0 16px;
}
.svc-img-row.one{grid-template-columns:1fr;}
.svc-img-row.two{grid-template-columns:repeat(2,minmax(0,1fr));}
.svc-img-row.three{grid-template-columns:repeat(3,minmax(0,1fr));}

.svc-img-card{
  position:relative;
  padding:12px;
  margin:0;
  background:linear-gradient(135deg, rgba(74,106,143,.32) 0%, rgba(45,74,111,.18) 100%);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  overflow:visible;
}
.svc-img-card img{
  width:100%;
  max-width:100%;
  height:380px;
  object-fit:contain;
  display:block;
  border-radius:14px;
  background:transparent;
  padding:0;
  box-shadow:0 18px 36px rgba(0,0,0,.35);
  transition:transform .2s ease, box-shadow .2s ease;
  cursor:default;
}
.svc-img-card:hover img{
  transform:scale(1.01);
  box-shadow:0 22px 44px rgba(0,0,0,.4);
}
.svc-img-card figcaption{
  margin-top:10px;
  text-align:center;
  font-weight:700;
  color:#fff;
  line-height:1.35;
  position:relative;
  z-index:1;
  background:none;
  padding:0;
  box-shadow:none;
}
.svc-img-card::after{
  content:"ⓘ Product may vary";
  position:absolute;
  right:12px;
  top:12px;
  font-size:.72rem;
  letter-spacing:.3px;
  background:linear-gradient(135deg, rgba(74,106,143,.95) 0%, rgba(45,74,111,.95) 100%);
  color:#fff;
  padding:6px 12px;
  border-radius:6px;
  pointer-events:none;
  box-shadow:0 2px 8px rgba(0,0,0,.3);
  opacity:0;
  transition:all .3s ease;
  z-index:2;
  border:1px solid rgba(255,255,255,.15);
  font-weight:500;
  backdrop-filter:blur(4px);
  white-space:nowrap;
  max-width:140px;
}
.svc-img-card.show-tooltip::after{
  opacity:0.92;
}
.svc-img-card.expand-tooltip::after{
  content:"ⓘ Product may vary.\A Image is for illustration purposes";
  padding:8px 14px;
  white-space:pre-line;
  max-width:200px;
  line-height:1.35;
  text-align:left;
}

.svc-notes{
  margin-top:14px;
  color:var(--muted);
}
.svc-note-inline{
  margin-top:8px;
  color:var(--muted);
}
.section-divider{
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(137,207,240,.4),transparent);
  margin:32px 0;
  border-radius:2px;
}

/* Process Flow Section */
.process-flow-section{
  padding:40px 0;
}
.process-flow-section .container{
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:40px 32px;
  box-shadow:0 25px 60px rgba(3,6,24,.7);
}
.process-flow-title{
  text-align:center;
  color:#fff;
  font-size:2rem;
  margin:0 0 12px;
  font-weight:700;
}
.process-flow-intro{
  text-align:center;
  color:var(--muted);
  max-width:800px;
  margin:0 auto 40px;
  font-size:1.05rem;
  line-height:1.6;
}
.process-flow-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  max-width:1400px;
  margin:0 auto;
}
.process-step:nth-child(7){
  grid-column:2;
}
@media (max-width:1100px){
  .process-flow-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .process-step:nth-child(7){
    grid-column:auto;
  }
}
.process-step{
  position:relative;
  background:rgba(58,90,127,.8);
  border-radius:20px;
  padding:32px 28px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 45px rgba(0,0,0,.5);
  transition:transform .3s ease, box-shadow .3s ease;
}
.process-step:hover{
  transform:translateY(-4px);
  box-shadow:0 25px 55px rgba(0,0,0,.6);
}
.process-number{
  position:absolute;
  top:-16px;
  left:28px;
  width:48px;
  height:48px;
  background:linear-gradient(135deg,#89cff0,#6ab8e0);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  font-weight:800;
  color:#fff;
  box-shadow:0 8px 20px rgba(137,207,240,.4);
  border:3px solid var(--surface-strong);
}
.process-heading{
  margin:16px 0 12px;
  color:#fff;
  font-size:1.2rem;
  font-weight:700;
  line-height:1.3;
}
.process-description{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:.98rem;
}

/* Responsive services */
@media (max-width:980px){
  .svc-img-row.three{grid-template-columns:repeat(2,minmax(0,1fr));}
  .services-nav-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .hero-inner{flex-direction:column;}
  .hero-inner{gap:18px;}
  .hero{padding:34px 0 8px;}
  /* Home page: reduce perceived empty gap to next block */
  .hero-immersive{padding-bottom:0;}
  .hero-immersive + .immersive-services{margin-top:-18px;}
  .process-flow-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:760px){
  .svc-img-row.two,
  .svc-img-row.three{grid-template-columns:1fr;}
  .svc-img-card img{height:280px;}
  .svc-img-card::after{
    right:8px;
    top:8px;
    font-size:.68rem;
  }
  .two-up figure.thumb::after{
    right:8px;
    top:8px;
    font-size:.68rem;
  }
  .services-nav-grid{grid-template-columns:1fr;}
  .services-intro__title{
    font-size:1.2rem;
  }
  .services-intro__subtitle{
    font-size:.95rem;
  }
  .process-flow-section .container{
    padding:32px 20px;
  }
  .process-flow-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .process-flow-title{
    font-size:1.6rem;
  }
  .process-flow-intro{
    font-size:.95rem;
    margin-bottom:32px;
  }
  .process-step{
    padding:28px 24px;
  }
  .nav-toggle{display:block;}
  .site-nav{display:none;width:100%;}
  .site-nav.open{display:block;}
  .nav-pill{
    max-width:none;
    border-radius:16px;
    padding:16px;
    margin-top:6px;
  }
  .menu{
    flex-direction:column;
    width:100%;
  }
  .menu>li{
    width:100%;
    justify-content:flex-start;
  }
  .menu a,
  .menu button.dropdown-toggle{
    justify-content:flex-start;
    padding:12px 6px;
  }
  .has-dropdown .dropdown{
    position:static;
    transform:none;
    width:100%;
    max-width:none;
    box-shadow:none;
    margin-top:10px;
  }
  .dropdown{display:none;}
  .has-dropdown.open .dropdown{display:block;}
  .header-inner{flex-wrap:wrap;}
}

/* Team */
.team-section{
  padding:30px 0 30px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.team-section .container{
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 25px 60px rgba(3,6,24,.65);
}
.team-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.team-card{
  background:rgba(74,106,143,.55);
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius);
  padding:24px 20px;
  text-align:center;
  box-shadow:0 20px 40px rgba(0,0,0,.45);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0;
}
.team-card h2,
.team-card h3{
  font-size:1.1rem;
  margin:28px 0 8px;
  font-family:'Montserrat',sans-serif;
}
.team-photo{
  width:160px;
  height:160px;
  object-fit:cover;
  object-position:center 30%;
  border-radius:50%;
  transform:none;
  flex-shrink:0;
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  border:2px solid rgba(255,255,255,.18);
}
.team-card .title{
  color:var(--muted);
  margin:0;
  font-size:.9rem;
  line-height:1.4;
  font-family:'Montserrat',sans-serif;
}

/* Map */
.map-section{padding:40px 0;}
.map-intro{
  text-align:center;
  margin:0 0 22px;
}
.map-heading{
  margin:0 0 6px;
  font-size:clamp(1.3rem,2.4vw,1.8rem);
  font-weight:800;
}
.map-address{
  margin:0;
  color:var(--muted);
  font-size:1.02rem;
}
.map-block{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 35px 80px rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.15);
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
}
.map-block iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
  filter:hue-rotate(190deg) saturate(.6) invert(.92) contrast(1.05);
  transform:translateZ(0);
  border-radius:inherit;
}
.map-directions{
  margin-top:24px;
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:0 25px 60px rgba(3,6,24,.65);
  border:1px solid rgba(255,255,255,.12);
}
.map-directions__label{
  text-align:center;
  margin:0 0 18px;
  font-weight:600;
  color:#fff;
  font-size:1.05rem;
}
.map-directions__buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}
.direction-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:1rem;
  text-decoration:none;
  transition:all .25s ease;
  box-shadow:0 15px 35px rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.2);
  letter-spacing:.3px;
  background:linear-gradient(135deg,rgba(45,74,111,.95),rgba(40,65,95,.95));
  color:#fff;
}
.direction-btn svg{
  flex-shrink:0;
  transition:transform .25s ease;
}
.direction-btn:hover{
  background:linear-gradient(135deg,rgba(58,90,127,.98),rgba(45,74,111,.98));
  box-shadow:0 20px 45px rgba(0,0,0,.55);
  transform:translateY(-2px);
  color:#fff;
  border-color:rgba(255,255,255,.35);
}
.direction-btn:hover svg{
  transform:scale(1.15);
}
.direction-icon-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
  border:1px solid rgba(255,255,255,.15);
}
.direction-icon-btn:hover{
  background:rgba(255,255,255,.2);
  transform:translateY(-2px);
  box-shadow:0 15px 35px rgba(0,0,0,.45);
  border-color:rgba(255,255,255,.3);
}
.direction-link-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 20px;
  border-radius:12px;
  background:rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  transition:all .2s ease;
  border:1px solid rgba(255,255,255,.15);
  font-weight:600;
  font-size:.95rem;
}
.direction-link-btn svg{
  flex-shrink:0;
}
.direction-link-btn:hover{
  background:rgba(255,255,255,.2);
  transform:translateY(-2px);
  box-shadow:0 15px 35px rgba(0,0,0,.45);
  border-color:rgba(255,255,255,.3);
  color:#fff;
}
@media (max-width:760px){
  .map-directions__buttons{
    flex-direction:column;
    width:100%;
  }
  .direction-btn{
    width:100%;
    justify-content:center;
  }
}

/* ==========================================================================
   10. Footer
   ========================================================================== */
/* Footer */
.site-footer{
  margin-top:60px;
  background:linear-gradient(180deg,rgba(45,74,111,.96),rgba(40,65,95,.9));
  border-top:1px solid rgba(255,255,255,.12);
  box-shadow:0 -20px 40px rgba(0,0,0,.65);
}
/* ── Mobile Floating Call Button ─────────────────────── */
.mobile-call-fab{
  display:none; /* hidden on desktop */
}
@media (max-width:600px){
  .mobile-call-fab{
    display:flex;
    align-items:center;
    gap:10px;
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%) translateY(0);
    background:linear-gradient(135deg,#0b4fd0 0%,#2d4a6f 100%);
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-family:'Montserrat',sans-serif;
    font-weight:700;
    font-size:1rem;
    text-decoration:none;
    box-shadow:0 8px 30px rgba(0,0,0,.45);
    z-index:1000;
    white-space:nowrap;
    border:1px solid rgba(255,255,255,.35);
    opacity:1;
    transition:opacity .3s ease, transform .3s ease;
    will-change:opacity, transform;
  }
  .mobile-call-fab svg{color:#fff;}
  .mobile-call-fab:hover{
    background:linear-gradient(135deg,#0a46b8 0%,#274160 100%);
  }
  /* Hidden state (JS toggles this when the user stops scrolling) */
  .mobile-call-fab.is-hidden{
    opacity:0;
    transform:translateX(-50%) translateY(140%);
    pointer-events:none;
  }
  /* Add bottom padding to page so content isn't hidden behind button */
  .site-main{
    padding-bottom:80px;
  }
}
.footer-grid{
  padding:28px 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:24px;
  align-items:flex-start;
}
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
  transition:color .15s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible{
  color:#fff;
  text-decoration:underline;
}
.footer-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
}
.brand-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
}
.footer-logo-ring{
  width:140px;
  height:140px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 20px 40px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.25);
  overflow:hidden;
}
.footer-logo{
  max-height:130px;
  max-width:130px;
  object-fit:contain;
}
.brand-name{
  font-family:'Montserrat',sans-serif;
  font-size:1.1rem;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin:0 0 12px;
  color:#fff;
  display:block;
  line-height:1.2;
}
.brand-subtitle-footer{
  font-family:'Montserrat',sans-serif;
  font-size:.6rem;
  font-weight:700;
  letter-spacing:2px;
  opacity:.85;
  margin-top:2px;
  display:block;
}
.footer-heading{
  font-family:'Montserrat',sans-serif;
  font-size:1.1rem;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin:0 0 12px;
}
.address{
  font-family:'Montserrat',sans-serif;
  font-style:normal;
}
.address .address-line{
  display:block;
  margin-bottom:4px;
  font-family:'Montserrat',sans-serif;
}
.site-footer a[href^="mailto:"],
.site-footer a[href^="tel:"]{
  color:#fff;
  text-decoration:none;
}
.site-footer a[href^="mailto:"]:hover,
.site-footer a[href^="tel:"]:hover{
  text-decoration:underline;
}
.site-footer .address-link{
  color:#fff;
  text-decoration:none;
  transition:text-decoration .2s ease;
}
.site-footer .address-link:hover{
  text-decoration:underline;
}
.site-footer a[href^="mailto:"]:hover,
.site-footer a[href^="tel:"]:hover{
  text-decoration:underline;
}
.contact-list{
  list-style:none;
  margin:0;
  padding:0;
}
.contact-list li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.socials{
  display:flex;
  gap:10px;
  margin-top:10px;
  justify-content:center;
}
.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:12px;
  background:rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  transition:background .2s ease, transform .2s ease;
}
.social-link:hover{
  background:rgba(255,255,255,.2);
  transform:translateY(-2px);
}
.social-link svg{
  display:block;
}
.copy-email{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.copy-email::after{
  content:attr(data-copy-message);
  position:absolute;
  left:50%;
  bottom:120%;
  transform:translate(-50%,8px);
  background:rgba(0,0,0,.7);
  color:#fff;
  font-size:.75rem;
  padding:4px 8px;
  border-radius:999px;
  opacity:0;
  pointer-events:none;
  transition:opacity .2s ease,transform .2s ease;
  white-space:nowrap;
}
.copy-email[data-copied="true"]::after{
  opacity:1;
  transform:translate(-50%,0);
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.15);
  padding:10px 0;
  text-align:center;
  color:var(--muted);
}
.site-footer small{
  color:var(--muted);
  font-family:'Montserrat',sans-serif;
}
span{
  font-family:'Montserrat',sans-serif;
}
button{
  font-family:'Montserrat',sans-serif;
}
address{
  font-family:'Montserrat',sans-serif;
}

/* Legacy helpers */
.section-hero{
  margin:12px 0 18px;
  border-radius:12px;
  overflow:hidden;
  border:1px solid #e8eaf5;
  box-shadow:0 10px 28px rgba(20,40,90,.05);
}
.section-hero img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
}
.service-section .subsection>.thumb{
  margin:8px 0 12px;
}
.service-section .thumb img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid #e8eaf5;
  box-shadow:0 8px 22px rgba(20,40,90,.05);
}
.card-thumb img{height:160px;}
.service-section h2{
  padding-top:6px;
  border-top:2px solid #f0f2f8;
  margin-top:18px;
}
.service-section h3{margin-top:10px;}

/* ==========================================================================
   09. Carousel
   ========================================================================== */
/* Carousel */
.carousel{
  position:relative;
  border:1px solid #e8eaf5;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(20,40,90,.06);
  margin:10px 0 14px;
  background:#fff;
}
.carousel .slides{
  position:relative;
  width:100%;
  height:280px;
  background:linear-gradient(180deg,#f6f8fc,#eef2f8);
}
.carousel .slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .5s ease;
}
.carousel .slide.is-active{opacity:1;}
.carousel img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.carousel figcaption{
  position:absolute;
  left:10px;
  bottom:10px;
  background:rgba(45,74,111,.85);
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  font-size:.9rem;
}
.carousel .ctrl{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(45,74,111,.85);
  color:#fff;
  border:0;
  width:36px;
  height:36px;
  border-radius:50%;
  cursor:pointer;
}
.carousel .ctrl.prev{left:8px;}
.carousel .ctrl.next{right:8px;}
.carousel .dots{
  position:absolute;
  right:10px;
  bottom:10px;
  display:flex;
  gap:6px;
}
.carousel .dots button{
  width:8px;
  height:8px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.6);
  cursor:pointer;
}
.carousel .dots button.active{background:#fff;}
.carousel .ctrl{display:none !important;}

/* Two-up */
.two-up{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.two-up .thumb img{
  height:220px;
  object-fit:cover;
  border:1px solid #e8eaf5;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,.05);
}
@media (max-width:760px){
  .carousel .slides{height:220px;}
  .two-up{grid-template-columns:1fr;}
}

/* Service modal */
.svc-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:1200;
}
.svc-modal.is-open{display:flex;}
.svc-modal__backdrop{
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,rgba(0,0,0,.9),rgba(5,10,30,.8));
}
.svc-modal__panel{
  position:relative;
  z-index:1;
  max-width:min(92vw,1100px);
  max-height:85vh;
  margin:auto;
  padding:24px 24px 32px;
  background:linear-gradient(180deg,rgba(45,74,111,.96),rgba(40,65,95,.96));
  border-radius:26px;
  box-shadow:0 40px 90px rgba(0,0,0,.65);
  display:flex;
  flex-direction:column;
  gap:18px;
}
.svc-modal__img{
  max-width:100%;
  max-height:65vh;
  border-radius:18px;
  object-fit:contain;
  box-shadow:0 20px 45px rgba(0,0,0,.55);
}
.svc-modal__caption{
  margin:0;
  text-align:center;
  color:var(--muted);
  font-size:1rem;
}
.svc-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:1.2rem;
  cursor:pointer;
  transition:background .2s ease;
}
.svc-modal__close:hover{
  background:rgba(255,255,255,.3);
}
/* Don't lock page scrolling (modal open is disabled in JS) */
body.svc-modal-open{overflow:auto;}

/* Hard safety: always allow desktop scrolling */
@media (hover:hover){
  html,body{overflow-y:auto !important;}
}

/* Carousel loading skeleton */
@keyframes carousel-skel{
  0%{background-position:-200% 0;}
  100%{background-position:200% 0;}
}
.carousel .slide.loading::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.02),rgba(0,0,0,.06),rgba(0,0,0,.02));
  background-size:200% 100%;
  animation:carousel-skel 1.2s infinite;
  pointer-events:none;
}

@media (prefers-reduced-motion: reduce) {
  .carousel .slide{transition:none !important;}
  *{scroll-behavior:auto !important;}
}

/* Legacy two-up captions below */
.two-up figure.thumb{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  position:relative;
  overflow:visible;
}
.two-up figure.thumb img{
  display:block !important;
  width:100% !important;
  height:auto !important;
  border-radius:18px !important;
  box-shadow:0 18px 36px rgba(0,0,0,.35) !important;
  transition:transform .2s ease, box-shadow .2s ease !important;
  cursor:default !important;
}
.two-up figure.thumb:hover img{
  transform:scale(1.01);
  box-shadow:0 22px 44px rgba(0,0,0,.4) !important;
}
.two-up figure.thumb::after{
  content:"ⓘ Product may vary";
  position:absolute;
  right:12px;
  top:12px;
  font-size:.72rem;
  letter-spacing:.3px;
  background:linear-gradient(135deg, rgba(74,106,143,.95) 0%, rgba(45,74,111,.95) 100%);
  color:#fff;
  padding:6px 12px;
  border-radius:6px;
  pointer-events:none;
  box-shadow:0 2px 8px rgba(0,0,0,.3);
  opacity:0;
  transition:all .3s ease;
  z-index:2;
  border:1px solid rgba(255,255,255,.15);
  font-weight:500;
  backdrop-filter:blur(4px);
  white-space:nowrap;
  max-width:140px;
}
.two-up figure.thumb.show-tooltip::after{
  opacity:0.92;
}
.two-up figure.thumb.expand-tooltip::after{
  content:"ⓘ Product may vary.\A Image is for illustration purposes";
  padding:8px 14px;
  white-space:pre-line;
  max-width:200px;
  line-height:1.35;
  text-align:left;
}
.two-up figure.thumb figcaption{
  position:static !important;
  float:none !important;
  display:block !important;
  width:100% !important;
  margin-top:12px !important;
  text-align:center !important;
  font-weight:600;
  line-height:1.35;
  z-index:3 !important;
  background:none !important;
  padding:0 !important;
  box-shadow:none !important;
}

/* Responsive header/nav */
@media (max-width:980px){
  .dropdown{max-width:calc(100vw - 16px);width:280px;}
  .dropdown-grid{grid-template-columns:1fr;}
  .intro-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .team-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .subgrid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:760px){
  .header-inner{
    flex-wrap:wrap;
    gap:10px;
  }
  /* Keep hamburger pinned to far right on mobile */
  .brand{
    flex:0 1 auto;
    min-width:0;
    width:auto;
    max-width:calc(100% - 72px);
  }
  .nav-toggle{
    margin-left:auto;
    flex:0 0 auto;
  }
  .site-nav{flex:0 0 100%;}
  .nav-toggle{display:block;}
  .site-nav{display:none;width:100%;}
  .site-nav.open{display:block;}
  .brand{
    font-size:.9rem;
    padding:6px 10px;
    gap:10px;
    border-radius:14px;
    background:rgba(255,255,255,.10);
    box-shadow:0 8px 18px rgba(0,0,0,.28);
  }
  .brand-logo{
    height:50px;
    width:50px;
  }
  .brand-subtitle{
    font-size:.55rem;
    letter-spacing:.8px;
  }
  .nav-toggle{
    width:52px;
    height:52px;
    display:grid;
    place-items:center;
    font-size:30px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.55);
    background:rgba(255,255,255,.14);
    box-shadow:0 10px 24px rgba(0,0,0,.35);
  }
  .menu{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
    padding:10px 0;
  }
  .has-dropdown .dropdown{
    position:static;
    transform:none;
    width:100%;
    max-width:none;
    box-shadow:none;
    padding:16px;
    display:none;
  }
  .has-dropdown.open .dropdown{display:block;}
  .dropdown-grid{grid-template-columns:1fr;}
  .intro-grid,
  .team-grid,
  .subgrid{grid-template-columns:1fr;}
  .hero{padding:18px 0 6px;}
  .hero-eyebrow{margin:0 0 8px;}
  .hero h1{margin:0 0 12px;}
  .hero h1{
    font-size:clamp(1.8rem,6vw,2.5rem);
    white-space:normal;
  }
  .hero-lead{
    font-size:.95rem;
  }
}

/* Contact Page */
.contact-page-section{
  padding:30px 0 20px;
}
.contact-page-section .container{
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:32px;
  box-shadow:0 25px 60px rgba(3,6,24,.7);
}
.contact-content{
  max-width:900px;
  margin:0 auto;
}
.contact-call-block{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:34px 22px;
  background:var(--surface-strong);
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.15);
  margin-bottom:40px;
  max-width:860px;
  margin-left:auto;
  margin-right:auto;
}
.contact-call-block h2{
  font-size:clamp(1.4rem,3vw,2rem);
  color:#fff;
  margin:0 0 10px;
}
.contact-call-block > p{
  margin:0 0 24px;
  opacity:.85;
  max-width:62ch;
}
.contact-call-label{
  margin:0 0 14px;
  opacity:.9;
  font-weight:700;
  width:100%;
}
.contact-call-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:16px 28px;
  border-radius:14px;
  background:#fff;
  color:var(--blue-deep);
  text-decoration:none;
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  font-size:clamp(1rem,1.6vw,1.15rem);
  box-shadow:0 14px 34px rgba(0,0,0,.35);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  letter-spacing:.2px;
  width:min(440px,100%);
  justify-content:center;
  align-self:center;
}
.contact-call-btn{
  display:flex; /* ensures it behaves like a block row */
  margin:0 auto 44px; /* big open space before email button */
}
.contact-call-btn svg{
  width:22px;
  height:22px;
}
.contact-call-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 45px rgba(0,0,0,.45);
  background:#f0f4ff;
}
.contact-email-line{
  margin:0 auto;
  font-size:.95rem;
  opacity:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  max-width:min(440px,100%);
  line-height:1.3;
  width:100%;
  text-align:center;
}
.contact-email-label{
  opacity:.9;
  font-weight:700;
}
.contact-email-line a{
  color:#89cff0;
  text-decoration:none;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  width:min(440px,100%);
}
.contact-email-line a:hover{
  text-decoration:underline;
}
@media (max-width:600px){
  .contact-call-btn{
    font-size:1rem;
    padding:16px 24px;
    width:100%;
    justify-content:center;
  }
}
.contact-info-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:40px;
  align-items:end;
}
.contact-info-block{
  display:flex;
  flex-direction:column;
  height:100%;
}
.contact-info-block h2{
  color:#fff;
  font-size:1.8rem;
  margin:0 0 16px;
  font-weight:700;
}
.contact-address{
  font-style:normal;
  margin:0 0 auto;
  padding-bottom:16px;
}
.contact-address-link{
  color:#fff;
  text-decoration:none;
  display:block;
  transition:text-decoration .2s ease;
}
.contact-address-link:hover{
  text-decoration:underline;
}
.contact-address-line{
  display:block;
  margin-bottom:4px;
  color:var(--muted);
}
.contact-details-list{
  list-style:none;
  margin:0 0 auto;
  padding:0 0 16px 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.contact-details-list li{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:0;
  font-size:1.05rem;
}
.contact-details-list li:nth-child(2){
  margin-top:16px;
  margin-bottom:16px;
}
.contact-email,
.contact-phone{
  color:#fff;
  text-decoration:none;
  transition:text-decoration .2s ease;
}
.contact-email:hover,
.contact-phone:hover{
  text-decoration:underline;
}
.contact-socials{
  display:flex;
  gap:12px;
  margin-top:0;
}
.contact-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:12px;
  background:rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  transition:background .2s ease, transform .2s ease;
}
.contact-social-link--label{
  width:auto;
  height:auto;
  justify-content:flex-start;
  padding:10px 14px;
  gap:10px;
  border-radius:14px;
  font-size:.95rem;
  font-weight:800;
  letter-spacing:.2px;
}
.contact-social-link--label svg{
  flex:0 0 auto;
}
.contact-social-link:hover{
  background:rgba(255,255,255,.2);
  transform:translateY(-2px);
}
.contact-map-section{
  padding:0 0 30px;
}
.contact-map-section .container{
  max-width:1180px;
}
.contact-map-block{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 35px 80px rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.15);
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
}
.contact-map-block iframe{
  width:100%;
  height:380px;
  border:0;
  display:block;
  filter:hue-rotate(190deg) saturate(.6) invert(.92) contrast(1.05);
  transform:translateZ(0);
  border-radius:inherit;
}
.contact-map-directions{
  background:var(--surface-strong);
  border-radius:var(--radius);
  padding:20px 24px;
  box-shadow:0 25px 60px rgba(3,6,24,.65);
  border:1px solid rgba(255,255,255,.12);
}
.contact-map-directions__label{
  text-align:center;
  margin:0 0 14px;
  font-weight:600;
  color:#fff;
  font-size:1.05rem;
}
.contact-map-directions__buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}
@media (max-width:760px){
  .contact-info-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
  .contact-map-block iframe{
    height:350px;
  }
  .contact-map-directions__buttons{
    gap:12px;
  }
}

/* Mobile polish (phones) */
@media (max-width:760px){
  /* Reduce large vertical gaps on the home hero */
  .hero{padding:18px 0 6px;}
  .immersive-services{padding:6px 0 18px;}
  /* Keep sections in normal flow so overlapping content cannot trap touches. */
  .hero.hero-immersive{padding:12px 0 0 !important;}
  .hero-immersive + .immersive-services{margin-top:0 !important;}
  .hero.hero-immersive{
    padding-top:10px !important;
    padding-bottom:0 !important;
    margin-bottom:0 !important;
  }
  .hero.hero-immersive .hero-inner{gap:12px !important;}
  /* Home hero: drop the static Call-to-Book button on phones. It overlapped
     the "Trusted Clinical Partner" block; the floating call button covers it. */
  .hero-immersive .hero-actions{display:none;}
  .services-intro{
    margin-bottom:16px;
    padding-bottom:14px;
  }

  /* Mobile menu: anchor the panel to the right and prevent odd stretching */
  .site-nav.open{
    display:flex;
    justify-content:flex-end;
  }
  .nav-pill{
    width:min(92vw, 360px);
    margin-left:auto;
    padding:14px;
    background:linear-gradient(180deg,rgba(45,74,111,.92),rgba(40,65,95,.86));
  }
  .menu{
    align-items:stretch;
    gap:4px;
    padding:8px 0;
  }
  .menu>li{
    flex:none;
    align-items:stretch;
  }

  .has-dropdown .dropdown{
    width:100%;
    padding:14px;
    margin-top:8px;
  }

  /* Footer: stack into one column and scale down */
  .footer-grid{
    grid-template-columns:1fr;
    gap:12px;
    padding:16px 0 14px;
  }
  .footer-col{
    width:100%;
    align-items:stretch;
    text-align:left;
    padding:14px;
    border-radius:18px;
    background:transparent;
    border:none;
    box-shadow:none;
    gap:10px;
  }
  .brand-col{
    flex-direction:row;
    align-items:center;
    justify-content:flex-start;
    text-align:left;
    gap:12px;
  }
  .footer-logo-ring{
    width:74px;
    height:74px;
    box-shadow:0 12px 26px rgba(0,0,0,.35);
  }
  .footer-logo{
    max-height:68px;
    max-width:68px;
  }
  .brand-name{
    font-size:1rem;
    letter-spacing:1px;
    margin:0;
  }
  .footer-heading{
    font-size:.95rem;
    letter-spacing:1.4px;
    margin:0 0 6px;
  }
  .site-footer .footer-heading{
    display:inline-block;
    padding-bottom:4px;
    border-bottom:1px solid rgba(255,255,255,.22);
  }
  .address .address-line{
    margin-bottom:2px;
  }
  .contact-list li{
    justify-content:flex-start;
    flex-wrap:nowrap;
    gap:10px;
    align-items:flex-start;
  }
  .contact-list a,
  .address-link{
    overflow-wrap:anywhere;
    word-break:break-word;
  }
  .socials{
    justify-content:flex-start;
    margin-top:6px;
  }
  .footer-bottom{
    padding:12px 0;
  }
  .site-footer small{
    font-size:.85rem;
    line-height:1.35;
    display:inline-block;
  }
}

/* Mobile scroll performance and touch safety */
@media (hover:none) and (pointer:coarse){
  /*
   * Fixed translucent layers and live filters are expensive to composite on
   * older mobile GPUs. The solid gradient keeps the same visual identity
   * without repainting full-screen effects during every scroll frame.
   */
  body::before,
  body::after{
    display:none;
  }
  .site-header,
  .dropdown,
  .svc-img-card::after,
  .two-up figure.thumb::after{
    -webkit-backdrop-filter:none;
    backdrop-filter:none;
  }
  .map-block iframe,
  .contact-map-block iframe{
    filter:none;
    transform:none;
    /*
     * Cross-origin maps capture vertical swipes on some mobile browsers.
     * Direction links remain available for opening the interactive map.
     */
    pointer-events:none;
  }
  .mobile-call-fab{
    will-change:auto;
  }
}

