@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* styles.css - Srushti Hospital Professional Medical Redesign (Apex Hospital Theme) */

:root {
  /* ── Professional Medical Color Palette (Apex Hospital Theme) ──────────────── */
  /* Primary: Deep Medical Navy — trust, authority, clinical */
  --primary-navy: #000000;
  /* Deep Medical Navy (Apex Heading) */
  --primary-navy-rgb: 13, 43, 79;
  --primary-navy-dark: #071d37;
  /* Darker hover state */

  /* Accent: Clinical Cyan — modern healthcare, calm, clean */
  --primary-teal: #00CFE8;
  /* Clinical Cyan (Apex Accent) */
  --primary-teal-rgb: 0, 207, 232;
  --primary-teal-light: #E8FBFF;
  /* Soft cyan tint for backgrounds */
  --primary-teal-dark: #009bb3;
  /* Darker hover state */

  /* Secondary Accent / Brand Blue */
  --primary-gold: #20C1E5;
  /* Secondary Accent Cyan */
  --primary-gold-light: #E8FBFF;
  /* Highlight background */

  /* Legacy aliases — keep these so existing code doesn't break */
  --primary-pink: #00CFE8;
  /* Maps to vibrant cyan */
  --primary-coral: #20C1E5;
  /* Maps to secondary cyan */
  --primary-gradient: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  --primary-gradient-hover: linear-gradient(135deg, var(--primary-navy-dark) 0%, var(--primary-teal-dark) 100%);
  --primary-green: #0D2B4F;
  /* Maps to navy in new scheme */
  --primary-green-rgb: 13, 43, 79;
  --primary-green-light: #E8FBFF;
  /* Soft cyan tint */
  --bg-pink-light: #E8FBFF;
  /* Soft cyan tint */

  /* ── Neutral / Background Colors ───────────────────────────── */
  --text-dark: #0D2B4F;
  /* Deep Navy for high contrast headers */
  --text-muted: #6E6E6E;
  /* Medium gray for body text (Apex body) */
  --bg-light: #F3F8FB;
  /* Very light blue-gray page BG */
  --bg-cream: #F3F8FB;
  /* Alias for bg-light */
  --bg-white: #FFFFFF;
  --border-subtle: rgba(13, 43, 79, 0.10);

  /* ── Status Colors (Admin Panel) ─────────────────────────── */
  --status-pending-bg: #FFF8E7;
  --status-pending-text: #B27B00;
  --status-confirmed-bg: #EDF5FC;
  --status-confirmed-text: #1A5FB4;
  --status-completed-bg: #EEF8F0;
  --status-completed-text: #267D3D;
  --status-cancelled-bg: #FDF2F2;
  --status-cancelled-text: #C01C1C;

  /* ── Professional Medical Fonts ─────────────────────────── */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  /* Legacy aliases */
  --font-quicksand: 'Montserrat', sans-serif;
  --font-manrope: 'Montserrat', sans-serif;
  --font-sans: 'Montserrat', sans-serif;

  /* ── Layout & Design Details ────────────────────────────── */
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;
  /* Professional — less bubbly */
  --shadow-sm: 0 2px 8px rgba(var(--primary-navy-rgb), 0.06);
  --shadow-md: 0 8px 24px rgba(var(--primary-navy-rgb), 0.10);
  --shadow-lg: 0 20px 48px rgba(var(--primary-navy-rgb), 0.14);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.10);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-cream);
}

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

li {
  list-style: none;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-pink);
}

/* Typography & Titles */
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-navy);
  letter-spacing: -0.02em;
}

h1 {
  font-weight: 800;
}

.serif-italic {
  font-family: var(--font-manrope);
  font-style: normal;
  font-weight: 700;
  color: var(--primary-pink);
}

.section-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-teal);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.75rem;
  background: var(--primary-teal-light);
  padding: 0.35rem 1rem;
  border-radius: 4px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 7rem 0;
  position: relative;
}

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

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

.text-center {
  text-align: center;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

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

/* Top Utility Alert Header */
.top-bar {
  background-color: var(--primary-gold);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1001;
  position: relative;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item i {
  color: #ffffff;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(var(--primary-navy-rgb), 0.08);
  transition: var(--transition-smooth);
}

header.has-topbar {
  top: 36px;
}

header.scrolled {
  top: 0;
  padding: 0.25rem 0;
  box-shadow: 0 2px 16px rgba(var(--primary-navy-rgb), 0.10);
  background-color: rgba(255, 255, 255, 0.99);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(var(--primary-navy-rgb), 0.25);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.03em;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary-teal);
  display: block;
  font-weight: 600;
  margin-top: -2px;
}

.logo-icon-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo-icon-img {
  height: 42px;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  transition: var(--transition-smooth);
}

header.scrolled .logo-text-wrapper {
  gap: 2px;
}

.logo-text-img {
  height: 26px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo-text-img {
  height: 20px;
}

.logo-subtitle-img {
  height: 9px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo-subtitle-img {
  height: 7px;
}

/* Premium Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 43, 79, 0.85); /* Deep Navy backdrop */
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.success-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 43, 79, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-modal.show .success-modal-content {
  transform: scale(1);
}

.success-modal-icon {
  font-size: 4rem;
  color: #267D3D; /* Clinical Green checkmark */
  margin-bottom: 1.5rem;
  animation: pulseGreen 2s infinite;
}

.success-modal h2 {
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-weight: 800;
}

.success-modal p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.success-modal-subtext {
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
  margin-bottom: 2rem !important;
}

#success-modal-close {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  border-radius: 50px;
  background-color: var(--primary-teal);
  box-shadow: 0 4px 12px rgba(0, 207, 232, 0.20);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

#success-modal-close:hover {
  background-color: var(--primary-navy);
}

@keyframes pulseGreen {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(38, 125, 61, 0.4);
  }
  70% {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(38, 125, 61, 0);
  }
  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(38, 125, 61, 0);
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.nav-link i {
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-teal);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

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

/* ═══════════════════════════════════════════════════════════════
   Navigation Dropdowns — Premium Icon-Row Style
   ═══════════════════════════════════════════════════════════════ */

/* Wrapper */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Invisible hover bridge to prevent the dropdown from closing when cursor crosses the gap */
.nav-dropdown-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
  z-index: 1040;
}

/* Chevron rotation on hover/open */
.nav-dropdown-wrapper:hover .nav-chevron,
.nav-dropdown-wrapper.open .nav-chevron {
  transform: rotate(180deg);
}

.nav-chevron {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.28s ease;
  display: inline-block;
  vertical-align: middle;
}

/* ── Desktop Dropdown Panel ─────────────────────────────────── */
.nav-dropdown-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--bg-white);
  min-width: 310px;
  max-width: 360px;
  box-shadow: 0 16px 48px rgba(var(--primary-navy-rgb), 0.14), 0 4px 16px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 0.6rem 0 0.6rem;
  z-index: 1050;
  border: 1px solid rgba(var(--primary-navy-rgb), 0.09);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  overflow: hidden;
}

/* Arrow caret above dropdown */
.nav-dropdown-content::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--bg-white);
  border-top: 1px solid rgba(var(--primary-navy-rgb), 0.09);
  border-left: 1px solid rgba(var(--primary-navy-rgb), 0.09);
  border-radius: 3px 0 0 0;
}

/* Visible state (desktop hover) */
.nav-dropdown-wrapper:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Section label inside dropdown */
.dropdown-section-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  padding: 0.35rem 1.25rem 0.6rem;
  border-bottom: 1px solid rgba(18, 84, 81, 0.06);
  margin-bottom: 0.25rem;
}

/* Dropdown link rows (icon + text block) */
.nav-dropdown-content a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-manrope);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  border-left: 3px solid transparent;
  border-bottom: none;
}

.nav-dropdown-content a:hover,
.nav-dropdown-content a.active {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  border-left-color: var(--primary-teal);
  padding-left: 1.5rem;
}

/* Dropdown icon bubble */
.dropdown-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--primary-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  margin-top: 1px;
}

.nav-dropdown-content a:hover .dropdown-icon,
.nav-dropdown-content a.active .dropdown-icon {
  background: var(--primary-teal);
  color: #fff;
}

/* Text block inside row */
.dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown-text strong {
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.2;
}

.dropdown-text small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.nav-dropdown-content a:hover .dropdown-text strong,
.nav-dropdown-content a.active .dropdown-text strong {
  color: var(--primary-teal);
}

.nav-dropdown-content a:hover .dropdown-text small,
.nav-dropdown-content a.active .dropdown-text small {
  color: rgba(var(--primary-teal-rgb), 0.75);
}

/* Footer link at bottom of dropdown */
.dropdown-footer-link {
  margin-top: 0.35rem;
  padding: 0.7rem 1.25rem 0.25rem;
  border-top: 1px solid rgba(18, 84, 81, 0.07);
}

.dropdown-footer-link a {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  border: none !important;
  background: none !important;
  padding: 0 !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: var(--primary-teal) !important;
  letter-spacing: 0.01em;
  transition: gap 0.2s ease !important;
}

.dropdown-footer-link a:hover {
  gap: 0.7rem !important;
  background: none !important;
  border-left: none !important;
  padding-left: 0 !important;
  color: var(--primary-navy) !important;
}

/* ── Mobile / Tablet Accordion (≤ 1024px) ───────────────────── */
@media (max-width: 1024px) {

  .nav-dropdown-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown-wrapper>.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  /* Hide desktop arrow caret */
  .nav-dropdown-content::before {
    display: none;
  }

  /* Mobile accordion panel */
  .nav-dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    /* shown via JS style.display='flex' */
    flex-direction: column;
    width: 92%;
    max-width: 340px;
    margin: 0.5rem auto 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(18, 84, 81, 0.08);
    border: 1px solid rgba(18, 84, 81, 0.08);
    background: var(--bg-white);
    padding: 0.5rem 0;
    overflow: hidden;
  }

  .dropdown-section-label {
    text-align: left;
    padding: 0.5rem 1rem 0.5rem;
  }

  .nav-dropdown-content a {
    padding: 0.65rem 1rem;
    border-left: none;
    border-bottom: 1px solid rgba(18, 84, 81, 0.05);
    text-align: left;
  }

  .nav-dropdown-content a:last-of-type {
    border-bottom: none;
  }

  .nav-dropdown-content a:hover,
  .nav-dropdown-content a.active {
    padding-left: 1.2rem;
    border-left: none;
  }

  .dropdown-footer-link {
    border-top: 1px solid rgba(18, 84, 81, 0.07);
    padding: 0.6rem 1rem 0.4rem;
    text-align: center;
  }
}

.nav-cta {
  background-color: var(--primary-teal);
  color: var(--bg-white);
  padding: 0.75rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(var(--primary-teal-rgb), 0.20);
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background-color: var(--primary-navy);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-navy-rgb), 0.30);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary-navy);
  transition: var(--transition-smooth);
}

/* Hero Section (Centred layout with Ken Burns & Canvas background) */
.hero {
  padding: 8rem 0 8rem 0;
  /* Reduced top padding since card is tall */
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F3F8FB 60%, #E8FBFF 100%);
  transition: background-color 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  pointer-events: none;
  filter: none !important;
  -webkit-filter: none !important;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: kenBurns 25s infinite alternate linear;
  pointer-events: none;
}

.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(243, 248, 251, 0.55);
  /* Frost mask to ensure text contrast on light/dark background transition */
  z-index: 3;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.15) translate(-2%, -1%);
  }
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero-container-centered {
  max-width: 950px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-container-left {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.hero-content.centered {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-content.left-aligned {
  max-width: 750px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 10;
}

.hero-heading-box {
  background-color: #E8FBFF;
  border: 1px solid rgba(27, 20, 100, 0.15);
  border-radius: 50px;
  padding: 0.45rem 1.35rem;
  margin-bottom: 2rem;
  display: inline-block;
  max-width: 100%;
  box-shadow: none;
  animation: slideDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-heading-box h1 {
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  color: #1B1464 !important;
  text-shadow: none !important;
  margin: 0 !important;
  animation: none !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-heading-box h1 span {
  color: inherit !important;
}


@media (max-width: 768px) {
  .hero-heading-box {
    padding: 0.4rem 1.25rem;
    margin-bottom: 1.5rem;
  }
  .hero-heading-box h1 {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .hero-heading-box {
    padding: 0.35rem 1rem;
  }
  .hero-heading-box h1 {
    font-size: 0.7rem !important;
  }
}



.hero h1 {
  font-size: 4.2rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  /* Symmetrical high-contrast white text with glowing sky blue shadow */
  text-shadow: 0 2px 12px rgba(13, 43, 79, 0.95), 0 4px 30px rgba(13, 43, 79, 0.7);
  /* Clear outline shadow */
  animation: slideDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero h1 span.gradient-text {
  color: #00CFE8;
  display: inline-block;
  text-shadow: 0 2px 12px rgba(13, 43, 79, 0.95), 0 4px 30px rgba(13, 43, 79, 0.7);
}

.hero-sub {
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: var(--primary-navy);
  font-weight: 600;
  /* Bold dark text for perfect legibility on light background */
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  animation-fill-mode: both;
}

.hero .section-tag {
  background: var(--primary-teal-light);
  /* Light sky-blue background for contrast */
  color: var(--primary-navy);
  /* Dark blue text for legibility */
  border: 1px solid rgba(0, 207, 232, 0.3);
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 207, 232, 0.05);
}

/* Integrated badges row */
.hero-badges-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
  animation-fill-mode: both;
}

.hero-badges-row.left-aligned {
  justify-content: flex-start;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(13, 43, 79, 0.82);
  /* Dark transparent navy background */
  border: 1px solid rgba(0, 207, 232, 0.25);
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 3px rgba(13, 43, 79, 0.8);
  box-shadow: 0 4px 15px rgba(0, 207, 232, 0.08);
}

.hero-badge-item i {
  color: #ffffff;
  font-size: 1.25rem;
}

.hero-badge-item span strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 4px;
}

/* Scroll-Linked Section Color Transitions & Reveals */
.metrics-section,
.section,
.timeline-section,
.why-srushti-section,
.facility-tour-block {
  transition: background-color 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    color 1s ease,
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
}

/* Specific dynamic background active configurations */
#stats-metrics-block.section-active {
  background-color: #E8FBFF;
}

#about-intro-section.section-active {
  background-color: #FFFFFF;
}

#services-snapshot-section.section-active {
  background-color: #E8FBFF;
}

#fertility-quiz-section.section-active {
  background-color: #FFFFFF;
}

#journey-timeline-block.section-active {
  background-color: #E8FBFF;
}

#facility-tour-block {
  background-color: #FFFFFF;
  color: var(--text-dark);
}

#facility-tour-block.section-active {
  background-color: #FFFFFF;
  color: var(--text-dark);
}

#facility-tour-block.section-active .section-title {
  color: var(--text-dark);
}

#facility-tour-block.section-active .section-subtitle {
  color: var(--text-muted);
}

#facility-tour-block.section-active .tour-card {
  background: var(--bg-white);
  border: 1px solid rgba(13, 47, 39, 0.05);
  color: var(--text-dark);
}

#facility-tour-block.section-active .tour-info-box h3 {
  color: var(--primary-navy);
}

#facility-tour-block.section-active .tour-info-box p {
  color: var(--text-muted);
}

#media-reels-hub.section-active {
  background-color: #FFFFFF;
}

#why-srushti-section.section-active {
  background-color: #E8FBFF;
}

#doctors-snapshot-section.section-active {
  background-color: #FFFFFF;
}

#testimonials-section {
  background-color: var(--primary-teal-light);
  color: var(--text-dark);
}

#testimonials-section.section-active {
  background-color: var(--primary-teal-light);
  color: var(--text-dark);
}

#testimonials-section.section-active .section-title {
  color: var(--text-dark);
}

#testimonials-section.section-active .testimonial-text {
  color: var(--primary-navy);
}

#testimonials-section.section-active .testimonial-author {
  color: var(--primary-teal);
}

#testimonials-section.section-active .testimonial-location {
  color: var(--text-muted);
}

#testimonials-section.section-active .quote-icon {
  color: var(--primary-teal);
}

#insurance-section.section-active {
  background-color: #FFFFFF;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.section-active {
  opacity: 1;
  transform: translateY(0);
}

/* Card hover animation refinements */
.service-card,
.tour-card,
.doctor-snapshot-card,
.blog-item,
.case-study-card {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    background-color 0.4s ease;
}

.service-card:hover,
.tour-card:hover,
.doctor-snapshot-card:hover,
.blog-item:hover,
.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(var(--primary-navy-rgb), 0.15);
}

.hero-graphic-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-img-box {
  width: 90%;
  height: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 3px solid rgba(var(--primary-teal-rgb), 0.15);
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 280px;
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--primary-gradient);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.hero-float-text h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  font-weight: 700;
}

.hero-float-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-badge-decoration {
  position: absolute;
  top: -30px;
  right: -10px;
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 1.25rem;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transform: rotate(12deg);
  border: 2px solid var(--primary-gold);
}

.hero-badge-decoration span {
  font-size: 1.15rem;
  color: #B3E5FC;
  display: block;
  font-weight: 800;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition-smooth);
  cursor: pointer;
  gap: 0.65rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--bg-white);
  box-shadow: 0 4px 16px rgba(var(--primary-teal-rgb), 0.22);
}

.btn-primary:hover {
  background-color: var(--primary-navy);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--primary-navy-rgb), 0.35);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--primary-teal-dark);
  border: 2px solid rgba(var(--primary-teal-rgb), 0.30);
}

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

.btn-white {
  background-color: var(--bg-white);
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  border-radius: 6px;
}

/* Trust & Metrics Section */
.metrics-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal-dark) 100%);
  color: #ffffff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.metrics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 90%, rgba(var(--primary-teal-rgb), 0.15) 0%, transparent 55%);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.metric-item {
  position: relative;
}

.metric-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(250, 247, 242, 0.15);
}

.success-stat-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(86, 204, 226, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.5rem;
  font-weight: 800;
  color: #56CCE2;
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(var(--primary-teal-rgb), 0.3);
}

.metric-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: #56CCE2;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.metric-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.metric-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* About Intro Section */
.about-intro-text {
  font-family: var(--font-heading);
  font-size: 2.0rem;
  line-height: 1.45;
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.75rem;
  border-left: 4px solid var(--primary-teal);
}

.about-intro-desc p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.badge-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.badge-item {
  background-color: var(--bg-white);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.10);
  padding: 0.75rem 1.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.badge-item i {
  color: var(--primary-teal);
}

/* Services Cards */
.service-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2.75rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-navy-rgb), 0.12);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 12px rgba(var(--primary-teal-rgb), 0.12);
}

.service-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link i {
  transition: var(--transition-smooth);
}

.service-link:hover {
  color: var(--primary-navy);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Why Choose Us Features */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-feature-item {
  background-color: var(--bg-white);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  border-left: 3px solid var(--primary-teal);
  border-top: 1px solid rgba(var(--primary-navy-rgb), 0.04);
}

.why-feature-icon {
  font-size: 1.75rem;
  color: var(--primary-teal);
  margin-top: 0.25rem;
}

.why-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.why-feature-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Path to Parenthood Timeline (Journey - reference momstory.co.in) */
.timeline-section {
  padding: 7rem 0;
  background-color: var(--bg-white);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0 auto;
  padding: 2rem 0;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-navy) 0%, var(--primary-teal) 100%);
  transform: translateX(-50%);
  border-radius: 3px;
}

.timeline-container-box {
  padding: 1rem 3rem;
  position: relative;
  background: inherit;
  width: 50%;
}

.timeline-container-box::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  right: -11px;
  background-color: var(--bg-white);
  border: 3px solid var(--primary-teal);
  top: 2rem;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px rgba(var(--primary-teal-rgb), 0.30);
  transition: var(--transition-smooth);
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -11px;
  border-color: var(--primary-navy);
}

.timeline-card {
  padding: 2rem;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
  position: relative;
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background-color: var(--bg-white);
}

.timeline-card:hover::after {
  transform: scale(1.2);
}

.timeline-step-num {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-teal);
  margin-bottom: 0.5rem;
}

.timeline-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.timeline-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* Accordion Component */
.accordion-container {
  margin-top: 1.5rem;
}

.accordion-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: rgba(var(--primary-teal-rgb), 0.18);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  padding: 1.35rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-header h4 {
  font-size: 1.05rem;
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 700;
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--primary-teal);
  transition: var(--transition-smooth);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.75rem;
  background-color: var(--bg-white);
}

.accordion-content p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.accordion-item.active {
  border-color: rgba(var(--primary-teal-rgb), 0.22);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--primary-navy);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
  overflow-y: auto;
}

/* Doctors Card Snapshot */
.doctor-snapshot-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.doctor-snapshot-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.doctor-img {
  height: 320px;
  background-color: var(--primary-navy);
  position: relative;
  overflow: hidden;
}

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

.doctor-img img[src*="IMG_20260611_144433.png"] {
  object-position: center 25%;
  /* Adjust to show Dr. Nimisha's face */
}

.doctor-img img[src*="IMG_20260611_144538.png"] {
  object-position: center 15%;
  /* Adjust to show Dr. Sanjay's face */
}

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

.doctor-info {
  padding: 2.25rem;
  text-align: center;
  position: relative;
}

.doctor-info h3 {
  font-size: 1.45rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.doctor-title-sub {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-teal);
  margin-bottom: 0.75rem;
}

.doctor-qualification {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.doctors-intro-footer {
  text-align: center;
  margin-top: 4rem;
}

/* Testimonials Section */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.testimonial-container {
  overflow: visible;
  /* Allow card shadow and scale-up zoom to be visible without clipping */
  position: relative;
  min-height: 320px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.6s ease, box-shadow 0.6s ease;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 207, 232, 0.15);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(13, 43, 79, 0.04);
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1.03);
  /* Prominent scaled up active slide */
  display: flex;
  position: relative;
  border-color: var(--primary-teal);
  box-shadow: 0 15px 40px rgba(0, 207, 232, 0.15);
}

.quote-icon {
  font-size: 3.5rem;
  color: rgba(0, 207, 232, 0.25);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--primary-navy);
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 500;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--primary-teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.35rem;
  font-weight: 700;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(var(--primary-navy-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-navy);
  background: var(--bg-white);
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--primary-gradient);
  color: var(--bg-white);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(var(--primary-navy-rgb), 0.22);
}

/* Insurance Badges (Badges with icons, not plain text) */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.insurance-badge {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--border-radius-md);
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
}

.insurance-badge:hover {
  transform: scale(1.04);
  border-color: rgba(var(--primary-teal-rgb), 0.25);
  box-shadow: var(--shadow-md);
  color: var(--primary-teal);
}

/* Page Headers (Subpages) */
.page-header {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-teal-dark) 100%);
  color: #ffffff;
  padding: 11rem 0 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 15% 85%, rgba(var(--primary-teal-rgb), 0.2) 0%, transparent 60%);
}

.page-header h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.page-header p {
  color: var(--primary-navy);
  font-size: 1.35rem;
  /* Larger font size */
  font-weight: 700;
  /* Bold font weight */
  max-width: 800px;
  margin: 1.5rem auto 0 auto;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
  /* Light shadow for readability on sky blue gradient */
}

/* Doctor Profiles (About Page) */
.doctor-profile-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 5rem;
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
}

.doctor-profile-grid {
  display: grid;
  grid-template-columns: 35% 50%;
}

.doctor-profile-img {
  background-color: var(--primary-navy);
  height: 80%;
  min-height: 420px;
  position: relative;
}

.doctor-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-profile-img img[src*="IMG_20260611_144433.png"] {
  object-position: center 30%;
  /* Adjust to show Dr. Nimisha's face */
}

.doctor-profile-img img[src*="IMG_20260611_144538.png"] {
  object-position: center 5%;
  /* Adjust to show Dr. Sanjay's face */
}

.doctor-profile-content {
  padding: 4.5rem;
}

.doctor-profile-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.doctor-profile-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-teal);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.doctor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.doctor-tag {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
}

.doctor-bio {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
}

.doctor-bio p {
  margin-bottom: 1.25rem;
}

/* Services Split Layout Grid */
.services-menu {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 130px;
  border: 1px solid rgba(13, 47, 39, 0.02);
}

.services-menu-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(13, 47, 39, 0.08);
}

.services-menu-list li {
  margin-bottom: 0.65rem;
}

.services-menu-link {
  display: block;
  padding: 0.85rem 1.25rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.services-menu-link:hover,
.services-menu-link.active {
  background-color: var(--primary-teal-light);
  color: var(--primary-teal);
}

.service-detail-section {
  scroll-margin-top: 130px;
  margin-bottom: 6rem;
}

.service-detail-box {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 4.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
}

.service-detail-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.service-detail-intro {
  font-size: 1.15rem;
  color: var(--primary-navy);
  margin-bottom: 2.25rem;
  line-height: 1.75;
  font-weight: 600;
}

.service-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.service-sub-item {
  background-color: var(--bg-light);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  border-left: 3px solid var(--primary-teal);
  border-top: 1px solid rgba(var(--primary-navy-rgb), 0.04);
}

.service-sub-item h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-sub-item p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Details & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 4.5rem;
}

.contact-info-panel {
  background: linear-gradient(160deg, var(--primary-navy) 0%, var(--primary-teal-dark) 100%);
  color: #ffffff;
  padding: 4.5rem 3.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: none;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(var(--primary-teal-rgb), 0.25) 0%, transparent 70%);
}

.contact-info-panel h3 {
  color: #ffffff;
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  font-weight: 800;
}

.contact-detail-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.10);
  color: #56CCE2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-detail-text h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-detail-text p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
  color: #ffffff;
}

.insurance-alert-box {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  margin-top: 3.5rem;
}

.insurance-alert-box h4 {
  color: #56CCE2;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
}

.insurance-alert-box p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.form-panel {
  background-color: var(--bg-white);
  padding: 4.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(var(--primary-navy-rgb), 0.06);
}

.form-panel h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.form-panel p {
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

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

.form-full-width {
  grid-column: span 2;
}

.form-group {
  margin-bottom: 1.75rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(var(--primary-navy-rgb), 0.14);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-teal);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(var(--primary-teal-rgb), 0.12);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* Success Banner */
.submit-success-banner {
  display: none;
  background-color: var(--status-completed-bg);
  border: 1px solid rgba(38, 125, 61, 0.15);
  color: var(--status-completed-text);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  margin-bottom: 2.5rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.submit-success-banner h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--status-completed-text);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.submit-success-banner a {
  text-decoration: underline;
  font-weight: 700;
}

/* Sticky Float Action Contact Widget (WhatsApp/Phone/Instagram triggers like reference sites) */
.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.floating-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.floating-btn-whatsapp {
  background-color: #25D366;
  border-color: #20BA5A;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}

.floating-btn-whatsapp i {
  color: #ffffff;
  font-size: 2rem;
}

.floating-btn-linkedin,
.floating-btn-instagram,
.floating-btn-facebook,
.floating-btn-youtube {
  width: 42px;
  height: 42px;
}

.floating-btn-linkedin i {
  color: #0077b5;
  font-size: 1.25rem;
}

.floating-btn-facebook i {
  color: #1877F2;
  font-size: 1.35rem;
}

.floating-btn-instagram i {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 1.35rem;
}

.floating-btn-youtube i {
  color: #FF0000;
  font-size: 1.35rem;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Admin Dashboard Portal */
.admin-container {
  padding: 11rem 0 5rem 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admin-title-box h1 {
  font-size: 2.75rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.admin-title-box p {
  color: var(--text-muted);
  font-weight: 600;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.stat-card {
  background-color: var(--bg-white);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 47, 39, 0.02);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 55px;
  background-color: var(--primary-navy);
  border-radius: 0 3px 3px 0;
}

.stat-card.stat-pending::after {
  background-color: var(--primary-gold);
}

.stat-card.stat-confirmed::after {
  background-color: var(--status-confirmed-text);
}

.stat-card.stat-completed::after {
  background-color: var(--status-completed-text);
}

.stat-card.stat-cancelled::after {
  background-color: var(--status-cancelled-text);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.admin-controls {
  background-color: var(--bg-white);
  padding: 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border: 1px solid rgba(13, 47, 39, 0.02);
}

.admin-filters {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  flex-grow: 1;
}

.filter-group {
  min-width: 170px;
}

.filter-input {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(13, 47, 39, 0.12);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-cream);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.filter-input:focus {
  border-color: var(--primary-pink);
  background-color: var(--bg-white);
}

.admin-table-container {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(13, 47, 39, 0.02);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 1.35rem 1.75rem;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--primary-teal);
}

.admin-table td {
  padding: 1.35rem 1.75rem;
  border-bottom: 1px solid rgba(13, 47, 39, 0.05);
  vertical-align: middle;
}

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

.admin-table tr:hover {
  background-color: rgba(242, 246, 245, 0.4);
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.badge-pending {
  background-color: var(--status-pending-bg);
  color: var(--status-pending-text);
}

.badge-confirmed {
  background-color: var(--status-confirmed-bg);
  color: var(--status-confirmed-text);
}

.badge-completed {
  background-color: var(--status-completed-bg);
  color: var(--status-completed-text);
}

.badge-cancelled {
  background-color: var(--status-cancelled-bg);
  color: var(--status-cancelled-text);
}

.admin-actions {
  display: flex;
  gap: 0.65rem;
}

.action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.action-btn-confirm {
  background-color: #EDF5FC;
  color: #1A5FB4;
}

.action-btn-confirm:hover {
  background-color: #1A5FB4;
  color: white;
}

.action-btn-complete {
  background-color: #EEF8F0;
  color: #267D3D;
}

.action-btn-complete:hover {
  background-color: #267D3D;
  color: white;
}

.action-btn-cancel {
  background-color: #FFF0F0;
  color: #E01B24;
}

.action-btn-cancel:hover {
  background-color: #E01B24;
  color: white;
}

.action-btn-delete {
  background-color: #F6F6F6;
  color: #555;
}

.action-btn-delete:hover {
  background-color: #E01B24;
  color: white;
}

.no-bookings {
  padding: 5rem;
  text-align: center;
  color: var(--text-muted);
}

.no-bookings i {
  font-size: 3.5rem;
  color: var(--primary-pink);
  margin-bottom: 1.75rem;
  display: block;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal-dark) 100%);
  border-radius: var(--border-radius-md);
  padding: 5rem;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: -5rem;
  z-index: 10;
  border: none;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 15%, rgba(var(--primary-teal-rgb), 0.22) 0%, transparent 60%);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-phone {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* Footer Section */
footer {
  background: linear-gradient(180deg, #0A1F45 0%, #071535 100%);
  color: #000000;
  padding: 8rem 0 3.5rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  margin-bottom: 5rem;
}

.footer-col-about {
  grid-column: span 1.5;
}

.footer-col-about p {
  color: #000000;
  margin-top: 1.5rem;
  font-size: 0.93rem;
  line-height: 1.75;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.footer-logo .logo-icon {
  background: var(--primary-gradient);
}

.footer-logo .logo-text {
  color: #ffffff;
}

/* Footer logo image styles — matched to header, brightened for dark footer */
.footer-logo .logo-icon-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo .logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.footer-logo .logo-text-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo .logo-subtitle-img {
  height: 8px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #000000;
  margin-bottom: 1.75rem;
}

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

.footer-links a {
  color: #000000;
  font-size: 0.93rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: #56CCE2;
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  color: #000000;
  line-height: 1.6;
}

.footer-contact-item i {
  color: #56CCE2;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(203, 213, 224, 0.10);
  padding-top: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #000000;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
}

.footer-bottom-links a:hover {
  color: #56CCE2;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .doctor-profile-grid {
    grid-template-columns: 100%;
  }

  .doctor-profile-img {
    height: 380px;
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }

  .nav-menu {
    gap: 1.25rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .grid-2 {
    gap: 3rem;
  }

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

  .metric-item:not(:last-child)::after {
    display: none;
  }

  .insurance-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-container-box {
    width: 100%;
    padding-left: 50px;
    padding-right: 1rem;
  }

  .timeline-container-box::after {
    left: 8px;
    right: auto;
  }

  .timeline-right {
    left: 0%;
  }
}

@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }

  header.has-topbar {
    top: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 85px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 85px);
    background-color: var(--bg-cream);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0 3rem;
    gap: 0.35rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    z-index: 999;
    overflow-y: auto;
  }

  /* Individual link padding in mobile menu */
  .nav-menu>.nav-link,
  .nav-menu>.nav-dropdown-wrapper>.nav-dropdown-trigger {
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    max-width: 320px;
  }

  .nav-menu>.nav-link:hover {
    background: var(--bg-pink-light);
  }

  /* Book Appointment CTA in mobile menu */
  .nav-menu>.nav-cta {
    margin-top: 0.75rem;
    width: auto;
    min-width: 220px;
  }

  header.scrolled .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .nav-menu.open {
    left: 0;
  }
}


@media (max-width: 768px) {

  /* ── Grids: single column ─────────────────────────── */
  .grid-2,
  .grid-3 {
    grid-template-columns: 100%;
    gap: 2rem;
  }

  /* ── Hero Section ─────────────────────────────────── */
  .hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
    min-height: auto;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }

  .hero-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-container-left {
    padding: 1rem 1.25rem;
  }

  .hero-content.left-aligned {
    max-width: 100%;
  }

  .hero-badges-row {
    gap: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge-item {
    font-size: 0.8rem;
    padding: 0.65rem 1.1rem;
  }

  .hero-graphic-container {
    height: 300px;
    margin-top: 2rem;
  }

  .hero-float-card {
    left: 10px;
    bottom: 20px;
  }

  .hero-badge-decoration {
    top: -20px;
    right: 10px;
  }

  /* ── Metrics / Stats ──────────────────────────────── */
  .metrics-section {
    padding: 3rem 0;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  .success-stat-circle {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
  }

  /* ── About Section ────────────────────────────────── */
  #about-intro-section .grid-2 {
    gap: 2rem;
  }

  #about-intro-img {
    height: 320px !important;
  }

  .about-intro-content {
    padding: 0;
  }

  /* ── Services / Cards ─────────────────────────────── */
  .service-card {
    padding: 2rem 1.5rem;
  }

  /* ── Section Titles & Subtitles ───────────────────── */
  .section-title {
    font-size: 1.8rem !important;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  /* ── Why Features ─────────────────────────────────── */
  .why-features {
    grid-template-columns: 100%;
    gap: 1.25rem;
  }

  /* ── Doctor Cards ─────────────────────────────────── */
  .doctor-snapshot-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .doctor-img {
    margin: 0 auto 1rem auto;
  }

  /* ── Timeline ─────────────────────────────────────── */
  .timeline-container-box {
    width: 100%;
    padding-left: 50px;
    padding-right: 1rem;
  }

  /* ── Contact ──────────────────────────────────────── */
  .contact-grid {
    grid-template-columns: 100%;
    gap: 2rem;
  }

  /* ── Admin Panel ──────────────────────────────────── */
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-filters {
    flex-direction: column;
  }

  /* ── Insurance ────────────────────────────────────── */
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* ── Footer ───────────────────────────────────────── */
  .footer-grid {
    grid-template-columns: 100%;
    gap: 2.5rem;
  }

  .footer-col-about {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    justify-content: center;
    gap: 1rem;
  }

  /* ── CTA Banner ───────────────────────────────────── */
  .cta-banner {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  /* ── Service Detail ───────────────────────────────── */
  .service-detail-box {
    padding: 2.5rem 1.5rem;
  }

  .service-sub-grid {
    grid-template-columns: 100%;
  }

  /* ── Forms ────────────────────────────────────────── */
  .form-panel {
    padding: 2.5rem 1.5rem;
  }

  .form-grid {
    grid-template-columns: 100%;
  }

  .form-full-width {
    grid-column: span 1;
  }

  /* ── Floating Widget ──────────────────────────────── */
  .floating-widget {
    bottom: 15px;
    right: 15px;
  }

  /* ── Tour / Facility Cards ────────────────────────── */
  .tour-card {
    margin: 0 auto;
    max-width: 480px;
    width: 100%;
  }

  /* ── Reels Grid ───────────────────────────────────── */
  .reel-card {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* ── Hero ─────────────────────────────────────────── */
  .hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-badges-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  /* ── Metrics ──────────────────────────────────────── */
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .metric-value {
    font-size: 1.7rem;
  }

  .success-stat-circle {
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .metric-title {
    font-size: 0.85rem;
  }

  .metric-desc {
    font-size: 0.75rem;
  }

  /* ── Section Titles ───────────────────────────────── */
  .section-title {
    font-size: 1.6rem !important;
  }

  /* ── About Image ──────────────────────────────────── */
  #about-intro-img {
    height: 260px !important;
  }

  /* ── Admin Panel ──────────────────────────────────── */
  .admin-stats-grid {
    grid-template-columns: 100%;
  }

  .admin-table {
    font-size: 0.8rem;
  }

  /* ── Insurance ────────────────────────────────────── */
  .insurance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .insurance-badge {
    font-size: 0.75rem;
    padding: 0.6rem 0.75rem;
  }

  /* ── Doctor Snapshot ──────────────────────────────── */
  .doctor-snapshot-card {
    padding: 1.5rem;
  }

  /* ── Containers ───────────────────────────────────── */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 1;
  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;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.js-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* Interactive Fertility Quiz Widget */
.quiz-widget {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 47, 39, 0.05);
  overflow: hidden;
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.quiz-header {
  background: var(--primary-green);
  color: var(--bg-cream);
  padding: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--primary-gold);
}

.quiz-header h3 {
  color: var(--bg-cream);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.quiz-header p {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.75);
}

.quiz-body {
  padding: 3rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.quiz-step.active {
  display: block;
}

.quiz-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.quiz-options {
  display: grid;
  grid-template-columns: 100%;
  gap: 1rem;
}

.quiz-option {
  padding: 1rem 1.5rem;
  border: 1px solid rgba(13, 47, 39, 0.12);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-cream);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quiz-option::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(13, 47, 39, 0.25);
  display: inline-block;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.quiz-option:hover {
  border-color: var(--primary-pink);
  background-color: var(--bg-white);
  color: var(--primary-pink);
}

.quiz-option.selected {
  border-color: var(--primary-pink);
  background-color: var(--bg-pink-light);
  color: var(--primary-pink);
  box-shadow: 0 4px 12px rgba(216, 51, 93, 0.08);
}

.quiz-option.selected::before {
  border-color: var(--primary-pink);
  background-color: var(--primary-pink);
  box-shadow: inset 0 0 0 3px var(--bg-white);
}

.quiz-footer {
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(13, 47, 39, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(250, 247, 242, 0.3);
}

.quiz-progress-bar {
  flex-grow: 1;
  height: 6px;
  background-color: rgba(13, 47, 39, 0.08);
  border-radius: 10px;
  margin-right: 2rem;
  overflow: hidden;
}

.quiz-progress {
  height: 100%;
  width: 25%;
  background: var(--primary-gradient);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.quiz-result-box {
  text-align: center;
}

.quiz-result-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.quiz-result-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Reels Hub / Video Section */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.reel-card {
  aspect-ratio: 9/16;
  background-color: var(--primary-green);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.reel-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.85);
}

.reel-card:hover .reel-cover-img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(13, 47, 39, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.85;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-gradient);
  border-color: transparent;
  opacity: 1;
  box-shadow: 0 8px 25px rgba(216, 51, 93, 0.3);
}

.reel-title {
  color: var(--bg-cream);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.reel-tag {
  color: var(--primary-coral);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Virtual Tour Layout */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.tour-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 47, 39, 0.02);
  transition: var(--transition-bounce);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.tour-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary-green);
  color: var(--bg-cream);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--primary-gold);
}

.tour-info-box {
  padding: 2.25rem 2rem;
}

.tour-info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tour-info-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {

  .reels-grid,
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .reels-grid,
  .tour-grid {
    grid-template-columns: 100%;
  }

  .quiz-body {
    padding: 2rem 1.5rem;
  }

  .quiz-footer {
    padding: 1.5rem;
  }
}

/* Premium CTA Button Pulse Animation */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 207, 232, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 207, 232, 0);
  }

  gap: 2rem;
  margin-top: 3rem;
}

.reel-card {
  aspect-ratio: 9/16;
  background-color: var(--primary-green);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.reel-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  filter: brightness(0.85);
}

.reel-card:hover .reel-cover-img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(13, 47, 39, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  z-index: 2;
}

.reel-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0.85;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.reel-card:hover .reel-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--primary-gradient);
  border-color: transparent;
  opacity: 1;
  box-shadow: 0 8px 25px rgba(216, 51, 93, 0.3);
}

.reel-title {
  color: var(--bg-cream);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.reel-tag {
  color: var(--primary-coral);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Virtual Tour Layout */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.tour-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 47, 39, 0.02);
  transition: var(--transition-bounce);
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

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

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

.tour-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary-green);
  color: var(--bg-cream);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--primary-gold);
}

.tour-info-box {
  padding: 2.25rem 2rem;
}

.tour-info-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.tour-info-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {

  .reels-grid,
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .reels-grid,
  .tour-grid {
    grid-template-columns: 100%;
  }

  .quiz-body {
    padding: 2rem 1.5rem;
  }

  .quiz-footer {
    padding: 1.5rem;
  }
}

/* Premium CTA Button Pulse Animation */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 207, 232, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 207, 232, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 207, 232, 0);
  }
}

.btn-primary,
.nav-cta {
  animation: buttonPulse 2s infinite;
}

/* Scroll indicator mouse animation */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #0D2B4F;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: floatIndicator 2s infinite ease-in-out;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover {
  opacity: 1;
  color: #00CFE8;
}

.scroll-indicator-mouse {
  width: 18px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 10px;
  position: relative;
}

.scroll-indicator-wheel {
  width: 3px;
  height: 6px;
  background-color: #00CFE8;
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.6s infinite;
}

@keyframes floatIndicator {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -6px);
  }
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    top: 4px;
  }

  100% {
    opacity: 0;
    top: 16px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Doctor Quote Card */
.doctor-quote-card {
  background-color: var(--bg-cream);
  padding: 1.5rem 2.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 47, 39, 0.05);
  display: inline-block;
  margin-top: 1.5rem;
  max-width: 650px;
  position: relative;
}

.doctor-quote-card p {
  font-size: 1.25rem !important;
  color: var(--primary-navy) !important;
  font-family: var(--font-manrope) !important;
  font-weight: 700 !important;
  margin: 0 !important;
  font-style: italic !important;
  line-height: 1.45 !important;
}

/* ============================================================
   Premium Footer Section Styles
   ============================================================ */
#main-footer {
  background: #ffffff;
  color: #000000;
  padding: 5rem 0 2.5rem 0;
  border-top: 4px solid var(--primary-teal);
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

#main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 207, 232, 0.04), transparent 55%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  transform: translateY(-2px);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo-text-img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.footer-logo-subtitle-img {
  height: 10px;
  width: auto;
  object-fit: contain;
}

.footer-col-about p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a5568;
}

.footer-social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 43, 79, 0.05);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  border: 1px solid rgba(13, 43, 79, 0.1);
}

.footer-social-btn:hover {
  background: var(--primary-teal);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 207, 232, 0.3);
  border-color: var(--primary-teal);
}

.footer-title {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary-teal);
  transition: var(--transition-smooth);
}

.footer-grid div:hover .footer-title::after {
  width: 60px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 0px;
  opacity: 0;
  transition: var(--transition-smooth);
  font-size: 0.8rem;
  color: var(--primary-teal);
  width: 0;
}

.footer-links a:hover {
  color: var(--primary-teal);
  transform: translateX(6px);
}

.footer-links a:hover::before {
  margin-right: 8px;
  opacity: 1;
  width: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: #4a5568;
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--primary-teal);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #4a5568;
}

.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
}

.footer-bottom-links a {
  color: #718096;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--primary-teal);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  #main-footer {
    padding: 4rem 0 2rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Premium Global Popup Booking Modal */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 43, 79, 0.85); /* Deep Navy backdrop */
  backdrop-filter: blur(8px);
  z-index: 2100; /* Higher than header and other widgets */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.popup-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-modal-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  max-width: 620px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(13, 43, 79, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

/* Custom scrollbar for modal content if it overflows */
.popup-modal-content::-webkit-scrollbar {
  width: 6px;
}
.popup-modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.popup-modal-content::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-navy-rgb), 0.2);
  border-radius: 10px;
}

.popup-modal.show .popup-modal-content {
  transform: scale(1);
}

.popup-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.popup-modal-close:hover {
  color: var(--primary-teal);
  transform: rotate(90deg);
}

.popup-modal-header {
  margin-bottom: 2rem;
  text-align: left;
}

.popup-modal-header h3 {
  font-size: 1.75rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.popup-modal-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .popup-modal-content {
    padding: 2.5rem 1.5rem;
    width: 95%;
  }
  .popup-modal-header h3 {
    font-size: 1.5rem;
  }
}