<style>
/* ============================================================
   CSS VARIABLES & RESET
============================================================ */
:root {
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --teal:       #0B6E6E;
  --teal-light: #0E8A8A;
  --gold:       #C9A84C;
  --gold-light: #E2C472;
  --gold-pale:  #FBF5E6;
  --white:      #FFFFFF;
  --off-white:  #F4F7F9;
  --gray-100:   #EAF0F4;
  --gray-200:   #D8E3EA;
  --gray-400:   #8A9BB0;
  --gray-600:   #4A5568;
  --text-dark:  #1A2535;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:  0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:  0 20px 60px rgba(10,22,40,0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ============================================================
   TOP ANNOUNCEMENT BAR
============================================================ */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px; font-weight: 500;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.top-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 44px;
}
.marquee-wrap { flex: 1; overflow: hidden; margin-right: 24px; color: var(--gold-light); }
.top-bar-actions { display: flex; gap: 8px; flex-shrink: 0; }
.top-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 4px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  transition: var(--transition); border: 1px solid transparent; cursor: pointer;
}
.top-btn.emergency { background: #C0392B; color: var(--white); border-color: #E74C3C; animation: pulse-red 2s infinite; }
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(192,57,43,0); }
}
.top-btn.appointment { background: var(--gold); color: var(--navy); border-color: var(--gold-light); }
.top-btn.locate { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.25); }
.top-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ============================================================
   STICKY HEADER / DESKTOP NAV
============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,22,40,0.10);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo img { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }

.nav-item { position: relative; padding-bottom: 12px; margin-bottom: -12px; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; font-size: 13.5px; font-weight: 600;
  color: var(--navy); letter-spacing: 0.02em;
  border-radius: var(--radius-sm); transition: var(--transition);
  white-space: nowrap; cursor: pointer; user-select: none;
}
.nav-link:hover,
.nav-item.active > .nav-link { color: var(--teal); background: rgba(11,110,110,0.06); }
.nav-link .arrow { font-size: 10px; opacity: 0.6; transition: transform 0.25s ease; }
.nav-item:hover > .nav-link .arrow { transform: rotate(180deg); opacity: 1; }

.dropdown-menu {
  position: absolute; top: calc(100% - 12px); left: 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; max-height: 420px; overflow-y: auto;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: var(--transition);
  z-index: 1100; pointer-events: none;
}
.nav-item:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-menu li a {
  display: block; padding: 8px 14px; font-size: 13px; font-weight: 500;
  color: var(--gray-600); border-radius: var(--radius-sm); transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--gray-100); color: var(--teal); }
.dropdown-menu li a.active-fac { background: var(--gray-100); color: var(--teal); font-weight: 700; padding-left: 18px; }

.megamenu-wrap {
  position: absolute; top: calc(100% - 12px); left: -240px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4,1fr);
  width: min(900px, 96vw); padding: 20px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: var(--transition); z-index: 1100; pointer-events: none;
}
.nav-item:hover > .megamenu-wrap { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega-col { padding: 0 10px; }
.mega-col:not(:last-child) { border-right: 1px solid var(--gray-100); }
.mega-col h6 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--gray-100);
}
.mega-col a {
  display: block; padding: 5px 8px; font-size: 12.5px; font-weight: 500;
  color: var(--gray-600); border-radius: var(--radius-sm); transition: var(--transition);
}
.mega-col a:hover { background: var(--gray-100); color: var(--teal); padding-left: 12px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); cursor: pointer; padding: 6px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE NAV
============================================================ */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,22,40,0.55); z-index: 1199;
  backdrop-filter: blur(2px); opacity: 0; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-visible { opacity: 1; }
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100%;
  background: var(--white); z-index: 1200;
  overflow: hidden;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(10,22,40,0.2);
  display: flex; flex-direction: column;
}
.mobile-nav.is-open { right: 0; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: var(--navy); flex-shrink: 0; min-height: 68px;
}
.mobile-nav-header img { height: 44px; width: auto; object-fit: contain; }
.mobile-nav-close {
  width: 34px; height: 34px; background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%; cursor: pointer; color: white;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.2); }
.mobile-nav-body {
  flex: 1; padding: 12px 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch; min-height: 0;
}
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; font-size: 14px; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--gray-100); cursor: pointer; transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--gray-100); color: var(--teal); }
.mobile-nav-link .mob-arrow { font-size: 11px; color: var(--gray-400); transition: transform 0.25s ease; }
.mobile-nav-link.is-expanded .mob-arrow { transform: rotate(90deg); color: var(--teal); }
.mobile-submenu { display: none; background: var(--off-white); border-bottom: 1px solid var(--gray-100); }
.mobile-submenu.is-open { display: block; }
.mobile-submenu a {
  display: block; padding: 10px 20px 10px 36px; font-size: 13px; font-weight: 500;
  color: var(--gray-600); border-bottom: 1px solid rgba(0,0,0,0.04); transition: var(--transition);
}
.mobile-submenu a:hover { color: var(--teal); background: rgba(11,110,110,0.05); }
.mobile-submenu a.active-fac { color: var(--teal); font-weight: 700; }
.mobile-submenu-group { padding: 8px 0 4px; }
.mobile-submenu-group-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); padding: 6px 20px 4px 36px;
}
.mobile-nav-footer {
  padding: 14px 20px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--gray-100); background: var(--white);
  display: flex; flex-direction: column; gap: 8px; flex-shrink: 0;
}
.mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.mobile-cta.emergency   { background: #C0392B; color: white; }
.mobile-cta.appointment { background: var(--gold); color: var(--navy); }
.mobile-cta:hover { opacity: 0.9; }

/* ============================================================
   HERO BANNER
============================================================ */
.fac-hero {
  min-height: 420px;
  background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(11,110,110,0.55) 100%),
              url('images/fac/hospital.jpg') center/cover no-repeat;
  display: flex; align-items: flex-end;
  padding: 0 24px 48px;
}
.fac-hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.breadcrumb-trail {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.5); margin-bottom: 14px;
}
.breadcrumb-trail a { color: rgba(255,255,255,0.5); }
.breadcrumb-trail a:hover { color: var(--gold-light); }
.breadcrumb-trail .sep { font-size: 10px; }
.breadcrumb-trail .current { color: var(--gold-light); font-weight: 600; }
.fac-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 10px; }
.fac-hero h1 span { color: var(--gold-light); }
.fac-hero-subtitle { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.7; }
.hero-rule {
  display: block; width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px; margin-top: 16px;
}

/* ============================================================
   FACILITY INTRO SECTION
============================================================ */
.fac-intro-section {
  background: var(--off-white);
  padding: 64px 24px;
  border-bottom: 1px solid var(--gray-100);
}
.fac-intro-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center;
}
.fac-intro-img {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3; background: var(--gray-200);
}
.fac-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.fac-intro-text h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); color: var(--navy); margin-bottom: 6px; }
.fac-intro-text h2 span { color: var(--teal); }
.fac-intro-text .section-tag {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.fac-intro-rule {
  width: 40px; height: 3px; background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px; margin-bottom: 18px;
}
.fac-intro-text p { font-size: 15px; color: var(--gray-600); line-height: 1.85; margin-bottom: 12px; }
.fac-intro-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
  background: var(--teal); color: var(--white);
  padding: 11px 24px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  transition: var(--transition);
}
.fac-intro-cta:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   FEATURE CARDS — original horizontal-timeline content
============================================================ */
.features-section {
  padding: 64px 24px;
  background: var(--white);
}
.features-inner { max-width: 1280px; margin: 0 auto; }
.section-heading {
  text-align: center; margin-bottom: 48px;
}
.section-heading .tag {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}
.section-heading h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); }
.section-heading h2 span { color: var(--teal); }
.section-rule {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px; margin: 14px auto 0;
}

.feature-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white); margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p,
.feature-card .feat-desc {
  font-size: 13.5px; color: var(--gray-600); line-height: 1.75;
}
.feature-list {
  display: flex; flex-direction: column; gap: 6px; margin-top: 8px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: var(--gray-600); line-height: 1.65;
}
.feature-list li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 7px;
}
.feature-card-note {
  margin-top: 14px; padding: 12px 14px;
  background: var(--off-white); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--gray-600); line-height: 1.7;
  border-left: 3px solid var(--teal);
}

/* full-width card for the last item with note -->
.feature-card.full-width { grid-column: 1 / -1; }

/* ============================================================
   CALL TO ACTION BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  padding: 52px 24px;
}
.cta-banner-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-banner-text h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); color: var(--gold-light); margin-bottom: 10px; }
.cta-banner-text p { font-size: 14.5px; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 680px; }
.cta-banner-btn {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  background: var(--gold); color: var(--navy);
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  transition: var(--transition);
}
.cta-banner-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 60px 24px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-phones { display: flex; flex-direction: column; gap: 8px; }
.footer-phones a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--white); transition: var(--transition); }
.footer-phones a:hover { color: var(--gold-light); }
.footer-phones a i { width: 28px; height: 28px; background: rgba(201,168,76,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; padding: 4px 0; transition: var(--transition); }
.footer-links a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-light); flex-shrink: 0; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social-link { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.6); padding: 8px 12px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); }
.footer-social-link i { width: 28px; height: 28px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.footer-social-link.fb i { background: #1877F2; color: white; }
.footer-social-link.ig i { background: linear-gradient(45deg,#E1306C,#833AB4); color: white; }
.footer-social-link.yt i { background: #FF0000; color: white; }
.footer-social-link:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: var(--white); }
.quick-contacts { display: flex; flex-direction: column; gap: 10px; }
.qc-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); font-size: 12.5px; }
.qc-row span { color: rgba(255,255,255,0.5); }
.qc-row a { color: var(--gold-light); font-weight: 600; transition: var(--transition); }
.qc-row a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-max { max-width: 1280px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: #4CAF50; transition: var(--transition); }
.footer-bottom a:hover { color: #66BB6A; }
.footer-policy-links { display: flex; gap: 20px; }
.footer-policy-links a { color: rgba(255,255,255,0.4); font-size: 12px; transition: var(--transition); }
.footer-policy-links a:hover { color: var(--white); }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; background: var(--teal); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--shadow-md); transition: var(--transition);
  z-index: 900; opacity: 0; pointer-events: none;
}
.scroll-top.visible { opacity: 0.85; pointer-events: auto; }
.scroll-top:hover { background: var(--navy); opacity: 1; transform: translateY(-3px); }

/* Floating buttons */
.floating-buttons {
  position: fixed; top: 40%; right: 0; z-index: 9999;
  display: flex; flex-direction: column;
  will-change: transform; transform: translateZ(0);
}
.floating-buttons a {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--navy); border-left: 3px solid var(--gold);
  box-shadow: -2px 0 12px rgba(0,0,0,0.20);
  transition: background 0.25s ease, box-shadow 0.25s ease;
  will-change: background; transform: translateZ(0); backface-visibility: hidden;
}
.floating-buttons a:first-child { border-radius: var(--radius-sm) 0 0 0; }
.floating-buttons a:last-child  { border-radius: 0 0 0 var(--radius-sm); }
.floating-buttons a:hover { background: var(--gold); box-shadow: -4px 0 20px rgba(201,168,76,0.35); }
.floating-buttons img {
  width: 24px; height: 24px; object-fit: contain; filter: brightness(10);
  will-change: filter; transition: filter 0.25s ease; transform: translateZ(0);
}
.floating-buttons a:hover img { filter: brightness(0); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .megamenu-wrap { width: min(700px, 96vw); left: -160px; grid-template-columns: repeat(2,1fr); }
  .fac-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav  { display: none !important; }
  .hamburger { display: flex; }
  .top-bar-actions { display: none; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-max { flex-direction: column; text-align: center; }
  .fac-hero { min-height: 300px; padding-bottom: 36px; }
  .feature-cards { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-policy-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
}
</style>
