/* ===== PARAS PATHOLOGY — DESIGN SYSTEM v3 ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:        #0D2B6B;
  --navy-mid:    #1A3A7A;
  --navy-light:  #2A4A8A;
  --blue:        #2471C8;
  --blue-d:      #1A5BA8;
  --blue-dd:     #0F4A8F;
  --blue-l:      #EBF3FC;
  --blue-ll:     #EDF4FC;
  /* Text */
  --ink:         #111827;
  --ink2:        #1F2937;
  --ink3:        #5A6A7A;
  --ink4:        #94A3B8;
  /* Surfaces */
  --warm:        #F8FAFC;
  --line:        #E2E8F0;
  --line2:       #CBD5E0;
  --white:       #FFFFFF;
  /* Accents */
  --green:       #059669;
  --amber:       #D97706;
  --red:         #DC2626;
  --gold:        #F6AD55;
  /* Legacy compat — inner pages use these */
  --teal:        #2471C8;
  --teal-light:  #1A5BA8;
  --teal-pale:   #EBF3FC;
  --teal-pale2:  #BDD6F5;
  --slate:       #4A5568;
  --muted:       #5A6A7A;
  --border:      #E2E8F0;
  --bg:          #EDF4FC;
  /* Spacing scale */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 72px;
  /* Radius */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   14px;
  /* Shadow */
  --sh-sm:  0 1px 4px rgba(0,0,0,.06);
  --sh-md:  0 4px 16px rgba(13,43,107,.07);
  --sh-lg:  0 8px 28px rgba(13,43,107,.1);
  /* Safe areas */
  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── BASE ── */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px; color: var(--ink); background: #fff;
  line-height: 1.8; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { transition: color .18s; }

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: rgba(255,255,255,.65); font-size: 12px; padding: 7px 0; }
.topbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--sp-lg); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar span { display: flex; align-items: center; gap: 5px; }
.topbar i { color: rgba(255,255,255,.45); font-size: 11px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-badge { background: var(--blue); color: #fff; border-radius: 4px; padding: 2px 9px; font-size: 10.5px; font-weight: 700; letter-spacing: .05em; }
.topbar-divider { width: 1px; height: 12px; background: rgba(255,255,255,.18); display: inline-block; }

/* ── NAV ── */
nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 200; box-shadow: var(--sh-sm); transition: box-shadow .2s; }
nav.scrolled { box-shadow: var(--sh-md); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--sp-lg); display: flex; align-items: center; justify-content: space-between; height: 64px; gap: var(--sp-md); }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.logo-name { font-size: 17px; font-weight: 700; color: var(--navy); display: block; line-height: 1.2; letter-spacing: -.01em; }
.logo-sub { font-size: 10px; color: var(--ink3); margin-top: 1px; letter-spacing: .03em; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a { text-decoration: none; font-size: 13.5px; font-weight: 500; color: var(--ink2); padding: 7px 12px; border-radius: var(--r-sm); white-space: nowrap; transition: color .15s, background .15s; }
.nav-links a:hover { color: var(--blue); background: var(--blue-l); }
.nav-links a.active { color: var(--blue); font-weight: 600; background: var(--blue-l); border-bottom: 2px solid var(--blue); border-radius: var(--r-sm) var(--r-sm) 0 0; }
.nav-book {
  background: var(--navy) !important; color: #fff !important;
  padding: 9px 22px !important; border-radius: var(--r-sm) !important;
  font-weight: 600 !important; font-size: 14px !important;
  margin-left: 8px; min-height: 40px;
  transition: background .18s, transform .1s !important;
}
.nav-book:hover { background: var(--navy-mid) !important; border-bottom: none !important; }
.nav-book:active { transform: scale(.97) !important; }
.nav-search-btn {
  width: 36px; height: 36px; border: 1px solid var(--line); background: var(--warm);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  color: var(--ink3); cursor: pointer; text-decoration: none; flex-shrink: 0;
  transition: border-color .15s, color .15s;
}
.nav-search-btn:hover { border-color: var(--blue); color: var(--blue); }
.nav-lang-btn {
  display: flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 500;
  color: var(--ink2); background: var(--warm); border: 1px solid var(--line2);
  border-radius: var(--r-sm); padding: 6px 10px; cursor: pointer; font-family: inherit;
  transition: border-color .15s;
}
.nav-lang-btn:hover { border-color: var(--blue); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; border-radius: var(--r-sm); background: none; border: none; flex-shrink: 0; }
.hamburger:hover { background: var(--warm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 6px); left: 0; background: white; border: 1px solid var(--line); border-radius: var(--r-md); min-width: 200px; box-shadow: var(--sh-lg); z-index: 300; padding: 6px 0; }
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown:hover > a { color: var(--blue); background: var(--blue-l); }
.has-dropdown::after { content:''; position:absolute; top:100%; left:0; right:0; height:8px; }
.dropdown li { list-style: none; }
.dropdown li a { display: block; padding: 10px 16px; font-size: 13.5px; color: var(--ink2); text-decoration: none; white-space: nowrap; transition: background .12s; }
.dropdown li a:hover { background: var(--blue-l); color: var(--blue); padding-left: 20px; }

/* Mobile drawer */
.nav-drawer { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 199; flex-direction: column; padding: var(--sp-lg) 20px; overflow-y: auto; }
.nav-drawer.open { display: flex; }
.nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.nav-drawer ul li a { display: flex; align-items: center; gap: 12px; padding: 15px 16px; color: rgba(255,255,255,.72); font-size: 16px; font-weight: 500; text-decoration: none; border-radius: var(--r-sm); min-height: 52px; transition: background .15s, color .15s; }
.nav-drawer ul li a:hover, .nav-drawer ul li a.active { background: rgba(255,255,255,.08); color: #fff; }
.nav-drawer ul li a i { width: 20px; text-align: center; color: rgba(255,255,255,.4); font-size: 15px; }
.nav-drawer-cta { margin-top: 18px; background: var(--blue); color: white; padding: 16px; border-radius: var(--r-md); text-align: center; font-size: 15px; font-weight: 600; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; }
.nav-drawer-contact { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-direction: column; gap: 10px; }
.nav-drawer-contact a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.45); font-size: 14px; text-decoration: none; min-height: 44px; }
.nav-drawer-contact i { color: var(--blue); width: 18px; }

/* ── PAGE BANNER ── */
.page-banner { 
  background: linear-gradient(135deg, rgba(7, 26, 75, 0.9) 0%, rgba(13, 34, 95, 0.85) 50%, rgba(7, 26, 75, 0.95) 100%), url('https://images.unsplash.com/photo-1579154204601-01588f351e67?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 80px 20px 60px;
  position: relative; 
  overflow: hidden; 
}
.page-banner::before { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,.015) 79px, rgba(255,255,255,.015) 80px); 
}
.page-banner::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  height: 4px; 
  background: linear-gradient(90deg, var(--blue), var(--teal)); 
}
.page-banner-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.page-banner h1 { font-size: clamp(28px, 4.5vw, 44px); color: white; font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.7); flex-wrap: wrap; background: rgba(255,255,255,0.08); padding: 8px 18px; border-radius: 40px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.breadcrumb a { color: #fff; text-decoration: none; font-weight: 500; transition: color .2s, text-shadow .2s; }
.breadcrumb a:hover { color: var(--blue-l); text-shadow: 0 0 8px rgba(42, 172, 226, 0.6); }
.breadcrumb span { color: rgba(255,255,255,.4); font-size: 11px; }

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── LAYOUT ── */
.section { padding: 64px 20px; }
.section-sm { padding: 48px 20px; }
.section-alt { background: var(--blue-ll); }
.container { max-width: 1240px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-heading { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 10px; letter-spacing: -.025em; }
.section-sub { font-size: 15px; color: var(--ink3); max-width: 580px; line-height: 1.8; margin-bottom: 32px; }

/* ── CARDS ── */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: var(--sp-lg); box-shadow: 0 2px 8px rgba(13,43,107,.05);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card:hover { border-color: var(--blue); box-shadow: 0 10px 32px rgba(13,43,107,.1); transform: translateY(-5px); }

/* ── ICON BOX ── */
.icon-box { width: 52px; height: 52px; background: linear-gradient(135deg,var(--blue-l) 0%,#dbeeff 100%); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 22px; margin-bottom: 16px; transition: background .25s, color .25s, transform .25s; }
.icon-box-sm { width: 38px; height: 38px; background: var(--teal-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 16px; }
.card:hover .icon-box { background: linear-gradient(135deg,var(--navy),var(--blue)); color: #fff; transform: scale(1.08); }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink2); line-height: 1.65; }
.check-dot { width: 22px; height: 22px; background: var(--teal-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 9px; flex-shrink: 0; margin-top: 2px; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--navy); color: #fff; border: none;
  padding: 12px 26px; border-radius: var(--r-sm); font-family: inherit;
  font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px; min-height: 46px;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(13,43,107,.18);
}
.btn-primary:hover { background: var(--navy-mid); box-shadow: 0 6px 20px rgba(13,43,107,.28); transform: translateY(-2px); }
.btn-primary:active { transform: scale(.97); }
.btn-primary:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-secondary {
  background: transparent; color: var(--navy); border: 1.5px solid var(--navy);
  padding: 11px 22px; border-radius: var(--r-sm); font-family: inherit;
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  transition: background .18s, color .18s, transform .1s;
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-secondary:active { transform: scale(.97); }
.btn-secondary:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.btn-blue {
  background: var(--blue); color: #fff; border: none;
  padding: 12px 24px; border-radius: var(--r-sm); font-family: inherit;
  font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  transition: background .18s, transform .1s;
}
.btn-blue:hover { background: var(--blue-d); }
.btn-blue:active { transform: scale(.97); }

/* Legacy button aliases */
.btn-navy { background: var(--navy); color: #fff; border: none; padding: 12px 24px; border-radius: var(--r-sm); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; transition: background .18s, transform .1s; }
.btn-navy:hover { background: var(--navy-mid); }
.btn-navy:active { transform: scale(.97); }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); padding: 11px 22px; border-radius: var(--r-sm); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; transition: background .18s, color .18s, transform .1s; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline:active { transform: scale(.97); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); padding: 11px 22px; border-radius: var(--r-sm); font-family: inherit; font-size: 14px; font-weight: 500; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; min-height: 44px; transition: background .18s, color .18s, transform .1s; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost:active { transform: scale(.97); }

/* ── TRUST BAR ── */
.trustbar { background: var(--blue-ll); border-bottom: 1px solid var(--line); padding: 13px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.trustbar-inner { max-width: 1240px; margin: 0 auto; padding: 0 var(--sp-lg); display: flex; align-items: center; justify-content: space-around; gap: 20px; white-space: nowrap; min-width: max-content; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--blue); font-weight: 500; }
.trust-item i { font-size: 15px; }

/* ── FORM CONTROLS ── */
.form-group { margin-bottom: 20px; position: relative; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .01em; }
.form-ctrl {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: inherit; font-size: 14.5px; color: var(--navy); outline: none;
  background: white; transition: border-color .18s, box-shadow .18s; min-height: 48px;
}
.form-ctrl:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(36,113,200,.1); }
.form-ctrl::placeholder { color: var(--ink4); }
textarea.form-ctrl { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--navy); color: white; border: none;
  border-radius: var(--r-sm); font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; transition: background .18s, transform .1s;
}
.form-submit:hover { background: var(--navy-mid); }
.form-submit:active { transform: scale(.99); }
.form-submit.loading { opacity: .7; pointer-events: none; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg,var(--navy) 0%,#1a3a8a 50%,var(--blue-dd) 100%); padding: 72px 20px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.03); }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -40px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.025); }
.cta-banner h2 { font-size: clamp(22px, 3vw, 32px); color: white; margin-bottom: 14px; font-weight: 700; letter-spacing: -.025em; position: relative; z-index: 1; }
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.8; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── NEWSLETTER ── */
.newsletter-strip { background: linear-gradient(135deg, #0a2055 0%, var(--blue-dd) 100%); padding: 44px 20px; }
.newsletter-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.newsletter-strip h3 { font-size: 20px; color: white; font-weight: 700; margin-bottom: 5px; letter-spacing: -.01em; }
.newsletter-strip p { color: rgba(255,255,255,.6); font-size: 13.5px; }
.newsletter-form { display: flex; gap: 8px; flex-wrap: wrap; min-width: 340px; }
.newsletter-form input { padding: 12px 16px; border: none; border-radius: var(--r-sm); font-size: 14px; font-family: inherit; outline: none; color: var(--ink); flex: 1; min-width: 160px; min-height: 48px; }
.newsletter-form button { background: var(--blue); color: white; border: none; padding: 12px 20px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; min-height: 48px; }
.newsletter-form button:hover { background: var(--blue-d); }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 32px; left: 50%; width: 42px; height: 42px;
  background: var(--navy); color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 16px; z-index: 248; opacity: 0; transform: translate(-50%, 12px);
  transition: opacity .25s, transform .25s, background .18s;
  box-shadow: 0 4px 14px rgba(13,43,107,.25);
}
#backToTop.visible { opacity: 1; transform: translate(-50%, 0); }
#backToTop:hover { background: var(--blue); }

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; padding: 10px 14px calc(10px + var(--safe-bottom)); background: white; border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(0,0,0,.09); gap: 10px; }
.mobile-cta-call { flex: 1; background: var(--navy); color: white; border: none; padding: 14px; border-radius: var(--r-sm); font-size: 15px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 9px; text-decoration: none; min-height: 52px; transition: background .18s; }
.mobile-cta-call:hover { background: var(--navy-mid); }
.mobile-cta-wa { width: 52px; height: 52px; background: #25D366; color: white; border: none; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; text-decoration: none; transition: background .18s; }
.mobile-cta-wa:hover { background: #20B858; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-blue { color: var(--blue); }
.text-muted { color: var(--ink3); }
.font-bold { font-weight: 700; }
.font-semi { font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section { padding: 60px 20px; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-links { display: none !important; }
  .nav-search-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 62px; padding: 0 16px; }
  .nav-drawer { top: 62px; }
  .section { padding: 44px 16px; }
  .section-sm { padding: 40px 16px; }
  .page-banner { padding: 60px 16px; }
  .cta-banner { padding: 52px 16px; }
  footer { padding: 44px 16px calc(88px + var(--safe-bottom)); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .mobile-cta-bar { display: flex; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a, .cta-actions button { width: 100%; max-width: 320px; justify-content: center; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { min-width: 0; width: 100%; }
  .trustbar-inner { justify-content: flex-start; }
  #backToTop { bottom: 100px; left: 50%; transform: translate(-50%, 12px); }
  #backToTop.visible { transform: translate(-50%, 0); }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  .nav-inner { height: 58px; }
  .nav-drawer { top: 58px; }
  .mobile-cta-bar { padding: 10px 12px calc(10px + var(--safe-bottom)); }
  .section { padding: 36px 14px; }
  .section-sm { padding: 32px 14px; }
  .logo-sub { display: none; }
  .page-banner h1 { font-size: clamp(20px, 6vw, 28px); }
}

/* ── ANTIGRAVITY DESIGN ── */
.ag-ambient-bg {
  position: relative;
  overflow: hidden;
}
.ag-ambient-bg::before, .ag-ambient-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}
.ag-ambient-bg::before {
  width: 600px;
  height: 600px;
  background: rgba(42, 172, 226, 0.05); /* very faint teal */
  top: -200px;
  left: -200px;
}
.ag-ambient-bg::after {
  width: 500px;
  height: 500px;
  background: rgba(36, 113, 200, 0.05); /* very faint blue */
  bottom: -100px;
  right: -150px;
}
.ag-glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0,0,0,0.02);
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.ag-glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 100, 200, 0.08), 0 4px 12px rgba(0,0,0,0.03);
  border-color: rgba(42, 172, 226, 0.4);
}
.ag-img-float {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 18px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
}
.ag-img-float:hover {
  transform: translateY(-10px) scale(1.02) rotate(-1deg);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15), 0 12px 30px rgba(0,0,0,0.1);
}
.ag-isometric-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.ag-isometric-card {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ag-isometric-tilt:hover .ag-isometric-card {
  transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
  box-shadow: 20px 30px 50px rgba(0, 0, 0, 0.1);
}
.ag-reveal { opacity: 0; visibility: hidden; } /* Used by GSAP */
.ag-reveal-item { opacity: 0; visibility: hidden; } /* Used by GSAP for lists */

/* Antigravity Feature List */
.ag-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}
.ag-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(0);
}
.ag-feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 1);
}
.ag-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-size: 18px;
  box-shadow: 0 6px 15px rgba(22, 101, 216, 0.25);
  transition: transform 0.3s ease;
}
.ag-feature-item:hover .ag-feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.ag-feature-text {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* ==========================================================================
   Responsive Architecture (Agency UX Foundations)
   ========================================================================== */

/* Large Desktop (Container XL) - Base is desktop first currently */

/* Tablet & Smaller Desktop (1024px max) */
@media (max-width: 1024px) {
  .footer-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .footer-cta-banner .cta-content p {
    margin: 0 auto;
  }
  .agency-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-col.brand-col {
    grid-column: span 2;
    padding-right: 0;
    text-align: center;
  }
  .brand-desc {
    margin: 0 auto 24px;
  }
  .footer-nabh-pill {
    margin: 0 auto;
  }
}

/* Tablet (768px max) */
@media (max-width: 768px) {
  .agency-footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .footer-col.brand-col, 
  .footer-col.link-col, 
  .footer-col.contact-col {
    grid-column: span 1;
  }
  .footer-col h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-item {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .footer-social-modern {
    justify-content: center;
  }
  .footer-areas-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .areas-list {
    justify-content: center;
  }
  .agency-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile (480px max) */
@media (max-width: 480px) {
  .footer-cta-banner .cta-content h2 {
    font-size: 26px;
  }
  .agency-footer {
    padding-bottom: 24px;
  }
}

/* -------------------------------------------------------------------------- */
/* PATIENT REVIEWS SECTION - ANTIGRAVITY UI                                   */
/* -------------------------------------------------------------------------- */
.testi-wrap { max-width: 1500px; margin: 0 auto; position: relative; z-index: 1; }
.minimal-reviews-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(13,43,107,0.05);
}
.minimal-reviews-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.minimal-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.minimal-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 30px;
}
.minimal-score-wrap { margin-bottom: 30px; }
.minimal-score-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.minimal-stars { font-size: 20px; color: #F59E0B; letter-spacing: 2px; }
.minimal-score-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 4px;
}
.minimal-verified { font-size: 13px; font-weight: 700; color: var(--navy); }
.minimal-buttons { display: flex; flex-direction: column; gap: 12px; }
.minimal-btn-outline {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border-radius: 8px; border: 1.5px solid var(--line);
  background: white; color: var(--navy); font-weight: 700; font-size: 14px; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.minimal-btn-outline:hover {
  border-color: #4285F4;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.1);
  transform: translateY(-2px);
}
.minimal-btn-green {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px; border-radius: 8px; border: none;
  background: #25D366; color: white; font-weight: 700; font-size: 14px; text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.minimal-btn-green:hover {
  background: #20BA56;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.minimal-right-col { position: relative; min-width: 0; }
.minimal-quote-bg {
  position: absolute;
  top: -40px; left: 0;
  font-size: 120px; font-family: serif; color: rgba(13,43,107,0.06);
  line-height: 1; z-index: 0;
  animation: float-quote 6s ease-in-out infinite;
}
@keyframes float-quote {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
.minimal-cards-scroll-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.minimal-cards-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, white 40%, white);
  pointer-events: none;
  z-index: 2;
}
.minimal-cards-row {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  padding-bottom: 24px;
  padding-top: 10px;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.minimal-cards-row::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.minimal-tcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 320px; /* Fixed width to force overflow */
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
}
.minimal-tcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(13,43,107,0.06);
}
.minimal-tcard:active {
  cursor: grabbing;
}
.minimal-tcard-stars { color: #F59E0B; font-size: 14px; margin-bottom: 16px; }
.minimal-tcard-text { font-size: 14px; color: var(--ink2); line-height: 1.6; flex-grow: 1; margin-bottom: 24px; }
.minimal-tcard-author { font-size: 13px; }
.minimal-tcard-author strong { color: var(--navy); font-weight: 700; }
.minimal-tcard-author span { color: var(--muted); }

.minimal-trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.trust-badge { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: 13px; font-weight: 600; }
.trust-badge i { font-size: 18px; color: #6b7280; }

@media(max-width: 992px) {
  .minimal-reviews-content { grid-template-columns: 1fr; }
  .minimal-trust-badges { flex-wrap: wrap; gap: 20px; justify-content: center; }
}
@media(max-width: 768px) {
  .minimal-reviews-card { padding: 30px 20px; }
  .minimal-tcard { min-width: 280px; max-width: 280px; }
}
