/* ==========================================================================
   FRIENDS DIAGNOSTICS CENTRE - Modern Minimalist Design System
   ========================================================================== */

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

:root {
  /* Brand Primary - Royal Purple */
  --purple-950: #1B0533;
  --purple-900: #2B0C4F;
  --purple-800: #3E136D;
  --purple-700: #571C94;
  --purple-600: #6F28BD;
  --purple-500: #8A3FFC;
  --purple-100: #F3E8FF;
  --purple-50:  #FAF5FF;

  /* Brand Secondary - Energetic Warm Orange */
  --orange-600: #D9480F;
  --orange-500: #F26522;
  --orange-400: #FF7A1A;
  --orange-300: #FF9B42;
  --orange-100: #FFE8D6;
  --orange-50:  #FFF5ED;

  /* Neutral Spectrum */
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F8FAFC;
  --white:     #FFFFFF;

  /* Semantic UI Colors */
  --success:   #10B981;
  --success-light: #ECFDF5;
  --whatsapp:  #25D366;
  --whatsapp-dark: #128C7E;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 55%, var(--orange-500) 100%);
  --grad-purple: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  --grad-orange: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  --grad-subtle: linear-gradient(180deg, #FFFFFF 0%, var(--purple-50) 50%, var(--orange-50) 100%);
  --grad-hero-overlay: linear-gradient(90deg, rgba(27, 5, 51, 0.88) 0%, rgba(27, 5, 51, 0.65) 45%, rgba(27, 5, 51, 0.2) 100%);
  --grad-hero-overlay-mobile: linear-gradient(180deg, rgba(27, 5, 51, 0.4) 0%, rgba(27, 5, 51, 0.85) 60%, rgba(27, 5, 51, 0.95) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(43, 12, 79, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(43, 12, 79, 0.12), 0 8px 16px -4px rgba(242, 101, 34, 0.08);
  --shadow-glow-purple: 0 0 30px rgba(111, 40, 189, 0.25);
  --shadow-glow-orange: 0 0 30px rgba(242, 101, 34, 0.3);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & Base Elements
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

*:focus:not(input):not(textarea):not(select) {
  outline: none !important;
}

*:focus-visible:not(input):not(textarea):not(select) {
  outline: none !important;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: var(--slate-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-notice-bar {
  background: var(--purple-950);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-200);
  line-height: 1.35;
}

.top-info-item svg {
  color: var(--orange-400);
}

.top-badge-home {
  background: rgba(242, 101, 34, 0.2);
  color: var(--orange-300);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(242, 101, 34, 0.3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43, 12, 79, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  min-height: 76px;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  background: transparent;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: transparent;
  transition: transform var(--transition-smooth);
  filter: drop-shadow(0 2px 6px rgba(43, 12, 79, 0.1));
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.06);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--purple-900);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-700);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--purple-700);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--grad-orange);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  color: var(--purple-900);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(242, 101, 34, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(242, 101, 34, 0.45);
}

.btn-purple {
  background: var(--grad-purple);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(43, 12, 79, 0.3);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(43, 12, 79, 0.45);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--purple-950);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.badge-tag-purple {
  background: var(--purple-100);
  color: var(--purple-700);
  border: 1px solid rgba(111, 40, 189, 0.2);
}

.badge-tag-orange {
  background: var(--orange-100);
  color: var(--orange-600);
  border: 1px solid rgba(242, 101, 34, 0.25);
}

/* ==========================================================================
   Small Page Banner Section (For Dedicated Sub-Landing Pages)
   ========================================================================== */
.page-banner-small {
  position: relative;
  background: var(--purple-950);
  padding: 3.5rem 0 3rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-banner-small .banner-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 5, 51, 0.94) 0%, rgba(43, 12, 79, 0.85) 50%, rgba(242, 101, 34, 0.25) 100%);
  z-index: 1;
}

.page-banner-small .banner-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.38;
  z-index: 0;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.banner-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--orange-300);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.banner-breadcrumbs a {
  color: var(--slate-300);
  transition: color var(--transition-fast);
}

.banner-breadcrumbs a:hover {
  color: var(--white);
}

.page-banner-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.page-banner-subtitle {
  font-size: 1.05rem;
  color: var(--slate-200);
  max-width: 600px;
  line-height: 1.5;
}

.page-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Sub-page Content Blocks */
.page-content-section {
  padding: 5rem 0;
}

.search-filter-bar {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-pills-wrap {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--slate-100);
  color: var(--slate-700);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.filter-pill:hover, .filter-pill.active {
  background: var(--purple-900);
  color: var(--white);
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-card-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--purple-100);
  color: var(--purple-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.areas-covered-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.area-badge-item {
  background: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple-950);
}

.area-badge-item svg {
  color: var(--orange-500);
}

/* ==========================================================================
   Hero Banner Carousel Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--purple-950);
  overflow: hidden;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s ease;
  overflow: hidden;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.slide-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.08);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide.active .slide-bg-img {
  transform: scale(1.00);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-hero-overlay);
  z-index: 1;
}

.slide-content-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-text-box {
  max-width: 640px;
  color: var(--white);
  padding: 2rem 0;
  outline: none !important;
  border: none !important;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Slide Entrance Animations */
.carousel-slide .slide-label-pill,
.carousel-slide .slide-hook-line,
.carousel-slide .slide-subtext,
.carousel-slide .slide-actions {
  opacity: 0;
  transform: translateY(28px);
  outline: none !important;
  border: none;
}

.carousel-slide.active .slide-label-pill {
  animation: slideBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

.carousel-slide.active .slide-hook-line {
  animation: slideTextIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

.carousel-slide.active .slide-subtext {
  animation: slideTextIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.40s forwards;
}

.carousel-slide.active .slide-actions {
  animation: slideActionIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.slide-label-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.16);
  border: none !important;
  outline: none !important;
  backdrop-filter: blur(12px);
  padding: 0.4rem 1.05rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-300);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.slide-hook-line {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  user-select: none;
  -webkit-user-select: none;
}

.slide-hook-line:focus,
.slide-hook-line:focus-visible,
.slide-hook-line:active,
.slide-label-pill:focus,
.slide-label-pill:focus-visible,
.slide-subtext:focus,
.slide-subtext:focus-visible,
.slide-text-box:focus {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.slide-hook-line span.highlight-orange {
  color: var(--orange-400);
}

.slide-hook-line span.highlight-purple {
  color: #D8B4FE;
}

.slide-subtext {
  font-size: 1.2rem;
  color: var(--slate-200);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  outline: none !important;
  border: none !important;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  outline: none !important;
  border: none !important;
}

/* ==========================================================================
   Hero Navigation Controls (Prev / Next & Dots)
   ========================================================================== */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-nav-btn svg {
  pointer-events: none;
  transition: transform 0.2s ease;
}

.carousel-nav-btn:hover {
  background: var(--orange-500);
  border-color: var(--orange-400);
  color: var(--white);
  transform: translateY(-50%) scale(1.14);
  box-shadow: 0 0 28px rgba(242, 101, 34, 0.65), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel-prev {
  left: 2.25rem;
}

.carousel-prev:hover svg {
  transform: translateX(-3px);
}

.carousel-next {
  right: 2.25rem;
}

.carousel-next:hover svg {
  transform: translateX(3px);
}

.carousel-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.carousel-dot.active {
  width: 36px;
  background: var(--grad-orange);
  box-shadow: 0 0 16px rgba(242, 101, 34, 0.9);
}

/* Keyframes for Slide Elements */
@keyframes slideBadgeIn {
  0% { opacity: 0; transform: translateY(-20px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slideTextIn {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideActionIn {
  0% { opacity: 0; transform: translateY(28px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================================================
   Scroll-Triggered Reveal Animations System (All Pages)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays for Cascade Effects */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   WhatsApp Booking Quick Card (Below Banner)
   ========================================================================== */
.booking-bar-section {
  position: relative;
  z-index: 20;
  margin-top: -55px;
  padding-bottom: 2rem;
}

.booking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(43, 12, 79, 0.08);
}

.booking-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.booking-card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  color: var(--purple-900);
  font-weight: 700;
}

.booking-card-title svg {
  color: var(--whatsapp);
}

.booking-card-badge {
  background: var(--success-light);
  color: #047857;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.5fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  color: var(--slate-800);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  background: var(--white);
  border-color: var(--purple-600);
  box-shadow: 0 0 0 3px rgba(111, 40, 189, 0.12);
}

.form-btn-submit {
  height: 48px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Trust & Key Highlights Strip
   ========================================================================== */
.trust-strip-section {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: transform var(--transition-fast);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-box.purple {
  background: var(--purple-100);
  color: var(--purple-700);
}

.trust-icon-box.orange {
  background: var(--orange-100);
  color: var(--orange-500);
}

.trust-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-950);
  margin-bottom: 0.15rem;
}

.trust-desc {
  font-size: 0.82rem;
  color: var(--slate-500);
}

/* ==========================================================================
   Section Title Common
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-500);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--purple-950);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* ==========================================================================
   Popular Health Packages Section
   ========================================================================== */
.packages-section {
  padding: 5.5rem 0;
  background: var(--grad-subtle);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(111, 40, 189, 0.25);
}

.package-card.featured {
  border: 2px solid var(--orange-500);
  box-shadow: var(--shadow-md);
}

.package-ribbon {
  position: absolute;
  top: 25px;
  right: -35px;
  width: 150px;
  text-align: center;
  background: var(--grad-orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  z-index: 5;
  pointer-events: none;
}

.package-header {
  padding: 2rem 2rem 1.25rem 2rem;
  border-bottom: 1px dashed var(--slate-200);
}

.package-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.package-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--purple-950);
  margin-bottom: 0.75rem;
}

.package-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.package-current-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-900);
}

.package-original-price {
  font-size: 1rem;
  color: var(--slate-400);
  text-decoration: line-through;
}

.package-save-pill {
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
}

.package-body {
  padding: 1.5rem 2rem;
  flex-grow: 1;
}

.package-tests-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-700);
  margin-bottom: 0.85rem;
}

.package-tests-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.package-test-item {
  font-size: 0.88rem;
  color: var(--slate-700);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.package-test-item svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.package-footer {
  padding: 1.25rem 2rem 2rem 2rem;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.package-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--slate-500);
}

.package-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   Doorstep Home Sample Collection Feature Section
   ========================================================================== */
.home-collection-section {
  padding: 6rem 0;
  background: var(--white);
}

.home-collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.collection-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.collection-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.collection-img-wrap:hover .collection-img {
  transform: scale(1.03);
}

.collection-floating-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.collection-floating-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--purple-600);
}

.step-content h4 {
  font-size: 1.15rem;
  color: var(--purple-950);
  margin-bottom: 0.35rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--slate-600);
}

/* ==========================================================================
   Advanced Lab Tech & Accuracy Section
   ========================================================================== */
.lab-tech-section {
  padding: 6rem 0;
  background: var(--purple-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.lab-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lab-tech-content .section-tag {
  color: var(--orange-400);
}

.lab-tech-content .section-title {
  color: var(--white);
}

.lab-tech-content .section-lead {
  color: var(--slate-200);
  margin-bottom: 2rem;
}

.features-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-check-item svg {
  color: var(--orange-400);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-check-item h5 {
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.feature-check-item p {
  font-size: 0.82rem;
  color: var(--slate-300);
}

.lab-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
}

.lab-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ==========================================================================
   Testimonials & Patient Reviews
   ========================================================================== */
.testimonials-section {
  padding: 5.5rem 0;
  background: var(--slate-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.star-rating {
  color: #F59E0B;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--slate-700);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-100);
  color: var(--purple-700);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-info h5 {
  font-size: 0.95rem;
  color: var(--purple-950);
}

.author-info span {
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* ==========================================================================
   Blog & Health Articles Section
   ========================================================================== */
.blog-section {
  padding: 5.5rem 0;
  background: var(--slate-50);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(111, 40, 189, 0.3);
}

.blog-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--purple-950);
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(27, 5, 51, 0.85);
  backdrop-filter: blur(8px);
  color: var(--orange-400);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--slate-400);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-950);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--purple-700);
}

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--slate-500);
}

.blog-author-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--purple-900);
}

.blog-read-link {
  color: var(--orange-500);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap var(--transition-fast);
}

.blog-card:hover .blog-read-link {
  gap: 0.45rem;
}

/* ==========================================================================
   FAQs Accordion Section
   ========================================================================== */
.faq-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: var(--purple-600);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple-950);
  cursor: pointer;
}

.faq-question svg {
  color: var(--orange-500);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background: var(--slate-50);
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 1rem 1.5rem 1.25rem 1.5rem;
  border-top: 1px solid var(--slate-200);
}

/* ==========================================================================
   Footer & Location Map
   ========================================================================== */
.site-footer {
  background: #150328;
  color: #E2E8F0;
  padding-top: 5rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  text-decoration: none;
  background: transparent;
  margin-bottom: 1.5rem;
}

.footer-logo-img,
.footer-brand .brand-logo-img {
  height: 105px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-smooth);
}

.footer-brand-lockup:hover .footer-logo-img {
  transform: translateY(-2px) scale(1.04);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.footer-brand-subtitle {
  font-size: 0.82rem;
  font-weight: 700;
  color: #FF7A1A;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-brand p {
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: #CBD5E1;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.footer-social-btn svg {
  width: 20px;
  height: 20px;
}

.footer-social-btn.whatsapp-btn:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
}

.footer-social-btn.facebook-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.footer-social-btn.instagram-btn:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(220, 39, 67, 0.4);
}

.footer-social-btn.youtube-btn:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.4);
}

.footer-social-btn.phone-btn:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(242, 101, 34, 0.4);
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--orange-500);
  border-radius: 2px;
}

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

.footer-links-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #CBD5E1;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links-list a:hover {
  color: #FF9B42;
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #E2E8F0;
}

.footer-contact-item strong {
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.15rem;
}

.footer-contact-item span {
  color: #CBD5E1;
}

.footer-contact-item svg {
  color: #FF7A1A;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: #FF7A1A;
}

.map-placeholder-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #E2E8F0;
}

.map-placeholder-card p,
.map-placeholder-card div {
  color: #CBD5E1;
  font-size: 0.88rem;
}

.map-placeholder-card strong {
  color: #FFFFFF;
}

.map-placeholder-card a.btn {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
}

.map-placeholder-card a.btn:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.88rem;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: #94A3B8;
}

.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-300);
}

.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate-400);
}

/* ==========================================================================
   Sticky Floating WhatsApp CTA & Call Widget
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-whatsapp-btn {
  background: var(--whatsapp);
  color: var(--white);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-smooth);
  animation: pulseGreen 2.5s infinite;
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section, .carousel-container {
    min-height: 600px;
    height: 600px;
  }
  .slide-hook-line {
    font-size: 2.5rem;
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-collection-grid, .lab-tech-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .booking-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-form-grid .form-btn-submit {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  /* Layout & Section Gaps */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .page-content-section,
  .packages-section,
  .home-collection-section,
  .lab-tech-section,
  .testimonials-section {
    padding: 3.25rem 0;
  }

  .trust-strip-section {
    padding: 2rem 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.1rem) !important;
    margin-bottom: 0.5rem;
  }

  .section-lead {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  /* Header & Navigation */
  .top-notice-bar {
    display: none;
  }

  .site-header {
    border-bottom: 1px solid rgba(43, 12, 79, 0.08);
  }

  .nav-inner {
    min-height: 64px;
    padding: 0.35rem 0;
  }

  .brand-logo-img {
    height: 44px;
  }

  .brand-title {
    font-size: 1.4rem;
  }

  .brand-subtitle {
    font-size: 0.7rem;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--white);
    flex-direction: column;
    padding: 1.75rem 1.25rem 2rem;
    gap: 1.15rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem;
  }

  /* Hero Banner Carousel - Fits 100% inside mobile screen without clipping */
  .hero-section {
    min-height: 520px !important;
    height: 530px !important;
    height: calc(100svh - 64px) !important;
    max-height: 560px !important;
    align-items: center !important;
  }

  .carousel-container {
    min-height: 520px !important;
    height: 530px !important;
    height: calc(100svh - 64px) !important;
    max-height: 560px !important;
    overflow: hidden;
  }

  .slide-overlay {
    background: var(--grad-hero-overlay-mobile);
  }

  .slide-content-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-sizing: border-box !important;
  }

  .slide-text-box {
    max-width: 100%;
    padding: 0 !important;
    width: 100%;
  }

  .slide-hook-line {
    font-size: clamp(1.5rem, 5vw, 1.95rem) !important;
    line-height: 1.18;
    margin-bottom: 0.5rem;
  }

  .slide-subtext {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 0.85rem;
  }

  /* Mobile Before (<) & Next (>) Navigation Buttons - Thumb-accessible, non-intrusive & high-contrast */
  .carousel-nav-btn {
    display: flex !important;
    position: absolute !important;
    top: auto !important;
    bottom: 0.65rem !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 50% !important;
    background: rgba(22, 6, 42, 0.82) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1.5px solid rgba(242, 101, 34, 0.85) !important;
    color: #ffffff !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), 0 0 12px rgba(242, 101, 34, 0.35) !important;
    z-index: 55 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
  }

  .carousel-nav-btn:active,
  .carousel-nav-btn:hover {
    background: var(--orange-500) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: scale(0.92) !important;
    box-shadow: 0 0 18px rgba(242, 101, 34, 0.85) !important;
  }

  .carousel-prev {
    left: 1rem !important;
    right: auto !important;
  }

  .carousel-next {
    right: 1rem !important;
    left: auto !important;
  }

  .carousel-nav-btn svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2.8 !important;
  }

  .carousel-prev:hover svg,
  .carousel-next:hover svg {
    transform: none !important;
  }

  .carousel-pagination {
    bottom: 1.05rem !important;
    padding: 0.25rem 0.6rem !important;
    gap: 0.45rem !important;
    z-index: 52 !important;
  }

  .carousel-dot {
    width: 7px;
    height: 7px;
  }

  .carousel-dot.active {
    width: 20px;
  }

  /* Diwali Hero Slide 1 - Perfectly proportioned to fit screen without clipping */
  .diwali-hero-slide .slide-content-wrap {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-sizing: border-box !important;
    height: 100% !important;
  }

  .diwali-hero-text-box {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .diwali-label-pill {
    font-size: 0.72rem !important;
    padding: 0.18rem 0.6rem !important;
    margin-bottom: 0.25rem !important;
    display: inline-flex !important;
    align-self: flex-start !important;
  }

  .diwali-hero-heading {
    font-size: clamp(1.35rem, 4.8vw, 1.7rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 0.25rem !important;
  }

  .hero-diwali-pkg-bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.35rem !important;
    margin-bottom: 0.3rem !important;
    width: 100% !important;
    flex-wrap: wrap !important;
  }

  .hero-diwali-pkg-title {
    font-size: 0.82rem !important;
    padding: 0.15rem 0.5rem !important;
  }

  .hero-diwali-price-tag {
    padding: 0.15rem 0.55rem !important;
    gap: 0.35rem !important;
  }

  .diwali-strike {
    font-size: 0.82rem !important;
  }

  .diwali-live-price {
    font-size: 1.15rem !important;
  }

  .diwali-only-pill {
    font-size: 0.75rem !important;
  }

  .diwali-discount-badge {
    font-size: 0.68rem !important;
    padding: 0.12rem 0.4rem !important;
  }

  .hero-diwali-checklist-grid {
    display: grid !important;
    grid-template-columns: 1fr 1.35fr !important;
    gap: 0.25rem 0.6rem !important;
    margin: 0.25rem 0 0.35rem 0 !important;
    width: 100% !important;
  }

  .diwali-check-col {
    gap: 0.25rem !important;
  }

  .diwali-check-item,
  .hero-diwali-checklist li {
    font-size: 0.8rem !important;
    line-height: 1.2 !important;
    gap: 0.35rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    padding: 0 !important;
  }

  .diwali-check-item svg,
  .hero-diwali-checklist li svg {
    width: 13px !important;
    height: 13px !important;
    padding: 1.5px !important;
    flex-shrink: 0 !important;
  }

  .hero-diwali-badges-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.28rem !important;
    margin-bottom: 0.32rem !important;
    width: 100% !important;
  }

  .diwali-meta-pill {
    font-size: 0.78rem !important;
    padding: 0.22rem 0.65rem !important;
    white-space: normal !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .diwali-meta-pill.diwali-date-highlight {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.22rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.32rem 0.7rem !important;
    border-radius: 10px !important;
    white-space: normal !important;
  }

  .diwali-meta-pill.diwali-date-highlight .diwali-date-badge,
  .diwali-meta-pill.diwali-date-highlight strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: 100% !important;
    font-size: 0.8rem !important;
    font-weight: 850 !important;
    padding: 0.18rem 0.6rem !important;
    border-radius: 999px !important;
    letter-spacing: 0.2px !important;
    white-space: normal !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .hero-diwali-badges-row .diwali-meta-pill:not(.diwali-date-highlight) {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.25rem 0.65rem !important;
    border-radius: 10px !important;
    justify-content: flex-start !important;
    font-size: 0.75rem !important;
  }

  .hero-diwali-highlight-banner {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 0.76rem !important;
    padding: 0.24rem 0.65rem !important;
    margin-bottom: 0.35rem !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
  }

  .diwali-slide-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.3rem !important;
    width: 100% !important;
  }

  .diwali-btn-book {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.45rem 1rem !important;
    font-size: 0.9rem !important;
    min-height: 38px !important;
    border-radius: 999px !important;
  }

  .hero-diwali-helpline-box {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.76rem !important;
    padding: 0.28rem 0.65rem !important;
    box-sizing: border-box !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
    min-height: 34px !important;
    border-radius: 999px !important;
  }

  /* Booking Bar Section - Zero overlap on mobile */
  .booking-bar-section {
    margin-top: 0 !important;
    padding-top: 1rem !important;
    padding-bottom: 1.5rem !important;
  }

  .booking-card {
    padding: 1.35rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .booking-card-header {
    margin-bottom: 1rem;
    gap: 0.5rem;
  }

  .booking-card-title {
    font-size: 1.15rem;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .booking-form-grid .form-btn-submit {
    grid-column: span 1;
    width: 100%;
    min-height: 48px;
    font-size: 0.95rem;
  }

  .booking-form-grid .form-input,
  .booking-form-grid .form-select {
    min-height: 46px;
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
  }

  /* Trust Highlights Grid */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .trust-item {
    padding: 0.85rem 1rem;
    gap: 0.85rem;
  }

  .trust-icon-box {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  /* Packages Grid */
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .package-header {
    padding: 1.5rem 1.25rem 1rem;
  }

  .package-name {
    font-size: 1.25rem;
  }

  .package-current-price {
    font-size: 1.85rem;
  }

  .package-features-wrap {
    padding: 1.25rem;
  }

  .package-card-footer {
    padding: 1.25rem;
  }

  .package-card-footer .btn {
    width: 100%;
    min-height: 46px;
  }

  /* Home Sample Collection Section */
  .home-collection-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .collection-img {
    height: 260px;
  }

  .collection-floating-card {
    position: static;
    margin: -35px 0.75rem 0;
    padding: 1.15rem;
  }

  .step-items-list {
    gap: 1.25rem;
  }

  /* Lab Technology & Features */
  .lab-tech-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .lab-img-card img {
    height: 240px;
  }

  .features-check-list {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.35rem 1.15rem;
  }

  /* Blog Cards Grid */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-card-img-wrap {
    height: 180px;
  }

  .blog-card-body {
    padding: 1.25rem;
  }

  /* Contact Page Grid */
  .contact-grid-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-card-box {
    padding: 1.35rem 1.15rem;
  }

  .areas-covered-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .area-badge-item {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  /* Search & Filter Bar */
  .search-filter-bar {
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .filter-pills-wrap {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-pill {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 0.38rem 0.85rem;
    flex-shrink: 0;
  }

  /* Footer Section */
  .footer-section {
    padding-top: 3.25rem;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-bottom: 2rem;
  }

  .footer-brand-lockup {
    margin-bottom: 1rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
    padding: 1.25rem 0;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Floating Tab & Buttons */
  .floating-actions-container {
    bottom: 14px;
    right: 14px;
    gap: 0.5rem;
  }

  .diwali-floating-tab {
    bottom: 14px;
    left: 10px;
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
  }

  .diwali-floating-tab span.hide-on-mobile {
    display: none;
  }

  .whatsapp-floating-btn {
    width: 48px;
    height: 48px;
  }

  .floating-call-btn {
    width: 42px;
    height: 42px;
  }

  /* Diwali Modal Card on Mobile */
  .diwali-modal-backdrop {
    padding: 10px;
  }

  .diwali-modal-card {
    border-radius: 14px;
    max-height: 94vh;
  }

  .diwali-modal-title {
    font-size: 1.4rem;
  }

  .diwali-modal-tests-box {
    margin: 0.45rem 0.85rem;
    padding: 0.65rem 0.85rem;
  }

  .diwali-modal-highlight-box {
    margin: 0.35rem 0.85rem 0.6rem;
    padding: 0.35rem 0.65rem;
  }

  .diwali-modal-actions {
    padding: 0 0.85rem 1.15rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-inner {
    min-height: 58px;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand-title {
    font-size: 1.25rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .nav-actions .btn {
    padding: 0.38rem 0.65rem;
    font-size: 0.78rem;
    gap: 0.25rem;
  }

  .hero-section {
    min-height: 520px !important;
    height: 530px !important;
    height: calc(100svh - 64px) !important;
    max-height: 560px !important;
    align-items: center !important;
  }

  .carousel-container {
    min-height: 520px !important;
    height: 530px !important;
    height: calc(100svh - 64px) !important;
    max-height: 560px !important;
  }

  .carousel-nav-btn {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    bottom: 0.55rem !important;
  }

  .carousel-prev {
    left: 0.65rem !important;
  }

  .carousel-next {
    right: 0.65rem !important;
  }

  .carousel-pagination {
    bottom: 0.95rem !important;
  }

  .hero-diwali-checklist-grid {
    grid-template-columns: 1fr 1.35fr !important;
    gap: 0.35rem 0.55rem !important;
  }

  .areas-covered-grid {
    grid-template-columns: 1fr;
  }

  .diwali-modal-header {
    padding: 0.85rem 0.75rem 0.2rem;
  }

  .diwali-modal-title {
    font-size: 1.25rem;
  }

  .diwali-modal-tests-grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* ==========================================================================
   DIWALI HEALTH OFFER 2026 - Festive Theme, Hero Slide 1, Popup & Tab
   ========================================================================== */

/* Diwali Flame & Glow Animations */
@keyframes diwaliFlamePulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 3px #FFD700);
  }
  50% {
    transform: scale(1.18);
    filter: drop-shadow(0 0 8px #FF7A1A);
  }
}

@keyframes pulseGolden {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.6);
  }
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Hero Carousel Slide 1: Diwali Health Offer
   -------------------------------------------------------------------------- */
.diwali-hero-overlay {
  background: linear-gradient(90deg, rgba(27, 5, 51, 0.95) 0%, rgba(27, 5, 51, 0.85) 45%, rgba(27, 5, 51, 0.3) 100%);
}

.diwali-label-pill {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.22), rgba(242, 101, 34, 0.28)) !important;
  border: 1.5px solid rgba(255, 215, 0, 0.6) !important;
  color: #FFE082 !important;
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.25) !important;
}

.diwali-flame-icon {
  display: inline-block;
  animation: diwaliFlamePulse 2s infinite ease-in-out;
}

.diwali-hero-slide .slide-content-wrap {
  display: flex;
  align-items: center;
  padding-bottom: 55px;
}

.diwali-hero-text-box {
  padding: 0 !important;
  max-width: 710px;
}

.diwali-hero-heading {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem) !important;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.hero-diwali-pkg-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.hero-diwali-pkg-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.14);
  padding: 0.24rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-diwali-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1.4px solid rgba(255, 215, 0, 0.6);
  padding: 0.24rem 0.75rem;
  border-radius: var(--radius-full);
}

.diwali-strike {
  text-decoration: line-through;
  color: #CBD5E1;
  font-size: 1rem;
  opacity: 0.85;
}

.diwali-live-price {
  color: #FFD700;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.diwali-only-pill {
  color: #FFF5ED;
  font-size: 0.9rem;
  font-weight: 700;
}

.diwali-discount-badge {
  background: linear-gradient(135deg, #FF7A1A, #D9480F);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(217, 72, 15, 0.4);
}

.hero-diwali-checklist-grid {
  display: flex;
  gap: 2.8rem;
  margin: 0.85rem 0 0.95rem 0;
  flex-wrap: wrap;
}

.hero-diwali-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0.85rem 0 0.95rem 0;
  padding: 0;
}

.diwali-check-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.diwali-check-item,
.hero-diwali-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.55;
  white-space: nowrap;
  padding: 0.12rem 0;
}

.diwali-check-item svg,
.hero-diwali-checklist li svg {
  width: 17px;
  height: 17px;
  color: #10B981;
  background: rgba(16, 185, 129, 0.26);
  border-radius: 50%;
  padding: 2.5px;
  flex-shrink: 0;
}

.hero-diwali-badges-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.diwali-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.32rem 0.88rem;
  border-radius: var(--radius-full);
  color: #F1F5F9;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.diwali-meta-pill strong {
  color: #FFE082;
}

.diwali-meta-pill.diwali-date-highlight {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.32rem 0.45rem 0.32rem 1rem;
  background: rgba(24, 7, 44, 0.92);
  border: 2px solid #FFD700;
  border-radius: var(--radius-full);
  box-shadow: 0 0 22px rgba(255, 215, 0, 0.55), inset 0 0 10px rgba(255, 193, 7, 0.2);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.diwali-meta-pill.diwali-date-highlight .diwali-date-badge,
.diwali-meta-pill.diwali-date-highlight strong {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #FFE600 0%, #FFB703 60%, #FB8500 100%);
  color: #150028 !important;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 2px 10px rgba(255, 183, 3, 0.65), 0 0 16px rgba(255, 230, 0, 0.6);
  text-shadow: none;
  animation: diwaliDateGlow 2.4s infinite ease-in-out;
}

@keyframes diwaliDateGlow {
  0%, 100% {
    box-shadow: 0 2px 10px rgba(255, 183, 3, 0.65), 0 0 14px rgba(255, 230, 0, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 3px 18px rgba(255, 183, 3, 0.9), 0 0 22px rgba(255, 230, 0, 0.8);
    transform: scale(1.02);
  }
}

.hero-diwali-highlight-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, rgba(242, 101, 34, 0.36) 0%, rgba(255, 215, 0, 0.26) 100%);
  border-left: 3.5px solid #FFD700;
  border-radius: 6px;
  padding: 0.28rem 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.hero-diwali-highlight-banner .highlight-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 8px #FFD700;
  animation: diwaliFlamePulse 1.5s infinite;
  flex-shrink: 0;
}

.diwali-slide-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

.diwali-btn-book {
  padding: 0.55rem 1.35rem !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #F26522 0%, #D9480F 100%) !important;
  color: #FFFFFF !important;
  border: 1.6px solid rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 6px 22px rgba(242, 101, 34, 0.45) !important;
  transition: all 0.25s ease !important;
  border-radius: var(--radius-full) !important;
}

.diwali-btn-book:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(242, 101, 34, 0.6) !important;
  border-color: #FFD700 !important;
}

.hero-diwali-helpline-box {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.86rem;
  color: #F1F5F9;
  background: rgba(27, 5, 51, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.48rem 0.95rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.hero-diwali-helpline-box svg {
  color: #FF9B42;
  width: 15px;
  height: 15px;
}

.hero-diwali-phone-link {
  color: #FFD700;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.hero-diwali-phone-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.hero-diwali-phone-sep {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   Diwali Popup Modal Dialog
   -------------------------------------------------------------------------- */
.diwali-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 4, 30, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.diwali-modal-backdrop.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: flex !important;
}

.diwali-modal-card {
  width: 100%;
  max-width: 580px;
  max-height: 94vh;
  overflow-y: auto;
  background: linear-gradient(150deg, #1C0535 0%, #2B0C4F 60%, #150324 100%);
  border: 2px solid rgba(255, 193, 7, 0.45);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(242, 101, 34, 0.35);
  position: relative;
  animation: modalPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #FFFFFF;
}

.diwali-modal-card::-webkit-scrollbar {
  width: 4px;
}
.diwali-modal-card::-webkit-scrollbar-thumb {
  background: rgba(255, 193, 7, 0.4);
  border-radius: 10px;
}

.diwali-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  line-height: 1;
}

.diwali-modal-close:hover {
  background: rgba(217, 72, 15, 0.85);
  border-color: #FFD700;
  transform: rotate(90deg) scale(1.08);
}

.diwali-modal-header {
  text-align: center;
  padding: 1.1rem 1.25rem 0.25rem;
}

.diwali-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 193, 7, 0.18);
  border: 1px solid rgba(255, 215, 0, 0.45);
  color: #FFD700;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.diwali-modal-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0.35rem 0 0.15rem;
}

.diwali-modal-pkg-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--orange-300);
}

.diwali-modal-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0.4rem 0 0.2rem;
}

.diwali-modal-price-row .diwali-strike {
  font-size: 1.05rem;
}

.diwali-modal-price-row .diwali-live-price {
  font-size: 1.65rem;
  font-weight: 800;
}

.diwali-modal-tests-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.65rem 1.1rem;
  margin: 0.45rem 1.25rem 0.4rem;
}

.diwali-modal-tests-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #FFE082;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.diwali-modal-tests-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.diwali-modal-tests-grid {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.diwali-modal-tests-grid .diwali-check-col {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.diwali-modal-tests-grid .diwali-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.35;
}

.diwali-modal-tests-grid .diwali-check-item svg {
  width: 14px;
  height: 14px;
  color: #10B981;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  padding: 1.5px;
  flex-shrink: 0;
}

.diwali-modal-perks {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.35rem 1.25rem 0.4rem;
}

.diwali-modal-perks .diwali-meta-pill {
  font-size: 0.82rem;
  padding: 0.22rem 0.65rem;
}

.diwali-modal-perks .diwali-meta-pill.diwali-date-highlight {
  font-size: 0.84rem;
  padding: 0.22rem 0.35rem 0.22rem 0.75rem;
}

.diwali-modal-perks .diwali-meta-pill.diwali-date-highlight .diwali-date-badge,
.diwali-modal-perks .diwali-meta-pill.diwali-date-highlight strong {
  font-size: 0.88rem;
  padding: 0.2rem 0.65rem;
}

.diwali-modal-highlight-box {
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.25), rgba(255, 215, 0, 0.2));
  border: 1.8px dashed #FFD700;
  border-radius: 10px;
  padding: 0.45rem 0.85rem;
  margin: 0.35rem 1.25rem 0.55rem;
  text-align: center;
}

.diwali-modal-highlight-text {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.2px;
}

.diwali-coupon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFD700;
  color: #1B0533;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.35);
  transition: transform 0.15s;
}

.diwali-coupon-chip:hover {
  transform: scale(1.04);
}

.diwali-coupon-chip svg {
  color: #1B0533;
}

.diwali-modal-actions {
  padding: 0 1.25rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.diwali-modal-btn-book {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.72rem 1.25rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}

.diwali-modal-btn-book:hover {
  background: linear-gradient(135deg, #1ebe5d 0%, #0d7064 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.55);
}

.diwali-modal-helpline {
  text-align: center;
  font-size: 0.86rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.diwali-modal-helpline strong {
  color: #FFFFFF;
}

.diwali-modal-helpline a {
  color: #FFD700;
  font-weight: 700;
  text-decoration: none;
}

.diwali-modal-helpline a:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Persistent Floating Diwali Offer Tab
   -------------------------------------------------------------------------- */
.diwali-floating-tab {
  background: linear-gradient(135deg, #F26522 0%, #B83209 55%, #2B0C4F 100%);
  color: #FFFFFF;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.45), 0 0 15px rgba(255, 215, 0, 0.3);
  cursor: pointer;
  border: 1.5px solid rgba(255, 215, 0, 0.65);
  transition: all var(--transition-smooth);
  user-select: none;
  animation: pulseGolden 3s infinite;
  text-decoration: none;
}

.diwali-floating-tab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 32px rgba(242, 101, 34, 0.6), 0 0 25px rgba(255, 215, 0, 0.5);
  border-color: #FFD700;
}

/* Floating Toast Notification */
.diwali-toast {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1B0533;
  color: #FFD700;
  border: 1.5px solid #FFD700;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
  z-index: 200000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.diwali-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

