*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0a2540;
  --navy-light: #1a3a5e;
  --navy-mid: #0f2f4f;
  --teal: #1a8a7a;
  --teal-light: #2aa090;
  --teal-glow: rgba(26, 138, 122, 0.3);
  --gold: #d4a843;
  --gold-light: #f0d080;
  --white: #ffffff;
  --off-white: #f5f8fc;
  --gray-50: #f0f3f8;
  --gray-100: #e2e8f0;
  --gray-300: #b0b8c8;
  --gray-500: #6b7a90;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 4px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.14);
  --shadow-glow: 0 0 40px rgba(26, 138, 122, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1001;
  background: transparent;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal-light));
  box-shadow: 0 0 12px rgba(26, 138, 122, 0.35);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.5s var(--ease-out);
}

nav.scrolled {
  background: rgba(10, 37, 64, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 138, 122, 0.35);
  flex-shrink: 0;
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.6;
  display: block;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-links a.active-link {
  color: var(--white);
}

.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-light)) !important;
  color: var(--white) !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(26, 138, 122, 0.3);
  transition: all 0.3s var(--ease) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(26, 138, 122, 0.4) !important; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #061b30 0%, #0a2c4a 25%, #0e3a5a 50%, #0a3a4e 75%, #062420 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shapes .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-bg-shapes .orb:nth-child(1) {
  width: 600px;
  height: 600px;
  background: var(--teal);
  top: -15%;
  right: -10%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.hero-bg-shapes .orb:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -10%;
  left: -5%;
  opacity: 0.15;
  animation-delay: -8s;
  animation-duration: 20s;
}

.hero-bg-shapes .orb:nth-child(3) {
  width: 300px;
  height: 300px;
  background: var(--teal-light);
  top: 40%;
  left: 50%;
  opacity: 0.1;
  animation-delay: -15s;
  animation-duration: 30s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.7s var(--ease-out) both;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.12s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #e8b84a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .line-break {
  display: block;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.24s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s var(--ease-out) 0.36s both;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s var(--ease);
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 138, 122, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 138, 122, 0.45);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

/* ── Hero Visual ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideUp 0.8s var(--ease-out) 0.4s both;
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 138, 122, 0.08), transparent);
  border-radius: 50%;
}

.hero-card-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-card-badge-pulse {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(26, 138, 122, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(26, 138, 122, 0.3); }
  50% { box-shadow: 0 0 30px rgba(26, 138, 122, 0.5); }
}

.hero-card-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-item:nth-child(1) { transition-delay: 0.05s; }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.15s; }
.stat-item:nth-child(4) { transition-delay: 0.2s; }

.stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  font-weight: 400;
}

/* ── Section Shared ── */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  margin-bottom: 52px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  color: var(--teal);
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.75;
}

/* ── About ── */
#about {
  background: var(--white);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-bg {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--teal-pale, #e6f7f4), #d0eee8);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual-bg img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle at 30% 40%, rgba(26, 138, 122, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(212, 168, 67, 0.04) 0%, transparent 40%);
}

.about-visual-bg svg {
  position: relative;
  z-index: 1;
}

.about-text h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-text p {
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 0.95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  background: var(--teal-pale, #e6f7f4);
  transform: translateX(3px);
}

.about-feature svg { flex-shrink: 0; }

/* ── Services ── */
#services {
  background: var(--off-white);
  position: relative;
}

#services::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent, rgba(26, 138, 122, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-pale, #e6f7f4), #c8efe8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg circle {
  stroke: var(--white);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ── Doctors ── */
#doctors {
  background: var(--white);
  position: relative;
}

#doctors::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.doctor-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.doctor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.doctor-card:hover {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.doctor-card:hover::before { transform: scaleX(1); }

.doctor-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-pale, #e6f7f4), #c8efe8);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-card:hover .doctor-avatar {
  box-shadow: 0 0 0 3px rgba(26, 138, 122, 0.15), var(--shadow-md);
}

.doctor-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.doctor-specialty {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.doctor-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.doctor-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.doctor-meta span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 5px 12px;
  border-radius: 50px;
}

.doctor-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--teal);
  background: var(--white);
  border: 1.5px solid var(--teal);
  transition: all 0.3s var(--ease);
  margin-top: auto;
}

.doctor-cta:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26, 138, 122, 0.3);
  transform: translateY(-2px);
}

/* ── WhatsApp Button ── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all 0.3s var(--ease);
  animation: pulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 34px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 640px) {
  .whatsapp-btn {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}

/* ── Page Hero (sub-pages) ── */
.page-hero {
  padding: 170px 0 90px;
  background: linear-gradient(160deg, #061b30 0%, #0a2c4a 45%, #0e3a5a 80%, #0a3a4e 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(26, 138, 122, 0.12), transparent 60%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08), transparent 60%);
  border-radius: 50%;
}

.page-hero > * { position: relative; z-index: 1; }

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-breadcrumb a:hover { color: var(--gold-light); }

.page-breadcrumb span { color: rgba(255, 255, 255, 0.25); }

.page-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.75;
}

/* ── Buttons on light sections ── */
.btn-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.3);
}

.btn-navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(10, 37, 64, 0.4);
}

.section-cta-center { margin-top: 40px; text-align: center; }

.about-learn-btn { margin-top: 28px; }

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(160deg, #0a2540 0%, #0f2f4f 50%, #0a3348 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 138, 122, 0.1), transparent);
  border-radius: 50%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.cta-inner h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

/* ── About stats (sub-pages) ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.about-stat {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.about-stat:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.about-stat .stat-number {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
}

.about-stat .stat-label { margin-top: 6px; }

/* ── Service learn more link ── */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 10px; color: var(--teal-light); }

/* ── Services index pills ── */
.services-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.services-index a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 9px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services-index a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-color: transparent;
  transform: translateY(-2px);
}

/* ── Service detail blocks (services page) ── */
.service-detail {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  scroll-margin-top: 110px;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.service-detail:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, #e6f7f4, #c8efe8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail-head h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.service-tagline {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

.service-detail-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.service-detail-desc p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.8;
}

.service-detail-list h4 {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.service-detail-list ul {
  list-style: none;
}

.service-detail-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 9px;
}

.service-detail-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.service-detail-cta {
  margin-top: 26px;
  border-top: 1px solid var(--gray-50);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.service-detail-cta p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.service-detail-cta .doctor-cta {
  width: auto;
  min-width: 200px;
}

/* ── Medical tourism ── */
.mt-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.mt-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}

.mt-stat svg { flex-shrink: 0; }

.mt-stat span { color: var(--gold-light); }

.mt-steps { grid-template-columns: repeat(3, 1fr); }

.mt-treatments-note {
  text-align: center;
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.mt-treatments-note a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.mt-treatments-note a:hover { text-decoration: underline; }

.mt-panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.mt-panel-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.mt-panel-info p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.8;
}

.mt-panel-list ul { list-style: none; }

.mt-panel-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-50);
}

.mt-panel-list li:last-child { border-bottom: none; }

.mt-panel-list .mt-panel-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e6f7f4, #c8efe8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mt-panel-list strong {
  display: block;
  font-size: 0.92rem;
  color: var(--gray-900);
  font-weight: 600;
}

.mt-panel-list small {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  display: block;
  margin-top: 2px;
}

.mt-note {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: #fdf6e4;
  border: 1px solid rgba(212, 168, 67, 0.35);
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.mt-faq { max-width: 860px; margin: 0 auto; }

.mt-faq details {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.mt-faq details[open] {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.mt-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.mt-faq summary::-webkit-details-marker { display: none; }

.mt-faq summary::after {
  content: '+';
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.mt-faq details[open] summary::after { transform: rotate(45deg); }

.mt-faq .faq-answer {
  padding: 0 22px 20px;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ── Contact actions ── */
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  margin-top: 24px;
}

/* ── Doctors preview (home) ── */
.doctors-section {
  background: linear-gradient(160deg, #eefaf7 0%, #e6f5f1 100%);
  position: relative;
}

.doctor-quals {
  font-size: 0.8rem;
  color: var(--gray-700);
  font-weight: 600;
  margin-bottom: 10px;
  flex-grow: 0 !important;
}

.doctor-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.doctor-chips span {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 5px 12px;
  border-radius: 50px;
}

.doctor-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.doctor-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

.doctor-detail svg { flex-shrink: 0; }

/* ── Doctor profiles (doctors page) ── */
.doctor-profiles {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.doctor-profile {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.doctor-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--teal));
}

.doctor-profile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.doctor-profile:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.doctor-profile:nth-child(even) .doctor-profile-media { order: 2; }

.doctor-profile-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.doctor-profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-pale, #e6f7f4), #c8efe8);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.doctor-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-profile-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.doctor-profile-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 6px 0 10px;
}

.doctor-profile-quals {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 16px;
}

.doctor-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 18px;
}

.doctor-profile-meta div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-700);
  font-weight: 500;
  background: var(--off-white);
  padding: 9px 12px;
  border-radius: 10px;
}

.doctor-profile-meta svg { flex-shrink: 0; }

.doctor-profile-body h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.doctor-profile-body h3 svg { flex-shrink: 0; }

.doctor-profile-body p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 14px;
}

.doctor-profile-body h4 {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 20px 0 10px;
}

.doctor-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doctor-expertise span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-700);
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.doctor-expertise span:hover {
  background: var(--teal-pale, #e6f7f4);
  border-color: rgba(26, 138, 122, 0.3);
}

.doctor-edu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.doctor-edu li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.5;
}

.doctor-edu li svg { flex-shrink: 0; margin-top: 3px; }

.doctor-quote {
  margin-top: 22px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--teal-pale, #e6f7f4), #d0eee8);
  border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.7;
}

.doctor-quote strong {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--teal);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* ── Consultation steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Equipment & Facilities ── */
#equipment {
  background: var(--white);
  position: relative;
}

#equipment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-100), transparent);
}

.equip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.equip-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 20px 26px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.equip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.equip-card:hover {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.equip-card:hover::before { transform: scaleX(1); }

.equip-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--teal-pale, #e6f7f4), #d0eee8);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.equip-card:hover .equip-img {
  border-color: rgba(26, 138, 122, 0.25);
}

.equip-img span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.equip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.equip-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.equip-card p {
  font-size: 0.86rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── Why Us ── */
#why-us {
  background: linear-gradient(160deg, #0a2540 0%, #0f2f4f 50%, #0a3348 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 138, 122, 0.08), transparent);
  border-radius: 50%;
}

#why-us .section-title { color: var(--white); }
#why-us .section-desc { color: rgba(255, 255, 255, 0.55); }
#why-us .section-label { color: var(--gold-light); }
#why-us .section-label::before { background: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(26, 138, 122, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-card:hover::before { opacity: 1; }

.why-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ── Contact ── */
#contact {
  background: var(--white);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-item:hover {
  background: var(--white);
  border-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-pale, #e6f7f4), #c8efe8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--gray-900);
  line-height: 1.5;
  font-weight: 500;
}

.contact-item a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--teal-light);
}

.contact-map {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(26, 138, 122, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(212, 168, 67, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.contact-map > * { position: relative; z-index: 1; }

.contact-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.contact-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  flex-wrap: wrap;
}

.contact-map-address p:first-child {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.contact-map-address p:last-child {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin-top: 3px;
}

.contact-map a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--white);
  border: 1.5px solid var(--teal);
  transition: all 0.3s ease;
}

.contact-map a:hover {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
}

.contact-map a:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  gap: 12px;
}

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: translateY(24px) scale(0.95);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

/* ── Selection ── */
::selection { background: var(--teal); color: var(--white); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .equip-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1120px) {
  .mt-panel { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 868px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; padding-top: 120px; }
  .hero h1 { font-size: 2.8rem; }
  .hero p { margin: 0 auto 36px; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
  .page-hero { padding: 140px 0 70px; }
  .page-hero h1 { font-size: 2.3rem; }
  .cta-inner { justify-content: center; text-align: center; }
  .cta-inner p { margin: 0 auto; }
  .cta-actions { justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doctor-profile,
  .doctor-profile:nth-child(even) { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .doctor-profile:nth-child(even) .doctor-profile-media { order: 0; }
  .service-detail-body { grid-template-columns: 1fr; gap: 22px; }
  .service-detail { padding: 28px; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 37, 64, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 90px 32px 32px;
    gap: 28px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
  }

  .nav-links.active { right: 0; }
  .mobile-overlay { display: block; }
  .mobile-overlay.active { opacity: 1; }

  .page-hero { padding: 120px 0 56px; }
  .page-hero h1 { font-size: 1.9rem; }
  .page-hero p { font-size: 0.95rem; }
  .cta-inner { padding: 44px 0; }
  .cta-inner h2 { font-size: 1.6rem; }
  .doctor-profile { padding: 24px 20px; }
  .doctor-profile-avatar { width: 110px; height: 110px; }

  .hero h1 { font-size: 2.2rem; }
  .hero h1 .line-break { display: inline; }
  .hero p { font-size: 1rem; }
  .hero { min-height: 90vh; }
  .btn { padding: 14px 28px; font-size: 0.9rem; }

  .section-title { font-size: 1.8rem; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-detail { padding: 24px 20px; }
  .service-detail-head { flex-direction: column; text-align: center; gap: 14px; }
  .service-detail-cta { justify-content: center; text-align: center; }
  .service-detail-cta .doctor-cta { width: 100%; min-width: 0; }
  .mt-steps { grid-template-columns: 1fr; }
  .mt-panel { padding: 28px 20px; }
  .mt-stat { font-size: 0.8rem; padding: 9px 16px; }

  .contact-item { padding: 14px 16px; }
  .contact-map iframe { height: 260px; }
  .contact-map-footer { flex-direction: column; text-align: center; padding: 18px 20px; }
  .contact-actions .btn, .cta-actions .btn, .about-actions .btn { width: 100%; justify-content: center; }

  .hero-bg-shapes .orb:nth-child(1) { width: 300px; height: 300px; }
  .hero-bg-shapes .orb:nth-child(2) { width: 200px; height: 200px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.8rem; }
  .section-title { font-size: 1.5rem; }
  .logo-text { font-size: 0.95rem; }
  .logo-text span { font-size: 0.65rem; }
  .container { padding: 0 16px; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg-shapes .orb { animation: none; }
  .hero-card-badge-pulse { animation: none; }
}


/* ═══════════════════════════════════════════════════════════════
   ── HOSPITAL TOUR & FACILITIES GALLERY ──
   ═══════════════════════════════════════════════════════════════ */
.hospital-tour-section {
  background: linear-gradient(180deg, var(--off-white) 0%, #eef7f5 50%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hospital-tour-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(circle at 12% 18%, rgba(26, 138, 122, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 88% 82%, rgba(212, 168, 67, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Facility Highlights Quick Bar */
.facility-highlights-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.facility-pill {
  background: var(--white);
  border: 1px solid rgba(26, 138, 122, 0.14);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.04);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}

.facility-pill:hover {
  transform: translateY(-3px);
  border-color: var(--teal);
  box-shadow: 0 10px 28px rgba(26, 138, 122, 0.14);
}

.facility-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26, 138, 122, 0.12), rgba(42, 160, 144, 0.22));
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}

.facility-pill:hover .facility-pill-icon {
  background: var(--teal);
  color: var(--white);
  transform: scale(1.06) rotate(4deg);
}

.facility-pill strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.3;
}

.facility-pill span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Category Filter Tabs */
.gallery-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gallery-filter-btn {
  appearance: none;
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.12);
  color: var(--navy-mid);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-sm);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.gallery-filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--off-white);
  transform: translateY(-2px);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.22);
}

.gallery-filter-btn .count-tag {
  background: rgba(10, 37, 64, 0.08);
  color: inherit;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.gallery-filter-btn.active .count-tag {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* Gallery Grid */
.hospital-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 138, 122, 0.16);
  border-color: rgba(26, 138, 122, 0.35);
}

.gallery-card.hide {
  display: none !important;
}

.gallery-card.fade-in {
  animation: galleryCardIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes galleryCardIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-media {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
}

.gallery-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease-out);
}

.gallery-card:hover .gallery-media img {
  transform: scale(1.07);
}

.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 37, 64, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-expand-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 2;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.gallery-card:hover .gallery-expand-btn {
  opacity: 1;
  background: var(--teal);
  color: var(--white);
  transform: scale(1.12) rotate(90deg);
}

.gallery-info {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-info h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.gallery-card:hover .gallery-info h3 {
  color: var(--teal);
}

.gallery-info p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.gallery-tag {
  background: #eef8f6;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(26, 138, 122, 0.15);
  display: inline-flex;
  align-items: center;
}

/* Lightbox Modal */
.hospital-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hospital-lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 46, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.hospital-lightbox.active .lightbox-dialog {
  transform: scale(1);
}

/* Lightbox Top Bar */
.lightbox-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(6, 20, 36, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-badge {
  display: inline-block;
  background: rgba(26, 138, 122, 0.25);
  border: 1px solid var(--teal);
  color: #6ee7b7;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lightbox-counter {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.lightbox-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close:hover,
.lightbox-close:active {
  background: #e53e3e;
  border-color: #e53e3e;
  transform: scale(1.08);
}

.lightbox-image-wrapper {
  position: relative;
  width: 100%;
  background: #030c17;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 280px;
  max-height: 60vh;
}

.lightbox-image {
  max-width: 100%;
  max-height: 60vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-nav:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
  padding: 20px 24px;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.lightbox-caption-text p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.5;
  margin-bottom: 12px;
}

.lightbox-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lightbox-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #a7f3d0;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox-mobile-controls {
  display: none;
}

/* ── Responsive Tour & Gallery Breakpoints ── */
@media (max-width: 1024px) {
  .facility-highlights-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .hospital-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hospital-tour-section {
    padding: 48px 0;
  }

  .about-grid {
    gap: 28px !important;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }

  .about-stat {
    padding: 14px 12px !important;
  }

  .about-stat .stat-number {
    font-size: 1.6rem !important;
  }

  .about-features {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  /* 2x2 Highlights Bar */
  .facility-highlights-bar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .facility-pill {
    padding: 12px 10px;
    border-radius: 12px;
    gap: 10px;
  }

  .facility-pill-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .facility-pill-icon svg {
    width: 18px;
    height: 18px;
  }

  .facility-pill strong {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .facility-pill span {
    font-size: 0.68rem;
  }

  /* Smooth horizontal filter tabs with edge overflow affordance */
  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 4px 20px 14px 20px;
    margin: 0 -20px 20px -20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .gallery-filter-btn {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.8rem;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 999px;
  }

  /* Gallery Grid on Mobile */
  .hospital-gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-card {
    border-radius: 14px;
    -webkit-tap-highlight-color: transparent;
  }

  .gallery-card:active {
    transform: scale(0.985);
  }

  .gallery-media {
    aspect-ratio: 16/10;
  }

  .gallery-badge {
    top: 10px;
    left: 10px;
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .gallery-expand-btn {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.95);
  }

  .gallery-info {
    padding: 14px 16px 14px;
  }

  .gallery-info h3 {
    font-size: 1.02rem;
    margin-bottom: 6px;
  }

  .gallery-info p {
    font-size: 0.82rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .gallery-tag {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  /* Full-Screen Edge-to-Edge Lightbox Modal on Mobile */
  .hospital-lightbox {
    padding: 0 !important;
  }

  .lightbox-backdrop {
    background: #040e1a;
  }

  .lightbox-dialog {
    max-width: 100vw !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
    background: #061524;
    justify-content: space-between;
  }

  .lightbox-top-bar {
    padding: 12px 16px;
    background: rgba(4, 14, 26, 0.95);
    flex-shrink: 0;
  }

  .lightbox-image-wrapper {
    flex: 1;
    min-height: 0;
    max-height: none;
    background: transparent;
    padding: 10px 0;
  }

  .lightbox-image {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Hide floating desktop nav buttons on mobile */
  .lightbox-image-wrapper .lightbox-nav {
    display: none !important;
  }

  .lightbox-caption {
    padding: 16px 18px 20px;
    background: #061524;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    max-height: 42vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .lightbox-caption-text h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .lightbox-caption-text p {
    font-size: 0.8rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .lightbox-tags {
    gap: 4px;
    margin-bottom: 12px;
  }

  .lightbox-tag {
    font-size: 0.68rem;
    padding: 2px 7px;
  }

  /* Mobile Bottom Navigation Controls */
  .lightbox-mobile-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lightbox-mobile-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .lightbox-mobile-btn:active {
    background: var(--teal);
    border-color: var(--teal);
  }

  .lightbox-swipe-hint {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 5px;
  }
}

@media (max-width: 400px) {
  .facility-highlights-bar {
    grid-template-columns: 1fr;
  }

  .gallery-filter-btn {
    padding: 7px 13px;
    font-size: 0.75rem;
  }

  .lightbox-caption-text h3 {
    font-size: 0.95rem;
  }

  .lightbox-caption-text p {
    font-size: 0.76rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .gallery-expand-btn {
    opacity: 1 !important;
  }
  .gallery-card:active {
    transform: scale(0.985);
  }
  .facility-pill:active {
    transform: scale(0.985);
  }
}
