/* =====================================================
   PREMIUM DESIGN SYSTEM - Bombay Gastro & Cancer Institute
   Complete Redesign - 2026
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #1a6b3a;
  --primary-dark: #0d4228;
  --primary-light: #2a9d5c;
  --secondary: #0f172a;
  --accent: #f59e0b;
  --accent-light: #fde68a;
  --white: #ffffff;
  --light: #f0faf4;
  --light-2: #f8fafc;
  --grey: #64748b;
  --grey-light: #e2e8f0;
  --dark: #0f172a;
  --danger: #ef4444;
  --success: #22c55e;
  --shadow: 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);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;
}

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

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: #334155;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

p { line-height: 1.8; color: #475569; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; padding: 0; margin: 0; }

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar-premium {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 8px 0;
  font-size: 13px;
}
.topbar-premium a { color: rgba(255,255,255,0.9); }
.topbar-premium a:hover { color: var(--accent-light); }
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  margin-right: 24px;
}
.topbar-item i { color: var(--accent-light); font-size: 12px; }
.topbar-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  margin-left: 6px;
  transition: var(--transition);
}
.topbar-social a:hover { background: var(--accent); transform: translateY(-2px); }

/* =====================================================
   NAVBAR - MEGA MENU
   ===================================================== */
.navbar-premium {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar-premium.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar-premium .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}
.navbar-logo img {
  height: 60px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary);
  background: var(--light);
}
.nav-menu > li > a i {
  font-size: 10px;
  margin-left: 4px;
  transition: var(--transition);
}
.nav-menu > li:hover > a i { transform: rotate(180deg); }

/* Book Appointment Button */
.btn-appointment {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(26,107,58,0.3);
  transition: var(--transition) !important;
}
.btn-appointment:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,107,58,0.4) !important;
}

/* Standard Dropdown */
.dropdown-menu-premium {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border: 1px solid var(--grey-light);
  z-index: 100;
}
.nav-menu > li:hover .dropdown-menu-premium {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu-premium li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: var(--secondary);
  font-size: 13.5px;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown-menu-premium li a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 20px;
}
.dropdown-menu-premium li a i {
  color: var(--primary);
  width: 16px;
  font-size: 12px;
}

/* ---- MEGA MENU ---- */
.has-mega > .mega-menu {
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-top: 3px solid var(--primary);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.has-mega:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 360px;
}
.mega-categories {
  width: 260px;
  min-width: 260px;
  background: var(--light);
  padding: 16px 12px;
  border-right: 1px solid var(--grey-light);
}
.mega-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 4px;
}
.mega-cat-item:hover,
.mega-cat-item.active {
  background: var(--primary);
  color: white;
}
.mega-cat-item:hover .cat-icon,
.mega-cat-item.active .cat-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}
.mega-cat-item:hover span,
.mega-cat-item.active span { color: white; }
.mega-cat-item:hover .cat-arrow,
.mega-cat-item.active .cat-arrow { color: white; }
.cat-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.mega-cat-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--secondary);
  transition: var(--transition);
  flex: 1;
}
.cat-arrow {
  color: var(--grey);
  font-size: 11px;
  transition: var(--transition);
}

/* Mega Menu - Services Panel */
.mega-services-area {
  flex: 1;
  padding: 24px 32px;
  position: relative;
}
.mega-panel {
  display: none;
  animation: fadeInPanel 0.25s ease;
}
.mega-panel.active { display: flex; gap: 32px; }
@keyframes fadeInPanel {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.mega-panel-image {
  width: 200px;
  min-width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.mega-panel-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.mega-panel-image .panel-img-label {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
}
.mega-links { flex: 1; }
.mega-links h4 {
  color: var(--primary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light);
}
.mega-links ul li { margin-bottom: 4px; }
.mega-links ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--secondary);
  font-size: 13.5px;
  border-radius: 8px;
  transition: var(--transition);
}
.mega-links ul li a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 16px;
}
.mega-links ul li a i {
  color: var(--primary);
  font-size: 10px;
}
.mega-view-all {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.mega-view-all:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateX(4px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: var(--shadow-xl);
}
.mobile-nav.open { left: 0; }

/* =====================================================
   HERO SECTION - 3D PREMIUM
   ===================================================== */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #061a0e 0%, #0d2137 40%, #1a4731 70%, #0d2137 100%);
}
#hero-vanta { position: absolute; inset: 0; z-index: 0; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,26,14,0.85) 0%, rgba(13,33,55,0.75) 50%, rgba(26,71,49,0.7) 100%);
  z-index: 1;
}

/* Floating geometric shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  animation: heroFloat 8s ease-in-out infinite;
  z-index: 1;
}
.hero-shape-1 { width: 300px; height: 300px; top: -50px; right: -80px; animation-delay: 0s; }
.hero-shape-2 { width: 200px; height: 200px; bottom: 10%; left: -60px; animation-delay: 2s; }
.hero-shape-3 { width: 150px; height: 150px; top: 40%; right: 15%; animation-delay: 4s; }
.hero-shape-4 { width: 80px; height: 80px; top: 20%; left: 20%; animation-delay: 1s; border-radius: 20px; }
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.04; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 0.08; }
}

/* Particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(245,158,11,0.6);
  border-radius: 50%;
  animation: particleAnim linear infinite;
}
@keyframes particleAnim {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-badge i { font-size: 12px; color: var(--accent); }
.hero-heading {
  font-size: clamp(36px, 5vw, 68px);
  font-family: var(--font-heading);
  color: white;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-heading .highlight {
  background: linear-gradient(135deg, #f59e0b, #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.6s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.8s both;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(245,158,11,0.4);
  transition: var(--transition);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245,158,11,0.5);
  color: var(--dark);
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  color: white;
  transform: translateY(-3px);
}
.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 1s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.hero-trust-item i { color: var(--accent); }
.hero-trust-divider {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.2);
}

/* Hero Image Area */
.hero-image-wrap {
  position: relative;
  z-index: 2;
  animation: fadeInRight 0.8s ease 0.5s both;
}
.hero-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.hero-img-card img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}
.hero-img-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(245,158,11,0.3);
  border-radius: 32px;
  animation: ringPulse 3s ease-in-out infinite;
}
.hero-img-ring-2 {
  position: absolute;
  inset: -40px;
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 44px;
  animation: ringPulse 3s ease-in-out infinite 1.5s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.02); opacity: 0.6; }
}

/* Floating stat cards */
.hero-stat-float {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-xl);
  animation: floatCard 4s ease-in-out infinite;
  min-width: 140px;
}
.hero-stat-float:nth-child(1) {
  top: 60px; left: -40px;
  animation-delay: 0s;
}
.hero-stat-float:nth-child(2) {
  bottom: 80px; right: -30px;
  animation-delay: 2s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-stat-float .stat-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}
.hero-stat-float .stat-label {
  font-size: 11px;
  color: var(--grey);
  font-weight: 500;
}
.hero-stat-float .stat-icon {
  width: 36px; height: 36px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 6px;
}

/* =====================================================
   STATS COUNTER SECTION
   ===================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-item:last-child::after { display: none; }
.stat-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--accent-light);
  border: 1px solid rgba(255,255,255,0.15);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number .suffix {
  font-size: 32px;
  color: var(--accent-light);
}
.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

/* =====================================================
   SECTION COMMON STYLES
   ===================================================== */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(26,107,58,0.15);
}
.section-badge i { font-size: 11px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 16px;
}
.section-title .text-green { color: var(--primary); }
.section-subtitle {
  font-size: 16px;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.section-divider.center { margin: 16px auto 24px; }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.about-img-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-img-badge .badge-text {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
}
.about-exp-badge {
  position: absolute;
  top: 30px; right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26,107,58,0.3);
}
.about-exp-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: white;
}
.about-exp-badge .badge-text {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--light);
  border-radius: 12px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.about-feature-item:hover {
  border-color: rgba(26,107,58,0.2);
  transform: translateY(-2px);
}
.about-feature-item .feat-icon {
  width: 40px; height: 40px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.about-feature-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}
.about-feature-item p {
  font-size: 12px;
  color: var(--grey);
  margin: 0;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.service-category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--grey-light);
  height: 100%;
}
.service-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26,107,58,0.2);
}
.svc-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.service-category-card:hover .svc-card-img {
  transform: scale(1.05);
}
.svc-card-img-wrap { overflow: hidden; }
.svc-card-body {
  padding: 24px;
}
.svc-cat-icon {
  width: 52px; height: 52px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.service-category-card:hover .svc-cat-icon {
  background: var(--primary);
  color: white;
}
.svc-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.svc-card-body p {
  font-size: 13.5px;
  color: var(--grey);
  margin-bottom: 16px;
  line-height: 1.6;
}
.svc-card-links { list-style: none; padding: 0; margin: 0 0 16px; }
.svc-card-links li { margin-bottom: 4px; }
.svc-card-links li a {
  font-size: 13px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: var(--transition);
}
.svc-card-links li a:hover { color: var(--primary); padding-left: 4px; }
.svc-card-links li a i { color: var(--primary); font-size: 10px; }
.btn-svc-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition);
}
.btn-svc-more:hover { color: var(--primary-dark); gap: 10px; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-us-section {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}
.why-us-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(26,107,58,0.4);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), #d97706);
  box-shadow: 0 8px 30px rgba(245,158,11,0.4);
  transform: rotate(10deg) scale(1.05);
}
.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin: 0;
}

/* =====================================================
   DOCTORS SECTION
   ===================================================== */
.doctor-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: 1px solid var(--grey-light);
}
.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}
.doctor-img-wrap {
  position: relative;
  overflow: hidden;
}
.doctor-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  transition: var(--transition);
}
.doctor-card:hover .doctor-img-wrap img { transform: scale(1.05); }
.doctor-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,66,40,0.95), transparent);
  padding: 40px 24px 24px;
  transform: translateY(30px);
  transition: var(--transition);
}
.doctor-card:hover .doctor-overlay { transform: translateY(0); }
.doctor-social { display: flex; gap: 8px; }
.doctor-social a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  transition: var(--transition);
}
.doctor-social a:hover { background: var(--accent); }
.doctor-info { padding: 24px; }
.doctor-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}
.doctor-spec {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.doctor-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.doctor-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--grey);
}
.doctor-meta-item i { color: var(--primary); }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.process-section { background: var(--light); }
.process-step {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 60px; right: -50%;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-top: 2px dashed rgba(26,107,58,0.3);
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(26,107,58,0.3);
  position: relative;
  z-index: 1;
}
.process-num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(26,107,58,0.3);
  animation: spin 10s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}
.process-icon-wrap {
  width: 52px; height: 52px;
  background: var(--light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  margin: 16px auto 0;
  border: 1px solid rgba(26,107,58,0.15);
}

/* =====================================================
   CONDITIONS MARQUEE
   ===================================================== */
.conditions-section { overflow: hidden; background: white; }
.marquee-track {
  display: flex;
  gap: 12px;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.condition-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1px solid rgba(26,107,58,0.15);
  color: var(--secondary);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}
.condition-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.condition-tag i { color: var(--primary); font-size: 12px; transition: var(--transition); }
.condition-tag:hover i { color: var(--accent-light); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--light-2); }
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,58,0.2);
}
.testimonial-quote {
  font-size: 48px;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
  margin-bottom: 12px;
}
.stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-light);
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light);
  flex-shrink: 0;
}
.author-initial {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}
.author-info span {
  font-size: 12px;
  color: var(--grey);
}
.testimonial-verified {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section { background: white; }
.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(26,107,58,0.25); }
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(26,107,58,0.1);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: white;
  transition: var(--transition);
}
.faq-item.active .faq-question { background: var(--light); }
.faq-q-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.faq-q-num {
  width: 28px; height: 28px;
  background: var(--light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-q-num {
  background: var(--primary);
  color: white;
}
.faq-q-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary);
  margin: 0;
  line-height: 1.4;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-toggle {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14.5px;
  color: var(--grey);
  line-height: 1.8;
  margin: 0;
}
.faq-item.active .faq-answer { display: block; }

/* =====================================================
   APPOINTMENT SECTION
   ===================================================== */
.appointment-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}
.appointment-section::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.appointment-section::after {
  content: '';
  position: absolute;
  left: -80px; bottom: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.appt-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}
.appt-form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}
.appt-form-card p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 24px;
}
.form-group-premium {
  margin-bottom: 16px;
}
.form-group-premium label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}
.form-control-premium {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 10px;
  font-size: 14px;
  color: var(--secondary);
  background: white;
  transition: var(--transition);
  font-family: var(--font-body);
  outline: none;
}
.form-control-premium:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,107,58,0.1);
}
.form-select-premium {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.btn-submit-appt {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(26,107,58,0.3);
}
.btn-submit-appt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,107,58,0.4);
}
.appt-info-side { position: relative; z-index: 1; }
.appt-info-side h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.appt-info-side p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 32px; }
.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: white;
}
.appt-contact-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-light);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.appt-contact-item h5 { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.appt-contact-item a { color: white; font-size: 15px; font-weight: 600; }
.appt-contact-item a:hover { color: var(--accent-light); }
.appt-hours {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
}
.appt-hours h5 {
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hours-row:last-child { border: none; }
.hours-row .status-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* =====================================================
   GALLERY / CTA SECTION
   ===================================================== */
.gallery-preview-section { background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,107,58,0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* =====================================================
   BREADCRUMB / PAGE HERO
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}
.breadcrumb-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb-premium li { display: inline-flex; align-items: center; gap: 10px; }
.breadcrumb-premium li a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: var(--transition);
}
.breadcrumb-premium li a:hover { color: var(--accent-light); }
.breadcrumb-premium li .sep { color: rgba(255,255,255,0.4); font-size: 10px; }
.breadcrumb-premium li.active { color: var(--accent-light); font-size: 14px; }
.page-hero-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  opacity: 0.15;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================
   SERVICE PAGE CONTENT
   ===================================================== */
.service-content-section { padding: 80px 0; }
.service-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--secondary);
  margin: 32px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
}
.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 24px 0 12px;
}
.service-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 16px;
}
.service-content ul.styled-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.service-content ul.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: #475569;
  border-bottom: 1px solid var(--grey-light);
}
.service-content ul.styled-list li:last-child { border: none; }
.service-content ul.styled-list li::before {
  content: '';
  width: 20px; height: 20px;
  background: var(--light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a6b3a'%3E%3Cpath d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
  background-size: 20px;
  margin-top: 1px;
}
.keyword-highlight {
  background: linear-gradient(135deg, rgba(26,107,58,0.1), rgba(26,107,58,0.05));
  color: var(--primary);
  font-weight: 700;
  padding: 0 2px;
  border-radius: 3px;
}
.info-box {
  background: var(--light);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box h4 {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.info-box p { color: var(--grey); font-size: 14px; margin: 0; }
.warning-box {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box h4 { color: #d97706; font-size: 15px; font-weight: 700; margin-bottom: 8px; }

/* Service Sidebar */
.service-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  margin-bottom: 24px;
}
.sidebar-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light);
}
.sidebar-nav li { margin-bottom: 4px; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--grey);
  font-size: 13.5px;
  transition: var(--transition);
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  background: var(--light);
  color: var(--primary);
}
.sidebar-nav li a i { color: var(--primary); font-size: 10px; }
.quick-contact-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 16px;
  padding: 28px 24px;
  color: white;
}
.quick-contact-card h4 { color: white; font-size: 17px; margin-bottom: 12px; }
.quick-contact-card p { color: rgba(255,255,255,0.8); font-size: 13px; margin-bottom: 20px; }
.btn-quick-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  margin-bottom: 10px;
}
.btn-quick-call:hover { background: white; color: var(--primary); transform: translateY(-2px); }
.btn-quick-appt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-quick-appt:hover { background: rgba(255,255,255,0.25); color: white; }
.doctor-mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-light);
}
.doctor-mini-card:last-child { border: none; padding-bottom: 0; }
.doctor-mini-card img {
  width: 52px; height: 52px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}
.doctor-mini-info h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}
.doctor-mini-info span { font-size: 11px; color: var(--primary); font-weight: 600; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-light);
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26,107,58,0.2);
}
.contact-info-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px rgba(26,107,58,0.3);
}
.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 14.5px;
  color: var(--grey);
  display: block;
  line-height: 1.7;
  transition: var(--transition);
}
.contact-info-card a:hover { color: var(--primary); }
.contact-form-section { background: var(--light); }
.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.mission-vision-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.mission-vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.mission .mv-icon { background: linear-gradient(135deg, #dbeafe, #93c5fd); color: #1d4ed8; }
.vision .mv-icon { background: linear-gradient(135deg, #d1fae5, #6ee7b7); color: var(--primary); }
.values .mv-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-item::after {
  content: '';
  position: absolute;
  left: 20px; top: 40px; bottom: -32px;
  width: 2px;
  background: var(--grey-light);
}
.timeline-item:last-child::after { display: none; }
.timeline-dot {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 13.5px;
  color: var(--grey);
  margin: 0;
}
.timeline-year {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-premium {
  background: var(--secondary);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.footer-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}
.footer-logo img { height: 55px; width: auto; margin-bottom: 20px; }
.footer-desc {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); border-color: var(--primary); }
.footer-col h5 {
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 40px; height: 2px;
  background: var(--primary);
}
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-links li a i { color: var(--primary); font-size: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 13.5px;
  margin-bottom: 14px;
}
.footer-contact-item i {
  color: var(--accent-light);
  margin-top: 2px;
  font-size: 14px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 60px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin: 0;
}
.footer-bottom a { color: var(--accent-light); }
.footer-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 20px;
}
.footer-rating .stars { color: var(--accent); font-size: 12px; }
.footer-rating span { color: rgba(255,255,255,0.7); font-size: 12px; }

/* =====================================================
   FLOATING ELEMENTS
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: whatsappBounce 3s ease infinite 2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  color: white;
}
@keyframes whatsappBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.phone-float {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 20px rgba(26,107,58,0.4);
  z-index: 999;
  transition: var(--transition);
}
.phone-float:hover { transform: scale(1.1); color: white; }

/* Back to top */
#back-to-top-premium {
  position: fixed;
  bottom: 160px; right: 24px;
  width: 44px; height: 44px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--grey-light);
  font-size: 16px;
}
#back-to-top-premium.show {
  opacity: 1;
  pointer-events: all;
}
#back-to-top-premium:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* =====================================================
   ANIMATION CLASSES
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* =====================================================
   UTILITY
   ===================================================== */
.bg-light-green { background: var(--light); }
.text-primary-green { color: var(--primary); }
.text-accent { color: var(--accent); }
.fw-800 { font-weight: 800; }
.rounded-premium { border-radius: var(--radius); }
.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-heading);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(26,107,58,0.3);
}
.btn-premium:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,107,58,0.4);
}
.btn-outline-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-heading);
  transition: var(--transition);
  border: 2px solid var(--primary);
}
.btn-outline-premium:hover {
  background: var(--primary);
  color: white;
}
.divider-line {
  border: none;
  border-top: 1px solid var(--grey-light);
  margin: 32px 0;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(26,107,58,0.15);
}
.doctor-rating { display: flex; align-items: center; gap: 6px; }
.doctor-rating .stars-sm { color: var(--accent); font-size: 12px; }
.doctor-rating span { font-size: 13px; color: var(--grey); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .hero-image-wrap { display: none; }
  .hero-heading { font-size: 36px; }
  .mega-menu-inner { flex-direction: column; }
  .mega-categories { width: 100%; border-right: none; border-bottom: 1px solid var(--grey-light); }
  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: auto; grid-column: auto; }
  .process-step::after { display: none; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-content { padding: 100px 0 60px; }
  .hero-btns { gap: 12px; }
  .btn-hero-primary, .btn-hero-secondary { padding: 12px 24px; font-size: 14px; }
  .stats-section { padding: 40px 0; }
  .stat-item::after { display: none; }
  .topbar-item { margin-right: 12px; font-size: 12px; }
  .appt-form-card { padding: 24px; }
  .contact-form-card { padding: 24px; }
  .gallery-grid { grid-template-columns: 1fr; height: auto; }
  .hero-stat-float { display: none; }
}

@media (max-width: 575px) {
  .hero-heading { font-size: 28px; }
  .about-img-badge, .about-exp-badge { display: none; }
  .section-title { font-size: 24px; }
}
