/* ==========================================================================
   AuraCare Multispeciality Hospital & Research Center
   Main Stylesheet - Clean, Modern, Professional Healthcare Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --primary-gradient: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --accent: #06b6d4;
  --accent-light: #ecfeff;
  --success: #10b981;
  --success-light: #d1fae5;
  --emergency: #ef4444;
  --emergency-dark: #dc2626;
  --emergency-light: #fee2e2;
  --warning: #f59e0b;
  
  /* Neutral Palette */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-alt: #f1f5f9;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-focus: #38bdf8;
  
  /* Shadows & Elevations */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 25px 45px -12px rgba(2, 132, 199, 0.22);
  --shadow-emergency: 0 10px 25px -5px rgba(239, 68, 68, 0.35);
  
  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
}

/* Section Header Utility */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-tag.emergency-tag {
  background-color: var(--emergency-light);
  color: var(--emergency);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: none;
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4);
  color: #ffffff;
}

.btn-secondary-custom {
  background-color: #ffffff;
  color: var(--secondary);
  border: 1px solid var(--border-color);
}

.btn-secondary-custom:hover {
  background-color: var(--bg-alt);
  color: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-emergency {
  background-color: var(--emergency);
  color: #ffffff;
  border: none;
  font-weight: 700;
  box-shadow: var(--shadow-emergency);
  position: relative;
  overflow: hidden;
}

.btn-emergency:hover {
  background-color: var(--emergency-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.45);
}

.btn-emergency .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  animation: live-pulse 1.5s infinite;
}

@keyframes live-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.btn-outline-primary {
  color: var(--primary);
  border: 2px solid var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background-color: var(--secondary);
  color: #cbd5e1;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: #cbd5e1;
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.5rem;
}

.top-bar-item i {
  color: var(--accent);
}

.top-bar-emergency {
  color: #fca5a5 !important;
  font-weight: 700;
}

.top-bar-emergency i {
  color: #ef4444 !important;
}

/* ==========================================================================
   Sticky Navbar
   ========================================================================== */
.navbar-custom {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
  padding: 0.75rem 0;
  z-index: 1030;
}

.navbar-custom.scrolled {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 0.5rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--secondary) !important;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.brand-text span {
  color: var(--primary);
}

.brand-subtitle {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: -3px;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 60%;
}

/* Offcanvas Mobile Menu Styling */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
    border: 1px solid var(--border-color);
  }
  .nav-link::after {
    display: none;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
  padding: 5rem 0 4rem 0;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, rgba(2, 132, 199, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(2, 132, 199, 0.15);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
}

.hero-badge .badge-icon {
  color: var(--warning);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

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

.hero-main-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
}

.hero-main-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}

.floating-badge-1 {
  top: 10%;
  left: -20px;
}

.floating-badge-2 {
  bottom: 8%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.badge-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-icon-box.emergency {
  background-color: var(--emergency-light);
  color: var(--emergency);
}

.badge-icon-box.doctor {
  background-color: var(--primary-light);
  color: var(--primary);
}

.badge-icon-box.rating {
  background-color: #fef3c7;
  color: #d97706;
}

.floating-badge h6 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.floating-badge p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Quick Search / Quick Booking Strip */
.quick-booking-bar {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.75rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 20;
  border: 1px solid var(--border-color);
}

.quick-bar-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.quick-bar-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Stats Counter Banner
   ========================================================================== */
.stats-section {
  padding: 3rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   About Hospital Section
   ========================================================================== */
.about-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.about-image-grid {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 15px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.about-experience-badge .years {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.about-feature-box {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.accreditation-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background-color: var(--bg-alt);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  border: 1px solid var(--border-color);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Departments Section
   ========================================================================== */
.departments-section {
  padding: 5.5rem 0;
  background-color: var(--bg-alt);
}

.dept-filter-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.dept-filter-btn {
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  cursor: pointer;
}

.dept-filter-btn:hover, .dept-filter-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.dept-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(2, 132, 199, 0.25);
}

.dept-card:hover::before {
  opacity: 1;
}

.dept-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}

.dept-card:hover .dept-icon {
  background: var(--primary-gradient);
  color: #ffffff;
  transform: scale(1.05);
}

.dept-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.dept-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.dept-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  font-size: 0.88rem;
  color: var(--secondary-light);
}

.dept-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.dept-features-list li i {
  color: var(--success);
  font-size: 0.85rem;
}

.dept-link {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.dept-link:hover {
  color: var(--primary-dark);
  gap: 0.65rem;
}

/* ==========================================================================
   Doctors Section
   ========================================================================== */
.doctors-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.doctor-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.25);
}

.doctor-img-box {
  position: relative;
  overflow: hidden;
  height: 270px;
  background-color: #f1f5f9;
}

.doctor-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.doctor-card:hover .doctor-img-box img {
  transform: scale(1.05);
}

.doctor-badge-exp {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.doctor-badge-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ffffff;
  color: #b45309;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: var(--shadow-xs);
}

.doctor-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.doctor-specialty {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.doctor-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.doctor-qualifications {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.doctor-schedule {
  background-color: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--secondary-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.doctor-schedule i {
  color: var(--primary);
}

.doctor-actions {
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}

.doctor-actions .btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   Medical Services & Health Packages
   ========================================================================== */
.services-section {
  padding: 5.5rem 0;
  background-color: var(--bg-alt);
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.3);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card.emergency-card .service-icon-box {
  background: var(--emergency-light);
  color: var(--emergency);
}

/* Package Card Styling */
.package-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-hover);
  transform: scale(1.02);
}

.package-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
}

.package-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 1rem 0;
}

.package-price small {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  color: var(--secondary-light);
}

.package-features li i {
  color: var(--success);
}

/* ==========================================================================
   Facilities Section
   ========================================================================== */
.facilities-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.facility-tab-nav {
  display: flex;
  gap: 0.75rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
  overflow-x: auto;
  white-space: nowrap;
}

.facility-tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.facility-tab-btn:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.facility-tab-btn.active {
  color: #ffffff;
  background: var(--primary-gradient);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.facility-showcase-card {
  background: var(--bg-alt);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.facility-showcase-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.facility-showcase-content {
  padding: 2.5rem;
}

.facility-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.facility-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--secondary);
}

.facility-highlight-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* ==========================================================================
   Appointment Booking Section
   ========================================================================== */
.appointment-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #0b1f3a 0%, #032b5f 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.appointment-section h2, .appointment-section h3, .appointment-section h4 {
  color: #ffffff;
}

.appointment-box {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
}

@media (max-width: 768px) {
  .appointment-box {
    padding: 1.75rem;
  }
}

.form-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.4rem;
}

.form-control, .form-select {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #ffffff;
  transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.input-icon-wrapper .form-control, .input-icon-wrapper .form-select {
  padding-left: 2.75rem;
}

.appointment-badge-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.appointment-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Patient Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background-color: var(--bg-alt);
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(2, 132, 199, 0.12);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--secondary-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.testimonial-author h5 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.testimonial-author p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Health Blog Section
   ========================================================================== */
.blog-section {
  padding: 5.5rem 0;
  background-color: #ffffff;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.25);
}

.blog-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.blog-card:hover .blog-img-box img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-title a {
  color: var(--secondary);
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* ==========================================================================
   Contact Us Section
   ========================================================================== */
.contact-section {
  padding: 5.5rem 0;
  background-color: var(--bg-alt);
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition-fast);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card.emergency-contact-card {
  background: linear-gradient(135deg, #fff5f5 0%, #fee2e2 100%);
  border: 1px solid #fca5a5;
}

.contact-card.emergency-contact-card .contact-card-icon {
  background: var(--emergency);
  color: #ffffff;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
  background-color: #0b1526;
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main h4, .footer-main h5 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-social-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
}

.newsletter-form {
  position: relative;
  margin-top: 1rem;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.newsletter-form .form-control::placeholder {
  color: #64748b;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  color: #ffffff;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

/* ==========================================================================
   Back To Top & Emergency Floating Dial
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.floating-emergency-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: var(--emergency);
  color: #ffffff;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-emergency);
  z-index: 990;
  transition: var(--transition-normal);
}

.floating-emergency-btn:hover {
  background: var(--emergency-dark);
  color: #ffffff;
  transform: scale(1.05);
}

/* ==========================================================================
   Modals & Confirmation Ticket Styling
   ========================================================================== */
.modal-content {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
}

.modal-body {
  padding: 2rem;
}

.appointment-receipt {
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}

.receipt-header {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}

.receipt-id-badge {
  background: #0284c7;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
}

.receipt-label {
  color: var(--text-muted);
}

.receipt-val {
  font-weight: 600;
  color: var(--secondary);
  text-align: right;
}

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 2000;
}
