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

/* CSS Variables for Premium Design Tokens */
:root {
  --primary-navy: #0C244C;
  --primary-navy-rgb: 12, 36, 76;
  --accent-red: #C51B24;
  --accent-red-hover: #A01219;
  --bg-light: #F4F6F9;
  --bg-white: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --border-color: #E2E8F0;
  --success-color: #10B981;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-premium: 0 25px 50px -12px rgba(12, 36, 76, 0.25);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: var(--border-radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Utility Classes */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

/* Sticky & Fixed Badges */
.floating-emergency {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: var(--accent-red);
  color: var(--text-light);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 27, 36, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(197, 27, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 27, 36, 0);
  }
}

/* Utility Header Bar */
.top-bar {
  background-color: var(--primary-navy);
  color: var(--text-light);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links a {
  margin-left: 20px;
  opacity: 0.85;
}

.top-bar-links a:hover {
  opacity: 1;
  color: var(--accent-red);
}

.top-bar-info span {
  margin-right: 20px;
}

/* Sticky Main Header */
.main-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 58px;
  width: auto;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-navy);
  padding: 8px 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--accent-red);
  transition: var(--transition-smooth);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-button {
  background-color: var(--accent-red);
  color: var(--text-light);
  padding: 10px 22px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(197, 27, 36, 0.2);
}

.cta-button:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 27, 36, 0.3);
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 341;
  overflow: hidden;
  background-color: var(--primary-navy);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide-left {
  flex: 1.1;
  background: linear-gradient(135deg, #0c244c 0%, #06142e 100%);
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  z-index: 2;
  position: relative;
}

.slide-right {
  flex: 1.4;
  background-size: cover;
  background-position: right center;
  position: relative;
}

.slide-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(to right, #06142e 0%, transparent 100%);
  z-index: 1;
}

/* Slide Typography */
.slide-tag {
  color: var(--accent-red);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.slide-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: white;
}

.slide-title .highlight-red {
  color: var(--accent-red);
}

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

.slide-bullets li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
}

.bullet-icon {
  color: var(--accent-red);
  font-weight: bold;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(12, 36, 76, 0.4);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-full);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.carousel-arrow:hover {
  background-color: rgba(197, 27, 36, 0.8);
}

.carousel-arrow.prev {
  left: 24px;
}

.carousel-arrow.next {
  right: 24px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active, .carousel-dot:hover {
  background-color: var(--accent-red);
  width: 24px;
  border-radius: var(--border-radius-full);
}

.hero-tag {
  background-color: rgba(197, 27, 36, 0.2);
  border: 1px solid var(--accent-red);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 24px;
  font-weight: 400;
}

/* Appointment Scheduler Card Overlay */
.scheduler-container {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  padding-bottom: 40px;
}

.scheduler-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color);
}

.scheduler-header {
  margin-bottom: 24px;
}

.scheduler-badge {
  background-color: rgba(12, 36, 76, 0.08);
  color: var(--primary-navy);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 8px;
}

.scheduler-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scheduler-indicator {
  width: 4px;
  height: 28px;
  background: linear-gradient(to bottom, var(--primary-navy), var(--accent-red));
  border-radius: var(--border-radius-full);
}

.scheduler-title {
  font-size: 24px;
  font-weight: 800;
}

.scheduler-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-control {
  height: 48px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  padding: 0 16px;
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--bg-light);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-navy);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(12, 36, 76, 0.15);
}

.submit-btn {
  height: 48px;
  background-color: var(--accent-red);
  color: var(--text-light);
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(197, 27, 36, 0.2);
  align-self: flex-end;
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(197, 27, 36, 0.3);
}

/* Services Section */
.section-padding {
  padding: 80px 0;
}

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

.section-header {
  max-width: 600px;
  margin: 0 auto 50px auto;
  text-align: center;
}

.section-badge {
  background-color: rgba(197, 27, 36, 0.1);
  color: var(--accent-red);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(12, 36, 76, 0.15);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-md);
  background-color: rgba(197, 27, 36, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-red);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--accent-red);
  color: var(--text-light);
  transform: scale(1.1);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 14px;
  flex-grow: 1;
}

/* Why Choose Us Section */
.why-choose-layout {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
}

.value-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.value-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-navy);
}

.value-icon {
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.value-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.why-choose-content {
  padding-left: 20px;
  border-left: 5px solid var(--primary-navy);
}

.why-choose-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.why-choose-content h2 span {
  color: var(--accent-red);
}

.why-choose-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Specialities Section */
.specialities-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
}

.specialities-left h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.specialities-left h2 span {
  color: var(--primary-navy);
}

.specialities-menu {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.speciality-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.speciality-item:last-child {
  border-bottom: none;
}

.speciality-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: #475569;
  transition: var(--transition-smooth);
}

.speciality-item svg {
  color: #94A3B8;
  transition: var(--transition-smooth);
}

.speciality-item:hover,
.speciality-item.active {
  background-color: var(--bg-light);
}

.speciality-item.active .speciality-name {
  color: var(--accent-red);
  font-weight: 700;
}

.speciality-item.active svg {
  color: var(--accent-red);
  transform: translateX(4px);
}

.speciality-detail-panel {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-height: 400px;
}

.detail-badge {
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: var(--border-radius-full);
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 16px;
  align-self: flex-start;
}

.detail-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.detail-text {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.detail-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.detail-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.detail-point svg {
  color: var(--success-color);
}

/* Doctor Section */
.doctor-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  align-items: center;
}

.doctor-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.doctor-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.doctor-image-wrapper:hover .doctor-img {
  transform: scale(1.03);
}

.doctor-credential-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(12, 36, 76, 0.9) 0%, rgba(12, 36, 76, 0) 100%);
  padding: 30px;
  color: var(--text-light);
}

.doctor-cred-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.doctor-cred-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.doctor-info {
  padding-left: 10px;
}

.doctor-name {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 6px;
}

.doctor-title {
  font-size: 18px;
  color: var(--accent-red);
  font-weight: 700;
  margin-bottom: 20px;
}

.doctor-divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary-navy);
  margin-bottom: 24px;
  border-radius: var(--border-radius-full);
}

.doctor-bio {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.doctor-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.doctor-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doctor-detail-item strong {
  font-size: 13px;
  color: var(--primary-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doctor-detail-item span {
  font-size: 15px;
  color: var(--text-dark);
}

/* Contact & Info Cards Section */
.contact-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 32px;
}

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

.contact-info-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-navy);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(12, 36, 76, 0.06);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  flex-shrink: 0;
}

.contact-info-card:nth-child(2) .contact-card-icon {
  background-color: rgba(197, 27, 36, 0.06);
  color: var(--accent-red);
}

.contact-card-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card-content p {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form-grid .form-group:last-child {
  grid-column: span 2;
}

.contact-form-card .form-group:last-of-type {
  margin-bottom: 20px;
}

.contact-textarea {
  height: 120px;
  resize: none;
  padding: 12px 16px;
}

/* Footer Section */
.footer {
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 60px 0 20px 0;
  border-top: 5px solid var(--accent-red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 35% 20% 20% 25%;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-red);
  border-radius: var(--border-radius-full);
}

.footer-col-about p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.footer-contact-item svg {
  color: var(--accent-red);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.75;
}

/* NRI Services Section */
.nri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.nri-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.nri-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-navy);
}

.nri-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-full);
  background-color: rgba(12, 36, 76, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.nri-card:hover .nri-icon-circle {
  background-color: var(--primary-navy);
  transform: scale(1.1);
}

.nri-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.nri-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Success Modal Notification */
.notification-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--primary-navy);
  color: var(--text-light);
  border-left: 5px solid var(--success-color);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10000;
}

.notification-toast.show {
  transform: translateY(0);
}

.notification-icon {
  color: var(--success-color);
}

/* Mobile Quick Call Bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-red);
  color: var(--text-light);
  padding: 12px 16px;
  text-align: center;
  z-index: 998;
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .scheduler-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nri-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .specialities-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .doctor-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-menu {
    display: none; /* Can implement a toggle menu in JS later if needed */
  }
  .hero-section {
    height: auto;
  }

  .scheduler-container {
    margin-top: -30px;
  }
  .scheduler-card {
    padding: 20px;
  }
  .scheduler-form {
    grid-template-columns: 1fr;
  }
  .scheduler-title {
    font-size: 18px;
  }
  .submit-btn {
    align-self: stretch;
  }
  .section-title {
    font-size: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .nri-grid {
    grid-template-columns: 1fr;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-content h2 {
    font-size: 36px;
  }
  .specialities-left h2 {
    font-size: 36px;
  }
  .doctor-name {
    font-size: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .floating-emergency {
    display: none;
  }
  .mobile-call-bar {
    display: block;
  }
  body {
    padding-bottom: 50px; /* Offset for mobile call bar */
  }
}

/* Floating WhatsApp Channel Button */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

/* Adjust position on mobile so it doesn't overlap the mobile call bar */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 72px; /* standard mobile call bar is 50px high plus margin */
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

/* Admin Table Styles */
.bookings-table th,
.bookings-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
}

.bookings-table tr:last-child td {
  border-bottom: none;
}

.bookings-table tbody tr {
  transition: var(--transition-smooth);
}

.bookings-table tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}

.bookings-table tbody tr:hover {
  background-color: rgba(12, 36, 76, 0.04);
}

.badge-service {
  display: inline-block;
  background-color: rgba(12, 36, 76, 0.08);
  color: var(--primary-navy);
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  font-weight: 700;
}

/* Trial Guide Banner Styles */
.trial-banner {
  background-color: #0c244c;
  border-bottom: 3px solid #c51b24;
  color: white;
  padding: 12px 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 10000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.trial-banner a {
  color: #ffeb3b;
  text-decoration: underline;
  font-weight: 800;
}

.trial-banner a:hover {
  color: #ffffff;
}

.trial-banner .btn-reset-trial {
  background-color: #c51b24;
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
  margin-left: 10px;
  transition: var(--transition-smooth);
}

.trial-banner .btn-reset-trial:hover {
  background-color: #a8121a;
}

/* Small mobile layout adjustment */
@media (max-width: 480px) {
  .scheduler-container {
    margin-top: 15px;
  }
}




