/*
 * Health Point IND - Optimized CSS
 * Medical-themed responsive design for healthcare services
 * Version: 3.0 - Optimized and cleaned for better performance
 */
/* ===== FONTAWESOME ICON FIX ===== */
.fas, .far, .fab, .fal, .fa {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Pro" !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  line-height: 1 !important;
  display: inline-block !important;
  font-weight: 900 !important;
}
.fab {
  font-weight: 400 !important;
}
.far {
  font-weight: 400 !important;
}
/* Ensure icons are visible */
i.fas, i.far, i.fab, i.fal, i.fa {
  visibility: visible !important;
  opacity: 1 !important;
  display: inline-block !important;
}
/* ===== CSS RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
}
body {
  font-family: 'Montserrat', 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
  min-height: 100%;
  font-weight: 400;
}
/* Mobile bottom navigation spacing fix */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 70px !important; /* Minimized space for mobile bottom nav */
  }
  /* Adjust scroll to top button position */
  #scrollToTop {
    bottom: 80px !important;
  }
  /* Ensure footer content doesn't overlap */
  .footer-section {
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }
  /* Adjust any fixed elements */
  .sticky-buttons {
/* Medical Footer Styles */
.medical-footer {
  background: #16202a !important;
  color: #fff;
  padding: 1.5rem 0;
  width: 100%;
  border-top: 1px solid #e3eaf1;
  margin-top: 2rem;
}
.medical-footer, .medical-footer *, .medical-footer a {
  color: #fff !important;
}
.medical-footer a:hover {
  color: #43e97b !important;
}
.medical-footer .footer-links a, .medical-footer .footer-social a {
  margin-right: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}
/* Social Media Icons Styles */
.social-section {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}
.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: #e4405f; }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  color: #fff !important;
}
.mobile-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.mobile-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff !important;
  text-decoration: none;
  background: #3498db;
  transition: all 0.3s ease;
}
.mobile-social a:hover {
  transform: scale(1.1);
  background: #2980b9;
}
    bottom: 80px !important;
  }
  /* Ensure main content doesn't get cut off */
  main,
  .main-content {
    margin-bottom: 30px !important;
  }
  /* Footer links protection */
  .footer-section .container {
    margin-bottom: 30px !important;
  }
  .footer-section .row:last-child {
    margin-bottom: 40px !important;
  }
}
/* ===== MEDICAL THEME COLOR VARIABLES ===== */
:root {
  /* Primary Medical Colors */
  --primary-blue: #2563eb;
  --primary-blue-light: #3b82f6;
  --primary-blue-dark: #1d4ed8;
  --medical-green: #059669;
  --medical-green-light: #10b981;
  --medical-green-dark: #047857;
  /* Trust & Safety Colors */
  --trust-blue: #1e40af;
  --safety-green: #16a34a;
  --warning-amber: #f59e0b;
  --error-red: #dc2626;
  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--medical-green) 100%);
  --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  /* Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  /* Mobile Touch Targets */
  --touch-target: 44px;
  /* Header Heights */
  --header-height: 65px;
  --header-height-mobile: 60px;
}
/* ===== SEPARATED HEADER STRUCTURE STYLES ===== */
.header-wrapper {
  position: relative;
  z-index: 1000;
}
/* MEDICAL APPOINTMENT WEBSITE HEADER STYLES */
/* TOP BAR STYLES - Medical Theme */
.top-bar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-bottom: 1px solid rgba(0, 120, 215, 0.1);
  padding: 0.75rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}
/* MENU BAR STYLES - Medical Theme */
.menu-bar {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
  border-bottom: 3px solid #4ecdc4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 999;
}
/* DESKTOP MEDICAL HEADER STYLING */
@media (min-width: 768px) {
  /* Desktop Top Bar - Professional Medical Blue */
  .header-wrapper .top-bar,
  .top-bar {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%) !important;
    border-bottom: 2px solid #4ecdc4 !important;
    box-shadow: 0 3px 12px rgba(44, 82, 130, 0.2) !important;
  }
  /* Desktop Menu Bar - Darker Medical Blue */
  .header-wrapper .menu-bar,
  .menu-bar {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%) !important;
    border-bottom: 3px solid #4ecdc4 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }
  /* Brand Text Colors */
  .header-wrapper .brand-name,
  .brand-name {
    color: white !important;
    font-weight: 700 !important;
  }
  .header-wrapper .brand-tagline,
  .brand-tagline {
    color: #4ecdc4 !important;
    font-weight: 500 !important;
  }
  /* Action Button Styling */
  .header-wrapper .action-btn,
  .action-btn {
    border-color: rgba(255, 255, 255, 0.3) !important;
    font-weight: 600 !important;
  }
  .header-wrapper .action-btn.whatsapp-btn,
  .action-btn.whatsapp-btn {
    background: #25d366 !important;
    color: white !important;
    border-color: #25d366 !important;
  }
  .header-wrapper .action-btn.call-btn,
  .action-btn.call-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .header-wrapper .action-btn.login-btn,
  .header-wrapper .action-btn.account-btn,
  .action-btn.login-btn,
  .action-btn.account-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
  .header-wrapper .action-btn.logout-btn,
  .action-btn.logout-btn {
    background: rgba(220, 53, 69, 0.2) !important;
    color: #ff6b6b !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
  }
  .header-wrapper .action-btn.book-btn,
  .action-btn.book-btn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3) !important;
  }
  /* Desktop Navigation Links */
  .header-wrapper .desktop-nav-link,
  .desktop-nav-link {
    color: white !important;
    font-weight: 600 !important;
  }
  .header-wrapper .desktop-nav-link:hover,
  .desktop-nav-link:hover {
    color: #4ecdc4 !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }
}
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.brand-link:hover {
  color: inherit;
  text-decoration: none;
}
.brand-logo {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 120, 215, 0.15);
}
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0078d7 !important;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
}
.brand-tagline {
  font-size: 0.75rem;
  color: #4ecdc4 !important;
  font-weight: 500;
  margin-top: -2px;
}
/* ACTION BUTTONS */
.action-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mobile-actions {
  display: flex;
  gap: 8px;
}
.desktop-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-height: 44px;
  font-family: 'Montserrat', sans-serif;
}
.action-btn.whatsapp-btn {
  background: #25d366;
  color: white;
  border-color: #25d366;
}
.action-btn.whatsapp-btn:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.action-btn.call-btn {
  background: var(--medical-blue);
  color: white;
  border-color: var(--medical-blue);
}
.action-btn.call-btn:hover {
  background: #005a9e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 120, 215, 0.3);
}
.action-btn.login-btn,
.action-btn.account-btn {
  background: transparent;
  color: #2c3e50 !important;
  border-color: rgba(0, 120, 215, 0.3);
}
.action-btn.login-btn:hover,
.action-btn.account-btn:hover {
  background: rgba(0, 120, 215, 0.1);
  color: #0078d7 !important;
  border-color: #0078d7;
}
.action-btn.logout-btn {
  background: transparent;
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}
.action-btn.logout-btn:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: #dc3545;
}
.action-btn.book-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b6b 100%);
  color: white;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.action-btn.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  color: white;
}
.action-btn.book-btn.primary {
  animation: pulse-glow 2s infinite;
}
/* Mobile menu button styling */
@media (max-width: 767px) {
  .action-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  .mobile-menu-trigger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 120, 215, 0.1);
    border: 2px solid #0078d7;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    outline: none;
  }
  .mobile-menu-btn:hover,
  .mobile-menu-btn:focus {
    background: rgba(0, 120, 215, 0.2);
    border-color: #4ecdc4;
    transform: scale(1.05);
    outline: none;
  }
  .menu-icon-line {
    width: 18px;
    height: 2px;
    background: #0078d7;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
  }
  .mobile-menu-btn:hover .menu-icon-line {
    background: #4ecdc4;
  }
  .mobile-menu-btn[aria-expanded="true"] .menu-icon-line:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
    background: #ff6b6b;
  }
  .mobile-menu-btn[aria-expanded="true"] .menu-icon-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  .mobile-menu-btn[aria-expanded="true"] .menu-icon-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
    background: #ff6b6b;
  }
  .mobile-menu-btn[aria-expanded="true"] {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
  }
  .brand-logo {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  .brand-name {
    font-size: 1rem;
    color: #0078d7 !important;
  }
  .brand-tagline {
    color: #4ecdc4 !important;
  }
  /* MOBILE HEADER STYLING - Clean Medical Theme */
  .header-wrapper .top-bar,
  .top-bar {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-bottom: 2px solid rgba(44, 82, 130, 0.2) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
  /* Mobile Menu Bar - Medical Blue */
  .header-wrapper .menu-bar,
  .menu-bar {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%) !important;
    border-bottom: 3px solid #4ecdc4 !important;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }
  /* Mobile Brand Colors */
  .header-wrapper .brand-name,
  .brand-name {
    color: #2c5282 !important;
    font-weight: 700 !important;
  }
  .header-wrapper .brand-tagline,
  .brand-tagline {
    color: #4ecdc4 !important;
    font-weight: 500 !important;
  }
}
/* Hamburger Animation */
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  bottom: -8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}
/* Mobile Menu Styles */
.navbar-collapse {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-top: var(--space-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: var(--space-md);
    right: var(--space-md);
    z-index: 1000;
    padding: var(--space-lg);
  }
  .navbar-nav {
    gap: var(--space-xs);
  }
  .nav-link {
    padding: var(--space-md) !important;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-xs);
  }
  .nav-cta-btn {
    margin-top: var(--space-md);
    width: 100%;
    text-align: center;
  }
  .navbar {
    min-height: var(--header-height-mobile);
  }
  .navbar-brand {
    font-size: var(--font-size-lg);
  }
  .navbar-brand img {
    height: 35px;
  }
}
/* MENU BAR STYLES */
.menu-bar {
  background: linear-gradient(135deg, var(--medical-blue) 0%, #1e3a8a 100%);
  border-bottom: 2px solid var(--medical-green);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}
.menu-bar.scrolled {
  background: linear-gradient(135deg, rgba(0, 120, 215, 0.95) 0%, rgba(30, 58, 138, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/* Mobile Menu Header */
.mobile-menu-header {
  padding: 8px 0;
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: white !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}
.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.menu-icon {
  width: 20px;
  height: 2px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
}
.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}
.menu-icon::before {
  top: -6px;
}
.menu-icon::after {
  top: 6px;
}
/* Mobile Menu Content */
.mobile-menu-content {
  background: linear-gradient(135deg, var(--medical-blue) 0%, #1e3a8a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav {
  padding: 1rem 0;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  font-family: 'Montserrat', sans-serif;
}
.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #4ecdc4 !important;
  border-left-color: #4ecdc4;
  text-decoration: none;
}
.mobile-nav-link i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
}
.mobile-nav-link:active {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.2);
  border-left-color: #4ecdc4;
}
.mobile-nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  color: #4ecdc4 !important;
  border-left-color: #4ecdc4;
  font-weight: 600;
}
/* MOBILE NAVIGATION CONTENT STYLING */
.mobile-menu-content {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%) !important;
  border-top: 1px solid rgba(78, 205, 196, 0.3);
}
.mobile-nav {
  padding: 1rem 0;
}
.header-wrapper .mobile-nav-link,
.mobile-nav-link {
  color: white !important;
  background: transparent;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.header-wrapper .mobile-nav-link:hover,
.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #4ecdc4 !important;
  border-left-color: #4ecdc4 !important;
}
.header-wrapper .mobile-nav-link.active,
.mobile-nav-link.active {
  background: rgba(78, 205, 196, 0.2) !important;
  color: #4ecdc4 !important;
  border-left-color: #4ecdc4 !important;
  font-weight: 600 !important;
}
/* Desktop Menu */
.desktop-menu {
  padding: 16px 0;
}
.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.desktop-nav-link {
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}
.desktop-nav-link:hover {
  color: #4ecdc4 !important;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}
.desktop-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--medical-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.desktop-nav-link:hover::after {
  width: 80%;
}
.desktop-nav-link:active {
  transform: translateY(1px);
  background: rgba(255, 255, 255, 0.2);
}
.desktop-nav-link.active {
  color: #4ecdc4 !important;
  background: rgba(255, 255, 255, 0.15);
}
.desktop-nav-link.active::after {
  width: 100%;
}
/* Coming Soon Badge */
.coming-soon-badge {
  background: #ffc107;
  color: #000;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 6px;
  display: inline-block;
}
/* FINAL MEDICAL HEADER OVERRIDES - HIGHEST PRIORITY */
body .header-wrapper .top-bar,
body .top-bar {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-bottom: 2px solid rgba(44, 82, 130, 0.2) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
body .header-wrapper .menu-bar,
body .menu-bar {
  background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%) !important;
  border-bottom: 3px solid #4ecdc4 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
/* Desktop Override */
@media (min-width: 768px) {
  body .header-wrapper .top-bar,
  body .top-bar {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%) !important;
    border-bottom: 2px solid #4ecdc4 !important;
    box-shadow: 0 3px 12px rgba(44, 82, 130, 0.2) !important;
  }
  body .header-wrapper .menu-bar,
  body .menu-bar {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%) !important;
    border-bottom: 3px solid #4ecdc4 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  }
  body .header-wrapper .brand-name,
  body .brand-name {
    color: white !important;
  }
  body .header-wrapper .brand-tagline,
  body .brand-tagline {
    color: #4ecdc4 !important;
  }
  body .header-wrapper .desktop-nav-link,
  body .desktop-nav-link {
    color: white !important;
  }
  body .header-wrapper .desktop-nav-link:hover,
  body .desktop-nav-link:hover {
    color: #4ecdc4 !important;
  }
}
/* Mobile Override */
@media (max-width: 767px) {
  body .header-wrapper .brand-name,
  body .brand-name {
    color: #2c5282 !important;
  }
  body .header-wrapper .brand-tagline,
  body .brand-tagline {
    color: #4ecdc4 !important;
  }
  body .header-wrapper .mobile-nav-link,
  body .mobile-nav-link {
    color: white !important;
  }
  body .header-wrapper .mobile-nav-link:hover,
  body .mobile-nav-link:hover {
    color: #4ecdc4 !important;
  }
}
/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid rgba(44, 82, 130, 0.1);
  font-family: 'Montserrat', sans-serif;
}
.breadcrumb {
  background: transparent;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.breadcrumb-item {
  color: #6c757d;
}
.breadcrumb-item a {
  color: #0078d7;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb-item a:hover {
  color: #4ecdc4;
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #2c3e50;
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #6c757d;
  font-weight: 600;
}
@media (max-width: 767px) {
  .breadcrumb-nav {
    padding: 0.5rem 0;
  }
  .breadcrumb {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .breadcrumb-item {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
/* ===== HERO SECTION STYLES ===== */
.hero-section-medical {
  background: var(--gradient-hero);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-section-medical::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(37,99,235,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: var(--font-size-5xl);
  line-height: 1.2;
  margin-bottom: var(--space-xl);
  color: var(--gray-900);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.headline-highlight {
  color: var(--primary-blue);
  position: relative;
}
.headline-accent {
  color: var(--medical-green);
  font-weight: 700;
  position: relative;
}
.headline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.3;
}
/* Animated Tagline */
.tagline-highlight-container {
  margin-bottom: var(--space-xl);
}
.tagline-highlight-wrapper {
  display: flex;
  align-items: center;
  font-size: var(--font-size-xl);
  font-weight: 500;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.tagline-prefix {
  color: var(--gray-600);
}
.tagline-highlight {
  position: relative;
  background: rgba(37, 99, 235, 0.1);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-2xl);
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(37, 99, 235, 0.2);
  transition: var(--transition-normal);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
}
.highlight-text {
  margin-right: var(--space-sm);
}
.highlight-badge {
  background: var(--primary-blue);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(-2px);
  }
}
.hero-subheading {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
  font-weight: 400;
  line-height: 1.6;
}
/* ===== ENHANCED HERO SECTION STYLES ===== */
/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
/* Enhanced Hero Headline */
.hero-headline {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2c3e50;
}
.headline-main {
  display: block;
  color: #2c3e50;
}
.headline-highlight {
  display: block;
  background: linear-gradient(135deg, #007bff 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
/* Dynamic Tagline */
.hero-tagline {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.tagline-prefix {
  color: #6c757d;
  margin-right: 0.5rem;
}
.tagline-dynamic {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  margin-right: 10px;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
  animation: pulse-glow 2s ease-in-out infinite;
  transition: all 0.3s ease;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3); }
  50% { transform: scale(1.05); box-shadow: 0 5px 20px rgba(40, 167, 69, 0.5); }
}
.highlight-badge {
  width: 30px;
  height: 30px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartbeat 1.5s ease-in-out infinite;
}
@keyframes heartbeat {
  0%, 50%, 100% { transform: scale(1); }
  25%, 75% { transform: scale(1.1); }
}
/* Hero Subheading */
.hero-subheading {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.savings-highlight {
  color: #dc3545;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #dc3545;
}
/* Hero Features */
.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px 15px;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-color: #007bff;
}
.feature-icon {
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #007bff 0%, #4ecdc4 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.75rem;
}
.feature-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50;
  white-space: nowrap;
}
/* Enhanced CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  color: white;
}
.btn-hero-secondary {
  background: white;
  color: #007bff;
  border: 2px solid #007bff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}
/* Pulse Animation for Primary Button */
.pulse-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 200px; height: 200px; opacity: 0; }
}
/* Trust Indicators */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6c757d;
}
.trust-item i {
  margin-right: 5px;
  font-size: 1rem;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.3rem;
    text-align: center;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .headline-main,
  .headline-highlight {
    display: inline;
  }
  .hero-tagline {
    justify-content: center;
    font-size: 1rem;
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  .tagline-prefix {
    font-size: 0.9rem;
  }
  .tagline-dynamic {
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
    white-space: nowrap;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .hero-features {
    justify-content: center;
  }
  /* Services Section Mobile Center Alignment */
  .services-section .section-header {
    text-align: center !important;
  }
  .services-section .section-title {
    text-align: center !important;
    font-size: 1.6rem !important;
  }
  .services-section .section-subtitle {
    text-align: center !important;
  }
  .services-section .row {
    justify-content: center !important;
  }
  /* Service Page Specific Mobile Alignment */
  .price-list-section {
    text-align: center !important;
  }
  .price-list-section .d-flex.align-items-center {
    justify-content: center !important;
    text-align: center !important;
  }
  .price-list-section h3 {
    text-align: center !important;
    font-size: 1.4rem !important;
  }
  .price-list-section .text-muted {
    text-align: center !important;
  }
  /* Fix for Exclusive Packages section in all service pages */
  .d-flex.align-items-center.mb-2 {
    justify-content: center !important;
    text-align: center !important;
    display: block !important;
  }
  .price-list-section .d-flex.align-items-center.mb-2 {
    display: block !important;
    text-align: center !important;
  }
  .price-list-section .d-flex.align-items-center.mb-2 h3,
  .price-list-section .d-flex.align-items-center.mb-2 .h5 {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .h5.fw-bold {
    text-align: center !important;
    font-size: 1.4rem !important;
  }
  .hero-cta {
    justify-content: center;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
  .section-subtitle {
    font-size: 1.05rem !important;
  }
  .why-choose-title {
    font-size: 1.3rem !important;
  }
  .why-choose-card p {
    font-size: 1.05rem !important;
  }
}
@media (max-width: 576px) {
  .hero-headline {
    font-size: 2.2rem;
  }
  .hero-subheading {
    font-size: 1.1rem;
  }
  .feature-item {
    padding: 8px 12px;
  }
  .feature-text {
    font-size: 0.9rem;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.6rem !important;
  }
  .section-subtitle {
    font-size: 1rem !important;
  }
  .why-choose-title {
    font-size: 1.25rem !important;
  }
    .why-choose-card p {
    font-size: 1rem !important;
  }
}
/* Extra small mobile devices */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }
  .hero-subheading {
    font-size: 1rem;
  }
  .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .tagline-dynamic {
    font-size: 0.75rem !important;
    padding: 4px 8px !important;
    max-width: 200px;
  }
  .tagline-prefix {
    font-size: 0.8rem;
  }
  .section-title {
    font-size: 1.4rem !important;
    line-height: 1.3;
  }
  .section-subtitle {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }
  /* Service Page Exclusive Packages Mobile Fix */
  .price-list-section h3,
  .h5.fw-bold {
    font-size: 1.2rem !important;
    text-align: center !important;
  }
  .price-list-section .d-flex.align-items-center {
    flex-direction: column !important;
    text-align: center !important;
    display: block !important;
  }
  .price-list-section .d-flex.align-items-center.mb-2 {
    display: block !important;
    text-align: center !important;
  }
  .price-list-section .d-flex.align-items-center.mb-2 h3,
  .price-list-section .d-flex.align-items-center.mb-2 .h5,
  .price-list-section .d-flex.align-items-center.mb-2 .h5.fw-bold {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    font-size: 1.2rem !important;
  }
  .price-list-section .text-muted {
    font-size: 0.9rem !important;
    text-align: center !important;
  }
  .why-choose-title {
    font-size: 1.15rem !important;
    line-height: 1.4;
  }
  .why-choose-card p {
    font-size: 0.95rem !important;
    line-height: 1.6;
  }
}
/* ===== SERVICES SECTION STYLES ===== */
.services-section {
  background: #ffffff;
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,87,194,0.1) 0%, rgba(126,87,194,0) 70%);
  z-index: 1;
}
.services-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66,165,245,0.1) 0%, rgba(66,165,245,0) 70%);
  z-index: 1;
}
.section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}
.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7e57c2 0%, #4d3c7a 100%);
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
  box-shadow: 0 6px 12px rgba(77, 60, 122, 0.2);
}
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #7e57c2 0%, #8a70ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 0.9rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto 10px;
  font-weight: 500;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff 0%, #00c6ff 100%);
  margin: 0 auto;
  border-radius: 2px;
  margin-bottom: 10px;
}
.booking-info {
  font-size: 0.9rem;
  color: #444;
  font-weight: 500;
}
.booking-info i {
  margin-right: 5px;
  font-size: 0.85rem;
}
/* Service Cards */
.service-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}
.service-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid #e3f2fd;
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 180px;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.06);
  border-color: #d8dcff;
}
.service-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  box-shadow: none;
  background: #8a70ff;
}
.service-card-icon i {
  font-size: 16px;
}
.service-card-content {
  padding: 0;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
  line-height: 1.2;
  min-height: auto;
  text-align: left;
  display: flex;
  align-items: center;
}
.service-card-description {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.3;
  display: -webkit-box;
  display: box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  height: auto;
  text-align: left;
}
.service-card-price {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: auto;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-card-price .price {
  padding: 0;
  display: inline-block;
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
}
.service-card-action {
  margin-left: auto;
}
.service-card-action span {
  display: none;
}
.service-card-action i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffde59;
  color: #333;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  margin-left: 5px;
}
.service-card:hover .service-card-action i {
  transform: translateX(2px);
  background: #ffd700;
}
/* Color variations for service cards */
.service-card-purple .service-card-icon { background: #8a70ff; }
.service-card-blue .service-card-icon { background: #5b8def; }
.service-card-green .service-card-icon { background: #4caf50; }
.service-card-orange .service-card-icon { background: #ff9800; }
.service-card-red .service-card-icon { background: #f44336; }
.service-card-teal .service-card-icon { background: #009688; }
.service-card-pink .service-card-icon { background: #e91e63; }
.service-discount {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ff5252;
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Card Style Variations */
.card-style-1 {
  border-top: 5px solid transparent;
}
.card-style-2 {
  border-radius: 16px 0 16px 0;
}
.card-style-3 {
  border-bottom: 5px solid transparent;
}
.card-style-4 {
  border-radius: 0 16px 0 16px;
}
/* Color Variations */
/* Color variations - consolidated for better performance */
.service-card-purple .service-card-icon { background: linear-gradient(135deg, #7e57c2 0%, #4d3c7a 100%); }
.service-card-purple .service-card-price .price { color: #7e57c2; background-color: rgba(126,87,194,0.1); }
.service-card-purple.card-style-1, .service-card-purple.card-style-3 { border-color: #7e57c2; }
.service-card-purple .service-card-action { color: #7e57c2; }
.service-card-blue .service-card-icon { background: linear-gradient(135deg, #42a5f5 0%, #1565c0 100%); }
.service-card-blue .service-card-price .price { color: #1565c0; background-color: rgba(21,101,192,0.1); }
.service-card-blue.card-style-1, .service-card-blue.card-style-3 { border-color: #1565c0; }
.service-card-blue .service-card-action { color: #1565c0; }
.service-card-green .service-card-icon { background: linear-gradient(135deg, #66bb6a 0%, #2e7d32 100%); }
.service-card-green .service-card-price .price { color: #2e7d32; background-color: rgba(46,125,50,0.1); }
.service-card-green.card-style-1, .service-card-green.card-style-3 { border-color: #2e7d32; }
.service-card-green .service-card-action { color: #2e7d32; }
.service-card-orange .service-card-icon { background: linear-gradient(135deg, #ff9800 0%, #e65100 100%); }
.service-card-orange .service-card-price .price { color: #e65100; background-color: rgba(230,81,0,0.1); }
.service-card-orange.card-style-1, .service-card-orange.card-style-3 { border-color: #e65100; }
.service-card-orange .service-card-action { color: #e65100; }
.service-card-red .service-card-icon { background: linear-gradient(135deg, #f44336 0%, #b71c1c 100%); }
.service-card-red .service-card-price .price { color: #b71c1c; background-color: rgba(183,28,28,0.1); }
.service-card-red.card-style-1, .service-card-red.card-style-3 { border-color: #b71c1c; }
.service-card-red .service-card-action { color: #b71c1c; }
.service-card-teal .service-card-icon { background: linear-gradient(135deg, #26a69a 0%, #00695c 100%); }
.service-card-teal .service-card-price .price { color: #00695c; background-color: rgba(0,105,92,0.1); }
.service-card-teal.card-style-1, .service-card-teal.card-style-3 { border-color: #00695c; }
.service-card-teal .service-card-action { color: #00695c; }
.service-card-pink .service-card-icon { background: linear-gradient(135deg, #ec407a 0%, #c2185b 100%); }
.service-card-pink .service-card-price .price { color: #c2185b; background-color: rgba(194,24,91,0.1); }
.service-card-pink.card-style-1, .service-card-pink.card-style-3 { border-color: #c2185b; }
.service-card-pink .service-card-action { color: #c2185b; }
/* View All Button */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: #8a70ff;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(138, 112, 255, 0.15);
  transition: all 0.3s ease;
  margin-top: 5px;
}
.btn-view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(138, 112, 255, 0.3);
  background: #7a5fff;
  color: white;
}
.btn-view-all i {
  margin-left: 8px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}
.btn-view-all:hover i {
  transform: translateX(4px);
}
/* ===== STATS SECTION CARDS DESIGN ===== */
/* Stats Section Container */
.stats-section-enhanced {
  padding: 2rem 0;
  margin: 1rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.stats-section-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 123, 255, 0.02) 0%, rgba(78, 205, 196, 0.02) 100%);
  pointer-events: none;
}
/* Background Pattern Animation */
@keyframes bgPatternMove {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-10px) translateY(-10px); }
  50% { transform: translateX(-20px) translateY(0); }
  75% { transform: translateX(-10px) translateY(10px); }
  100% { transform: translateX(0) translateY(0); }
}
/* Stats Title Styling */
.stats-title {
  opacity: 0;
  transform: translateY(30px);
  animation: titleFadeIn 1s ease-out 0.3s forwards;
  font-size: 1.8rem !important;
  font-weight: 600 !important;
}
.stats-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: titleFadeIn 1s ease-out 0.6s forwards;
  font-size: 1rem !important;
}
@keyframes titleFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stat-card-enhanced {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 0.6rem 0.4rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}
/* Animation states for stats cards */
.stat-card-animated {
  opacity: 0;
  transform: translateY(50px) scale(0.8);
}
.stat-card-animated.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: statsCardSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes statsCardSlideIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  60% {
    opacity: 0.9;
    transform: translateY(-10px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Pulse animation for stats cards after they slide in */
@keyframes statsPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
/* Apply pulse animation to cards after they animate in */
.stat-card-enhanced.animate-in {
  animation: statsCardSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
             statsPulse 4s ease-in-out 2s infinite;
}
/* Enhanced hover effects for animated cards */
.stat-card-enhanced.animate-in:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.stat-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff 0%, #4ecdc4 100%);
  border-radius: 12px 12px 0 0;
}
.stat-card-enhanced::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.stat-card-enhanced:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.stat-card-enhanced:hover::after {
  left: 100%;
}
.stat-icon-enhanced {
  margin-bottom: 0.3rem;
  color: #007bff;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.2rem;
}
.stat-card-enhanced:hover .stat-icon-enhanced {
  transform: scale(1.1);
  opacity: 1;
}
.stat-number-enhanced {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.15rem;
  line-height: 1;
  text-align: center;
  position: relative;
}
.stat-label-enhanced {
  font-size: 0.55rem;
  font-weight: 600;
  color: #6c757d;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}
.stat-accent-line {
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, #007bff 0%, #4ecdc4 100%);
  border-radius: 2px;
  margin: 0 auto;
  transition: width 0.3s ease;
}
.stat-card-enhanced:hover .stat-accent-line {
  width: 30px;
}
/* Enhanced Color Variations */
.stat-card-enhanced.savings-highlight::before {
  background: linear-gradient(90deg, #ffc107 0%, #fd7e14 100%);
}
.stat-card-enhanced.savings-highlight .stat-icon-enhanced {
  color: #ffc107;
}
.stat-card-enhanced.savings-highlight .stat-accent-line {
  background: linear-gradient(90deg, #ffc107 0%, #fd7e14 100%);
}
.stat-card-enhanced.quality-highlight::before {
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}
.stat-card-enhanced.quality-highlight .stat-icon-enhanced {
  color: #28a745;
}
.stat-card-enhanced.quality-highlight .stat-accent-line {
  background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}
.stat-card-enhanced.discount-highlight::before {
  background: linear-gradient(90deg, #dc3545 0%, #fd7e14 100%);
}
.stat-card-enhanced.discount-highlight .stat-icon-enhanced {
  color: #dc3545;
}
.stat-card-enhanced.discount-highlight .stat-accent-line {
  background: linear-gradient(90deg, #dc3545 0%, #fd7e14 100%);
}
.stat-card-enhanced.trust-highlight::before {
  background: linear-gradient(90deg, #6f42c1 0%, #e83e8c 100%);
}
.stat-card-enhanced.trust-highlight .stat-icon-enhanced {
  color: #6f42c1;
}
.stat-card-enhanced.trust-highlight .stat-accent-line {
  background: linear-gradient(90deg, #6f42c1 0%, #e83e8c 100%);
}
.stat-card-enhanced.service-highlight::before {
  background: linear-gradient(90deg, #17a2b8 0%, #6610f2 100%);
}
.stat-card-enhanced.service-highlight .stat-icon-enhanced {
  color: #17a2b8;
}
.stat-card-enhanced.service-highlight .stat-accent-line {
  background: linear-gradient(90deg, #17a2b8 0%, #6610f2 100%);
}
.stat-card-enhanced.network-highlight::before {
  background: linear-gradient(90deg, #fd7e14 0%, #ffc107 100%);
}
.stat-card-enhanced.network-highlight .stat-icon-enhanced {
  color: #fd7e14;
}
.stat-card-enhanced.network-highlight .stat-accent-line {
  background: linear-gradient(90deg, #fd7e14 0%, #ffc107 100%);
}
/* Stats Card Animation System - Enhanced */
.stat-card-animated {
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  animation: none;
}
.stat-card-animated.animate-in {
  animation: statsSlideInEnhanced 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.stat-card-animated.animate {
  animation: statsSlideInEnhanced 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes statsSlideInEnhanced {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  40% {
    opacity: 0.7;
    transform: translateY(-15px) scale(1.08);
  }
  70% {
    opacity: 0.9;
    transform: translateY(5px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Continuous pulsing animation for enhanced visibility */
@keyframes statsCardPulse {
  0% {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.12);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transform: scale(1);
  }
}
/* Apply both slide-in and pulse animations */
.stat-card-enhanced.animate-in {
  animation: 
    statsSlideInEnhanced 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
    statsCardPulse 4s ease-in-out infinite 2s;
}
/* Number counting animation */
.stat-number-enhanced.counting {
  animation: numberCountPulse 0.1s ease-out infinite;
}
@keyframes numberCountPulse {
  0% { 
    transform: scale(1); 
    color: #2c3e50;
  }
  50% { 
    transform: scale(1.05); 
    color: #007bff;
  }
  100% { 
    transform: scale(1); 
    color: #2c3e50;
  }
}
/* Glow effect on hover for extra visibility */
.stat-card-enhanced:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.stat-card-enhanced:hover::before {
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.2);
}
/* Enhanced mobile hover effects */
@media (hover: none) {
  .stat-card-enhanced {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08) !important;
  }
  .stat-card-enhanced.animate-in {
    animation: statsSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               statsPulse 3s ease-in-out infinite 0.8s;
  }
}
/* Number Counter Animation */
.stat-number-enhanced.counting {
  animation: numberPulse 0.6s ease-out;
}
@keyframes numberPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); color: #007bff; }
  100% { transform: scale(1); }
}
/* Responsive Design for Stats Cards */
@media (max-width: 768px) {
  .stats-section-enhanced {
    padding: 1.2rem 0;
    margin: 0.5rem 0;
  }
  .stat-card-enhanced {
    padding: 0.6rem 0.4rem;
    min-height: 100px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }
  .stat-number-enhanced {
    font-size: 1rem;
  }
  .stat-label-enhanced {
    font-size: 0.6rem;
  }
  .stat-icon-enhanced {
    margin-bottom: 0.3rem;
    font-size: 1.3rem !important;
  }
  .stat-card-enhanced:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }
}
@media (max-width: 576px) {
  .stats-section-enhanced {
    padding: 1rem 0;
    margin: 0.3rem 0;
  }
  .stat-card-enhanced {
    padding: 0.4rem 0.3rem;
    min-height: 80px;
  }
    .stat-number-enhanced {
    font-size: 1.25rem;
    font-weight: 800;
    word-break: break-word;
    text-wrap: balance;
    line-height: 1.1;
  }
  .stat-label-enhanced {
    font-size: 0.75rem;
    font-weight: 700;
    word-break: break-word;
    text-wrap: balance;
    line-height: 1.15;
  }
  .stat-icon-enhanced {
    font-size: 1rem !important;
    margin-bottom: 0.15rem;
  }
  .stats-title {
    font-size: 1.4rem !important;
  }
  .stats-subtitle {
    font-size: 0.9rem !important;
  }
}
/* Extra small screens - even more compact */
@media (max-width: 480px) {
  .stats-section-enhanced {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    border-top: 1px solid rgba(0, 123, 255, 0.1);
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
    padding: 0.8rem 0;
  }
  .stat-card-enhanced {
    border: 1px solid rgba(0, 123, 255, 0.1);
    background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
    min-height: 85px;
    padding: 0.4rem 0.2rem;
  }
    .stat-number-enhanced {
    font-size: 1.1rem;
    font-weight: 800;
    word-break: break-word;
    text-wrap: balance;
    line-height: 1.1;
  }
  .stat-label-enhanced {
    font-size: 0.7rem;
    font-weight: 700;
    word-break: break-word;
    text-wrap: balance;
    line-height: 1.12;
  }
  .stat-icon-enhanced {
    font-size: 1rem !important;
  }
}
/* ===== HOW IT WORKS SECTION STYLES ===== */
/* How It Works Marquee Animation */
.how-it-works-marquee-container {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 15px 0;
  overflow: hidden;
  margin: 15px 0;
}
.marquee-content-wrapper {
  display: flex;
  animation: marqueeScroll 18s linear infinite;
  gap: 15px;
  padding: 0 15px;
}
.how-it-works-item {
  flex: 0 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  color: #495057;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  min-width: 260px;
  cursor: pointer;
  font-size: 0.9rem;
}
.how-it-works-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}
.how-it-works-item.alternative-step {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border-color: #9c27b0;
  color: #6a1b9a;
}
.how-it-works-item.alternative-step:hover {
  border-color: #673ab7;
  box-shadow: 0 6px 20px rgba(156, 39, 176, 0.15);
}
.step-number {
  display: inline-block;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  line-height: 26px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 8px;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.25);
}
.alternative-step .step-number {
  background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
  box-shadow: 0 2px 8px rgba(156, 39, 176, 0.25);
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* CTA Buttons */
.cta-buttons-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.cta-button {
  background: #4d3c7a;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 3px 8px rgba(77, 60, 122, 0.2);
  transition: all 0.3s ease;
  border: none;
    cursor: pointer;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 60, 122, 0.3);
  color: white;
  text-decoration: none;
}
.cta-button i {
  margin-right: 6px;
}
/* WhatsApp button specific styling */
.cta-button[href*="whatsapp"],
.cta-button[href*="wa.me"] {
  background: #25D366;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.2);
}
.cta-button[href*="whatsapp"]:hover,
.cta-button[href*="wa.me"]:hover {
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
/* ===== FOOTER SOCIAL MEDIA STYLING ===== */
/* Social Media Links */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
/* --- Styles moved from index.php --- */
/* Mobile-responsive CSS for Hero Section */
/* Hero Section Mobile Fixes */
@media (max-width: 991.98px) {
  .hero-section-redesigned {
    padding: 1.5rem 0 1rem 0 !important;
  }
}
@media (max-width: 768px) {
  .hero-section-redesigned {
    padding: 1rem 0 0.8rem 0 !important;
  }
  .hero-image-slider {
    max-width: 100% !important;
    margin: 0 0 1.5rem 0 !important;
  }
  .swiper-container.heroSwiper {
    height: 280px !important;
  }
  .slide-caption {
    display: none !important;
  }
  .hero-section-redesigned .container {
    padding: 0 15px;
  }
  .hero-section-redesigned .row {
    margin: 0;
  }
  .hero-section-redesigned .col-lg-6 {
    padding: 0 15px;
  }
    .hero-content {
    text-align: center;
    padding: 1rem 0;
  }
  .hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-headline {
    font-size: 1.8rem !important;
    text-align: center;
  }
  .hero-tagline {
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .hero-subheading {
    font-size: 0.9rem !important;
    text-align: center;
  }
  .hero-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
    .hero-trust {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-cta .btn {
    margin: 0.5rem;
    width: auto;
    min-width: 150px;
  }
}
@media (max-width: 480px) {
  .swiper-container.heroSwiper {
    height: 260px !important;
  }
  .slide-caption {
    display: none !important;
  }
  .hero-headline {
    font-size: 1.5rem !important;
  }
}
/* --- Professional & Mobile-Optimized Hero Image --- */
.hero-image-slider {
  max-width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 32px 0 rgba(80, 80, 160, 0.13);
  background: #f8faff;
  margin-bottom: 1.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-container.heroSwiper {
  height: 320px !important;
  border-radius: 18px;
  width: 100%;
}
.hero-image-slider img {
  border-radius: 18px;
  object-fit: cover;
  width: 100%;
  height: 320px;
  min-height: 280px;
  max-height: 320px;
  box-shadow: none;
}
.slide-caption {
  display: none !important;
}
@media (max-width: 991.98px) {
  .hero-image-slider {
    min-height: 280px;
    max-height: 320px;
    border-radius: 14px;
  }
  .swiper-container.heroSwiper {
    height: 280px !important;
    border-radius: 14px;
  }
  .hero-image-slider img {
    height: 280px;
    min-height: 200px;
    max-height: 280px;
    border-radius: 14px;
  }
}
@media (max-width: 575.98px) {
  .hero-image-slider {
    min-height: 200px;
    max-height: 240px;
    border-radius: 10px;
  }
  .swiper-container.heroSwiper {
    height: 200px !important;
    border-radius: 10px;
  }
  .hero-image-slider img {
    height: 200px;
    min-height: 160px;
    max-height: 200px;
    border-radius: 10px;
  }
}
/* --- Adjust hero section spacing for desktop and mobile --- */
@media (min-width: 992px) {
  .hero-section-redesigned .row {
    flex-wrap: nowrap !important;
    gap: 40px;
    align-items: center;
  }
  .hero-section-redesigned .col-lg-6:first-child {
    flex: 0 0 42%;
    max-width: 42%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .hero-section-redesigned .col-lg-6:last-child {
    flex: 0 0 58%;
    max-width: 58%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .hero-content {
    padding-left: 20px;
  }
}
@media (max-width: 991.98px) {
  .hero-section-redesigned .row {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .hero-section-redesigned .col-lg-6 {
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 0 !important;
  }
  .hero-content {
    padding: 0.7rem 0 0.7rem 0 !important;
  }
  .hero-section-redesigned {
    padding: 1.2rem 0 1.2rem 0 !important;
  }
}
/* --- Further optimize desktop hero layout --- */
@media (min-width: 992px) {
  .hero-section-redesigned .row {
    flex-wrap: nowrap !important;
    gap: 20px;
    align-items: center;
  }
  .hero-section-redesigned .col-lg-6:first-child {
    flex: 0 0 47%;
    max-width: 47%;
    padding-right: 10px;
    padding-left: 10px;
  }
  .hero-section-redesigned .col-lg-6:last-child {
    flex: 0 0 53%;
    max-width: 53%;
    padding-right: 10px;
    padding-left: 10px;
  }
  .hero-content {
    padding-left: 15px;
  }
}
@media (max-width: 991.98px) {
  .hero-section-redesigned .row {
    flex-wrap: wrap !important;
    gap: 4px;
  }
  .hero-section-redesigned .col-lg-6 {
    padding-right: 2px;
    padding-left: 2px;
    margin-bottom: 0 !important;
  }
  .hero-content {
    padding: 0.3rem 0 0.3rem 0 !important;
  }
  .hero-section-redesigned {
    padding: 0.6rem 0 0.6rem 0 !important;
  }
}
.stats-section-enhanced {
      padding: 2.2rem 0 1.5rem 0;
      position: relative;
      background: linear-gradient(120deg, #f5f7fa 60%, #e3e9ff 100%);
    }
    .stat-card-enhanced {
      background: linear-gradient(135deg, #fff 80%, #f7f5ff 100%);
      border-radius: 14px;
      padding: 1.2rem 0.7rem 1rem 0.7rem;
      box-shadow: 0 4px 18px 0 rgba(80, 80, 160, 0.08);
      border: 1.5px solid #e7e3fa;
      min-height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: box-shadow 0.18s, transform 0.18s;
      position: relative;
      overflow: hidden;
    }
    .stat-card-enhanced .stat-icon-enhanced {
      font-size: 1.7rem;
      margin-bottom: 0.5rem;
      color: #7e57c2;
      opacity: 0.93;
      transition: all 0.3s;
    }
    .stat-card-enhanced:hover .stat-icon-enhanced {
      color: #4d3c7a;
      transform: scale(1.09) rotate(-4deg);
    }
    .stat-number-enhanced {
      font-size: 1.25rem;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 0.18rem;
      letter-spacing: 0.01em;
      text-shadow: 0 2px 8px rgba(80,80,160,0.07);
    }
    .stat-label-enhanced {
      font-size: 0.98rem;
      font-weight: 600;
      color: #7e57c2;
      margin-bottom: 0.1rem;
      letter-spacing: 0.01em;
    }
    .stat-accent-line {
      width: 24px;
      height: 2px;
      background: linear-gradient(90deg, #7e57c2 0%, #4ecdc4 100%);
      border-radius: 2px;
      margin: 0.3rem auto 0 auto;
    }
    .stat-card-animated {
      opacity: 0;
      transform: translateY(40px) scale(0.97);
      transition: opacity 0.6s, transform 0.6s;
    }
    .stat-card-animated.animate-in {
      opacity: 1;
      transform: translateY(0) scale(1.01);
      animation: statsCardPop 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, statsPulse 3s ease-in-out 2s infinite;
    }
    @keyframes statsCardPop {
      0% { opacity: 0; transform: translateY(40px) scale(0.97); }
      60% { opacity: 0.9; transform: translateY(-6px) scale(1.04); }
      100% { opacity: 1; transform: translateY(0) scale(1.01); }
    }
    @keyframes statsPulse {
      0%, 100% { transform: scale(1.01); }
      50% { transform: scale(1.04); }
    }
    @media (max-width: 991.98px) {
      .stat-card-enhanced { padding: 0.8rem 0.3rem 0.7rem 0.3rem; min-height: 80px; }
      .stat-card-enhanced .stat-icon-enhanced { font-size: 1.2rem; margin-bottom: 0.3rem; }
      .stat-number-enhanced { font-size: 0.98rem; }
      .stat-label-enhanced { font-size: 0.85rem; }
    }
    @media (max-width: 575.98px) {
      .stats-section-enhanced { padding: 1.2rem 0 0.5rem 0; }
      .stat-card-enhanced { padding: 0.6rem 0.1rem 0.5rem 0.1rem; min-height: 60px; }
      .stat-card-enhanced .stat-icon-enhanced { font-size: 1rem; margin-bottom: 0.2rem; }
      .stat-number-enhanced { font-size: 0.75rem; }
      .stat-label-enhanced { font-size: 0.7rem; }
      .stat-accent-line { width: 14px; height: 1.5px; }
    }
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  margin: 0 5px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}
/* Individual social platform colors */
.social-link.facebook {
  background: #1877f2;
}
.social-link.facebook:hover {
  background: #166fe5;
}
.social-link.twitter {
  background: #1da1f2;
}
.social-link.twitter:hover {
  background: #1a91da;
}
.social-link.linkedin {
  background: #0077b5;
}
.social-link.linkedin:hover {
  background: #006ba1;
}
.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-link.instagram:hover {
  background: linear-gradient(45deg, #e8832d 0%, #dc5f36 25%, #d11d3d 50%, #c11d60 75%, #b01682 100%);
}
.social-link.youtube {
  background: #ff0000;
}
.social-link.youtube:hover {
  background: #e60000;
}
/* Mobile social media styling */
.mobile-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  margin: 0 3px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.mobile-social a[href*="facebook"] {
  background: #1877f2;
}
.mobile-social a[href*="twitter"] {
  background: #1da1f2;
}
.mobile-social a[href*="instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.mobile-social a[href*="youtube"] {
  background: #ff0000;
}
.mobile-social a:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}
/* Footer Enhanced Social Links */
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  margin: 0 4px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.footer-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: white;
  text-decoration: none;
}
.footer-social-link[href*="facebook"] {
  background: #1877f2;
}
.footer-social-link[href*="facebook"]:hover {
  background: #166fe5;
}
.footer-social-link[href*="twitter"] {
  background: #1da1f2;
}
.footer-social-link[href*="twitter"]:hover {
  background: #1a91da;
}
.footer-social-link[href*="linkedin"] {
  background: #0077b5;
}
.footer-social-link[href*="linkedin"]:hover {
  background: #006ba1;
}
.footer-social-link[href*="instagram"] {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-social-link[href*="instagram"]:hover {
  background: linear-gradient(45deg, #e8832d 0%, #dc5f36 25%, #d11d3d 50%, #c11d60 75%, #b01682 100%);
}
.footer-social-link[href*="youtube"] {
  background: #ff0000;
}
.footer-social-link[href*="youtube"]:hover {
  background: #e60000;
}
/* Ultra-specific mobile fix for service page headings - MRI scan fix */
@media (max-width: 768px) {
  /* Only target the specific heading container with icon, not all flex elements */
  div.price-list-section > div.d-flex.align-items-center.mb-2:first-child {
    display: block !important;
    text-align: center !important;
  }
  div.price-list-section > div.d-flex.align-items-center.mb-2:first-child h3.h5.fw-bold.mb-0,
  div.price-list-section > div.d-flex.align-items-center.mb-2:first-child h3 {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    font-size: 1.2rem !important;
  }
  /* Ensure category pills remain functional */
  .price-list-section .category-pills {
    display: block !important;
    overflow-x: auto !important;
  }
  .price-list-section .category-pills-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  .price-list-section .category-pill {
    display: inline-flex !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
  }
}
@ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {   . p r i c e - l i s t - s e c t i o n   . d - f l e x . a l i g n - i t e m s - c e n t e r . m b - 2   {   j u s t i f y - c o n t e n t :   c e n t e r ;   }   }  
 