/* =========================================================
   BIOMEDIC DIAGNOSTIC CENTER — PREMIUM STYLESHEET
   Color System: Deep Navy (#0B1A2F) | Medical Blue (#1e6fb5)
   Teal Accent (#0ea5a0) | Gold (#d4a84b) | White (#FFFFFF)
   ========================================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0B1A2F;
  --navy-med:    #122540;
  --navy-light:  #1a3558;
  --blue:        #1e6fb5;
  --blue-dark:   #155a96;
  --blue-light:  #3b8fd4;
  --teal:        #0ea5a0;
  --teal-dark:   #0b8a85;
  --gold:        #d4a84b;
  --gold-light:  #e8c47a;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --light-bg:    #f0f6ff;
  --light-gray:  #e8edf5;
  --gray:        #64748b;
  --dark-gray:   #334155;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --border:      rgba(30,111,181,0.12);
  --shadow-sm:   0 2px 8px rgba(11,26,47,0.08);
  --shadow-md:   0 8px 32px rgba(11,26,47,0.12);
  --shadow-lg:   0 20px 60px rgba(11,26,47,0.18);
  --shadow-xl:   0 30px 90px rgba(11,26,47,0.25);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-main:   'Inter', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --font-tech:   'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-accent { color: var(--teal); }
.section { padding: 6rem 0; }

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  margin: 0; padding: 0;
  height: 100%; width: 100%;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0; padding: 0;
  text-align: center;
}
.preloader-logo img { width: 180px; margin: 0 auto 1.5rem; animation: pulse 2s ease-in-out infinite; }
.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px; overflow: hidden; margin: 0 auto 1rem;
}
.preloader-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 99px;
  animation: preload 2s ease-in-out infinite;
}
.preloader-inner p { color: rgba(255,255,255,0.5); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; }

@keyframes preload {
  0% { width: 0; }
  50% { width: 80%; }
  100% { width: 100%; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  position: relative; z-index: 1001;
  transition: var(--transition);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.4rem; }
.topbar-left a:hover { color: var(--teal); }
.topbar-sep { opacity: 0.3; }
.topbar-right { display: flex; align-items: center; gap: 0.75rem; }
.topbar-social {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition); font-size: 0.8rem;
}
.topbar-social:hover { background: var(--teal); color: white; }

/* Open Status Badge */
.open-status {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
  transition: var(--transition);
}
.open-status.is-open {
  background: rgba(14,165,160,0.18);
  color: #0ea5a0;
  border: 1px solid rgba(14,165,160,0.3);
}
.open-status.is-closed {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.25);
}
.open-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.open-status.is-open::before { animation: blink 1.5s ease-in-out infinite; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  margin: 0; padding: 0;
}
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem; font-weight: 500;
  color: var(--dark-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; background: var(--teal);
  border-radius: 99px; transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { left: 0.85rem; right: 0.85rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px; padding: 0.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block; padding: 0.6rem 1rem;
  font-size: 0.875rem; color: var(--dark-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-menu li a:hover { background: var(--light-bg); color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600;
  transition: var(--transition);
  font-family: var(--font-tech);
  letter-spacing: 0.01em;
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--radius-md); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(30,111,181,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--navy-light));
  box-shadow: 0 8px 25px rgba(30,111,181,0.45);
  transform: translateY(-2px);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(14,165,160,0.35);
}
.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14,165,160,0.45);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-ghost {
  background: var(--light-bg);
  color: var(--blue);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--light-gray); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--navy);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(11,26,47,0.5); z-index: 998;
}
.mobile-nav-overlay.active { display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,26,47,0.88) 0%,
    rgba(11,26,47,0.72) 50%,
    rgba(30,111,181,0.4) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  color: var(--white);
  max-width: 780px;
  padding-top: 5rem; padding-bottom: 6rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(14,165,160,0.2);
  border: 1px solid rgba(14,165,160,0.4);
  border-radius: 99px;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #7ddbd8; margin-bottom: 1.5rem;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); animation: blink 1.5s ease infinite;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-accent {
  background: linear-gradient(135deg, var(--teal), #7dd8d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  gap: 0;
}
.hero-stat {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  flex: 1; min-width: 90px;
}
.hero-stat .stat-number {
  font-family: var(--font-tech);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.hero-stat span:nth-child(2) { color: var(--gold); font-weight: 700; font-size: 1.2rem; }
.hero-stat .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 1rem;
}
.hero-scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2; text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase;
}
.scroll-arrow { margin-top: 0.5rem; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-slider {
  overflow: hidden;
  width: 100%;
}
.trust-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 30s linear infinite;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 2.5rem;
  white-space: nowrap;
}
.trust-item i { color: var(--teal); font-size: 1rem; }

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--teal);
  padding: 0.3rem 1rem;
  background: rgba(14,165,160,0.1);
  border-radius: 99px;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(14,165,160,0.2);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted); font-size: 1.05rem; line-height: 1.7;
}

/* =========================================================
   SERVICES OVERVIEW
   ========================================================= */
.services-overview { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--icon-color, var(--blue));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--icon-bg, rgba(30,111,181,0.08));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.4);
}
.service-card:hover .service-icon-wrap {
  background: var(--icon-color, var(--blue));
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px var(--icon-glow, rgba(30,111,181,0.3));
  border-color: transparent;
}
.service-icon-wrap i {
  font-size: 1.4rem;
  color: var(--icon-color, var(--blue));
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap i { color: white; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600;
  color: var(--blue); transition: var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: 0.7rem; color: var(--teal); }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-images {
  position: relative; aspect-ratio: 4/3;
}
.about-img-main {
  width: 82%; height: 90%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: 0; right: 0;
  width: 52%; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 180px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -10px; left: -10px;
  background: var(--teal);
  color: var(--white); padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.35rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}
.about-experience-badge {
  position: absolute; top: -1.5rem; right: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.exp-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.exp-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; }
.about-lead {
  font-size: 1.1rem; font-weight: 500;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.7;
}
.about-content p { color: var(--text-muted); margin-bottom: 1.5rem; }
.about-credentials { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.75rem 0; }
.credential-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem; border-radius: var(--radius-md);
  background: var(--light-bg);
  border: 1px solid var(--border);
}
.credential-item i { color: var(--teal); font-size: 1.1rem; margin-top: 0.15rem; flex-shrink: 0; }
.credential-item strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.credential-item span { font-size: 0.8rem; color: var(--text-muted); }
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================================
   WORKING HOURS
   ========================================================= */
.hours-section { background: var(--navy); color: var(--white); }
.hours-section .section-tag.hours-tag { background: rgba(14,165,160,0.2); border-color: rgba(14,165,160,0.3); }
.hours-section .section-title { color: var(--white); }
.hours-section p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.hours-table { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today {
  background: rgba(14,165,160,0.15);
  border-radius: var(--radius-md);
  border-bottom: none; margin: 0.25rem 0;
}
.hours-row.today .day-name { font-weight: 700; color: var(--teal); }
.hours-row.today .day-hours { color: rgba(255,255,255,0.9); font-weight: 600; }
.day-name { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.day-hours { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-family: var(--font-tech); display: flex; align-items: center; gap: 0.5rem; }
.day-hours.closed { color: rgba(239,68,68,0.8); }
.today-badge {
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 99px;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.hours-status-large {
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.95rem; font-weight: 600;
  margin-top: 0.5rem;
}
.hours-status-large.is-open {
  background: rgba(14,165,160,0.15);
  color: var(--teal);
  border: 1px solid rgba(14,165,160,0.3);
}
.hours-status-large.is-closed {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}
.hours-status-large::before {
  content: '';
  width: 10px; height: 10px; border-radius: 50%;
  background: currentColor; flex-shrink: 0;
}
.hours-status-large.is-open::before { animation: blink 1.5s ease infinite; }

.map-container {
  height: 320px; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.1);
}
.map-cta {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.map-address {
  display: flex; align-items: flex-start; gap: 0.75rem;
}
.map-address i { color: var(--teal); margin-top: 0.15rem; }
.map-address strong { display: block; color: var(--white); font-size: 0.9rem; }
.map-address span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

/* =========================================================
   FACILITY GALLERY
   ========================================================= */
.facility-section { background: var(--off-white); }
.facility-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 240px;
  gap: 1rem;
}
.facility-item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.facility-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.facility-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.facility-item:hover img { transform: scale(1.06); }
.facility-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(11,26,47,0.85), transparent);
  color: var(--white);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.3px;
  transform: translateY(4px); opacity: 0;
  transition: var(--transition);
}
.facility-item:hover .facility-label { transform: translateY(0); opacity: 1; }

/* =========================================================
   REVIEWS SECTION
   ========================================================= */
.reviews-section { background: var(--white); }
.reviews-rating-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 0.75rem;
}
.rating-stars { color: #f59e0b; font-size: 1.1rem; }
.rating-score { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.rating-count { color: var(--text-muted); font-size: 0.9rem; }
.reviews-carousel { overflow: hidden; position: relative; }
.reviews-track {
  display: flex; gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc(33.33% - 0.84rem);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-4px); }
.review-top {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: 0.95rem; color: var(--navy); }
.review-stars { color: #f59e0b; font-size: 0.78rem; margin-top: 0.15rem; }
.google-badge { color: #4285F4; font-size: 1.1rem; }
.review-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; font-style: italic; }
.reviews-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-top: 2rem;
}
.review-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--light-bg); border: 1px solid var(--border);
  color: var(--navy); font-size: 0.9rem;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.review-btn:hover { background: var(--blue); color: white; border-color: var(--blue); }
.review-dots { display: flex; gap: 0.4rem; }
.review-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--light-gray); transition: var(--transition);
  cursor: pointer;
}
.review-dot.active { background: var(--blue); width: 24px; }

/* =========================================================
   FAQ SECTION
   ========================================================= */
.faq-section { background: var(--off-white); }
.faq-grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 5rem; align-items: start;
}
.faq-left .btn + .btn { display: block; margin-left: 0; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left;
  padding: 1.2rem 0;
  font-size: 0.95rem; font-weight: 600;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon { color: var(--blue); font-size: 0.85rem; flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.75;
}
.faq-item.active .faq-answer { max-height: 200px; }

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.blog-preview-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.blog-img { position: relative; overflow: hidden; height: 200px; }
.blog-card--featured .blog-img { height: 260px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag-label {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 99px; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  display: flex; gap: 1rem;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem;
}
.blog-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.65rem; line-height: 1.4; }
.blog-body h3 a { color: inherit; transition: var(--transition); }
.blog-body h3 a:hover { color: var(--blue); }
.blog-body p { color: var(--text-muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 600; color: var(--blue);
  transition: var(--transition);
}
.blog-read-more:hover { gap: 0.7rem; color: var(--teal); }

/* =========================================================
   CTA STRIP
   ========================================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-light) 50%, var(--teal-dark) 100%);
  padding: 4rem 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-text h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--white); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.8); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top { padding: 4.5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.6rem; margin-bottom: 1.5rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.footer-accreditations { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.accred-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  font-size: 0.72rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.accred-badge i { color: var(--gold); font-size: 0.75rem; }
.footer-nav-col h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-nav-col ul li { margin-bottom: 0.65rem; }
.footer-nav-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: var(--transition); }
.footer-nav-col ul li a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-col h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-contact-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.footer-contact-list i { color: var(--teal); margin-top: 0.2rem; font-size: 0.9rem; flex-shrink: 0; }
.footer-contact-list span, .footer-contact-list a {
  font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.5;
}
.footer-contact-list a:hover { color: var(--teal); }
.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: var(--teal); }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(30,111,181,0.4);
  transition: var(--transition);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(30,111,181,0.5); }

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  z-index: 900;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
  color: var(--white);
}
.whatsapp-tooltip {
  position: absolute;
  left: 60px;
  background: var(--navy);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* =========================================================
   AOS (simple fade-up replacement)
   ========================================================= */
[data-aos] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-down"] { transform: translateY(-24px); }
[data-aos].animated {
  opacity: 1; transform: translate(0);
}

/* =========================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { display: none; }
  .hours-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .facility-gallery { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .facility-item--large { grid-column: 1 / 3; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: 1 / 3; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .topbar { display: none; }

  /* Nav */
  .navbar, .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }
  .nav-links {
    position: fixed; top: 0; right: -350px; bottom: 0;
    width: min(320px, 85%);
    background: var(--navy);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    z-index: 999;
    box-shadow: var(--shadow-xl);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1), visibility 0.35s;
    visibility: hidden;
  }
  .nav-links.open { right: 0; visibility: visible; }
  .nav-link { width: 100%; padding: 0.85rem 1rem; font-size: 1rem; color: rgba(255, 255, 255, 0.85); }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active { color: var(--teal); }
  .dropdown-menu {
    position: static; transform: none !important;
    box-shadow: none; border: none;
    background: rgba(255, 255, 255, 0.05);
    opacity: 1; visibility: visible; pointer-events: all;
    border-radius: var(--radius-sm);
    padding: 0.25rem 0.5rem 0.25rem 1.5rem;
    margin-top: 0.25rem;
    display: block; /* Show inline on mobile */
  }
  .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .dropdown-menu li a:hover {
    color: var(--teal);
    background: transparent;
  }
  .nav-cta { display: none; }
  .hamburger {
    display: flex;
    background: linear-gradient(135deg, var(--navy-med) 0%, var(--navy) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(11, 26, 71, 0.15);
  }
  .hamburger span {
    background: var(--white);
  }
  .hamburger:hover {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-med) 100%);
  }
  .hamburger.active {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-color: var(--teal-dark);
    box-shadow: 0 4px 15px rgba(14, 165, 160, 0.4);
  }
  .hamburger.active span {
    background: var(--white);
  }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-video-wrap video { object-position: 70% center; }
  .hero-content { padding-top: 7rem; padding-bottom: 6rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .hero-stat-divider { display: none; }
  .hero-stat {
    min-width: 0;
    padding: 0;
    flex: none;
  }
  .hero-stat .stat-number {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-stat .stat-label {
    font-size: 0.72rem;
    line-height: 1.3;
    margin-top: 0.25rem;
  }
  .hero-title { font-size: 2.4rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Hours */
  .hours-grid { grid-template-columns: 1fr; }

  /* Facility */
  .facility-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .facility-item--large { grid-column: auto; }
  .facility-item { height: 240px; }

  /* Reviews */
  .review-card { flex: 0 0 calc(100% - 1.25rem); }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured { grid-column: auto; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }

  /* Footer */
  .footer-top-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
