/* ============================================
   PART 2 — APPENDED BELOW PART 1
   ============================================ */
/* ============================================
   SRINIVAS HOSPITAL — PREMIUM REDESIGN
   Medical Luxury | Neo-minimalism + Glassmorphism
   Palette: Deep Slate · Mint White · Electric Blue
   ============================================ */

/* --- TOKENS — LIGHT THEME --- */
:root {
  /* Backgrounds — now all white / light grey */
  --slate-950: #ffffff;
  --slate-900: #f8fafc;
  --slate-800: #f1f5f9;
  --slate-700: #e2e8f0;
  --slate-600: #cbd5e1;
  /* Accent colours — unchanged */
  --blue-electric: #2563eb;
  --blue-bright: #3b82f6;
  --blue-glow: #1d4ed8;
  --mint: #e8fdf5;
  --mint-accent: #059669;
  --mint-light: #d1fae5;
  --white: #ffffff;
  /* Text — now dark */
  --text-primary: #0f172a;
  --text-muted: #475569;
  --text-dark: #1e293b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Inter', 'SF Pro Display', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* --- GOOGLE FONT OVERRIDE --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- BASE --- */
body.index-page,
body.about-page,
body.doctors-page,
body.contact-page {
  background: #ffffff;
  color: var(--text-primary);
  font-family: var(--font-body);
}

/* ====================================================
   FLOATING NAVBAR — WHITE FROSTED GLASS
   ==================================================== */
.header {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(37, 99, 235, 0.06) !important;
  padding: 10px 0 !important;
  transition: var(--transition) !important;
}

.header .sitename {
  font-family: var(--font-head) !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.5px !important;
}

.site-tagline {
  color: var(--blue-electric) !important;
}

.logo-img-box {
  background: rgba(37, 99, 235, 0.08) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.08) !important;
}

.navmenu a,
.navmenu a:focus {
  color: #1e293b !important;
  font-family: var(--font-head) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0.2px;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--blue-electric) !important;
}

.navmenu>ul>li>a:not(.book-apt-link)::after {
  background: linear-gradient(90deg, var(--blue-electric), var(--mint-accent)) !important;
}

/* Emergency CTA in Nav */
.navmenu .book-appointment-btn a,
.navmenu .book-appointment-btn a:focus {
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent)) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3) !important;
  animation: pulse-cta 2.5s ease infinite !important;
}

.navmenu .book-appointment-btn a:hover {
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.45) !important;
}

@keyframes pulse-cta {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3), 0 0 0 0 rgba(37, 99, 235, 0.2);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3), 0 0 0 10px rgba(37, 99, 235, 0);
  }
}

/* Scrolled state */
.scrolled .header {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom-color: rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1) !important;
}

.scrolled .header .sitename {
  color: #0f172a !important;
}

.scrolled .navmenu a {
  color: #1e293b !important;
}

/* ====================================================
   HERO — LIGHT / WHITE SPLIT SCREEN
   ==================================================== */
.hero.section {
  background: #ffffff !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  padding: 140px 0 80px !important;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .hero.section {
    padding: 110px 0 50px !important;
    min-height: auto !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .hero.section {
    padding: 90px 0 30px !important;
  }
}

.hero.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 75% 50%, rgba(37, 99, 235, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 5% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content h1 {
  font-family: var(--font-head) !important;
  font-size: clamp(2.6rem, 5vw, 4.2rem) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -2px !important;
  color: #0f172a !important;
  margin-bottom: 1.2rem !important;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-description {
  font-size: 1.05rem !important;
  color: #475569 !important;
  line-height: 1.75 !important;
  max-width: 520px;
  margin-bottom: 2rem !important;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-stats .stat-item h3 {
  font-family: var(--font-head) !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: var(--blue-electric) !important;
  line-height: 1;
}

.hero-stats .stat-item p {
  color: #64748b !important;
  font-size: 0.82rem !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-actions .btn.btn-primary {
  background: linear-gradient(135deg, var(--blue-electric), #1d4ed8) !important;
  border: none !important;
  padding: 14px 32px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #fff !important;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3) !important;
  transition: var(--transition) !important;
}

.hero-actions .btn.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.4) !important;
}

/* Hero Visual — Decorative elements */
.hero .hero-visual,
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
}

@media (max-width: 991px) {
  .hero .hero-visual,
  .hero-visual {
    margin-top: 10px !important;
  }
}

/* Hero Image Swiper inside widget */
.hero-visual .swiper.hero-swiper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 870 / 650;
  height: auto;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-visual .swiper.hero-swiper {
    aspect-ratio: 16 / 10;
    margin-bottom: 1rem;
  }
}

.hero-visual .hero-swiper img {
  width: 100%;
  height: auto;
  aspect-ratio: 870 / 650;
  object-fit: cover;
}

/* Background floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.12);
  top: -100px;
  right: -100px;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  bottom: -50px;
  left: -80px;
}

/* ====================================================
   FEATURES / TOP CARDS
   ==================================================== */
#features-overview {
  background: var(--slate-950);
  padding: 40px 0;
}

.top-single-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.top-single-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.top-single-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.top-single-card:hover::before {
  opacity: 1;
}

.top-single-card h6 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mint-accent);
  margin-bottom: 0.5rem;
}

.top-single-card h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.3px;
}

.top-single-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.top-single-card .bg-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 5rem;
  color: rgba(37, 99, 235, 0.07);
  line-height: 1;
  pointer-events: none;
}

.top-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.top-hours-list li:last-child {
  border-bottom: none;
}

.ready-section {
  text-align: center;
  padding: 60px 0 20px;
}

.ready-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
}

.ready-accent {
  background: linear-gradient(135deg, var(--blue-bright), var(--mint-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ready-pulse {
  font-size: 2rem;
  color: var(--blue-glow);
  margin-top: 1rem;
  animation: pulse-icon 2s ease infinite;
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.15)
  }
}

.process-item {
  text-align: center;
  padding: 2rem 1rem;
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--blue-glow);
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.15);
}

.process-item:hover .process-icon {
  background: rgba(37, 99, 235, 0.25);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.35);
}

.process-item h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.process-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ====================================================
   BENTO GRID — SERVICES (new section override)
   ==================================================== */
#featured-departments {
  background: var(--slate-900);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#featured-departments::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/bento_services_bg.png') center/cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.fd-header {
  margin-bottom: 3.5rem;
}

.fd-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-glow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.fd-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.fd-title-accent {
  background: linear-gradient(135deg, var(--blue-bright), var(--mint-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fd-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 550px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* Bento card */
.fd-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 12px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.fd-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 24px 60px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.fd-card::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.fd-card:hover::after {
  opacity: 1;
}

.fd-card-img {
  position: relative;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
}

.fd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fd-card:hover .fd-card-img img {
  transform: scale(1.08);
}

.fd-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.4) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
}

.fd-card:hover .fd-card-overlay {
  opacity: 1;
}

.fd-card-overlay-content {
  padding: 20px;
  width: 100%;
}

.fd-card-overlay-content p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.fd-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.fd-card-tags span {
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue-glow);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.fd-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.fd-card-link:hover {
  color: var(--blue-glow);
  gap: 10px;
}

.fd-card-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.fd-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue-glow);
  flex-shrink: 0;
}

.fd-card-tag-top {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mint-accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.fd-card-text h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.fd-view-all {
  margin-top: 3rem;
}

.fd-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue-glow);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.fd-view-all-btn:hover {
  background: var(--blue-electric);
  color: #fff;
  border-color: var(--blue-electric);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}


/* ====================================================
   HOME ABOUT SECTION
   ==================================================== */
.home-about.section {
  background: var(--slate-950);
  padding: 45px 0;
}

.ha-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.ha-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.07);
  top: -100px;
  right: -100px;
}

.ha-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(16, 185, 129, 0.05);
  bottom: -50px;
  left: -50px;
}

.ha-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-glow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.ha-label-dot {
  width: 6px;
  height: 6px;
  background: var(--blue-electric);
  border-radius: 50%;
  animation: dot-blink 1.5s ease infinite;
}

.ha-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.ha-heading-accent {
  background: linear-gradient(135deg, var(--blue-bright), var(--mint-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ha-lead {
  font-size: 1.05rem;
  color: rgba(248, 250, 252, 0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.ha-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.ha-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--mint-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
}

.ha-trust-pill i {
  font-size: 0.85rem;
}

.ha-body {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.ha-stats {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
}

.ha-stat {
  flex: 1;
  text-align: center;
  padding: 1rem;
}

.ha-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.5rem 0;
}

.ha-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-glow);
  line-height: 1;
}

.ha-stat-lab {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.ha-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-electric), #1d4ed8);
  color: #fff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  margin-right: 12px;
}

.ha-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.5);
  color: #fff;
}

.ha-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.ha-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.ha-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.ha-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.ha-img-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.8), transparent);
}

.ha-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.ha-float-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-glow);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ha-float-text strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.ha-float-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.ha-badge {
  position: absolute;
  top: 20px;
  right: -15px;
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent));
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.ha-badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.ha-badge-txt {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 2px;
}

.ha-dots {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(rgba(37, 99, 235, 0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.6;
}

/* ====================================================
   PARALLAX STATS
   ==================================================== */
.stats-counter {
  position: relative;
  overflow: hidden;
}

.stats-parallax-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.stats-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 26, 0.88), rgba(37, 99, 235, 0.55));
}

.stats-row {
  position: relative;
  padding: 80px 0;
}

.sc-item {
  text-align: center;
}

.sc-icon-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.sc-item:hover .sc-icon-ring {
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(37, 99, 235, 0.5);
  transform: scale(1.1);
}

.sc-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.sc-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 4px 0 0;
}

/* ====================================================
   PARALLAX CTA
   ==================================================== */
.parallax-cta.section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-cta .container {
  position: relative;
  padding: 45px 0;
}

.parallax-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.parallax-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.parallax-actions .btn.btn-primary {
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent)) !important;
  border: none !important;
  padding: 16px 40px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: #fff !important;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45) !important;
}


/* ====================================================
   FACILITIES GALLERY
   ==================================================== */
.facilities-gallery.section {
  background: var(--slate-950);
  padding: 45px 0;
}

.fg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.fg-blob-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.07);
  top: -80px;
  left: -80px;
}

.fg-blob-2 {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.05);
  bottom: -50px;
  right: -50px;
}

.fg-header {
  margin-bottom: 3rem;
}

.fg-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-glow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.fg-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
}

.fg-title-accent {
  background: linear-gradient(135deg, var(--blue-bright), var(--mint-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fg-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.fg-slider-wrapper {
  position: relative;
}

.fg-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fg-prev {
  left: -24px;
}

.fg-next {
  right: -24px;
}

.fg-nav-btn:hover {
  background: var(--blue-electric);
  border-color: var(--blue-electric);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.fg-track-container {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.fg-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.fg-slide {
  flex: 0 0 25%;
  padding: 0 8px;
  box-sizing: border-box;
}

.fg-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
}

.fg-photo-img {
  position: relative;
  width: 100%;
  height: 100%;
}

.fg-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fg-photo-card:hover .fg-photo-img img {
  transform: scale(1.08);
}

.fg-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
}

.fg-photo-card:hover .fg-photo-overlay {
  opacity: 1;
}

.fg-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue-glow);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
}

.fg-photo-info h5 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 3px;
}

.fg-photo-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}

.fg-photo-link {
  width: 36px;
  height: 36px;
  background: var(--blue-electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  flex-shrink: 0;
  align-self: flex-end;
  transition: var(--transition);
}

.fg-photo-link:hover {
  background: var(--mint-accent);
  color: #fff;
}

.fg-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1.5rem;
}

.fg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.fg-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--blue-electric);
}

.fg-progress-wrap {
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1px;
  margin-top: 0.8rem;
}

.fg-progress-bar {
  height: 100%;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue-electric), var(--mint-accent));
  width: 0;
}

.fg-view-all {
  margin-top: 2.5rem;
}

.fg-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: var(--blue-glow);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.fg-view-all-btn:hover {
  background: var(--blue-electric);
  color: #fff;
  border-color: var(--blue-electric);
  transform: translateY(-2px);
}

/* ====================================================
   TESTIMONIALS — MASONRY AUTO-SCROLL
   ==================================================== */
.modern-testimonials.section {
  background: var(--slate-900);
  padding: 45px 0;
  overflow: hidden;
}

.testi-header {
  margin-bottom: 2rem;
}

.testi-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-glow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.testi-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.15;
}

.testi-title-accent {
  background: linear-gradient(135deg, var(--blue-bright), var(--mint-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testi-subtitle-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

.testi-marquee-container {
  position: relative;
  overflow: hidden;
}

.testi-marquee-container::before,
.testi-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.testi-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--slate-900), transparent);
}

.testi-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--slate-900), transparent);
}

.testi-marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}

.testi-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.testi-card-wrapper {
  flex: 0 0 360px;
  max-width: 360px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  height: 100%;
  transition: var(--transition);
}

.testi-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-size: 0.85rem;
}

.testi-quote {
  color: rgba(248, 250, 252, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author-details h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.testi-author-details span {
  color: var(--text-muted);
  font-size: 0.78rem;
}


/* ====================================================
   TEAM / DOCTORS
   ==================================================== */
.team-section.section {
  background: var(--slate-950);
  padding: 45px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
}

.team-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
}

.team-divider {
  font-size: 1.4rem;
  color: var(--blue-glow);
  margin-top: 0.8rem;
}

.team-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.team-item:hover {
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
  border-radius: 16px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-item:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 26, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.team-item:hover .team-overlay {
  opacity: 1;
}

.btn-team {
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent));
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-team:hover {
  transform: scale(1.05);
  color: #fff;
}

.team-info {
  padding: 18px 20px;
}

.team-info .specialty {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mint-accent);
  margin-bottom: 4px;
}

.team-info h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
}

.team-view-all {
  text-align: center;
  margin-top: 2.5rem;
}

.team-view-all .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.team-view-all .btn-outline:hover {
  border-color: var(--blue-electric);
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue-glow);
}

/* ====================================================
   CTA SECTION
   ==================================================== */
.modern-cta-section.section {
  background: var(--slate-900);
  padding: 45px 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37, 99, 235, 0.1), transparent);
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  top: -150px;
  left: -150px;
}

.cta-blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(16, 185, 129, 0.06);
  bottom: -100px;
  right: -100px;
}

.cta-glass-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 60px 50px;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.cta-glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent 60%);
  pointer-events: none;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--blue-glow);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.cta-main-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-main-title span {
  background: linear-gradient(135deg, var(--blue-bright), var(--mint-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-glow);
  font-size: 1rem;
  flex-shrink: 0;
}

.cta-feature h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.cta-feature span {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent));
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.5);
  color: #fff;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.cta-emergency-box {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.emergency-icon-ring {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--blue-glow);
  background: rgba(37, 99, 235, 0.12);
  animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3)
  }

  50% {
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0)
  }
}

.cta-emergency-box h3 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cta-emergency-box p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.emergency-number a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-glow);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.emergency-number a:hover {
  color: #fff;
}

.emergency-location a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.emergency-location a:hover {
  color: var(--mint-accent);
}

/* ====================================================
   CONTACT SECTION
   ==================================================== */
.contact-info-section.section {
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%) !important;
  padding: 80px 0 !important;
}

.contact-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  background: rgba(37, 99, 235, 0.04);
}

.contact-info-card.highlight-card {
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.05);
}

.contact-info-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-glow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-card .info-content h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.contact-info-card .info-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 3px 0;
}

.hours-list .emergency-hours {
  color: var(--mint-accent);
  font-weight: 700;
}

.map-container-modern {
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.2);
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.map-overlay-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-overlay-badge i {
  color: var(--blue-glow);
}

/* ====================================================
   MULTI-STEP BOOKING WIDGET
   ==================================================== */
.ms-booking {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.ms-steps-bar {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  counter-reset: step;
}

.ms-step-dot {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.ms-step-dot::before {
  content: counter(step);
  counter-increment: step;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.ms-step-dot.active::before {
  background: var(--blue-electric);
  border-color: var(--blue-electric);
  color: #fff;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.5);
}

.ms-step-dot.done::before {
  background: var(--mint-accent);
  border-color: var(--mint-accent);
  color: #fff;
}

.ms-step-dot span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ms-step-dot::after {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  width: calc(100% - 32px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.ms-step-dot:last-child::after {
  display: none;
}

.ms-panel {
  display: none;
}

.ms-panel.active {
  display: block;
}

.ms-panel-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.ms-panel-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.ms-specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.ms-specialty-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.ms-specialty-btn:hover,
.ms-specialty-btn.selected {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
}

.ms-specialty-btn i {
  display: block;
  font-size: 1.2rem;
  color: var(--blue-glow);
  margin-bottom: 4px;
}

.ms-specialty-btn span {
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 600;
}

.ms-nav {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.ms-btn-back {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-head);
}

.ms-btn-back:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.ms-btn-next {
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent));
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-head);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.ms-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.5);
}

/* ====================================================
   GLOBAL OVERRIDES & UTILITIES
   ==================================================== */
.section-heading-global {
  font-family: var(--font-head) !important;
  color: var(--white) !important;
}

.title-accent-global {
  background: linear-gradient(135deg, var(--blue-bright), var(--mint-accent)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

#preloader {
  background: var(--slate-950) !important;
}

.scroll-top {
  background: var(--blue-electric) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4) !important;
}

.scroll-top:hover {
  background: var(--mint-accent) !important;
}

/* Responsive */
@media(max-width:991px) {
  .hero.section {
    padding: 100px 0 60px !important;
  }

  .hero-booking-widget {
    margin-top: 2rem;
    max-width: 100%;
  }

  .ha-badge {
    right: 0;
  }

  .ha-float-card {
    left: 0;
  }

  .cta-glass-card {
    padding: 36px 24px;
  }
}

@media(max-width:767px) {
  .hero-stats {
    gap: 1rem;
  }

  .cta-features-grid {
    grid-template-columns: 1fr;
  }

  .ms-specialty-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fg-slide {
    flex: 0 0 100%;
  }

  .testi-card-wrapper {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

@media(max-width:480px) {
  .ha-badge {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stats .stat-item {
    flex: 0 0 40%;
  }
}


/* ====================================================
   GLOBAL BODY & SECTION BG — WHITE THEME
   ==================================================== */
body.index-page,
body.about-page,
body.doctors-page,
body.contact-page,
.index-page .main,
.about-page .main,
.doctors-page .main,
.contact-page .main,
.index-page section,
.about-page section,
.doctors-page section,
.contact-page section {
  background-color: #ffffff !important;
  color: var(--text-primary) !important;
}

.index-page #features-overview,
.index-page .home-about,
.index-page #specialist-doctors,
.index-page .contact-info-section,
.index-page #parallax-cta {
  background: #ffffff !important;
}

.index-page #featured-departments,
.index-page .modern-testimonials {
  background: #f8fafc !important;
}

.index-page .modern-cta-section {
  background: #f1f5f9 !important;
}

/* Ensure text is always light on dark bg */
.index-page .main p,
.index-page .main li,
.index-page .main span:not(.highlight):not(.hbw-badge):not(.ms-specialty-btn span) {
  color: inherit;
}

/* Fix hero section height & layout */
.index-page #hero.hero.section {
  min-height: 100vh !important;
  padding-top: 120px !important;
  padding-bottom: 80px !important;
}

/* Ensure the booking widget image strip height */
.index-page .hero-swiper .swiper-slide img {
  height: auto !important;
  aspect-ratio: 870 / 650 !important;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Force ha-visual position:relative */
.index-page .ha-visual {
  position: relative !important;
}

/* Fix stats counter bg overlap */
.index-page .stats-counter {
  position: relative;
  padding: 0;
}

/* Fix scroll-top */
.scroll-top {
  background: #2563eb !important;
}

/* Logo img box dark */
.logo-img-box {
  background: rgba(37, 99, 235, 0.12) !important;
  border: 1px solid rgba(37, 99, 235, 0.25) !important;
}


/* ====================================================
   LIGHT THEME — CARD & SECTION OVERRIDES
   ==================================================== */

/* Top cards */
.top-single-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06) !important;
}

.top-single-card:hover {
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.top-single-card h6 {
  color: var(--mint-accent) !important;
}

.top-single-card h3 {
  color: #0f172a !important;
}

.top-single-card p {
  color: #475569 !important;
}

.top-hours-list li {
  color: #475569 !important;
  border-bottom-color: #e2e8f0 !important;
}

.ready-section h2 {
  color: #0f172a !important;
}

.process-icon {
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
  color: var(--blue-electric) !important;
}

.process-item h4 {
  color: #0f172a !important;
}

.process-item p {
  color: #475569 !important;
}

/* About / HA section */
.ha-heading {
  color: #0f172a !important;
}

.ha-lead {
  color: #334155 !important;
}

.ha-body {
  color: #475569 !important;
}

.ha-stat-num {
  color: var(--blue-electric) !important;
}

.ha-stat-lab {
  color: #64748b !important;
}

.ha-img-wrap {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
}

.ha-float-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1) !important;
}

.ha-float-text strong {
  color: #0f172a !important;
}

.ha-float-text span {
  color: #64748b !important;
}

/* Stats counter overlay — keep parallax dark */
.stats-overlay {
  background: linear-gradient(135deg, rgba(10, 15, 26, 0.82), rgba(37, 99, 235, 0.55)) !important;
}

/* Bento department cards */
.fd-title {
  color: #0f172a !important;
}

.fd-subtitle {
  color: #475569 !important;
}

.fd-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.fd-card:hover {
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14), 0 0 0 1px rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.fd-card-text h4 {
  color: #0f172a !important;
}

/* Testimonials */
.testi-title {
  color: #0f172a !important;
}

.testi-subtitle-text {
  color: #475569 !important;
}

.testi-marquee-container::before {
  background: linear-gradient(to right, #f8fafc, transparent) !important;
}

.testi-marquee-container::after {
  background: linear-gradient(to left, #f8fafc, transparent) !important;
}

.testi-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
}

.testi-card:hover {
  border-color: rgba(37, 99, 235, 0.25) !important;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08) !important;
}

.testi-quote {
  color: #334155 !important;
}

.testi-author-details h4 {
  color: #0f172a !important;
}

.testi-author-details span {
  color: #64748b !important;
}

/* Doctors */
.team-header h2 {
  color: #0f172a !important;
}

.team-item {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}

.team-item:hover {
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

.team-info .specialty {
  color: var(--mint-accent) !important;
}

.team-info h4 {
  color: #0f172a !important;
}

/* CTA glass card */
.cta-glass-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08) !important;
}

.cta-main-title {
  color: #0f172a !important;
}

.cta-description {
  color: #475569 !important;
}

.cta-feature h4 {
  color: #0f172a !important;
}

.cta-feature span {
  color: #64748b !important;
}

.feature-icon-box {
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.15) !important;
  color: var(--blue-electric) !important;
}

.cta-emergency-box {
  background: #f0f7ff !important;
  border-color: rgba(37, 99, 235, 0.15) !important;
}

.cta-emergency-box h3 {
  color: #0f172a !important;
}

.cta-emergency-box p {
  color: #475569 !important;
}

.emergency-number a {
  color: var(--blue-electric) !important;
}

/* Contact cards */
.contact-info-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}

.contact-info-card:hover {
  border-color: rgba(37, 99, 235, 0.25) !important;
  background: #f0f7ff !important;
}

.contact-info-card.highlight-card {
  background: #f0f7ff !important;
  border-color: rgba(37, 99, 235, 0.15) !important;
}

.contact-info-card .icon-box {
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.15) !important;
  color: var(--blue-electric) !important;
}

.contact-info-card .info-content h4 {
  color: #0f172a !important;
}

.contact-info-card .info-content p {
  color: #475569 !important;
}

.hours-list li {
  color: #475569 !important;
}

.map-overlay-badge {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(37, 99, 235, 0.15) !important;
  color: #0f172a !important;
}

/* Multi-step widget (light) */
.ms-step-dot::before {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #64748b !important;
}

.ms-step-dot span {
  color: #64748b !important;
}

.ms-step-dot.active::before {
  background: var(--blue-electric) !important;
  border-color: var(--blue-electric) !important;
  color: #fff !important;
}

.ms-panel-title {
  color: #0f172a !important;
}

.ms-panel-sub {
  color: #64748b !important;
}

.ms-specialty-btn {
  background: #f8fafc !important;
  border-color: #e2e8f0 !important;
}

.ms-specialty-btn:hover,
.ms-specialty-btn.selected {
  background: #eff6ff !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
}

.ms-specialty-btn i {
  color: var(--blue-electric) !important;
}

.ms-specialty-btn span {
  color: #0f172a !important;
}

.ms-btn-back {
  border-color: #e2e8f0 !important;
  color: #64748b !important;
}

.hbw-trust {
  color: #64748b !important;
}

.hbw-trust i {
  color: var(--mint-accent) !important;
}

/* SC (stats) numbers stay white over parallax */
.sc-number {
  color: #ffffff !important;
}

.sc-label {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Facility gallery */
.fg-title {
  color: #0f172a !important;
}

.fg-subtitle {
  color: #475569 !important;
}

.fg-nav-btn {
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
  color: var(--blue-electric) !important;
}

/* Preloader & scrolltop */
#preloader {
  background: #ffffff !important;
}


/* ====================================================
   TEXT CONTRAST FIXES — WHITE BACKGROUND THEME
   All light/invisible text corrected for readability
   ==================================================== */

/* --- HERO SECTION --- */
/* Stat labels under numbers */
.hero-stats .stat-item p {
  color: #334155 !important;
}

/* Hero description */
.hero-description {
  color: #334155 !important;
}

/* Hero badge (Ranked #1 text) */
.hero .hbw-badge,
.hbw-badge {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  color: var(--blue-electric) !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  font-size: 0.82rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.hbw-badge::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-electric);
}

/* Booking widget subtitle */
.hbw-subtitle {
  color: #334155 !important;
}

/* MS step dot inactive text */
.ms-step-dot span {
  color: #334155 !important;
}

/* MS step dot inactive number circle */
.ms-step-dot::before {
  color: #475569 !important;
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
}

/* MS step connector line */
.ms-step-dot::after {
  background: #cbd5e1 !important;
}

/* Widget panel title */
.ms-panel-title {
  color: #0f172a !important;
}

/* Widget panel sub */
.ms-panel-sub {
  color: #334155 !important;
}

/* Specialty button text */
.ms-specialty-btn span {
  color: #0f172a !important;
}

.ms-specialty-btn i {
  color: #2563eb !important;
}

/* Back button text */
.ms-btn-back {
  color: #334155 !important;
  border-color: #cbd5e1 !important;
}

/* Trust line */
.hbw-trust {
  color: #475569 !important;
}

/* Widget field label */
.hbw-field label {
  color: #334155 !important;
}

/* Widget input text */
.hbw-field select,
.hbw-field input {
  color: #0f172a !important;
}

/* Widget input placeholder */
.hbw-field input::placeholder {
  color: #94a3b8 !important;
}

/* --- QUICK INFO CARDS --- */
/* Category tag (24/7 SUPPORT etc.) */
.top-single-card h6 {
  color: #065f46 !important;
}

/* Card heading */
.top-single-card h3 {
  color: #0f172a !important;
}

/* Card body text */
.top-single-card p {
  color: #334155 !important;
}

/* Hours list */
.top-hours-list li {
  color: #334155 !important;
  border-bottom-color: #e2e8f0 !important;
}

/* "Ready to help" heading */
.ready-section h2 {
  color: #0f172a !important;
}

/* Process step headings */
.process-item h4 {
  color: #0f172a !important;
}

/* Process step body */
.process-item p {
  color: #334155 !important;
}

/* --- EXPERIENCE / ABOUT SECTION --- */
/* Section pill label */
.ha-label {
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

/* Main heading */
.ha-heading {
  color: #0f172a !important;
}

/* Lead paragraph */
.ha-lead {
  color: #334155 !important;
}

/* Body paragraph */
.ha-body {
  color: #475569 !important;
}

/* Trust pill text */
.ha-trust-pill {
  color: #065f46 !important;
  background: rgba(5, 150, 105, 0.08) !important;
  border-color: rgba(5, 150, 105, 0.25) !important;
}

/* Stat labels */
.ha-stat-lab {
  color: #334155 !important;
}

/* Stat numbers */
.ha-stat-num {
  color: #1d4ed8 !important;
}

/* Floating card text */
.ha-float-text strong {
  color: #0f172a !important;
}

.ha-float-text span {
  color: #334155 !important;
}

/* Floating card background */
.ha-float-card {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Outline button */
.ha-btn-outline {
  color: #1e293b !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.ha-btn-outline:hover {
  color: #2563eb !important;
}

/* --- DEPARTMENTS BENTO --- */
.fd-label {
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

.fd-title {
  color: #0f172a !important;
}

.fd-subtitle {
  color: #334155 !important;
}

.fd-card-tag-top {
  color: #065f46 !important;
}

.fd-card-text h4 {
  color: #0f172a !important;
}

/* --- FACILITIES GALLERY --- */
.fg-label {
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

.fg-title {
  color: #0f172a !important;
}

.fg-subtitle {
  color: #334155 !important;
}

.fg-photo-card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(37, 99, 235, 0.05) !important;
}

.fg-photo-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%) !important;
}

/* Nav buttons — more visible on white */
.fg-nav-btn {
  background: #eff6ff !important;
  border: 1px solid rgba(37, 99, 235, 0.3) !important;
  color: #1d4ed8 !important;
}

.fg-nav-btn:hover {
  background: #2563eb !important;
  color: #fff !important;
}

/* Progress dots */
.fg-dot {
  background: #cbd5e1 !important;
}

.fg-dot.active {
  background: #2563eb !important;
}

/* --- TESTIMONIALS --- */
.testi-label {
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

.testi-title {
  color: #0f172a !important;
}

.testi-subtitle-text {
  color: #334155 !important;
}

.testi-quote {
  color: #334155 !important;
}

.testi-author-details h4 {
  color: #0f172a !important;
}

.testi-author-details span {
  color: #475569 !important;
}

/* Fade edges match section bg */
.testi-card {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.testi-card:hover {
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12) !important;
}

.testi-marquee-container::before {
  background: linear-gradient(to right, #f8fafc, transparent) !important;
}

.testi-marquee-container::after {
  background: linear-gradient(to left, #f8fafc, transparent) !important;
}

/* --- DOCTORS --- */
.team-header h2 {
  color: #0f172a !important;
}

.team-item {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.team-item:hover {
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12) !important;
}

.team-info .specialty {
  color: #059669 !important;
}

.team-info h4 {
  color: #0f172a !important;
}

.team-view-all .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a76d1 0%, #114c88 100%) !important;
  color: #ffffff !important;
  padding: 14px 36px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(26, 118, 209, 0.25) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.team-view-all .btn-outline:hover {
  background: linear-gradient(135deg, #114c88 0%, #0d3864 100%) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 30px rgba(26, 118, 209, 0.45) !important;
}

.team-view-all .btn-outline i {
  transition: transform 0.3s ease !important;
}

.team-view-all .btn-outline:hover i {
  transform: translateX(4px) !important;
}

/* --- CTA SECTION --- */
.cta-pill {
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
}

.cta-main-title {
  color: #0f172a !important;
}

.cta-description {
  color: #334155 !important;
}

.cta-feature h4 {
  color: #0f172a !important;
}

.cta-feature>div>span {
  color: #475569 !important;
}

.cta-emergency-box h3 {
  color: #0f172a !important;
}

.cta-emergency-box p {
  color: #334155 !important;
}

.emergency-number a {
  color: #1d4ed8 !important;
}

.emergency-location a {
  color: #475569 !important;
}

.emergency-location a:hover {
  color: #059669 !important;
}

.btn-cta-secondary {
  color: #1e293b !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
}

.btn-cta-secondary:hover {
  color: #2563eb !important;
  border-color: rgba(37, 99, 235, 0.5) !important;
  background: rgba(37, 99, 235, 0.04) !important;
}

/* --- CONTACT SECTION --- */
.testi-header .testi-title {
  color: #0f172a !important;
}

.testi-header .testi-subtitle-text {
  color: #334155 !important;
}

.contact-info-card {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 18px !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.contact-info-card:hover {
  border-color: rgba(37, 99, 235, 0.25) !important;
  background: #ffffff !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.contact-info-card.highlight-card {
  background: #e8fdf5 !important;
  border-color: rgba(5, 150, 105, 0.2) !important;
}

.contact-info-card.highlight-card:hover {
  border-color: rgba(5, 150, 105, 0.35) !important;
  background: #e8fdf5 !important;
  box-shadow: 0 20px 40px rgba(5, 150, 105, 0.08), 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.contact-info-card .icon-box {
  width: 46px !important;
  height: 46px !important;
  border-radius: 12px !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  color: #2563eb !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  transition: all 0.3s ease !important;
}

.contact-info-card.highlight-card .icon-box {
  background: rgba(5, 150, 105, 0.12) !important;
  border-color: rgba(5, 150, 105, 0.22) !important;
  color: #059669 !important;
}

.contact-info-card:hover .icon-box {
  transform: scale(1.08) !important;
}

.contact-info-card .info-content h4 {
  color: #0f172a !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  margin-bottom: 6px !important;
}

.contact-info-card .info-content p {
  color: #475569 !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
}

.hours-list li {
  color: #475569 !important;
  font-size: 0.88rem !important;
  padding: 2px 0 !important;
}

.hours-list li strong {
  color: #0f172a !important;
}

.hours-list .emergency-hours {
  color: #059669 !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.hours-list .emergency-hours::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

.map-container-modern {
  height: 100% !important;
  min-height: 420px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.01) !important;
}

.map-overlay-badge {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  color: #0f172a !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
}

/* --- PARALLAX PROCESS --- */
/* "Ready" accent */
.ready-accent {
  background: linear-gradient(135deg, #2563eb, #059669) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Process icon text */
.process-icon i {
  color: #2563eb !important;
}

/* --- GLOBAL FIX: ensure no leftover white-on-white text --- */
.index-page .main h1:not(.hero-content h1),
.index-page .main h2,
.index-page .main h3,
.index-page .main h4,
.index-page .main h5 {
  color: #0f172a !important;
}

.index-page .main p,
.index-page .main li,
.index-page .main span:not(.highlight):not(.hbw-badge):not(.fd-title-accent):not(.ready-accent):not(.ha-heading-accent):not(.testi-title-accent):not(.cta-main-title span):not(.title-accent-global) {
  color: #334155;
}

/* Keep gradient text working */
.fd-title-accent,
.ha-heading-accent,
.testi-title-accent,
.ready-accent,
.highlight,
.title-accent-global,
.cta-main-title span {
  background: linear-gradient(135deg, #2563eb, #059669) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}


/* ====================================================
   PARALLAX SECTIONS — FORCE WHITE TEXT
   (These have dark photo/overlay backgrounds — text must be white)
   ==================================================== */

/* Stats Counter Parallax */
.stats-counter .sc-number {
  color: #ffffff !important;
}

.stats-counter .sc-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

.stats-counter .sc-icon-ring {
  color: #ffffff !important;
}

/* Parallax CTA Section */
.parallax-cta .parallax-title {
  color: #ffffff !important;
}

.parallax-cta .parallax-text {
  color: rgba(255, 255, 255, 0.88) !important;
}

.parallax-cta .title-accent-global {
  background: linear-gradient(135deg, #7dd3fc, #6ee7b7) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* Parallax CTA overlay — make sure it's dark enough */
#parallax-cta {
  background: transparent !important;
  position: relative;
}

#parallax-cta .parallax-bg {
  opacity: 1 !important;
}

/* ====================================================
   DARK SECTIONS & OVERLAYS — FORCE WHITE TEXT 
   (Overriding the global dark text fix)
   ==================================================== */

/* HA Badge */
.index-page .main .ha-badge span {
  color: #ffffff !important;
}

/* Stats Counter */
.index-page .main .stats-counter .sc-number span {
  color: #ffffff !important;
}

.index-page .main .stats-counter .sc-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Featured Departments Overlay */
.index-page .main .fd-card-overlay-content p,
.index-page .main .fd-card-overlay-content span,
.index-page .main .fd-card-overlay-content a,
.index-page .main .fd-card-overlay-content i {
  color: #ffffff !important;
}

.index-page .main .fd-card-overlay-content .fd-card-tags span {
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Parallax CTA */
.index-page .main .parallax-cta h2,
.index-page .main .parallax-cta p {
  color: #ffffff !important;
}

/* Facilities Gallery Overlay */
.index-page .main .fg-photo-overlay .fg-photo-info h5,
.index-page .main .fg-photo-overlay .fg-photo-info p,
.index-page .main .fg-photo-overlay .fg-photo-info span,
.index-page .main .fg-photo-overlay .fg-photo-info i {
  color: #ffffff !important;
}

/* Hero orbs — ensure they don't overwrite section bg colour */
.hero-orb-1,
.hero-orb-2 {
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}


/* ====================================================
   MOBILE RESPONSIVENESS — GLOBAL OVERRIDES
   ==================================================== */
@media (max-width: 991px) {

  /* --- Global Section Padding --- */
  .section {
    padding: 60px 0 !important;
  }

  /* --- Hero Section Mobile --- */
  .hero.section {
    padding-top: 60px !important;
    padding-bottom: 20px !important;
    text-align: center !important;
    min-height: auto !important;
  }

  .hero-content h1 {
    font-size: 2.1rem !important;
    letter-spacing: -0.8px !important;
    margin-bottom: 15px !important;
  }

  .hero-description {
    margin: 0 15px 25px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    word-break: break-word !important;
    font-size: 0.88rem !important;
  }

  .hero-actions {
    justify-content: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  .hero-actions .btn {
    margin: 0 !important;
    width: 100% !important;
    max-width: 300px !important;
  }

  /* --- Global Text Justify on Mobile --- */
  .main p,
  .main .description,
  .main .ha-description,
  .main .brand-desc {
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    word-break: break-word !important;
  }

  .main p.parallax-text {
    text-align: center !important;
    text-justify: auto !important;
    hyphens: none !important;
  }

  /* --- Quick Info Cards --- */
  .top-single-card {
    padding: 25px 20px !important;
    min-height: auto !important;
  }

  .ready-section h2 {
    font-size: 1.8rem !important;
  }

  /* --- About Section Mobile --- */
  .ha-content {
    text-align: center !important;
  }

  .ha-trust-pills {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .ha-trust-pill {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .ha-stats {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  .ha-stat-divider {
    display: none !important;
  }

  .ha-cta {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .ha-btn-primary,
  .ha-btn-outline {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 !important;
    justify-content: center !important;
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
  }

  /* --- Stats Counter Mobile Fix --- */
  .stats-row {
    padding: 30px 0 !important;
  }

  .sc-item {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    padding: 15px 5px !important;
    border-bottom: none !important;
  }

  .sc-number {
    font-size: 1.8rem !important;
    line-height: 1 !important;
  }

  .sc-icon-ring {
    width: 46px !important;
    height: 46px !important;
    font-size: 1.15rem !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: 6px !important;
  }

  .sc-label {
    font-size: 0.72rem !important;
    letter-spacing: 0.5px !important;
  }

  /* --- Featured Departments (Bento) --- */
  .fd-header {
    margin-bottom: 2rem !important;
  }

  .fd-card-img {
    height: 180px !important;
  }

  /* --- CTA Section Glass Card --- */
  .cta-glass-card {
    padding: 40px 25px !important;
    text-align: center !important;
  }

  .cta-features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .cta-feature {
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .cta-buttons {
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 !important;
    justify-content: center !important;
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px !important;
  }

  .cta-emergency-box {
    margin-top: 30px !important;
    padding: 30px 15px !important;
    text-align: center !important;
  }

  .emergency-number a {
    font-size: 1.35rem !important;
    letter-spacing: -0.5px !important;
  }

  /* --- Contact Section --- */
  .contact-info-section {
    text-align: center !important;
  }

  .contact-info-card {
    text-align: left !important;
  }

  .map-container-modern {
    min-height: 300px !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 2.1rem !important;
  }

  .fd-title {
    font-size: 1.8rem !important;
  }

  .ha-heading {
    font-size: 1.7rem !important;
  }

  /* Footer Bottom Text */
  .footer-bottom .copyright p {
    font-size: 12px !important;
  }
}

/* ====================================================
   QUICK INFO INTRO SECTION
   ==================================================== */
.quick-intro-wrapper {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: var(--radius-xl);
  padding: 55px 50px;
  box-shadow: 0 10px 35px rgba(37, 99, 235, 0.05), 0 0 1px rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
  margin-top: 30px;
  transition: var(--transition);
}

.quick-intro-wrapper:hover {
  box-shadow: 0 15px 45px rgba(37, 99, 235, 0.08), 0 0 1px rgba(37, 99, 235, 0.15);
}

.quick-intro-left {
  position: relative;
}

.quick-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--blue-electric);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.quick-intro-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.quick-intro-accent {
  background: linear-gradient(135deg, var(--blue-electric), var(--mint-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quick-intro-tagline-box {
  border-left: 3px solid var(--blue-bright);
  padding-left: 16px;
  margin-bottom: 2rem;
}

.quick-intro-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--blue-electric);
  margin: 0;
}

.quick-intro-decor {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.decor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--mint-accent);
  border-radius: 50%;
  animation: pulse-decor 2s infinite ease-in-out;
}

.decor-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--mint-accent), transparent);
  border-radius: 20px;
}

@keyframes pulse-decor {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

.quick-intro-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quick-intro-desc-lead {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
  color: #1e293b;
  margin-bottom: 1rem;
  text-align: justify;
}

.quick-intro-desc-sub {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Actions Grid styling */
.quick-intro-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quick-action-card {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  text-decoration: none !important;
  transition: var(--transition);
}

.quick-action-card:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.quick-action-card .qc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 15px;
  flex-shrink: 0;
  transition: var(--transition);
}

.quick-action-card .qc-text h5 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.quick-action-card .qc-text span {
  font-size: 0.76rem;
  color: #64748b;
  display: block;
  margin-top: 2px;
}

.quick-action-card .qc-arrow {
  margin-left: auto;
  color: #cbd5e1;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.quick-action-card:hover .qc-arrow {
  transform: translateX(4px);
}

/* Card Themes */
.qc-primary .qc-icon {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue-electric);
}
.qc-primary:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}
.qc-primary:hover .qc-arrow {
  color: var(--blue-electric);
}

.qc-danger .qc-icon {
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444;
}
.qc-danger:hover {
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.08);
}
.qc-danger:hover .qc-arrow {
  color: #ef4444;
}

.qc-success .qc-icon {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}
.qc-success:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.08);
}
.qc-success:hover .qc-arrow {
  color: #10b981;
}

.qc-info .qc-icon {
  background: rgba(6, 182, 212, 0.08);
  color: #06b6d4;
}
.qc-info:hover {
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.08);
}
.qc-info:hover .qc-arrow {
  color: #06b6d4;
}

/* Responsiveness overrides for the new section */
@media (max-width: 991px) {
  .quick-intro-wrapper {
    padding: 40px 30px;
  }
  .quick-intro-left {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .quick-intro-actions-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .quick-action-card {
    padding: 12px 16px !important;
    min-height: 72px !important;
    display: flex !important;
    align-items: center !important;
  }
  .quick-action-card .qc-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1.1rem !important;
    margin-right: 12px !important;
  }
  .quick-action-card .qc-text h5 {
    font-size: 0.9rem !important;
  }
  .quick-action-card .qc-text span {
    font-size: 0.74rem !important;
    white-space: nowrap !important;
  }
}

/* ====================================================
   HERO — FULL WIDTH BANNER OVERRIDES
   ==================================================== */
.index-page #hero.hero.section.hero-banner-only {
  min-height: unset !important;
  height: auto !important;
  padding-top: 100px !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  display: block !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

@media (max-width: 991px) {
  .index-page #hero.hero.section.hero-banner-only {
    padding-top: 80px !important;
  }
}

.index-page #hero.hero.section.hero-banner-only::before {
  display: none !important;
  content: none !important;
}

.hero-banner-img-wrap {
  width: 100% !important;
  display: block !important;
  line-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.hero-banner-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ====================================================
   HERO — AUTO SLIDING BANNER SLIDESHOW
   ==================================================== */
.index-page #hero.hero.section.hero-banner-only {
  min-height: unset !important;
  height: auto !important;
  padding-top: 100px !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
  display: block !important;
  background: #ffffff !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

/* Slideshow wrapper */
.hero-slideshow {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

/* Each slide hidden by default */
.hero-slide {
  display: none;
  width: 100%;
  position: relative;
  animation: heroFadeIn 0.8s ease forwards;
}

/* Active slide shows */
.hero-slide.active {
  display: block;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(1.01); }
  to   { opacity: 1; transform: scale(1); }
}

/* The image inside each slide */
.hero-slide .hero-banner-img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Dot indicators */
.hero-slide-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.hs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
}

.hs-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

/* ====================================================
   OVERLAPPING INTERACTIVE CARDS (features-overview)
   ==================================================== */
#features-overview {
  padding-top: 0 !important;
  background: transparent !important;
}

.top-cards-section {
  margin-top: -65px !important; /* Overlaps bottom of the banner */
  position: relative;
  z-index: 100;
}

@media (max-width: 1199px) {
  .top-cards-section {
    margin-top: -50px !important;
  }
}

@media (max-width: 991px) {
  .top-cards-section {
    margin-top: -40px !important;
  }
}

@media (max-width: 767px) {
  .top-cards-section {
    margin-top: 0 !important; /* On mobile, remove overlap to prevent collision */
    padding-top: 30px !important;
  }
}

.top-overlap-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.12) !important;
  border-radius: 20px !important;
  padding: 24px 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  height: 100% !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.top-overlap-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.14) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

/* Icon Area */
.top-overlap-card .card-icon-area {
  width: 68px !important;
  height: 68px !important;
  border-radius: 16px !important;
  background: rgba(37, 99, 235, 0.06) !important;
  color: var(--blue-electric) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.85rem !important;
  flex-shrink: 0 !important;
  transition: all 0.35s ease !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
}

.top-overlap-card:hover .card-icon-area {
  transform: scale(1.08) rotate(5deg) !important;
}

/* Specific icon colors */
.top-overlap-card.card-packages .card-icon-area {
  background: rgba(239, 68, 68, 0.05) !important;
  color: #ef4444 !important;
  border-color: rgba(239, 68, 68, 0.08) !important;
}

.top-overlap-card.card-appointment .card-icon-area {
  background: rgba(37, 99, 235, 0.06) !important;
  color: var(--blue-electric) !important;
  border-color: rgba(37, 99, 235, 0.08) !important;
}

/* Content Area */
.top-overlap-card .card-content-area {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  align-items: flex-start !important;
  flex-grow: 1 !important;
}

.top-overlap-card .card-content-area h3 {
  font-family: var(--font-head) !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.3px !important;
}

/* Button style */
.top-overlap-card .btn-card-action {
  font-family: var(--font-head) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: var(--blue-electric) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.35) !important;
  border-radius: 30px !important;
  padding: 6px 20px !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}

.top-overlap-card:hover .btn-card-action {
  background: var(--blue-electric) !important;
  color: #ffffff !important;
  border-color: var(--blue-electric) !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.18) !important;
}

/* Card 3: Solid Accent Background (Premium brand blue gradient matching the logo) */
.top-overlap-card.card-contact {
  background: linear-gradient(135deg, #1b1b4b 0%, #2563eb 100%) !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2) !important;
}

.top-overlap-card.card-contact:hover {
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.35) !important;
  border-color: transparent !important;
}

.top-overlap-card.card-contact .card-icon-area {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.top-overlap-card.card-contact .card-content-area h3 {
  color: #ffffff !important;
}

.top-overlap-card.card-contact .btn-card-action {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

.top-overlap-card.card-contact:hover .btn-card-action {
  background: #ffffff !important;
  color: #1b1b4b !important;
  border-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* --- END OF FILE --- */

@media (max-width: 767px) {
  .top-overlap-card {
    padding: 10px 14px !important;
    min-height: 90px !important;
    height: auto !important;
    gap: 12px !important;
    border-radius: 12px !important;
  }
  .top-overlap-card .card-icon-area {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    font-size: 1.25rem !important;
  }
  .top-overlap-card .card-content-area {
    gap: 4px !important;
  }
  .top-overlap-card .card-content-area h3 {
    font-size: 0.95rem !important;
    margin-bottom: 2px !important;
  }
  .top-overlap-card .btn-card-action {
    font-size: 0.7rem !important;
    padding: 3px 12px !important;
  }

  /* --- Parallax CTA Mobile overrides --- */
  #parallax-cta.section {
    padding: 50px 0 !important;
  }
  #parallax-cta .container {
    padding: 10px 0 !important;
  }
  #parallax-cta .parallax-title {
    font-size: 1.6rem !important;
    letter-spacing: -0.5px !important;
    line-height: 1.25 !important;
  }
  #parallax-cta .parallax-text {
    font-size: 0.88rem !important;
    margin: 0 15px 20px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
  }
  #parallax-cta #parallax-book-btn {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
  }

  /* --- Mobile Banner Image Adjustments --- */
  .hero-slideshow {
    height: 180px !important;
  }
  .hero-slide {
    height: 100% !important;
  }
  .hero-slide .hero-banner-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: left center !important;
  }

  /* --- Mobile Contact Details Cards --- */
  .contact-info-card {
    padding: 14px 12px !important;
    gap: 12px !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
  }
  .contact-info-card .icon-box {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
  }
  .contact-info-card .info-content h4 {
    font-size: 0.95rem !important;
    margin-bottom: 3px !important;
  }
  .contact-info-card .info-content p {
    font-size: 0.82rem !important;
  }
  .hours-list li {
    font-size: 0.82rem !important;
  }

  /* --- Homepage Section Gaps Reduction --- */
  #features-overview.section {
    padding-bottom: 25px !important;
  }
  #home-about.section {
    padding-top: 25px !important;
  }
  #home-about .ha-visual {
    margin-top: 10px !important;
    padding-top: 10px !important;
  }
}