/* ===== SYNERGY MD CLINIC — Premium Medical Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy:        #0A2647;
  --navy-mid:    #144272;
  --blue:        #2C74B3;
  --blue-light:  #EBF5FF;
  --blue-pale:   #F0F7FF;
  --gold:        #F9A826;
  --gold-dark:   #D4861A;
  --gold-light:  #FFF8E7;
  --teal:        #00B4D8;
  --teal-dark:   #0090AE;
  --teal-light:  #E0F7FB;
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-light:  #F1F5F9;
  --gray-mid:    #CBD5E1;
  --gray:        #64748B;
  --gray-dark:   #334155;
  --text-dark:   #0A2647;
  --text-body:   #334155;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(10,38,71,.08);
  --shadow:      0 4px 24px rgba(10,38,71,.12);
  --shadow-lg:   0 12px 48px rgba(10,38,71,.16);
  --shadow-xl:   0 24px 64px rgba(10,38,71,.2);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text-body); background: var(--white); line-height: 1.75; overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; color: var(--text-dark); line-height: 1.2; font-weight: 700; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 100%; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.animate-fadeInUp { animation: fadeInUp .7s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft .7s ease forwards; }
.animate-fadeInRight { animation: fadeInRight .7s ease forwards; }
.animate-scaleIn { animation: scaleIn .6s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }

[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(-40px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.85); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 700;
  font-size: .95rem; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); font-family: 'Montserrat', sans-serif;
  letter-spacing: .3px; white-space: nowrap; text-transform: uppercase;
  font-size: .85rem;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,168,38,.4); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,38,71,.4); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.btn-outline-white:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-lg { padding: 18px 44px; font-size: .95rem; }

/* ===== SECTION HELPERS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.section-label::before { content: ''; display: block; width: 28px; height: 3px; background: var(--gold); border-radius: 2px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.section-subtitle { font-size: 1.1rem; color: var(--gray); max-width: 600px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-label { display: flex; justify-content: center; }
.section-header .section-subtitle { margin: 0 auto; }
.bg-white   { background: var(--white); }
.bg-off     { background: var(--off-white); }
.bg-navy    { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-pale    { background: var(--blue-pale); }
.bg-light   { background: var(--gray-light); }
.bg-gold    { background: var(--gold-light); }
.text-white { color: #fff !important; }
.text-gold  { color: var(--gold) !important; }

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(90deg, #06152b 0%, var(--navy) 30%, var(--navy-mid) 60%, #0d3d6e 100%);
  background-size: 300% 100%;
  animation: gradient-shift 10s ease infinite;
  color: #fff; overflow: hidden; height: 42px;
  display: flex; align-items: center; position: relative; z-index: 1001;
}
.topbar-marquee {
  display: flex; align-items: center; gap: 48px;
  animation: marquee 35s linear infinite;
  white-space: nowrap; padding-left: 100%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.topbar-marquee span {
  font-size: .78rem; font-weight: 600; padding: 0 24px;
  font-family: 'Montserrat', sans-serif; letter-spacing: .5px;
  display: flex; align-items: center; gap: 8px;
}
.topbar-marquee span::before {
  content: '◆'; color: var(--gold); font-size: .5rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: 16px; position: relative;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(10,38,71,.3);
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.logo-icon::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(249,168,38,.2) 0%, transparent 60%);
}
.logo-icon svg { width: 32px; height: 32px; position: relative; z-index: 1; }
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.3rem; color: var(--navy); letter-spacing: 1px;
  line-height: 1;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: .65rem; color: var(--gray); text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600; font-family: 'Montserrat', sans-serif;
  margin-top: 3px;
}

/* NAV */
.main-nav { display: flex; align-items: center; gap: 2px; flex-shrink: 1; min-width: 0; }
.nav-item { position: relative; flex-shrink: 0; }
.nav-link {
  display: flex; align-items: center; gap: 3px;
  padding: 9px 12px; font-size: .82rem; font-weight: 700;
  color: var(--text-dark); background: none; border: none; cursor: pointer;
  border-radius: 8px; transition: all var(--transition);
  font-family: 'Montserrat', sans-serif; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .3px;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-light); }
.nav-link .arrow { width: 14px; height: 14px; transition: transform var(--transition); flex-shrink: 0; }
.has-mega:hover .arrow { transform: rotate(180deg); }
.nav-portal {
  background: var(--gold); color: var(--navy) !important;
  border-radius: 8px; padding: 9px 14px;
}
.nav-portal:hover { background: var(--gold-dark); color: #fff !important; }

/* MEGA MENU */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
}
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-xl);
  border: 1px solid var(--border); min-width: 760px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  transition-delay: 0s, 0.2s, 0s;
  z-index: 999;
}
.has-mega:hover .mega-menu,
.has-mega.js-open .mega-menu { opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.mega-inner { display: grid; grid-template-columns: 1fr 1fr 1fr 200px; }
.mega-col { padding: 28px 24px; border-right: 1px solid var(--border); }
.mega-col:last-of-type { border-right: none; }
.mega-heading {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 2px; color: var(--navy); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
}
.mega-heading svg { width: 18px; height: 18px; color: var(--gold); }
.mega-col a {
  display: block; padding: 7px 0; font-size: .88rem; color: var(--text-body);
  border-bottom: 1px solid transparent; font-weight: 500;
  transition: all var(--transition);
}
.mega-col a:hover { color: var(--gold); padding-left: 8px; }
.mega-overview { font-weight: 700 !important; color: var(--navy) !important; }
.mega-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 0 16px 16px 0; padding: 28px 20px; display: flex; flex-direction: column; gap: 12px;
}
.mf-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); font-family: 'Montserrat', sans-serif; }
.mega-featured h4 { color: #fff; font-size: 1rem; line-height: 1.3; }
.mega-featured p { color: rgba(255,255,255,.75); font-size: .82rem; line-height: 1.5; }
.mega-featured .btn { margin-top: 4px; }
.mf-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold) !important; font-weight: 700; font-size: .85rem;
}
.mf-phone svg { width: 16px; height: 16px; }

/* HAMBURGER */
.hamburger {
  display: none; background: none; border: 2px solid var(--border); cursor: pointer;
  padding: 8px 10px; border-radius: 8px; transition: all var(--transition); flex-shrink: 0;
}
.hamburger:hover { background: var(--gold-light); border-color: var(--gold); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); margin: 4px 0; border-radius: 2px;
  transition: all var(--transition);
}

/* MOBILE NAV — drops down as overlay from the sticky header */
.mobile-nav {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 16px 48px rgba(10,38,71,.22);
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
  z-index: 999;
}
.mobile-nav.open {
  max-height: 85vh;
  overflow-y: auto;
  padding-bottom: 20px;
}

/* dark backdrop behind the open mobile menu */
.mobile-nav-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(10,38,71,.45); z-index: 998;
  animation: fadeIn .25s ease;
}
.mobile-nav-backdrop.visible { display: block; }

.mobile-nav-item { border-bottom: 1px solid var(--border); margin: 0 20px; }
.mobile-nav-item:last-child { border-bottom: none; margin-bottom: 0; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 15px 0; font-size: .88rem; font-weight: 700;
  color: var(--text-dark); background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px;
}
.mobile-nav-link:hover { color: var(--gold); }
.mob-arrow { font-size: .7rem; color: var(--gray); transition: transform .25s ease; display: inline-block; }
.mobile-dropdown { padding: 4px 0 14px 14px; display: none; border-left: 2px solid var(--gold); margin-left: 4px; }
.mobile-dropdown.open { display: block; }
.mobile-dropdown a {
  display: block; padding: 9px 0; font-size: .875rem; color: var(--gray-dark); font-weight: 500;
  border-bottom: 1px solid var(--gray-light); transition: all .2s;
}
.mobile-dropdown a:last-child { border-bottom: none; }
.mobile-dropdown a:hover { color: var(--gold); padding-left: 6px; }

/* Book Appt CTA at bottom of mobile nav */
.mobile-nav-cta {
  margin: 16px 20px 4px;
  background: var(--gold); color: var(--navy);
  border-radius: 8px; padding: 14px 20px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: .85rem; text-transform: uppercase; letter-spacing: .5px;
  text-align: center; display: block;
}
.mobile-nav-cta:hover { background: var(--gold-dark); color: #fff; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh; background: linear-gradient(135deg, #060e1f 0%, var(--navy) 40%, var(--navy-mid) 70%, #0d3d6e 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding: 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-particle {
  position: absolute; width: 3px; height: 3px; background: var(--gold);
  border-radius: 50%; opacity: 0; animation: particle-float 6s ease-in-out infinite;
}
@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100px) scale(0); }
  20% { opacity: .8; }
  80% { opacity: .3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px; position: relative; z-index: 2;
  padding: 120px 0 80px;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(249,168,38,.15); border: 1px solid rgba(249,168,38,.4);
  padding: 8px 18px; border-radius: 50px; margin-bottom: 28px;
  font-size: .78rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  animation: fadeInUp .8s ease forwards;
}
.hero-badge span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease infinite; display: block; }
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 24px; color: #fff;
  animation: fadeInUp .8s .2s ease both;
}
.hero-title .accent { color: var(--gold); display: block; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.8;
  margin-bottom: 36px; max-width: 520px;
  animation: fadeInUp .8s .4s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px;
  animation: fadeInUp .8s .6s ease both;
}
.hero-stats {
  display: flex; gap: 40px; border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 32px; animation: fadeInUp .8s .8s ease both;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }

/* HERO IMAGE SLIDER */
.hero-visual { position: relative; animation: fadeInRight .8s .3s ease both; }
.hero-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  background: rgba(255,255,255,.08); backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.15);
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  aspect-ratio: 4/3;
}
.hero-slider { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,38,71,.6) 0%, transparent 60%);
}
.hero-slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.5);
  cursor: pointer; transition: all var(--transition); border: none;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-frame-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--gold); color: var(--navy); border-radius: 50%;
  width: 90px; height: 90px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif;
  box-shadow: 0 8px 24px rgba(249,168,38,.5); animation: float 3s ease-in-out infinite;
  font-weight: 900; z-index: 10; text-align: center;
}
.hero-frame-badge strong { font-size: 1.3rem; line-height: 1; }
.hero-frame-badge span { font-size: .55rem; text-transform: uppercase; letter-spacing: 1px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gold); padding: 24px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 48px;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  color: var(--navy); font-size: .87rem; text-transform: uppercase; letter-spacing: .5px;
}
.trust-item svg { width: 24px; height: 24px; color: var(--navy); flex-shrink: 0; }

/* ===== SECTION: 3 CORE SERVICES CARDS ===== */
.services-cards-section { background: var(--off-white); }
.services-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card-main {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
  border: 1px solid var(--border); display: flex; flex-direction: column;
}
.service-card-main:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.sc-img { position: relative; height: 220px; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card-main:hover .sc-img img { transform: scale(1.05); }
.sc-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  padding: 6px 14px; border-radius: 20px;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}
.sc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.sc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--navy);
}
.sc-icon svg { width: 28px; height: 28px; }
.sc-body h3 { font-size: 1.25rem; margin-bottom: 12px; }
.sc-body p { color: var(--gray); font-size: .93rem; line-height: 1.7; flex: 1; }
.sc-footer { display: flex; gap: 12px; margin-top: 24px; }
.sc-list { list-style: none; margin: 12px 0 0; }
.sc-list li {
  padding: 5px 0; font-size: .87rem; color: var(--text-body);
  display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border);
}
.sc-list li:last-child { border-bottom: none; }
.sc-list li::before { content: '✓'; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-accent {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); padding: 24px; border-radius: 20px;
  text-align: center; box-shadow: var(--shadow-lg); min-width: 140px;
}
.about-accent-num { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.about-accent-label { font-size: .78rem; font-weight: 700; color: var(--navy-mid); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.about-content h2 { margin-bottom: 20px; }
.about-content .lead { font-size: 1.1rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 28px; }
.credentials { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.credential-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--blue-pale); border-radius: 12px;
  border-left: 4px solid var(--gold);
}
.credential-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.credential-icon svg { width: 20px; height: 20px; color: var(--gold); }
.credential-text h4 { font-size: .93rem; margin-bottom: 2px; }
.credential-text p { font-size: .83rem; color: var(--gray); }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { color: #fff; }
.stat-number {
  font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 8px; display: block;
}
.stat-label { font-size: .88rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; font-family: 'Montserrat', sans-serif; }
.stat-desc { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 6px; }

/* ===== SERVICES LIST ===== */
.services-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-list-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-list-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.service-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-list-card:hover::before { transform: scaleX(1); }
.slc-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.slc-icon svg { width: 26px; height: 26px; color: var(--gold); }
.slc-num {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900;
  color: var(--gray-light); line-height: 1;
}
.service-list-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-list-card p { font-size: .88rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.service-list-card a { font-size: .85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; font-family: 'Montserrat', sans-serif; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl); }
.why-img img { width: 100%; height: 520px; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex; gap: 20px; padding: 20px; background: var(--blue-pale);
  border-radius: 16px; transition: all var(--transition); border: 1px solid transparent;
}
.why-item:hover { background: var(--navy); border-color: var(--gold); }
.why-item:hover h4, .why-item:hover p { color: #fff !important; }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-item:hover .why-icon { background: var(--gold); }
.why-icon svg { width: 26px; height: 26px; color: var(--gold); }
.why-item:hover .why-icon svg { color: var(--navy); }
.why-text h4 { font-size: 1rem; margin-bottom: 6px; }
.why-text p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ===== HUMAN BODY SECTION ===== */
.body-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: #fff; }
.body-grid { display: grid; grid-template-columns: 1fr 500px 1fr; gap: 40px; align-items: center; }
.body-center { position: relative; }
.body-center img { width: 100%; filter: drop-shadow(0 0 40px rgba(0,180,216,.3)); animation: float 4s ease-in-out infinite; }
.body-points-left, .body-points-right { display: flex; flex-direction: column; gap: 20px; }
.body-point {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 18px; backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.body-point:hover { background: rgba(249,168,38,.15); border-color: var(--gold); }
.body-point h4 { color: var(--gold); font-size: .93rem; margin-bottom: 6px; }
.body-point p { font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.5; }
.body-point-right { text-align: right; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: #fff; border-radius: 20px; padding: 32px; box-shadow: var(--shadow);
  border: 1px solid var(--border); position: relative; transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.testimonial-quote {
  position: absolute; top: 20px; right: 24px;
  font-size: 4rem; color: var(--gold); opacity: .3; line-height: 1;
  font-family: 'Playfair Display', serif;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; color: var(--gray-dark); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; font-weight: 700; font-family: 'Montserrat', sans-serif;
}
.author-name { font-weight: 700; font-size: .92rem; color: var(--text-dark); }
.author-label { font-size: .78rem; color: var(--gray); }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.faq-image { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: sticky; top: 100px; }
.faq-image img { width: 100%; height: 500px; object-fit: cover; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; gap: 16px;
}
.faq-q span { font-family: 'Montserrat', sans-serif; font-size: .93rem; font-weight: 700; color: var(--text-dark); }
.faq-q .faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--gold-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--transition); color: var(--gold); font-size: 1.2rem; font-weight: 700;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: .9rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ===== APPOINTMENT CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0d3d6e 100%);
  background-size: 300% 300%;
  animation: gradient-shift 8s ease infinite;
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(249,168,38,.08) 0%, transparent 60%);
  animation: spin 20s linear infinite;
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-phone {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold); font-size: 1.4rem; font-weight: 800;
  font-family: 'Montserrat', sans-serif; position: relative; z-index: 1;
  margin-top: 20px; justify-content: center;
}
.cta-phone svg { width: 24px; height: 24px; animation: pulse 2s ease infinite; }

/* ===== TELEHEALTH SECTION ===== */
.telehealth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.telehealth-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-xl); }
.telehealth-img img { width: 100%; height: 450px; object-fit: cover; }
.telehealth-features { display: flex; flex-direction: column; gap: 18px; }
.tf-item {
  display: flex; gap: 18px; padding: 18px; border-radius: 14px;
  background: var(--gold-light); border: 1px solid rgba(249,168,38,.2);
  transition: all var(--transition);
}
.tf-item:hover { background: var(--navy); }
.tf-item:hover h4, .tf-item:hover p { color: #fff !important; }
.tf-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.tf-item:hover .tf-icon { background: var(--gold); }
.tf-icon svg { width: 22px; height: 22px; color: var(--gold); }
.tf-item:hover .tf-icon svg { color: var(--navy); }
.tf-text h4 { font-size: .95rem; margin-bottom: 4px; }
.tf-text p { font-size: .85rem; color: var(--gray); }

/* ===== BLOG SECTION ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-img { position: relative; height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--navy); color: var(--gold);
  padding: 5px 12px; border-radius: 4px;
  font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-meta span { font-size: .78rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.blog-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a { color: var(--text-dark); }
.blog-body h3 a:hover { color: var(--gold); }
.blog-body p { font-size: .87rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-read { font-size: .82rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; font-family: 'Montserrat', sans-serif; }

/* ===== INTEGRATED CARE SECTION ===== */
.integrated-section { background: var(--blue-pale); }
.integrated-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.integrated-img img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-xl); }
.integrated-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--gold); transition: all var(--transition);
}
.pillar-item:hover { transform: translateX(8px); box-shadow: var(--shadow); }
.pillar-num {
  font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900;
  color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 40px;
}
.pillar-text h4 { font-size: 1rem; margin-bottom: 6px; }
.pillar-text p { font-size: .87rem; color: var(--gray); }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--gray); margin-bottom: 32px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--blue-pale); border-radius: 14px;
}
.cd-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-icon svg { width: 22px; height: 22px; color: var(--gold); }
.cd-text strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.cd-text span { font-size: .87rem; color: var(--gray); }

/* CONTACT FORM */
.contact-form-wrap {
  background: #fff; padding: 40px; border-radius: 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--border);
  border-radius: 10px; font-size: .95rem; font-family: 'Lato', sans-serif;
  color: var(--text-dark); background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(249,168,38,.1);
}
.form-group textarea { height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #040e1c 0%, var(--navy) 60%, #071828 100%);
  color: rgba(255,255,255,.8); padding: 80px 0 0;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-mid), var(--blue));
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 28px; height: 28px; }
.footer-logo-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; color: #fff; }
.footer-logo-name span { color: var(--gold); }
.footer-logo-tag { font-size: .65rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1.5px; }
.footer-brand p { font-size: .9rem; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); transition: all var(--transition); font-size: 1rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: .8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: .88rem; color: rgba(255,255,255,.65); transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links li a::before { content: '›'; color: var(--gold); font-size: 1.1rem; }
.footer-links li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .87rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.footer-hours { margin-top: 20px; }
.footer-hours h5 { font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 12px; }
.hours-item { display: flex; justify-content: space-between; padding: 6px 0; font-size: .82rem; color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.05); }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-cert {
  display: flex; align-items: center; gap: 12px; margin-top: 24px;
  padding: 16px; background: rgba(249,168,38,.1); border: 1px solid rgba(249,168,38,.2);
  border-radius: 10px;
}
.footer-cert svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
.footer-cert p { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.4; }
.footer-cert strong { color: var(--gold); }

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(249,168,38,.08) 0%, transparent 60%);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 640px; margin: 0 auto 24px; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; z-index: 1; }
.breadcrumb a { font-size: .85rem; color: rgba(255,255,255,.65); }
.breadcrumb span { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.4); }

/* ===== ABOUT PAGE SECTIONS ===== */
.about-mission {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0; text-align: center; color: #fff;
}
.about-mission h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.about-mission p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 720px; margin: 0 auto 40px; line-height: 1.8; }
.mission-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.mp-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  backdrop-filter: blur(10px); transition: all var(--transition);
}
.mp-card:hover { background: rgba(249,168,38,.15); border-color: var(--gold); transform: translateY(-4px); }
.mp-icon {
  width: 64px; height: 64px; border-radius: 16px; background: rgba(249,168,38,.2);
  border: 2px solid var(--gold); margin: 0 auto 20px; display: flex;
  align-items: center; justify-content: center;
}
.mp-icon svg { width: 30px; height: 30px; color: var(--gold); }
.mp-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; }
.mp-card p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.7; }

.timeline { position: relative; padding: 0 0 40px; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gold); transform: translateX(-50%);
}
.timeline-item {
  display: grid; grid-template-columns: 1fr 60px 1fr; align-items: start; gap: 24px; margin-bottom: 48px;
}
.timeline-content {
  background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.timeline-content h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.timeline-content p { font-size: .87rem; color: var(--gray); line-height: 1.6; }
.timeline-dot {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border: 4px solid var(--gold); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 800; font-size: .85rem; font-family: 'Montserrat', sans-serif;
  margin: 0 auto; flex-shrink: 0;
}
.timeline-item:nth-child(even) .timeline-content:first-child { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-content:last-child { grid-column: 1; grid-row: 1; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.team-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); text-align: center; transition: all var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-img { height: 280px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info .role { font-size: .82rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; margin-bottom: 12px; }
.team-info p { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ===== SERVICE PAGES ===== */
.service-content { max-width: 860px; }
.service-content h2 { font-size: 1.8rem; margin: 40px 0 16px; color: var(--navy); }
.service-content h3 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--navy-mid); }
.service-content p { font-size: .97rem; line-height: 1.85; color: var(--text-body); margin-bottom: 16px; }
.keyword { background: var(--gold-light); padding: 2px 6px; border-radius: 4px; font-weight: 700; color: var(--navy); }
.service-content ul, .service-content ol { padding-left: 20px; margin: 12px 0 20px; }
.service-content li { font-size: .95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 8px; }
.service-sidebar {
  position: sticky; top: 100px; background: #fff; border-radius: 20px;
  padding: 32px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.service-sidebar h3 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.service-nav-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-nav-links li a {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-radius: 8px; font-size: .88rem; color: var(--text-body);
  transition: all var(--transition); font-weight: 500;
}
.service-nav-links li a::before { content: '→'; color: var(--gold); }
.service-nav-links li a:hover { background: var(--gold-light); color: var(--navy); padding-left: 18px; }
.service-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.service-sidebar-cta { margin-top: 24px; }

/* ===== BLOG PAGE ===== */
.blog-hero-section { background: var(--off-white); padding: 64px 0; }
.blog-main-grid { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.blog-list { display: flex; flex-direction: column; gap: 40px; }
.blog-full-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border); display: grid; grid-template-columns: 300px 1fr;
  transition: all var(--transition);
}
.blog-full-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.blog-full-img { height: 220px; overflow: hidden; }
.blog-full-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-full-body { padding: 28px; }
.blog-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.sidebar-widget h4 {
  font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold);
  font-family: 'Montserrat', sans-serif;
}
.widget-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 14px; border-radius: 20px; font-size: .78rem; font-weight: 600;
  background: var(--blue-pale); color: var(--navy); transition: all var(--transition);
  cursor: pointer;
}
.tag:hover { background: var(--gold); color: var(--navy); }

/* ===== ADMIN PANEL ===== */
.admin-body { background: var(--off-white); min-height: 100vh; font-family: 'Montserrat', sans-serif; }
.admin-login {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.admin-login-box {
  background: #fff; border-radius: 20px; padding: 48px; width: 420px;
  box-shadow: var(--shadow-xl); text-align: center;
}
.admin-login-box h2 { margin-bottom: 8px; font-size: 1.5rem; }
.admin-login-box p { color: var(--gray); margin-bottom: 32px; font-size: .9rem; }
.admin-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 20px 32px; display: flex; align-items: center; justify-content: space-between;
}
.admin-header h1 { color: #fff; font-size: 1.2rem; }
.admin-panel { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 70px); }
.admin-sidebar-nav { background: #fff; border-right: 1px solid var(--border); padding: 32px 0; }
.admin-nav-link {
  display: flex; align-items: center; gap: 12px; padding: 14px 24px;
  font-size: .9rem; font-weight: 600; color: var(--gray-dark); cursor: pointer;
  transition: all var(--transition); border: none; background: none; width: 100%; text-align: left;
}
.admin-nav-link.active, .admin-nav-link:hover { background: var(--blue-pale); color: var(--navy); border-right: 3px solid var(--gold); }
.admin-nav-link svg { width: 18px; height: 18px; }
.admin-content { padding: 32px; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card {
  background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.admin-stat-card h3 { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.admin-stat-card p { font-size: .82rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.enquiry-table { width: 100%; background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid var(--border); }
.enquiry-table table { width: 100%; border-collapse: collapse; }
.enquiry-table th { background: var(--navy); color: #fff; padding: 16px; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; text-align: left; font-family: 'Montserrat', sans-serif; }
.enquiry-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--text-body); }
.enquiry-table tr:hover td { background: var(--blue-pale); }
.badge-new { background: var(--gold-light); color: var(--gold-dark); padding: 4px 10px; border-radius: 4px; font-size: .75rem; font-weight: 700; }
.badge-read { background: var(--gray-light); color: var(--gray); padding: 4px 10px; border-radius: 4px; font-size: .75rem; font-weight: 700; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.floating-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 50px; font-weight: 700;
  font-size: .85rem; cursor: pointer; border: none;
  box-shadow: var(--shadow-lg); transition: all var(--transition);
  font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px;
}
.floating-btn-phone { background: var(--gold); color: var(--navy); }
.floating-btn-phone:hover { transform: scale(1.05); background: var(--gold-dark); color: #fff; }
.floating-btn-chat { background: var(--navy); color: #fff; }
.floating-btn-chat:hover { transform: scale(1.05); background: var(--navy-mid); }
.floating-btn svg { width: 18px; height: 18px; }

/* ===== RESPONSIVE ===== */
/* ── 1280px: slightly compress nav so Patient Portal fits ── */
@media (max-width: 1280px) {
  .nav-link { padding: 8px 9px; font-size: .79rem; letter-spacing: 0; }
  .main-nav { gap: 1px; }
}

/* ── 1160px: hide "About Us" text-only label, keep icon; compress more ── */
@media (max-width: 1160px) {
  .nav-link { padding: 7px 8px; font-size: .76rem; }
  .logo-name { font-size: 1.15rem; }
}

@media (max-width: 1100px) {
  .mega-menu { min-width: 560px; }
  .mega-inner { grid-template-columns: 1fr 1fr 1fr; }
  .mega-featured { display: none; }
  .hero-inner { gap: 40px; }
  .body-grid { grid-template-columns: 1fr 380px 1fr; gap: 24px; }
}

/* ── 1024px: switch to hamburger (tablets & small laptops) ── */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; flex-direction: column; justify-content: center; }
  .mobile-nav { display: block; }
}

@media (max-width: 900px) {
  section { padding: 64px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; flex-direction: column; justify-content: center; }
  .mobile-nav { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; }
  .hero-content { text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .services-grid-3 { grid-template-columns: 1fr 1fr; }
  .about-grid, .why-grid, .telehealth-grid, .integrated-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main img { height: 320px; }
  .about-accent { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-image { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .services-list-grid { grid-template-columns: 1fr 1fr; }
  .body-grid { grid-template-columns: 1fr; }
  .body-center { display: none; }
  .body-points-left, .body-points-right { }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-full-card { grid-template-columns: 1fr; }
  .blog-full-img { height: 200px; }
  .mission-pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .admin-panel { grid-template-columns: 1fr; }
  .admin-sidebar-nav { display: none; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .header-inner { height: 64px; }
  .logo-tagline { display: none; }
  .trust-bar-inner { gap: 24px; flex-direction: column; align-items: flex-start; padding: 0 16px; }
  section { padding: 48px 0; }
  .hero { padding: 0; }
  .hero-inner { padding: 80px 0 48px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; }
  .body-points-left, .body-points-right { gap: 12px; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: 16px; right: 16px; }
  .hero-badge { font-size: .68rem; }
  .trust-bar { padding: 16px 0; }
}

/* ===== JOURNEY SECTION ===== */
.journey-steps { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; gap: 0; align-items: start; }
.journey-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.journey-step-visual { width: 220px; height: 240px; position: relative; margin-bottom: 24px; }
.journey-3d-scene { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }
.doctor-3d svg { width: 160px; height: auto; filter: drop-shadow(0 12px 32px rgba(0,0,0,.4)); }
.journey-step-content { color: #fff; max-width: 240px; }
.step-num { font-family: 'Montserrat', sans-serif; font-size: 3.5rem; font-weight: 900; color: rgba(249,168,38,.2); line-height: 1; margin-bottom: 8px; }
.journey-step-content h3 { color: #fff; font-size: 1.25rem; margin-bottom: 12px; }
.journey-step-content p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }
.step-features { list-style: none; padding: 0; }
.step-features li { color: rgba(255,255,255,.7); font-size: .85rem; padding: 4px 0; display: flex; align-items: center; gap: 8px; justify-content: center; }
.step-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.journey-connector { display: flex; flex-direction: column; align-items: center; justify-content: center; padding-top: 80px; }
.connector-line { width: 2px; height: 60px; background: linear-gradient(to bottom, transparent, rgba(249,168,38,.6), transparent); }
.connector-arrow { color: var(--gold); font-size: 1.5rem; transform: rotate(90deg); margin-top: -8px; }

/* Heartbeat animation */
.heartbeat-line { position: absolute; bottom: 10px; left: 0; right: 0; height: 40px; }
.heartbeat-anim { stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawLine 2s ease-in-out infinite; }
@keyframes drawLine { 0%{stroke-dashoffset:300} 60%{stroke-dashoffset:0} 100%{stroke-dashoffset:-300} }

/* Floating icons */
.float-icon { position: absolute; font-size: 1.4rem; animation: floatIcon 3s ease-in-out infinite; }
.fi-1 { top: 10px; right: 10px; animation-delay: 0s; }
.fi-2 { bottom: 30px; left: 5px; animation-delay: .8s; }
.fi-3 { top: 50%; right: 0; animation-delay: 1.5s; }
@keyframes floatIcon { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-14px) rotate(10deg)} }

/* Consult animation */
.consult-animation { position: relative; width: 200px; height: 200px; }
.consult-doctor { position: absolute; left: 10px; bottom: 0; }
.consult-doctor svg { width: 80px; }
.consult-patient { position: absolute; right: 10px; bottom: 0; transform: scaleX(-1); }
.consult-patient svg { width: 80px; }
.chat-bubble { position: absolute; }
.cb-doctor { top: 20px; left: 30px; animation: bubblePop .5s ease infinite alternate; }
.cb-doctor svg { width: 70px; }
.cb-patient { top: 50px; right: 20px; animation: bubblePop .5s ease .4s infinite alternate; }
.cb-patient svg { width: 70px; }
@keyframes bubblePop { from{transform:scale(.95)} to{transform:scale(1.05)} }
.trust-badge-3d { position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%); }
.trust-badge-3d svg { width: 50px; animation: spinSlow 8s linear infinite; }
@keyframes spinSlow { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* Happy patient */
.happy-patient svg { width: 160px; filter: drop-shadow(0 12px 32px rgba(0,0,0,.4)); }
.celebration-particle { position: absolute; font-size: 1.5rem; animation: celebrate 2s ease-in-out infinite; }
.cp1 { top: 0; left: 30px; animation-delay: 0s; }
.cp2 { top: 20px; right: 10px; animation-delay: .4s; }
.cp3 { bottom: 40px; left: 10px; animation-delay: .8s; }
.cp4 { bottom: 10px; right: 30px; animation-delay: 1.2s; }
@keyframes celebrate { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-20px) scale(1.3)} }
.milestone-badge { position: absolute; bottom: -10px; right: 0; animation: pulse 2s ease-in-out infinite; }
.milestone-badge svg { width: 64px; }

/* ===== HOSPITAL SECTION ===== */
.hospital-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hospital-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.hf-item { display: flex; gap: 14px; align-items: flex-start; background: var(--off-white); border-radius: var(--radius); padding: 18px; }
.hf-icon { font-size: 1.6rem; flex-shrink: 0; }
.hf-text h4 { color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.hf-text p { color: var(--gray); font-size: .85rem; line-height: 1.5; margin: 0; }
.hospital-3d-frame { position: relative; }
.hospital-building { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.hospital-svg { width: 100%; height: auto; }

/* Ambulance animation */
.ambulance-anim { animation: driveAmbulance 8s linear infinite; }
@keyframes driveAmbulance { 0%{transform:translateX(-120px)} 100%{transform:translateX(500px)} }

/* Patient walking in */
.patient-in-anim { animation: walkIn 10s linear infinite; }
@keyframes walkIn { 0%{transform:translateX(-80px)} 45%{transform:translateX(180px)} 46%,100%{transform:translateX(-80px)} }

/* Patient walking out happy */
.patient-out-anim { animation: walkOut 10s linear 3s infinite; }
@keyframes walkOut { 0%{transform:translateX(0)} 50%{transform:translateX(200px)} 51%,100%{transform:translateX(0)} }

/* Siren flash */
.siren-flash { animation: sirenFlash .4s ease-in-out infinite alternate; }
@keyframes sirenFlash { from{fill:#e53935;opacity:1} to{fill:#2196F3;opacity:.8} }

/* Info cards floating on hospital */
.info-card { position: absolute; background: #fff; border-radius: var(--radius); padding: 12px 16px; box-shadow: var(--shadow-lg); border-left: 3px solid var(--gold); animation: floatCard 3s ease-in-out infinite; }
.ic-patients { bottom: 20px; left: -20px; animation-delay: 0s; }
.ic-rating { top: 40px; right: -20px; animation-delay: .8s; }
.ic-years { top: 40%; left: -30px; animation-delay: 1.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* City page responsive grid */
@media (max-width: 900px) {
  .city-grid { grid-template-columns: 1fr !important; }
  .hospital-section-grid { grid-template-columns: 1fr; gap: 40px; }
  .hospital-features { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; gap: 40px; }
  .journey-connector { display: none; }
  .journey-step { flex-direction: row; gap: 24px; text-align: left; }
  .journey-step-content { max-width: none; }
  .step-features li { justify-content: flex-start; }
  .journey-step-visual { flex-shrink: 0; width: 140px; height: 160px; }
  .doctor-3d svg, .happy-patient svg { width: 110px; }
}
@media (max-width: 600px) {
  .journey-step { flex-direction: column; text-align: center; }
  .step-features li { justify-content: center; }
  .hospital-section-grid { gap: 24px; }
  .hf-item { padding: 12px; }
}

/* SEO Pages index */
.seo-page-link { display: block; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 16px; color: var(--navy); font-size: .85rem; font-weight: 500; transition: all .25s; }
.seo-page-link:hover { background: var(--navy); color: #fff; }

/* Mega menu small variant */
.mega-menu-sm .mega-inner { grid-template-columns: repeat(3, 1fr); }

