/* ==========================================================================
   Dr. Deepakkumar Prasad - Nephrology & Internal Medicine Website
   Design System & Master Stylesheet
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- FontAwesome / Icons Setup fallback if loaded --- */

:root {
  /* Brand Color Palette */
  --royal-blue: #123E8C;
  --deep-navy: #0B2E73;
  --pure-white: #FFFFFF;
  --light-blue: #EAF4FF;
  --soft-grey: #F6F8FB;
  --accent-silver: #C8D4E8;
  
  /* Complementary Accent Colors */
  --accent-gold: #D97706;
  --accent-gold-hover: #B45309;
  --accent-gold-light: #FEF3C7;

  /* Derived Tones & Utilities */
  --primary-hover: #0a2d6c;
  --navy-dark: #071f4f;
  --text-primary: #1A2536;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --border-light: #E2E8F0;
  --shadow-sm: 0 2px 8px rgba(18, 62, 140, 0.06);
  --shadow-md: 0 8px 24px rgba(18, 62, 140, 0.1);
  --shadow-lg: 0 16px 40px rgba(11, 46, 115, 0.14);
  --shadow-hover: 0 20px 45px rgba(18, 62, 140, 0.18);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(200, 212, 232, 0.4);
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Inter', sans-serif;

  /* Layout */
  --max-width: 1280px;
  --header-height: 90px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --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-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--pure-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Container & Spacing --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

.bg-soft {
  background-color: var(--soft-grey);
}

.bg-light-blue {
  background-color: var(--light-blue);
}

.bg-navy {
  background-color: var(--deep-navy);
  color: var(--pure-white);
}

.text-center {
  text-align: center;
}

/* --- Typography Utilities --- */
.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: var(--light-blue);
  color: var(--accent-gold);
  border: 1px solid var(--accent-silver);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-badge i {
  font-size: 0.9rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.bg-navy .section-title {
  color: var(--pure-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bg-navy .section-subtitle {
  color: var(--accent-silver);
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease-in-out;
  transform: skewX(-25deg);
}

.btn-primary:hover::before {
  left: 140%;
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.35);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--pure-white);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--pure-white);
  border: 2px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--pure-white);
  color: var(--deep-navy);
  border-color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 0;
}

/* --- Glassmorphism Card Style --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

/* ==========================================================================
   TOP HEADER
   ========================================================================== */
.top-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
  color: var(--pure-white);
  z-index: 1001;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.top-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-header-left, .top-header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.top-header a {
  color: var(--pure-white);
  transition: var(--transition-fast);
}

.top-header a:hover {
  color: var(--light-blue);
}

.top-header i {
  margin-right: 0.4rem;
  font-size: 1.05rem;
  vertical-align: middle;
}

.top-header .divider {
  opacity: 0.4;
}

@media (max-width: 768px) {
  .top-header {
    height: 60px;
    padding: 6px 0;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .top-header-container {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }
  .top-header-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }
  .top-header-right {
    display: none; /* Hide email on mobile to save space */
  }
  .top-header .divider {
    display: none;
  }
  .header:not(.scrolled) {
    top: 60px !important;
  }
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: absolute;
  top: 40px; /* Initially below top header */
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  background: linear-gradient(45deg, #f9fcff, #e9f1fc) !important;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header.transparent {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  height: 78px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--light-blue);
  box-shadow: 0 4px 14px rgba(18, 62, 140, 0.12);
  transition: var(--transition-fast);
  display: block;
}

.brand-logo-img:hover {
  transform: scale(1.06);
}

.header.scrolled .brand-logo-img {
  width: 75px;
  height: 75px;
  min-width: 75px;
  min-height: 75px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-link {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-full);
  background: var(--light-blue);
  transition: var(--transition-fast);
}

.phone-quick-link:hover {
  background: var(--accent-gold);
  color: var(--pure-white);
}

.phone-icon-badge {
  width: 28px;
  height: 28px;
  background: var(--accent-gold);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.phone-quick-link:hover .phone-icon-badge {
  background: var(--pure-white);
  color: var(--accent-gold);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--deep-navy);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  overflow-y: scroll !important;
  background: var(--pure-white);
  z-index: 1000;
  padding: 6rem 2rem 2rem 2rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-navy);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-light);
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 46, 115, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at 80% 20%, #F4F8FF 0%, #EAF4FF 40%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(234, 244, 255, 0.8) 0%, rgba(200, 212, 232, 0.25) 70%, transparent 100%);
  border-radius: 50%;
  filter: blur(40px);
}

.hero-shape-2 {
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(18, 62, 140, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.hero-glow-orb {
  position: absolute;
  top: 25%;
  right: 25%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(50px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background: rgba(234, 244, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-silver);
  box-shadow: 0 4px 14px rgba(18, 62, 140, 0.08);
}

.live-pulse-dot {
  width: 9px;
  height: 9px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseRing 1.8s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--deep-navy);
  line-height: 1.18;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--accent-gold);
  background: linear-gradient(135deg, var(--royal-blue) 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}

.btn-hero-primary {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #123E8C 0%, #0B2E73 100%);
  box-shadow: 0 10px 28px rgba(18, 62, 140, 0.28);
}

.btn-hero-primary .btn-arrow-icon {
  transition: var(--transition-fast);
}

.btn-hero-primary:hover .btn-arrow-icon {
  transform: translateX(6px);
}

.btn-hero-phone {
  padding: 1.05rem 1.8rem;
  font-size: 1rem;
  border: 2px solid var(--accent-silver);
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 1.2rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 620px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-navy);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 212, 232, 0.5);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.feature-item:hover {
  background: var(--pure-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.feature-check-icon i {
  color: #10B981;
  font-size: 1.15rem;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.doctor-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(234, 244, 255, 0.85));
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1.5px solid rgba(18, 62, 140, 0.2);
  box-shadow: 0 25px 60px rgba(11, 46, 115, 0.22), 0 0 45px rgba(37, 99, 235, 0.2);
  max-width: 450px;
  width: 100%;
  transition: var(--transition-normal);
}

.doctor-card-frame:hover {
  transform: scale(1.015);
  box-shadow: 0 30px 70px rgba(11, 46, 115, 0.28), 0 0 55px rgba(37, 99, 235, 0.3);
}

.doctor-portrait-img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
  object-fit: cover;
  display: block;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(11, 46, 115, 0.16);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1.5px solid rgba(200, 212, 232, 0.8);
  z-index: 5;
  transition: var(--transition-fast);
}

.hero-floating-badge:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 16px 36px rgba(18, 62, 140, 0.22);
}

.badge-top-right {
  top: 25px;
  right: -25px;
  animation: floatAnim1 4.5s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 30px;
  left: -30px;
  animation: floatAnim2 4s ease-in-out infinite 0.5s;
}

.badge-bottom-right {
  bottom: -22px;
  right: 15px;
  animation: floatAnim1 5s ease-in-out infinite 1s;
}

@keyframes floatAnim1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatAnim2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.icon-star {
  background: #FEF3C7;
  color: #D97706;
}

.icon-hospital {
  background: var(--light-blue);
  color: var(--accent-gold);
}

.icon-trophy {
  background: #DBEAFE;
  color: #2563EB;
}

.badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--deep-navy);
}

.badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Trust Badges Strip */
.trust-badges-wrapper {
  margin-top: 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #F4F8FF 0%, #EAF4FF 100%);
  border: 1px solid rgba(18, 62, 140, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.6), 0 10px 30px rgba(18, 62, 140, 0.05);
  width: 100%;
}

.trust-badges-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-badges-title i {
  color: #F59E0B;
  font-size: 1.1rem;
}

.trust-badges-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: var(--pure-white);
  border: 1px solid var(--accent-silver);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-navy);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.trust-badge-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.trust-badge-pill i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-portrait-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-experience-card {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
  color: var(--pure-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  text-align: center;
  min-width: 170px;
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.exp-txt {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 0.3rem;
}

.about-content-heading {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.about-qualifications-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.8rem 0;
}

.qual-badge {
  padding: 0.35rem 0.9rem;
  background: var(--light-blue);
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent-silver);
}

.about-text-p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.hinduja-training-highlight {
  background: var(--light-blue);
  border-left: 4px solid var(--accent-gold);
  padding: 1rem 1.2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0 2rem 0;
}

.hinduja-training-highlight strong {
  color: var(--deep-navy);
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.hinduja-training-highlight p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Counters Grid */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.counter-card {
  background: var(--pure-white);
  padding: 1.8rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-silver);
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.counter-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ==========================================================================
   EXPERTISE & SERVICES SECTION
   ========================================================================== */
.services-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.search-services-input {
  width: 100%;
  max-width: 480px;
  padding: 0.9rem 1.4rem 0.9rem 3rem;
  border: 2px solid var(--accent-silver);
  border-radius: var(--radius-full);
  font-size: 0.98rem;
  background: var(--pure-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23123E8C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E") no-repeat 1.2rem center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.search-services-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(18, 62, 140, 0.12);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--pure-white);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--royal-blue), var(--deep-navy));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-silver);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  color: var(--accent-gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--accent-gold);
  color: var(--pure-white);
  transform: scale(1.05);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;

}

.service-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1.4rem;
  background: var(--light-blue);
  color: var(--accent-gold);
  border: 1px solid var(--accent-silver);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  margin-top: auto;
  width: 100%;
  cursor: pointer;
}

.service-action-link:hover {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--deep-navy) 100%);
  color: var(--pure-white);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 18px rgba(18, 62, 140, 0.25);
  transform: translateY(-2px);
}

.service-action-link i {
  transition: var(--transition-fast);
}

.service-action-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE DR. PRASAD
   ========================================================================== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  padding: 2.2rem 1.8rem;
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
}

.why-icon-badge {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--light-blue), #DBEAFE);
  color: var(--deep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.7rem;
}

.why-desc {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   RESEARCH & ACADEMIC EXCELLENCE
   ========================================================================== */
.award-highlight-banner {
  background: linear-gradient(135deg, #0B2E73 0%, #123E8C 100%);
  color: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.award-highlight-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.award-trophy-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  color: #F59E0B;
}

.award-details h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--pure-white);
}

.award-grant-tag {
  display: inline-block;
  background: #F59E0B;
  color: #000;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.award-details p {
  font-size: 1.02rem;
  color: var(--accent-silver);
  line-height: 1.6;
}

/* Vertical Timeline */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--accent-silver);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  padding: 0 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  border: 4px solid var(--pure-white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-silver);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-card {
  background: var(--pure-white);
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.timeline-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.6rem;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   TREATMENT PROCESS SECTION
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  position: relative;
}

.process-step-card {
  background: var(--pure-white);
  padding: 1.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-normal);
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--accent-gold);
  color: var(--pure-white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   PATIENT EDUCATION SECTION
   ========================================================================== */
.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.edu-card {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.edu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.edu-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.edu-badge {
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: var(--light-blue);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.edu-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.edu-desc {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.edu-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-slider-container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card-single {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
  display: none;
}

.testimonial-card-single.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent-silver);
  margin-bottom: 1rem;
  line-height: 1;
}

.rating-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
}

.patient-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.patient-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.patient-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.patient-treatment {
  font-size: 0.88rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.google-review-badge {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid var(--accent-silver);
  color: var(--deep-navy);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--accent-gold);
  color: var(--pure-white);
  border-color: var(--accent-gold);
}

.slider-dots {
  display: flex;
  gap: 0.6rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-silver);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--accent-gold);
  width: 28px;
  border-radius: 10px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent-gold);
  color: var(--pure-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.8rem 1.6rem 1.8rem;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ==========================================================================
   APPOINTMENT CTA BANNER
   ========================================================================== */
.cta-banner-card {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: var(--pure-white);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--pure-white);
}

.cta-banner-sub {
  font-size: 1.15rem;
  color: var(--accent-silver);
  max-width: 650px;
  margin: 0 auto 2.2rem auto;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT SECTION & MAP
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-box {
  background: var(--pure-white);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--deep-navy);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--light-blue);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
}

.contact-detail-item:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--light-blue);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.contact-detail-text a:hover {
  color: var(--accent-gold);
}

.map-placeholder-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.map-placeholder-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Appointment Booking Form */
.appointment-form-card {
  background: var(--pure-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background-color: var(--soft-grey);
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  background-color: var(--pure-white);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(18, 62, 140, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* --- Enhanced Hospital Dropdown Styling --- */
.hospital-select-group {
  position: relative;
  margin-bottom: 1.3rem;
}

.hospital-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.hospital-select-icon {
  position: absolute;
  left: 14px;
  color: var(--accent-gold);
  font-size: 1.25rem;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition-fast);
}

.hospital-select-arrow {
  position: absolute;
  right: 14px;
  color: var(--deep-navy);
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.25s ease;
}

.custom-hospital-select {
  width: 100%;
  padding: 0.95rem 2.6rem 0.95rem 2.8rem;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  background-color: var(--pure-white);
  color: var(--deep-navy);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: var(--transition-normal);
  box-shadow: 0 2px 6px rgba(18, 62, 140, 0.04);
}

.custom-hospital-select:hover {
  border-color: var(--royal-blue);
}

.custom-hospital-select:focus {
  border-color: var(--accent-gold);
  background-color: var(--pure-white);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.15);
}

.hospital-select-wrapper:focus-within .hospital-select-arrow {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.custom-hospital-select optgroup {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--deep-navy);
  background: #F1F5F9;
  padding: 8px 10px;
  font-size: 0.88rem;
}

.custom-hospital-select option {
  font-weight: 500;
  color: var(--text-primary);
  background: var(--pure-white);
  padding: 10px 12px;
  font-size: 0.92rem;
}

.hospital-quick-pills {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.hospital-pill-btn {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.28rem 0.7rem;
  border-radius: 50px;
  background: var(--soft-grey);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.hospital-pill-btn:hover, .hospital-pill-btn.active {
  background: var(--light-blue);
  color: var(--deep-navy);
  border-color: var(--royal-blue);
}

.hospital-selected-info-badge {
  margin-top: 0.6rem;
  padding: 0.6rem 0.95rem;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 1px solid #86EFAC;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #15803D;
  display: none;
  align-items: center;
  gap: 0.45rem;
  animation: fadeIn 0.3s ease;
}

.hospital-selected-info-badge.show {
  display: flex;
}

.hospital-selected-info-badge.on-call {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
  border-color: #93C5FD;
  color: #1D4ED8;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */
.floating-widget-bar {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-bounce);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12);
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-phone {
  background-color: var(--accent-gold);
}

.back-to-top {
  background-color: var(--deep-navy);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Tooltip on Hover */
.floating-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 65px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover::before {
  opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--light-blue);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pure-white);
}

.footer-brand-sub {
  font-size: 0.78rem;
  color: var(--accent-silver);
}

.footer-about-p {
  font-size: 0.9rem;
  color: var(--accent-silver);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link-item a {
  color: var(--accent-silver);
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link-item a:hover {
  color: var(--pure-white);
  transform: translateX(4px);
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--accent-silver);
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(200, 212, 232, 0.2);
  padding-bottom: 0.4rem;
}

.social-links-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 250, 0.12);
  padding-top: 2rem;
  /* display: flex; */
  justify-content: space-between;
  text-align: center;
  align-items: center;
  font-size: 0.85rem;
  color: var(--accent-silver);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   MODAL & TOAST NOTIFICATION
   ========================================================================== */
.modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(11, 46, 115, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--transition-bounce);
}

.modal-wrapper.active .modal-content-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--soft-grey);
  color: var(--deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.toast-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: var(--deep-navy);
  color: var(--pure-white);
  padding: 1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-left: 5px solid #10B981;
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transform: translateX(150%);
  transition: var(--transition-normal);
}

.toast-notification.show {
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .services-grid, .why-choose-grid, .education-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .nav-menu, .header-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image-wrapper {
    order: -1;
  }
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
    left: 0;
    text-align: left;
  }
  .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 10px;
  }
  .award-highlight-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .award-trophy-icon {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid, .why-choose-grid, .education-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .feature-highlights {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   INNER PAGE DEDICATED LAYOUT STYLES
   ========================================================================== */
.inner-hero-banner {
  padding-top: calc(var(--header-height) + 6.3rem);
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.3) 0%, transparent 55%),
              linear-gradient(135deg, #071F4F 0%, #0B2E73 50%, #123E8C 100%);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 -10px 25px rgba(0,0,0,0.15);
}

.inner-hero-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234, 244, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.inner-hero-banner::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -25%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--accent-silver);
  margin-bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.breadcrumb-list a {
  color: var(--accent-silver);
}

.breadcrumb-list a:hover {
  color: var(--pure-white);
}

.inner-hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1.18;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  letter-spacing: -0.5px;
}

.inner-hero-sub {
  font-size: 1.18rem;
  color: var(--accent-silver);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

.category-filter-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.filter-tab-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--pure-white);
  border: 1px solid var(--accent-silver);
  color: var(--deep-navy);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.filter-tab-btn:hover, .filter-tab-btn.active {
  background: var(--accent-gold);
  color: var(--pure-white);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.urgent-procedure-box {
  background: linear-gradient(135deg, #FFF5F5 0%, #FED7D7 100%);
  border: 1px solid #FEB2B2;
  border-left: 6px solid #E53E3E;
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.urgent-box-text h4 {
  color: #9B2C2C;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.urgent-box-text p {
  color: #742A2A;
  font-size: 0.95rem;
}

/* SUB-HERO SECTION STYLES FOR INNER PAGES */
.sub-hero-section {
  background: var(--light-blue);
  border-bottom: 1px solid var(--accent-silver);
  padding: 1.6rem 0;
  box-shadow: inset 0 2px 8px rgba(18, 62, 140, 0.05);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sub-hero-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.sub-hero-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--pure-white);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.sub-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.sub-hero-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.sub-hero-card:hover .sub-hero-icon {
  background: var(--accent-gold);
  color: var(--pure-white);
}

.sub-hero-text h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 0.18rem;
  line-height: 1.25;
}

.sub-hero-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 992px) {
  .sub-hero-grid, .sub-hero-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sub-hero-grid, .sub-hero-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ABOUT PAGE PROFILE LAYOUT (EXECUTIVE DESIGN)
   ========================================================================== */
.about-profile-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}

.profile-sidebar {
  position: sticky;
  top: 120px;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  text-align: center;
}

.profile-portrait-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--light-blue);
  box-shadow: var(--shadow-md);
}

.profile-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-sidebar h3 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.profile-sidebar p.title {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.profile-sidebar-contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-light);
}

.profile-content-area {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.profile-section-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.profile-section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 1rem;
}

.profile-section-title i {
  color: var(--accent-gold);
}

.profile-text-content {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.profile-text-content p {
  margin-bottom: 1.2rem;
}

/* Vertical Timeline for Academic Journey */
.profile-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.profile-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 0;
  width: 3px;
  background: var(--light-blue);
  border-radius: 3px;
}

.pt-item {
  position: relative;
  margin-bottom: 2rem;
}

.pt-item:last-child {
  margin-bottom: 0;
}

.pt-dot {
  position: absolute;
  left: -2.5rem;
  top: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--pure-white);
  box-shadow: 0 0 0 2px var(--royal-blue);
  z-index: 2;
}

.pt-content h4 {
  color: var(--deep-navy);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.pt-content .pt-inst {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.pt-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .about-profile-layout {
    grid-template-columns: 1fr;
  }
  .profile-sidebar {
    position: static;
  }
}

/* ==========================================================================
   SERVICES PAGE DETAILED CATALOG LAYOUT
   ========================================================================== */
.detailed-services-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-category-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-category-header {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--deep-navy);
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.service-category-header i {
  color: var(--accent-gold);
}

.detailed-service-row {
  display: flex;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.6);
  padding: 2rem;
  gap: 2rem;
  transition: var(--transition-fast);
}

.detailed-service-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}



.ds-image-box {
  width: 260px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--pure-white);
  position: relative;
}

.ds-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.detailed-service-row:hover .ds-image-box img {
  transform: scale(1.05);
}

.ds-content-box {
  flex-grow: 1;
}

.ds-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--deep-navy);
  margin-bottom: 0.8rem;
}

.ds-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ds-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.ds-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ds-bullets li i {
  color: #10B981;
  font-size: 1.1rem;
  margin-top: -1px;
}

.ds-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-fast);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 1rem;
}

.ds-action:hover {
  color: var(--deep-navy);
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .detailed-service-row {
    flex-direction: column;
    padding: 1.5rem;
  }
  .ds-image-box {
    width: 100%;
    height: 200px;
  }
  .ds-bullets {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SERVICES PAGE PREMIUM GRID LAYOUT
   ========================================================================== */
.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.premium-service-card {
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.6);
  overflow: hidden;
  transition: var(--transition-fast);
  height: 100%;
}

.premium-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.psc-image-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--light-blue);
}

.psc-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.premium-service-card:hover .psc-image-box img {
  transform: scale(1.05);
}

.psc-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.psc-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--deep-navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.psc-desc {
  color: #384150;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.psc-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-grow: 1;
}

.psc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: #3c4656;
}

.psc-bullets li i {
  color: #10B981;
  font-size: 1.1rem;
  margin-top: -2px;
}

.psc-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--pure-white);
  background: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-medium);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  margin-top: auto;
  width: 100%;
}

.psc-action:hover {
  background: var(--deep-navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   RESEARCH PAGE: ACADEMIC DOSSIER LAYOUT
   ========================================================================== */

/* Grant Spotlight Panel */
.grant-spotlight-panel {
  display: flex;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  margin-bottom: 4rem;
}

.gsp-image {
  width: 40%;
  flex-shrink: 0;
  position: relative;
  background: #f8fafc;
}

.gsp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsp-content {
  padding: 3rem;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gsp-tag {
  display: inline-block;
  background: #FEF3C7;
  color: #D97706;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.gsp-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gsp-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Academic Dossier Container */
.academic-dossier-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.dossier-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dossier-section-header {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--deep-navy);
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dossier-section-header i {
  color: var(--accent-gold);
}

.academic-dossier-card {
  background: var(--pure-white);
  border-left: 4px solid var(--accent-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: var(--transition-fast);
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  border-right: 1px solid rgba(226, 232, 240, 0.6);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.academic-dossier-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.adc-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.adc-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--deep-navy);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.adc-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .grant-spotlight-panel {
    flex-direction: column;
  }
  .gsp-image {
    width: 100%;
    height: 300px;
  }
  .gsp-content {
    width: 100%;
    padding: 2rem;
  }
}

/* ==========================================================================
   EDUCATION PAGE: HEALTH KNOWLEDGE HUB
   ========================================================================== */

.health-hub-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Featured Guide */
.featured-guide {
  display: flex;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.fg-image {
  width: 50%;
  position: relative;
}

.fg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fg-content {
  width: 50%;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fg-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.fg-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--deep-navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.fg-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Article Grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.6);
  overflow: hidden;
  transition: var(--transition-medium);
  height: 100%;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.ac-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.ac-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.article-card:hover .ac-image img {
  transform: scale(1.05);
}

.ac-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ac-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.ac-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--deep-navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.ac-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: rgba(37, 99, 235, 0.08);
  text-decoration: none;
  transition: var(--transition-fast);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  width: 100%;
}

.article-card:hover .ac-btn {
  background: var(--accent-gold);
  color: var(--pure-white);
}

@media (max-width: 992px) {
  .featured-guide {
    flex-direction: column;
  }
  .fg-image {
    width: 100%;
    height: 250px;
  }
  .fg-content {
    width: 100%;
    padding: 2rem;
  }
}

/* ==========================================================================
   TESTIMONIALS PAGE: GRID LAYOUT
   ========================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
}

.testimonial-grid-card {
  background: var(--pure-white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: var(--transition-medium);
  border-top: 4px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-grid-card .quote-icon {
  font-size: 3rem;
  color: rgba(37, 99, 235, 0.1);
  position: absolute;
  top: 1rem;
  left: 2rem;
}

.testimonial-grid-card .rating-stars {
  color: #F59E0B;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-grid-card .patient-quote {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.testimonial-grid-card .patient-info {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-grid-card .patient-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--deep-navy);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.testimonial-grid-card .patient-treatment {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.testimonial-grid-card .google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  background: #f1f5f9;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  color: var(--text-muted);
}

.testimonial-grid-card .google-review-badge i {
  color: #EA4335;
}

/* ==========================================================================
   FAQ PAGE: SPLIT-LAYOUT HUB
   ========================================================================== */

.faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 4rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-category-nav {
  background: var(--pure-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.faq-category-nav h3 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-blue);
  padding-bottom: 0.8rem;
}

.faq-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-cat-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
}

.faq-cat-link:hover, .faq-cat-link.active {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.faq-cat-link i {
  font-size: 1.2rem;
}

.faq-contact-card {
  background: linear-gradient(135deg, var(--royal-blue), var(--deep-navy));
  padding: 2rem;
  border-radius: var(--radius-lg);
  color: var(--pure-white);
  text-align: center;
}

.faq-contact-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.faq-contact-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.faq-contact-card .btn {
  width: 100%;
  box-sizing: border-box;
  padding: 0.8rem 1rem;
}

.faq-content-area {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.faq-group-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--deep-navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.faq-group-title i {
  color: var(--accent-gold);
}

/* Premium FAQ Items Override */
.faq-content-area .faq-item {
  background: var(--pure-white);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  transition: var(--transition-medium);
  overflow: hidden;
}

.faq-content-area .faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-content-area .faq-item.active {
  border-left: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.faq-content-area .faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.15rem;
  background: transparent;
  color: var(--deep-navy);
}

.faq-content-area .faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .faq-split-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-sidebar {
    position: static;
  }
}

/* ==========================================================================
   HOMEPAGE: PRESTIGE RESEARCH SHOWCASE
   ========================================================================== */

.prestige-section-bg {
  background: var(--deep-navy);
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.prestige-section-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.prestige-research-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.prestige-highlight-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.prestige-trophy-icon {
  font-size: 4.5rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.prestige-highlight-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--pure-white);
  font-weight: 700;
}

.prestige-highlight-title span {
  color: var(--accent-gold);
}

.prestige-highlight-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.prestige-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.prestige-dossier-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-medium);
}

.prestige-dossier-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-10px);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
}

.prestige-dossier-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.prestige-dossier-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--pure-white);
}

.prestige-dossier-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 992px) {
  .prestige-research-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .prestige-highlight-title {
    font-size: 2.8rem;
  }
}

/* ==========================================================================
   HOMEPAGE: PREMIUM SLIDER TESTIMONIALS (AVATAR STYLE)
   ========================================================================== */
.premium-slider-style .testimonial-card-single {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  border-top: 5px solid var(--accent-gold);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-left: 1px solid rgba(0,0,0,0.05);
  border-right: 1px solid rgba(0,0,0,0.05);
}

.premium-slide-content {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.testimonial-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.patient-profile {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.patient-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--deep-navy), var(--royal-blue));
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: var(--shadow-sm);
}

.patient-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.patient-meta .patient-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-navy);
}

.patient-meta .patient-treatment {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.rating-and-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.rating-and-badge .google-review-badge {
  background: rgba(37, 99, 235, 0.08); /* light blue */
  color: var(--deep-navy);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quote-wrapper {
  position: relative;
  padding: 0 1rem;
}

.quote-wrapper .quote-left {
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 2.5rem;
  color: rgba(217, 119, 6, 0.2); /* very light gold */
}

.quote-wrapper .patient-quote {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
}

/* Center CTA Button */
.testimonials-action-row {
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .testimonial-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .rating-and-badge {
    align-items: flex-start;
  }
  .premium-slide-content {
    padding: 2.5rem 1.5rem;
  }
}

/* ==========================================================================
   ULTRA MOBILE-FRIENDLY & TOUCH OPTIMIZED RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }
  
  .brand-logo-img {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
  }

  .inner-hero-title {
    font-size: 2.1rem !important;
  }

  .inner-hero-sub {
    font-size: 1rem !important;
  }

  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-subheading {
    font-size: 1rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-floating-badge {
    position: relative !important;
    inset: auto !important;
    margin-top: 0.8rem;
    width: 100%;
  }

  .doctor-card-frame {
    max-width: 100%;
    padding: 10px;
  }

  .cta-banner-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-banner-buttons .btn {
    width: 100%;
  }

  .floating-widget-bar {
    bottom: 20px;
    right: 15px;
    gap: 0.6rem;
  }

  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .appointment-form-card {
    padding: 1.6rem 1.2rem;
  }

  .modal-content-card {
    padding: 1.6rem 1.2rem;
  }
}

/* ==========================================================================
   CONTACT PAGE MOBILE RESPONSIVE MASTER STYLES
   ========================================================================== */
.form-direct-actions {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed var(--border-light);
  text-align: center;
}

.form-action-btn-row {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.form-quick-cta-btn {
  font-size: 0.9rem;
  padding: 0.65rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Appointment Submit Button */
.appointment-submit-btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 1rem;
  background: #25D366;
  border: 1px solid #25D366;
  color: var(--pure-white);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

.appointment-submit-btn i {
  font-size: 1.25rem;
}

.appointment-submit-btn:hover {
  background: #1eb956;
  border-color: #1eb956;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Hospital Attachments Card Schedule Styles */
.hospital-schedule-card {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}

.hospital-schedule-card:last-child {
  border-bottom: none;
}

.hospital-schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  width: 100%;
}

.hospital-schedule-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 0;
  flex: 1 1 auto;
  min-width: 150px;
}

.hospital-schedule-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.hospital-schedule-badge.daily {
  background: var(--light-blue);
  color: var(--deep-navy);
}

.hospital-schedule-badge.days {
  background: #FEF3C7;
  color: #B45309;
}

.hospital-schedule-badge.on-call {
  background: #D1FAE5;
  color: #047857;
}

.hospital-schedule-location {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hospital-schedule-location i, .hospital-schedule-time i {
  color: var(--accent-gold);
}

.hospital-schedule-time {
  font-size: 0.88rem;
  color: var(--deep-navy);
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.on-call-hospitals-box {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}

.on-call-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
  gap: 0.35rem;
  width: 100%;
}

.on-call-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1 1 auto;
  min-width: 140px;
}

.on-call-title i {
  color: #059669;
}

.on-call-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.on-call-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  word-break: break-word;
}

.on-call-list li i.ri-checkbox-circle-fill {
  color: #059669;
  flex-shrink: 0;
}

.on-call-list li i.ri-alarm-warning-fill {
  color: #DC2626;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2.2rem;
  }
}

@media (max-width: 768px) {
  .inner-hero-banner {
    padding-top: calc(var(--header-height) + 3.8rem);
    padding-bottom: 2.8rem;
  }
  .inner-hero-title {
    font-size: 2rem !important;
    line-height: 1.25;
  }
  .inner-hero-sub {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .form-group-row {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 0;
  }
  .contact-card-box {
    padding: 1.6rem 1.2rem;
  }
  .appointment-form-card {
    padding: 1.8rem 1.2rem;
  }
  .form-title {
    font-size: 1.45rem;
  }
  .form-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.3rem;
  }
  .custom-hospital-select {
    font-size: 0.88rem;
    padding: 0.85rem 2.2rem 0.85rem 2.5rem;
  }
  .hospital-select-icon {
    left: 10px;
    font-size: 1.1rem;
  }
  .hospital-select-arrow {
    right: 10px;
    font-size: 1.1rem;
  }
  .hospital-quick-pills {
    gap: 0.35rem;
  }
  .hospital-pill-btn {
    font-size: 0.73rem;
    padding: 0.25rem 0.55rem;
  }
  .hospital-selected-info-badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
  .contact-detail-item {
    gap: 0.9rem;
    margin-bottom: 1.1rem;
  }
  .contact-detail-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .contact-detail-text h4 {
    font-size: 0.85rem;
  }
  .contact-detail-text p, .contact-detail-text a {
    font-size: 0.92rem;
    word-break: break-word;
  }
  .appointment-submit-btn,
  .appointment-form-card button[type="submit"] {
    font-size: 12px !important;
    padding: 0.8rem 1rem !important;
    white-space: normal;
    text-align: center;
  }
  .appointment-submit-btn i {
    font-size: 14px !important;
  }
  .form-quick-cta-btn {
    font-size: 12px !important;
    padding: 0.6rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .inner-hero-title {
    font-size: 1.65rem !important;
  }
  .breadcrumb-list {
    font-size: 0.82rem;
  }
  .contact-card-box, .appointment-form-card {
    padding: 1.3rem 0.9rem;
    border-radius: var(--radius-md);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
  .hospital-schedule-header {
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
    align-items: flex-start;
  }
  .hospital-schedule-name {
    font-size: 0.92rem;
    line-height: 1.3;
    min-width: 120px;
  }
  .hospital-schedule-badge {
    font-size: 0.68rem;
    padding: 0.12rem 0.48rem;
  }
  .on-call-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  .on-call-title {
    font-size: 0.88rem;
  }
  .form-input, .custom-hospital-select, .form-textarea {
    font-size: 0.86rem;
    padding: 0.75rem 0.9rem;
  }
  .custom-hospital-select {
    padding-left: 2.3rem;
    padding-right: 1.9rem;
  }
  .appointment-submit-btn,
  .appointment-form-card button[type="submit"] {
    font-size: 12px !important;
    padding: 0.75rem 0.85rem !important;
    line-height: 1.4;
  }
  .appointment-submit-btn i {
    font-size: 14px !important;
  }
  .form-action-btn-row {
    flex-direction: column;
    gap: 0.6rem;
  }
  .form-quick-cta-btn {
    width: 100%;
    font-size: 12px !important;
    padding: 0.6rem 1rem !important;
  }
}
