/* ═══════════════════════════════════════
   RK Hospital — Professional White Theme
   Font: Urbanist | Colors: Red + Blue
   Performance Optimized
   ═══════════════════════════════════════ */

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

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

:root {
  --red: #C8102E;
  --red-light: #e8183e;
  --red-dim: rgba(200, 16, 46, 0.08);
  --blue: #1565C0;
  --blue-light: #1976D2;
  --gold: #D4A94A;
  --gold-light: #f0cc7a;
  --cream: #FAF6EF;
  --white: #FFFFFF;
  --dark: #1a1a1a;
  --dark2: #222222;
  --dark3: #2a2a2a;
  --text: #1a1a1a;
  --text-light: #555555;
  --text-lighter: #888888;
  --bg: #FFFFFF;
  --bg2: #f7f8fa;
  --bg3: #f0f2f5;
  --border: rgba(0, 0, 0, 0.08);
  --grey: #8a8a8a;
  --font: 'Urbanist', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
  font-display: swap;
  background: var(--dark);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* GPU acceleration for smooth animations */
.hero-slide,
.hero-content,
.testimonial-card,
.stat-card,
.dept-card {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduce paint on scroll */
.hero-slide-img {
  transform: translateZ(0);
}


/* Global Container Utility for Centering & Constraining Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  padding: 10px 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
}

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

.topbar-item {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .25s ease;
  font-weight: 600;
}

.topbar-item:hover {
  color: var(--white);
}

.topbar-item strong {
  font-weight: 800;
  color: var(--white);
}

.topbar-icon {
  font-size: 13px;
}

.topbar-dot {
  color: rgba(255, 255, 255, 0.2);
  font-size: 8px;
}

.topbar-hours {
  cursor: default;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--white);
  border-bottom: none;
  transition: all .4s ease;
  box-shadow: 0 1px 0 var(--border);
}

nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 40%, var(--gold) 100%);
}

nav::after {
  display: none;
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  order: 1;
}

.nav-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(200, 16, 46, 0.15));
  transition: transform .3s ease;
  border: 2px solid var(--red);
  padding: 2px;
  background: var(--white);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-logo-name {
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-logo-name span:first-child {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nav-logo-name span:last-child {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 2px;
}

footer .nav-logo-name {
  display: flex;
  flex-direction: column;
}

footer .nav-logo-name span:first-child {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin-left: auto;
  margin-right: 20px;
  order: 2;
  flex: 1;
  justify-content: center;
  max-width: 600px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  padding: 10px 16px;
  border-radius: 6px;
  transition: color .25s;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav CTA Button */
.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.3);
  flex-shrink: 0;
  order: 3;
}

.nav-cta:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.45);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  order: 4;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── HERO SLIDER ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: none;
}

.hero-slide.active .hero-slide-img {
  animation: kenBurns 6s ease forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.12) 0%, transparent 40%),
    linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

/* Decorative Corner Lines */
.hero-corner {
  position: absolute;
  z-index: 2;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

.hero-corner--tl {
  top: 100px;
  left: 40px;
  border-left: 2px solid rgba(200, 16, 46, 0.4);
  border-top: 2px solid rgba(200, 16, 46, 0.4);
  animation: cornerFadeIn 1s ease 0.5s both;
}

.hero-corner--br {
  bottom: 100px;
  right: 40px;
  border-right: 2px solid rgba(212, 169, 74, 0.3);
  border-bottom: 2px solid rgba(212, 169, 74, 0.3);
  animation: cornerFadeIn 1s ease 0.8s both;
}

@keyframes cornerFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
  backdrop-filter: blur(16px);
  animation: fadeUp .6s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  color: var(--white);
  animation: fadeUp .6s ease .1s both;
}

.hero-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 60px rgba(200, 16, 46, 0.3);
}

.hero-title .stroke-text {
  -webkit-text-stroke: 2px rgba(212, 169, 74, 0.5);
  color: transparent;
}

/* Doctor Info Line */
.hero-doctor-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeUp .6s ease .15s both;
}

.hero-doctor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.hero-doctor-info {
  display: flex;
  flex-direction: column;
}

.hero-doctor-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
}

.hero-doctor-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* Specialty Pills */
.hero-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  animation: fadeUp .6s ease .25s both;
}

.hero-spec-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  transition: all .25s ease;
}

.hero-spec-pill:hover {
  background: rgba(200, 16, 46, 0.2);
  border-color: rgba(200, 16, 46, 0.4);
  color: var(--white);
  transform: translateY(-2px);
}

/* Animate content on slide change */
.hero-content.animating .hero-badge,
.hero-content.animating .hero-title,
.hero-content.animating .hero-doctor-line,
.hero-content.animating .hero-subtitle,
.hero-content.animating .hero-specialties,
.hero-content.animating .hero-actions {
  animation: fadeUp .6s ease both;
}

.hero-content.animating .hero-title {
  animation-delay: .1s;
}

.hero-content.animating .hero-doctor-line {
  animation-delay: .15s;
}

.hero-content.animating .hero-subtitle {
  animation-delay: .2s;
}

.hero-content.animating .hero-specialties {
  animation-delay: .25s;
}

.hero-content.animating .hero-actions {
  animation-delay: .3s;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 24px;
  animation: fadeUp .6s ease .2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .6s ease .3s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #e8183e 100%);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: all .3s ease;
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e8183e 0%, var(--red) 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(200, 16, 46, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all .3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}

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

/* Right Side Scroll Indicator */
.hero-side-indicator {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-side-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.hero-side-text {
  writing-mode: vertical-rl;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* ── HERO SLIDE NAV ── */
.hero-slide-nav {
  position: absolute;
  bottom: 0;
  left: 60px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 0;
}

.hero-slide-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 700;
}

.hero-slide-current {
  font-size: 28px;
  color: var(--white);
}

.hero-slide-sep {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}

.hero-slide-total {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
}

.hero-slide-progress {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.hero-slide-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width 0.3s ease;
  animation: slideProgress 5s linear forwards;
}

@keyframes slideProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.hero-slide-arrows {
  display: flex;
  gap: 4px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
  backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}

/* ── HERO STATS ── */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 4;
  display: flex;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px 0 0 0;
}

.hero-stat {
  padding: 28px 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 14px 0;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item::before {
  content: '✦';
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── STATS SECTION ── */
.stats-section {
  padding: 80px 60px;
  background: var(--bg2);
  position: relative;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.1);
}

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

.stat-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 16px;
  background: var(--bg);
  border-radius: 50%;
  color: var(--blue);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    padding: 60px 24px;
  }
}

/* ── SECTION COMMONS ── */
section {
  padding: 100px 60px;
  overflow-x: hidden;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

h2.section-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
}

h2.section-title span {
  color: var(--red);
}

.section-desc {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 60px;
}

.about-img-stack {
  position: relative;
  height: 580px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: 8px;
  border: 5px solid var(--white);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.about-years-badge {
  position: absolute;
  bottom: -10px;
  left: 30%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red) 0%, #e8183e 100%);
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(200, 16, 46, 0.4), 0 0 0 6px var(--white);
  z-index: 5;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 8px 40px rgba(200, 16, 46, 0.4), 0 0 0 6px var(--white);
  }

  50% {
    box-shadow: 0 8px 50px rgba(200, 16, 46, 0.55), 0 0 0 8px var(--white);
  }
}

.about-years-num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.about-years-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 0 10px;
  margin-top: 4px;
}

.about-content .section-eyebrow {
  margin-top: 0;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0;
}

.about-tag {
  background: var(--red-dim);
  border: 1px solid rgba(200, 16, 46, 0.15);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.memberships {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 28px;
}

.memberships-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 14px;
}

.memberships-list {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.9;
}

/* ── DEPARTMENTS ── */
#departments {
  background: var(--bg2);
}

.dept-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  text-align: left;
}

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

.dept-card {
  background: var(--white);
  padding: 38px 34px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .25s, box-shadow .25s, transform .25s;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.dept-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s ease;
}

.dept-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.dept-card:hover::before {
  transform: scaleY(1);
}

.dept-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}

.dept-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.dept-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dept-items li {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.dept-items li::before {
  content: '→';
  color: var(--red);
  font-size: 11px;
}

.dept-card:hover .dept-items li {
  color: var(--text);
}

.dept-count {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 52px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}

.dept-desc {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.75;
  max-width: 380px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--bg2);
  position: relative;
}

#testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(200, 16, 46, 0.04) 0%, transparent 40%),
    radial-gradient(circle at bottom left, rgba(212, 169, 74, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.testimonials-header {
  margin-bottom: 60px;
  text-align: center;
}

.testimonials-header .section-eyebrow {
  justify-content: center;
}

.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 16px;
  /* spacing off edges */
}

.testimonial-card {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .4s ease;

  display: flex;
  align-items: center;
  gap: 60px;
}

.testimonial-card-content {
  flex: 1;
}

.testimonial-card-img {
  flex: 1;
  max-width: 480px;
}

@media (max-width: 900px) {
  .testimonial-card {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 32px;
  }

  .testimonial-card-img {
    max-width: 100%;
  }
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200, 16, 46, 0.08), 0 8px 15px rgba(0, 0, 0, 0.03);
}

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

.quote-mark {
  font-size: 180px;
  line-height: 1;
  color: rgba(200, 16, 46, 0.04);
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: Georgia, serif;
  font-weight: 900;
  pointer-events: none;
  z-index: 0;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 24px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 18px;
  font-family: var(--font-poppins);
  color: var(--text);
  font-weight: 600;
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #e8183e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.25);
}

.author-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}

.author-status {
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-deco-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transform: rotate(1deg);
  transition: transform .4s ease;
}

.testimonial-card:hover .testimonial-deco-img {
  transform: rotate(0deg) scale(1.02);
}

/* Controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonial-controls .hero-arrow {
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text);
  background: var(--white);
}

.testimonial-controls .hero-arrow:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: none;
  transition: all .3s ease;
}

.testi-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* ── BOOKING ── */
#booking {
  background: var(--bg2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.booking-content {
  padding: 100px 80px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-content .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.booking-content .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.booking-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.booking-content p {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-poppins);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 40px;
}

.booking-info-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.booking-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.booking-info-text span:first-child {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}

.booking-info-text span:last-child {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.booking-form-wrap {
  padding: 80px 80px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-form-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lighter);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-group select option {
  background: var(--white);
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.form-full {
  grid-column: 1 / -1;
}

.form-submit {
  background: var(--red);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: background .2s, transform .2s;
  font-family: var(--font);
}

.form-submit:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* ── FACILITIES ── */
#facilities {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#facilities::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#facilities::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

#facilities .section-eyebrow {
  color: var(--gold);
}

#facilities .section-eyebrow::before {
  background: var(--gold);
}

#facilities .section-title {
  color: var(--white);
}

#facilities .section-title span {
  color: var(--gold);
}

.facilities-header {
  margin-bottom: 60px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.facilities-header .section-eyebrow {
  justify-content: center;
}

.facilities-header .section-desc {
  max-width: 800px;
  margin: 20px auto 0;
  padding: 0 20px;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
}

/* ── FACILITIES GALLERY ── */
.facilities-gallery {
  display: flex;
  align-items: stretch;
  gap: 20px;
  height: 450px;
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  overflow-x: auto;
  padding-bottom: 20px;
}

.gallery-item {
  position: relative;
  flex: 1;
  min-width: 280px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
  flex: 2;
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(200, 16, 46, 0.3);
  border-color: var(--red);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: all 0.4s ease;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

.gallery-desc {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-poppins);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-desc {
  transform: translateY(0);
}

/* ── CONTACT / MAP ── */
#contact {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.contact-info {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  margin-bottom: 14px;
}

.contact-info .section-desc {
  margin-bottom: 50px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: var(--red-dim);
  border: 1px solid rgba(200, 16, 46, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text span:first-child {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 6px;
}

.contact-text span:last-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.contact-hours {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
}

.hours-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-open {
  color: #16a34a;
  font-weight: 600;
}

.contact-map {
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

.map-overlay-label {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--text);
}

.map-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.5s infinite;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 60px 36px;
}

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

.footer-brand p {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--grey);
  line-height: 1.8;
  margin: 18px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--grey);
  transition: background .2s, color .2s;
}

.social-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  transition: transform 0.2s ease;
}

.social-btn:hover svg {
  transform: scale(1.15);
}

/* NABH Logo styling */
.footer-nabh-logo {
  display: block;
  max-width: 140px;
  height: auto;
  background: var(--white);
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  filter: brightness(0.95);
}

.footer-nabh-logo:hover {
  transform: translateY(-2px);
  filter: brightness(1);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.25);
}

/* Footer Map styling */
.footer-map-card {
  display: block;
  margin-top: 20px;
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  aspect-ratio: 16 / 9;
}

.footer-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--dark2);
}

.footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  transition: transform 0.5s ease;
  pointer-events: none;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200, 16, 46, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.map-overlay-btn {
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.footer-map-card:hover {
  transform: translateY(-5px);
  border-color: var(--red);
  box-shadow: 0 15px 30px rgba(200, 16, 46, 0.25);
}

.footer-map-card:hover .footer-map-wrapper iframe {
  transform: scale(1.08);
}

.footer-map-card:hover .footer-map-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}

.footer-map-card:hover .map-overlay-btn {
  transform: translateY(0);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--grey);
}

.footer-bottom a {
  color: var(--grey);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom a:hover {
  color: var(--blue);
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.footer-bottom a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.footer-bottom a:hover::before {
  transform: scaleX(1);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red-dim);
  border: 1px solid rgba(200, 16, 46, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

/* ── SCROLL REVEAL (PREMIUM ANIMATIONS) ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform, opacity, filter;
  filter: blur(8px);
  transform: translateZ(0);
}

.reveal {
  transform: translateY(60px) translateZ(0);
}

.reveal-left {
  transform: translateX(-60px) translateZ(0);
}

.reveal-right {
  transform: translateX(60px) translateZ(0);
}

.reveal-zoom {
  transform: scale(0.85) translateZ(0);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
  opacity: 1;
  transform: translate(0) scale(1) translateZ(0);
  filter: blur(0);
}

/* Contain paint for better performance */
.hero,
.stats-section,
#about,
#departments,
#testimonials,
#booking,
#facilities,
#contact {
  contain: layout style paint;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-content {
    max-width: 680px;
  }

  .hero-title {
    font-size: clamp(42px, 6.5vw, 78px);
  }
}

@media (max-width: 1100px) {
  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .about-img-stack {
    height: 380px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card:first-child {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .testimonial-deco-img {
    display: none;
  }

  #booking {
    grid-template-columns: 1fr;
  }

  #contact {
    grid-template-columns: 1fr;
  }

  .contact-map {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    padding: 20px 30px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 8px 20px;
    font-size: 10px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  nav {
    padding: 0 20px;
    height: 70px;
    gap: 0;
    justify-content: space-between;
  }

  .nav-logo {
    order: 1;
  }

  .nav-logo-name span:first-child {
    font-size: 18px;
  }

  .nav-logo-name span:last-child {
    font-size: 9px;
  }

  .nav-logo-img {
    width: 55px;
    height: 55px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 3px solid var(--red);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    order: unset;
    max-width: unset;
    margin: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.mobile-open {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

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

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

  .nav-links a {
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 8px;
    width: 100%;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .nav-links a:hover {
    background: rgba(21, 101, 192, 0.08);
    color: var(--blue);
    border-color: rgba(21, 101, 192, 0.15);
    transform: translateX(4px);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    order: 2;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(200, 16, 46, 0.08);
  }

  .hamburger span {
    background: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--red);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--red);
  }

  section {
    padding: 70px 24px;
  }

  .hero-content {
    padding: 0 24px 100px;
  }

  .hero-title {
    font-size: clamp(38px, 8vw, 64px);
    line-height: 1.0;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .hero-specialties {
    gap: 8px;
    margin-bottom: 32px;
  }

  .hero-spec-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  .hero-actions {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    padding: 16px 24px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }

  .hero-slide-nav {
    left: 24px;
    padding: 20px 0;
  }

  .hero-side-indicator {
    display: none;
  }

  .hero-corner {
    display: none;
  }

  .hero-stats {
    position: relative;
    flex-wrap: wrap;
    border-left: none;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    margin: 0 24px 24px;
    padding: 16px;
  }

  .hero-stat {
    padding: 16px 20px;
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .hero-stat-num {
    font-size: 24px;
  }

  .hero-stat-label {
    font-size: 10px;
  }

  .stats-section {
    padding: 60px 24px;
  }

  .stat-card {
    padding: 32px 24px;
  }

  .stat-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-title {
    font-size: 13px;
  }

  .stat-desc {
    font-size: 12px;
  }

  .dept-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dept-card {
    padding: 32px 24px;
  }

  .dept-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .dept-title {
    font-size: 18px;
  }

  .dept-items li {
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-content {
    padding: 60px 30px;
  }

  .booking-content h2 {
    font-size: clamp(28px, 6vw, 36px);
  }

  .booking-content p {
    font-size: 15px;
  }

  .booking-info-item {
    gap: 12px;
  }

  .booking-info-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .booking-form-wrap {
    padding: 60px 30px;
  }

  .booking-form-title {
    font-size: 24px;
  }

  .contact-info {
    padding: 70px 30px;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-icon-box {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .contact-text span:first-child {
    font-size: 11px;
  }

  .contact-text span:last-child {
    font-size: 14px;
  }

  footer {
    padding: 50px 24px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-col h4 {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    font-size: 11px;
  }

  .facilities-gallery {
    flex-direction: column;
    height: auto;
    gap: 16px;
    padding-bottom: 0;
  }

  .gallery-item {
    min-width: 100%;
    height: 250px;
  }

  .gallery-item:hover {
    flex: 1;
    transform: scale(1);
  }

  .gallery-title {
    font-size: 20px;
  }

  .gallery-desc {
    font-size: 13px;
  }

  /* ── CT SCAN SECTION ── */
  .ctscan-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ctscan-content {
    order: 2;
  }

  .ctscan-image {
    order: 1;
  }

  .ctscan-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ctscan-list {
    grid-template-columns: 1fr;
  }

  .ctscan-info-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ═══════════════════════════════════════
   CT SCAN SECTION STYLES
   ═══════════════════════════════════════ */

.ctscan-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg2) 100%);
}

.ctscan-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.ctscan-content {
  padding-right: 20px;
}

.ctscan-content .section-eyebrow {
  margin-bottom: 16px;
}

.ctscan-content h2 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ctscan-content h2 span {
  color: var(--red);
}

.ctscan-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

.ctscan-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.ctscan-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.ctscan-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

.ctscan-types {
  margin-bottom: 32px;
}

.ctscan-types h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.ctscan-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.ctscan-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.ctscan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.ctscan-list li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ctscan-list li a:hover {
  color: var(--red);
}

.ctscan-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

/* ── CT SCAN IMAGE ── */

.ctscan-image {
  position: sticky;
  top: 100px;
}

.ctscan-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.ctscan-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.ctscan-img-wrapper:hover img {
  transform: scale(1.02);
}

.ctscan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.ctscan-info-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-item {
  text-align: center;
  padding: 16px 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.info-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* ── CT SCAN RESPONSIVE ── */

@media (max-width: 900px) {
  .ctscan-section {
    padding: 70px 24px;
  }

  .ctscan-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ctscan-content {
    order: 2;
    padding-right: 0;
  }

  .ctscan-image {
    order: 1;
    position: static;
  }

  .ctscan-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ctscan-feature {
    padding: 16px;
  }

  .feature-icon {
    font-size: 24px;
  }

  .feature-text h4 {
    font-size: 15px;
  }

  .feature-text p {
    font-size: 13px;
  }

  .ctscan-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ctscan-list li {
    font-size: 13px;
  }

  .ctscan-info-box {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ctscan-badge {
    padding: 8px 16px;
    font-size: 12px;
  }

  .badge-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .info-item {
    padding: 12px;
  }

  .info-label {
    font-size: 11px;
  }

  .info-value {
    font-size: 14px;
  }
}

/* ── CT SCAN 24/7 BADGE ── */
.ctscan-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-dim);
  border: 1px solid rgba(200, 16, 46, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  animation: fadeUp .6s ease both;
}

.ctscan-highlight-badge .badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.6);
  animation: pulse 1.5s infinite;
}

/* ═══════════════════════════════════════
   MULTIPAGE STYLES
   ═══════════════════════════════════════ */

/* ── ACTIVE NAV LINK ── */
.nav-links a.active {
  color: var(--red);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── ABOUT BIO SECTION ── */
.about-bio {
  padding: 80px 60px;
  background: var(--bg);
}

.about-bio__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.about-bio__image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.about-bio__image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-bio__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--red) 0%, #e8183e 100%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.4), 0 0 0 5px var(--white);
  z-index: 5;
  animation: badgePulse 3s ease-in-out infinite;
}

.about-bio__badge-num {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.about-bio__badge-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-top: 3px;
}

.about-bio__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.about-bio__stat {
  background: var(--dark);
  padding: 20px 16px;
  text-align: center;
}

.about-bio__stat-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.about-bio__stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.about-bio__content {
  padding-top: 10px;
}

.about-bio__content h2 {
  margin-bottom: 8px;
}

.about-bio__subtitle {
  font-weight: 700;
  color: var(--red);
  font-size: 15px;
  margin-bottom: 24px;
  display: block;
}

.about-bio__content p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .about-bio {
    padding: 60px 24px;
  }

  .about-bio__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-bio__image-wrap img {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .about-bio__image-wrap img {
    height: 320px;
  }

  .about-bio__stat-num {
    font-size: 18px;
  }

  .about-bio__stat {
    padding: 14px 10px;
  }
}

/* ── PAGE HERO (Subpages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1520 50%, var(--dark2) 100%);
  padding: 100px 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero.page-hero--about {
  background: linear-gradient(135deg, rgba(26, 12, 18, 0.85) 0%, rgba(42, 21, 32, 0.85) 50%, rgba(20, 10, 15, 0.88) 100%), url('images/rkimagetwo.jpeg') no-repeat center center / cover;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 169, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.page-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero__subtitle {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.page-hero__breadcrumb a:hover {
  color: var(--white);
}

.page-hero__breadcrumb span {
  color: var(--gold);
}

/* About Hero (legacy support) */
.about-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2a1520 50%, var(--dark2) 100%);
  padding: 100px 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.about-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.about-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color .25s;
}

.about-hero__breadcrumb a:hover {
  color: var(--white);
}

.about-hero__breadcrumb span {
  color: var(--gold);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #e8183e 60%, #d4284a 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner p {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

/* ── RATING SUMMARY ── */
.rating-summary {
  background: var(--bg2);
  padding: 60px;
  text-align: center;
}

.rating-summary__card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.rating-summary__stars {
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.rating-summary__score {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.rating-summary__count {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  margin-bottom: 24px;
}

.rating-summary__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all .25s;
}

.rating-summary__link:hover {
  color: var(--red-light);
  transform: translateX(4px);
}

/* ── TESTIMONIALS PAGE ── */
.testimonials-page-section {
  padding: 80px 60px;
  background: var(--bg);
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-page-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  transition: transform .4s ease, box-shadow .4s ease;
}

.testimonial-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.testimonial-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200, 16, 46, 0.08);
}

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

/* ═══════════════════════════════════════
   REDESIGNED TESTIMONIALS PAGE
   ═══════════════════════════════════════ */

/* ── REVIEWS HERO ── */
.reviews-hero {
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  overflow: hidden;
}

.reviews-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 50%, var(--dark3) 100%);
  z-index: 0;
}

.reviews-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(200, 16, 46, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(212, 169, 74, 0.1) 0%, transparent 40%);
}

.reviews-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reviews-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.reviews-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.6);
  animation: pulse 1.5s infinite;
}

.reviews-hero__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.reviews-hero__title em {
  font-style: normal;
  color: var(--red);
  text-shadow: 0 0 60px rgba(200, 16, 46, 0.4);
}

.reviews-hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.reviews-hero__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

.reviews-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.reviews-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color .25s;
}

.reviews-hero__breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
}

.reviews-hero__breadcrumb .current {
  color: var(--red);
  font-weight: 600;
}

/* ── RATING SHOWCASE ── */
.rating-showcase {
  padding: 80px 60px;
  background: var(--bg);
}

.rating-showcase__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.rating-showcase__main {
  display: flex;
  gap: 60px;
  align-items: center;
}

.rating-big {
  text-align: center;
  flex-shrink: 0;
}

.rating-big__score {
  font-size: 80px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.rating-big__stars {
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.rating-big__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lighter);
}

.rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-bar__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  width: 30px;
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: var(--bg2);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 4px;
  transition: width 1s ease;
}

.rating-bar__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-lighter);
  width: 45px;
  text-align: right;
}

.rating-showcase__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.3);
}

.btn-write-review:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.45);
}

.btn-view-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  border: 1px solid var(--border);
}

.btn-view-google:hover {
  background: var(--bg3);
  transform: translateY(-2px);
}

/* ── REVIEWS FILTER ── */
.reviews-filter {
  padding: 40px 60px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-filter__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.reviews-filter__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.reviews-filter__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all .25s ease;
  font-family: var(--font);
}

.filter-tab:hover {
  border-color: var(--red);
  color: var(--red);
}

.filter-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ── TESTIMONIALS GRID SECTION ── */
.testimonials-grid-section {
  padding: 80px 60px;
  background: var(--bg);
}

.testimonials-masonry {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Featured Review */
.testimonial-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

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

.testimonial-featured__content {
  padding: 50px 60px;
  position: relative;
}

.testimonial-featured__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-featured__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}

.testimonial-featured__badge {
  background: var(--red);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-featured__text {
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 32px;
  max-width: 900px;
}

.testimonial-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.testimonial-featured__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar-lg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.3);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name-lg {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.author-treatment {
  color: var(--gold);
  font-weight: 600;
}

.author-dot {
  color: rgba(255, 255, 255, 0.3);
}

.testimonial-featured__status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
}

/* New Testimonial Cards */
.testimonial-card-new {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.testimonial-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 16, 46, 0.15);
}

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

.testimonial-card-new__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.testimonial-card-new__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card-new__date {
  font-size: 12px;
  color: var(--text-lighter);
  font-weight: 500;
}

.testimonial-card-new__badge {
  background: linear-gradient(135deg, var(--red), #e8183e);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card-new__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-card-new__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-card-new__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #e8183e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}

.author-name-sm {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.author-treatment-sm {
  font-size: 12px;
  color: var(--text-lighter);
  font-weight: 500;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  letter-spacing: 0.04em;
}

/* Highlight Card */
.testimonial-card-new--highlight {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.03), rgba(212, 169, 74, 0.03));
  border-color: rgba(200, 16, 46, 0.15);
}

.testimonial-card-new--highlight .highlight-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--red), var(--gold));
}

/* ── TRUST INDICATORS ── */
.trust-indicators {
  padding: 60px;
  background: var(--bg2);
}

.trust-indicators__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .3s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.trust-item__icon {
  width: 56px;
  height: 56px;
  background: var(--bg2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.trust-item__content {
  flex: 1;
}

.trust-item__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.trust-item__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── CTA BANNER V2 ── */
.cta-banner-v2 {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.cta-banner-v2__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
}

.cta-banner-v2__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(200, 16, 46, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(212, 169, 74, 0.15) 0%, transparent 50%);
}

.cta-banner-v2__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-v2__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-banner-v2__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-banner-v2__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
}

.btn-cta-primary:hover {
  background: var(--red-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(200, 16, 46, 0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   RESPONSIVE - TESTIMONIALS PAGE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .testimonials-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rating-showcase__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .rating-showcase__main {
    flex-direction: column;
    text-align: center;
  }
  
  .rating-bars {
    width: 100%;
    max-width: 400px;
  }
  
  .rating-showcase__cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .trust-indicators__container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .reviews-hero {
    padding: 100px 24px 60px;
    min-height: 60vh;
  }
  
  .reviews-hero__stats {
    gap: 24px;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .hero-stat-num {
    font-size: 36px;
  }
  
  .rating-showcase {
    padding: 50px 24px;
  }
  
  .rating-big__score {
    font-size: 56px;
  }
  
  .reviews-filter {
    padding: 30px 24px;
  }
  
  .reviews-filter__container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .testimonials-grid-section {
    padding: 50px 24px;
  }
  
  .testimonials-masonry {
    grid-template-columns: 1fr;
  }
  
  .testimonial-featured__content {
    padding: 32px 24px;
  }
  
  .testimonial-featured__text {
    font-size: 17px;
  }
  
  .testimonial-featured__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .testimonial-card-new {
    padding: 24px;
  }
  
  .trust-indicators {
    padding: 40px 24px;
  }
  
  .trust-item {
    padding: 20px;
  }
  
  .cta-banner-v2 {
    padding: 60px 24px;
  }
  
  .cta-banner-v2__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── ACCOMMODATIONS GRID ── */
.accommodations-section {
  padding: 80px 60px;
  background: var(--bg2);
}

.accommodations-header {
  text-align: center;
  margin-bottom: 48px;
}

.accommodations-header .section-eyebrow {
  justify-content: center;
}

.accommodations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.accommodation-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.accommodation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.accommodation-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}

.accommodation-card:hover img {
  transform: scale(1.05);
}

/* ── SECTION STYLES (about-page specific) ── */
.section--gray {
  background: var(--bg2);
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section__badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section__badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section__title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
}

.section__title span {
  color: var(--red);
}

.section__desc {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 10px auto 0;
}

.facility__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.facility__image-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
}

.facility__image-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(200, 16, 46, 0.15);
}

.facility__image-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.facility__image-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 768px) {
  .facility__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .facility__image-item img {
    height: 260px;
  }
}

/* ── TIMELINE ── */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--gold));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--red-dim);
}

.timeline-year {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.7;
}

/* ── AWARDS GRID ── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.award-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform .3s ease, box-shadow .3s ease;
}

.award-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.award-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.award-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.award-text {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.6;
}

/* ── SERVICES PAGE PROFESSIONAL STYLES ── */

/* Services Hero */
.services-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.services-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.services-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

.services-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.services-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.services-hero__badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.6);
  animation: pulse 2s infinite;
}

.services-hero__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text);
}

.services-hero__title span {
  color: var(--red);
  position: relative;
}

.services-hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.services-hero__stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.services-hero .hero-stat-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 140px;
}

.services-hero .hero-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.15);
  background: var(--white);
}

.services-hero .hero-stat-item .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.services-hero .hero-stat-item .stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}

.services-hero .page-hero__breadcrumb {
  position: static;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.services-hero .page-hero__breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services-hero .page-hero__breadcrumb a:hover {
  color: var(--red);
}

.services-hero .page-hero__breadcrumb span {
  color: var(--text-lighter);
}

/* Hero Visual Cards */
.services-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 280px;
  height: 320px;
}

.hero-card {
  position: absolute;
  width: 240px;
  height: 140px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero-card--1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-3deg);
}

.hero-card--2 {
  top: 90px;
  left: 20px;
  z-index: 2;
  transform: rotate(2deg);
}

.hero-card--3 {
  top: 180px;
  left: 40px;
  z-index: 1;
  transform: rotate(-1deg);
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.05) rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(200, 16, 46, 0.2);
  z-index: 10;
}

.hero-card .card-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.hero-card .card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

/* Featured Services */
.featured-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.featured-service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.featured-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(200, 16, 46, 0.12);
  border-color: rgba(200, 16, 46, 0.1);
}

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

.featured-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red-dim) 0%, rgba(200, 16, 46, 0.12) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.featured-service-card:hover .featured-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
}

.featured-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.featured-content p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
  transition: color 0.2s ease;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 18px;
  line-height: 1;
}

.featured-service-card:hover .service-list li {
  color: var(--text);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.service-link:hover {
  color: var(--red-light);
}

.service-link:hover::after {
  width: 100%;
}

.service-link.emergency {
  color: #16a34a;
}

.service-link.emergency::after {
  background: #16a34a;
}

.service-link.emergency:hover {
  color: #15803d;
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-badge.emergency {
  background: #16a34a;
}

/* Enhanced CTA Banner */
.cta-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-banner__text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-banner__text p {
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.cta-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.highlight-icon {
  width: 20px;
  height: 20px;
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(2deg);
  }
  66% {
    transform: translateY(10px) rotate(-1deg);
  }
}

/* ── CT SCAN PAGE PROFESSIONAL STYLES ── */

/* CT Scan Hero */
.ct-scan-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

.ct-scan-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 18s ease-in-out infinite;
}

.ct-scan-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

.ct-scan-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ct-scan-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(21, 101, 192, 0.1);
  border: 1px solid rgba(21, 101, 192, 0.2);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.ct-scan-hero__badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(21, 101, 192, 0.6);
}

.ct-scan-hero__badge .badge-dot.pulse {
  animation: pulse 2s infinite;
}

.ct-scan-hero__title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--text);
}

.ct-scan-hero__title span {
  color: var(--blue);
  position: relative;
}

.ct-scan-hero__subtitle {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.ct-scan-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

/* CT Hero Visual Wrapper */
.ct-scan-hero__visual-wrapper {
  position: relative;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Enhanced CT Hero Cards */
.ct-hero-card {
  position: absolute;
  width: 240px;
  height: 130px;
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 50px rgba(21, 101, 192, 0.15);
  border: 1px solid rgba(21, 101, 192, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.ct-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ct-hero-card:hover::before {
  opacity: 1;
}

.ct-hero-card--1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-3deg) translateY(0);
}

.ct-hero-card--2 {
  top: 110px;
  left: 40px;
  z-index: 2;
  transform: rotate(2deg) translateY(0);
}

.ct-hero-card--3 {
  top: 220px;
  left: 80px;
  z-index: 1;
  transform: rotate(-1deg) translateY(0);
}

.ct-hero-card:hover {
  transform: translateY(-15px) scale(1.08) rotate(0deg) !important;
  box-shadow: 0 25px 70px rgba(21, 101, 192, 0.25);
  z-index: 10;
}

.ct-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.ct-hero-card:hover .ct-card-icon {
  transform: scale(1.2) rotate(5deg);
}

.ct-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.ct-card-desc {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-lighter);
  font-family: var(--font-poppins);
  line-height: 1.4;
}

/* CTA Group */
.ct-scan-hero__cta-group {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.1);
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.3);
}

.emergency-cta {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.emergency-cta:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.4);
}

/* Enhanced Background Effects */
.ct-scan-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.ct-scan-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

/* Enhanced Badge Animation */
.ct-scan-hero__badge {
  position: relative;
  overflow: hidden;
}

.ct-scan-hero__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Enhanced Statistics */
.ct-scan-hero__stats {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  display: inline-flex;
  gap: 40px;
  margin-top: 40px;
}

.ct-scan-hero .hero-stat-item {
  text-align: center;
}

.ct-scan-hero .hero-stat-item .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(21, 101, 192, 0.2);
}

.ct-scan-hero .hero-stat-item .stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lighter);
}

/* CT Hero Visual Cards */
.ct-scan-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ct-hero-card {
  position: absolute;
  width: 220px;
  height: 120px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.ct-hero-card--1 {
  top: 0;
  left: 0;
  z-index: 3;
  transform: rotate(-2deg);
}

.ct-hero-card--2 {
  top: 80px;
  left: 30px;
  z-index: 2;
  transform: rotate(1deg);
}

.ct-hero-card--3 {
  top: 160px;
  left: 60px;
  z-index: 1;
  transform: rotate(-1deg);
}

.ct-hero-card:hover {
  transform: translateY(-8px) scale(1.05) rotate(0deg) !important;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.2);
  z-index: 10;
}

.ct-card-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.ct-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ct-card-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-lighter);
  font-family: var(--font-poppins);
}

/* Availability Highlight Section */
.availability-highlight {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.05) 0%, rgba(21, 101, 192, 0.1) 100%);
  border: 1px solid rgba(21, 101, 192, 0.2);
  border-radius: 20px;
  padding: 32px;
  margin: 32px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.availability-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
}

.availability-icon {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

.availability-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.availability-content p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.availability-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avail-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
}

.avail-icon {
  width: 24px;
  height: 24px;
  background: rgba(21, 101, 192, 0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* CT Scan CTA Section */
.ctscan-cta-section {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.emergency-cta {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.emergency-cta:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
}

/* ── CT SCAN PAGE - COMPLETELY REDESIGNED PROFESSIONAL HERO ── */

/* New Hero Section Design */
.ct-scan-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 60px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ct-scan-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ct-scan-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite;
  pointer-events: none;
}

.ct-scan-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ct-scan-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.ct-scan-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(220, 38, 38, 0.4) 100%);
  border: 2px solid rgba(239, 68, 68, 0.6);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: alert-pulse 2.5s infinite;
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
  text-shadow: 0 0 20px rgba(239, 68, 68, 0.8);
}

.ct-scan-hero__badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
}

.ct-scan-hero__badge .badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.8);
  animation: alert-dot-pulse 1.5s infinite;
}

@keyframes alert-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.6);
  }
}

@keyframes alert-dot-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.8);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.5);
    box-shadow: 0 0 40px rgba(239, 68, 68, 1);
  }
}

.ct-scan-hero__title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ct-scan-hero__title span {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.ct-scan-hero__subtitle {
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* New Statistics Design */
.ct-scan-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ct-scan-hero .hero-stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ct-scan-hero .hero-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ct-scan-hero .hero-stat-item:hover::before {
  transform: scaleX(1);
}

.ct-scan-hero .hero-stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

.ct-scan-hero .hero-stat-item .stat-number {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.ct-scan-hero .hero-stat-item .stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* New CTA Design */
.ct-scan-hero__cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn {
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.emergency-cta {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.emergency-cta:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(239, 68, 68, 0.5);
}

/* New Feature Cards */
.ct-scan-hero__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 64px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ct-feature-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ct-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.ct-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

.ct-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(96, 165, 250, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.ct-feature-card:hover .ct-feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.2) 100%);
}

.ct-feature-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ct-feature-desc {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Breadcrumb */
.page-hero__breadcrumb {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

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

.page-hero__breadcrumb a:hover {
  color: #60a5fa;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(2deg);
  }
  66% {
    transform: translateY(15px) rotate(-1deg);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Responsive Design for New CT Scan Hero */
@media (max-width: 1024px) {
  .ct-scan-hero {
    padding: 100px 40px 80px;
    min-height: auto;
  }
  
  .ct-scan-hero__content {
    max-width: 700px;
  }
  
  .ct-scan-hero__title {
    font-size: clamp(40px, 7vw, 56px);
  }
  
  .ct-scan-hero__subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }
  
  .ct-scan-hero__stats {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .hero-stat-item {
    padding: 24px 20px;
  }
  
  .hero-stat-item .stat-number {
    font-size: 36px;
  }
  
  .ct-scan-hero__cta-group {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .ct-scan-hero__features {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .ct-feature-card {
    padding: 24px 20px;
  }
  
  .ct-feature-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .ct-feature-title {
    font-size: 18px;
  }
  
  .ct-feature-desc {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .ct-scan-hero {
    padding: 80px 24px 60px;
  }
  
  .ct-scan-hero__badge {
    font-size: 11px;
    padding: 10px 20px;
    margin-bottom: 24px;
  }
  
  .ct-scan-hero__title {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 20px;
  }
  
  .ct-scan-hero__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .ct-scan-hero__stats {
    margin: 32px 0;
    gap: 16px;
    max-width: 350px;
  }
  
  .hero-stat-item {
    padding: 20px 16px;
  }
  
  .hero-stat-item .stat-number {
    font-size: 32px;
    margin-bottom: 8px;
  }
  
  .hero-stat-item .stat-label {
    font-size: 10px;
  }
  
  .ct-scan-hero__cta-group {
    margin-top: 32px;
    gap: 12px;
  }
  
  .btn {
    padding: 16px 28px;
    font-size: 14px;
    max-width: 280px;
  }
  
  .ct-scan-hero__features {
    margin: 48px 0;
    gap: 16px;
    max-width: 350px;
  }
  
  .ct-feature-card {
    padding: 20px 16px;
  }
  
  .ct-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .ct-feature-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .ct-feature-desc {
    font-size: 12px;
  }
  
  .page-hero__breadcrumb {
    position: static;
    margin-top: 40px;
    justify-content: center;
    left: auto;
  }
}

@media (max-width: 480px) {
  .ct-scan-hero {
    padding: 60px 20px 50px;
  }
  
  .ct-scan-hero__content {
    max-width: 100%;
  }
  
  .ct-scan-hero__badge {
    font-size: 10px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
  
  .ct-scan-hero__title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
  }
  
  .ct-scan-hero__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }
  
  .ct-scan-hero__stats {
    margin: 24px 0;
    gap: 12px;
    max-width: 300px;
  }
  
  .hero-stat-item {
    padding: 16px 12px;
  }
  
  .hero-stat-item .stat-number {
    font-size: 28px;
    margin-bottom: 6px;
  }
  
  .hero-stat-item .stat-label {
    font-size: 9px;
  }
  
  .ct-scan-hero__cta-group {
    margin-top: 28px;
    gap: 10px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 13px;
    max-width: 240px;
  }
  
  .ct-scan-hero__features {
    margin: 36px 0;
    gap: 12px;
    max-width: 300px;
  }
  
  .ct-feature-card {
    padding: 16px 12px;
  }
  
  .ct-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .ct-feature-title {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .ct-feature-desc {
    font-size: 11px;
  }
  
  .page-hero__breadcrumb {
    font-size: 12px;
    margin-top: 32px;
  }
}

/* Landscape Mobile Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .ct-scan-hero {
    padding: 60px 24px 40px;
  }
  
  .ct-scan-hero__features {
    margin: 32px 0;
  }
  
  .ct-scan-hero__stats {
    margin: 24px 0;
  }
  
  .ct-scan-hero__cta-group {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .ct-scan-hero {
    padding: 60px 24px 50px;
  }
  
  .ct-scan-hero__badge {
    font-size: 11px;
    padding: 10px 22px;
    margin-bottom: 28px;
  }
  
  .ct-scan-hero__title {
    font-size: clamp(30px, 7vw, 42px);
    margin-bottom: 18px;
    line-height: 1.1;
  }
  
  .ct-scan-hero__subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 100%;
    line-height: 1.6;
  }
  
  /* Professional Mobile Statistics */
  .ct-scan-hero__stats {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin: 35px auto 0;
    max-width: 500px;
    flex-wrap: wrap;
  }
  
  .hero-stat-item {
    min-width: 90px;
    flex: 1;
    text-align: center;
  }
  
  .hero-stat-item .stat-number {
    font-size: 26px;
    margin-bottom: 6px;
  }
  
  .hero-stat-item .stat-label {
    font-size: 9px;
    line-height: 1.3;
  }
  
  /* Professional Mobile CTA */
  .ct-scan-hero__cta-group {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-top: 35px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 16px 28px;
    font-size: 14px;
  }
  
  /* Professional Mobile Card Layout */
  .ct-scan-hero__visual-wrapper {
    height: 300px;
    margin: 0 auto 35px;
    transform: scale(0.8);
  }
  
  .ct-hero-card {
    width: 200px;
    height: 120px;
    padding: 18px;
    border-radius: 18px;
  }
  
  .ct-hero-card--1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
  }
  
  .ct-hero-card--2 {
    top: 90px;
    left: 50%;
    transform: translateX(-50%) rotate(1deg);
  }
  
  .ct-hero-card--3 {
    top: 180px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
  }
  
  .ct-card-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .ct-card-title {
    font-size: 17px;
    margin-bottom: 6px;
  }
  
  .ct-card-desc {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .availability-highlight {
    padding: 24px 20px;
    margin: 30px 0;
    border-radius: 20px;
  }
  
  .availability-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
    margin-bottom: 16px;
  }
  
  .availability-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .availability-content p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .availability-features {
    gap: 16px;
  }
  
  .avail-feature {
    font-size: 14px;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .ct-scan-hero {
    padding: 50px 20px 40px;
  }
  
  .ct-scan-hero__badge {
    font-size: 10px;
    padding: 8px 18px;
    margin-bottom: 24px;
  }
  
  .ct-scan-hero__title {
    font-size: clamp(26px, 6vw, 36px);
    margin-bottom: 16px;
  }
  
  .ct-scan-hero__subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }
  
  /* Ultra-Mobile Statistics */
  .ct-scan-hero__stats {
    padding: 20px 16px;
    gap: 16px;
    margin: 30px auto 0;
    max-width: 400px;
  }
  
  .hero-stat-item {
    min-width: 70px;
  }
  
  .hero-stat-item .stat-number {
    font-size: 22px;
  }
  
  .hero-stat-item .stat-label {
    font-size: 8px;
  }
  
  /* Ultra-Mobile CTA */
  .ct-scan-hero__cta-group {
    gap: 12px;
    margin-top: 30px;
  }
  
  .btn {
    max-width: 260px;
    padding: 14px 24px;
    font-size: 13px;
  }
  
  /* Ultra-Mobile Card Layout */
  .ct-scan-hero__visual-wrapper {
    height: 260px;
    transform: scale(0.7);
  }
  
  .ct-hero-card {
    width: 180px;
    height: 110px;
    padding: 16px;
    border-radius: 16px;
  }
  
  .ct-hero-card--1 {
    top: 0;
  }
  
  .ct-hero-card--2 {
    top: 75px;
  }
  
  .ct-hero-card--3 {
    top: 150px;
  }
  
  .ct-card-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .ct-card-title {
    font-size: 15px;
    margin-bottom: 4px;
  }
  
  .ct-card-desc {
    font-size: 11px;
  }
  
  .availability-highlight {
    padding: 20px 16px;
    margin: 25px 0;
    border-radius: 16px;
  }
  
  .availability-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .availability-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .availability-content p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .avail-feature {
    font-size: 13px;
    gap: 10px;
  }
  
  .avail-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* Landscape Mobile Adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .ct-scan-hero {
    padding: 40px 20px 30px;
  }
  
  .ct-scan-hero__visual-wrapper {
    height: 240px;
    transform: scale(0.75);
  }
  
  .ct-hero-card {
    width: 180px;
    height: 100px;
    padding: 14px;
  }
  
  .ct-hero-card--1 {
    top: 0;
  }
  
  .ct-hero-card--2 {
    top: 70px;
  }
  
  .ct-hero-card--3 {
    top: 140px;
  }
  
  .ct-scan-hero__stats {
    margin: 25px auto 0;
    padding: 16px 14px;
  }
  
  .hero-stat-item .stat-number {
    font-size: 22px;
  }
  
  .hero-stat-item .stat-label {
    font-size: 8px;
  }
}

/* Small Desktop Adjustments */
@media (min-width: 1025px) and (max-width: 1200px) {
  .ct-scan-hero {
    padding: 100px 40px 80px;
  }
  
  .ct-scan-hero__visual-wrapper {
    transform: scale(0.95);
  }
  
  .ct-hero-card {
    width: 220px;
    height: 120px;
    padding: 20px;
  }
}

/* Service Details Accordion */
.service-details {
  background: var(--bg);
  padding: 100px 60px;
}

.service-details-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.service-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(200, 16, 46, 0.1);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-header:hover {
  background: var(--bg2);
}

.accordion-icon {
  font-size: 32px;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--red-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-header:hover .accordion-icon {
  background: var(--red);
  transform: scale(1.1);
}

.accordion-title-group {
  flex: 1;
  text-align: left;
}

.accordion-title-group h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.accordion-title-group span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-lighter);
  font-family: var(--font-poppins);
}

.accordion-arrow {
  font-size: 18px;
  color: var(--text-lighter);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--red);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-grid {
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.accordion-text p {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-poppins);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.accordion-text .ayushman-widget-content {
  margin-top: 16px;
  background: rgba(16, 46, 28, 0.04);
  border-left: 4px solid #16a34a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.accordion-text .ayushman-widget-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  font-family: var(--font-poppins);
  margin-bottom: 0;
}

.accordion-features {
  list-style: none;
}

.accordion-features li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 0;
  position: relative;
  padding-left: 24px;
  transition: color 0.2s ease;
}

.accordion-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

.accordion-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg2);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.stat-item .stat-number {
  display: block;
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lighter);
}

/* Additional Services */
.additional-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .services-hero .page-hero__breadcrumb {
    justify-content: center;
  }
  
  .services-hero__visual {
    order: -1;
  }
  
  .featured-services {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .additional-services {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cta-banner__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .cta-banner__actions {
    margin: 0 auto;
  }
  
  .accordion-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .accordion-stats {
    flex-direction: row;
    justify-content: center;
  }
  
  .stat-item {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 80px 24px 60px;
  }
  
  .services-hero__stats {
    justify-content: center;
    gap: 24px;
  }
  
  .hero-card-stack {
    width: 240px;
    height: 280px;
  }
  
  .hero-card {
    width: 200px;
    height: 120px;
    padding: 20px;
  }
  
  .featured-service-card {
    padding: 32px 24px;
  }
  
  .cta-highlights {
    align-items: center;
  }
  
  .service-details {
    padding: 80px 24px;
  }
  
  .accordion-header {
    padding: 24px 20px;
  }
  
  .accordion-grid {
    padding: 0 20px 24px;
  }
  
  .accordion-stats {
    flex-direction: column;
  }
}

/* ── MULTIPAGE RESPONSIVE ── */
@media (max-width: 768px) {
  .page-hero {
    padding: 80px 24px 48px;
  }

  .page-hero__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .page-hero__subtitle {
    font-size: 15px;
  }

  .about-hero {
    padding: 80px 24px 48px;
  }

  .cta-banner {
    padding: 60px 24px;
  }

  .cta-banner h2 {
    font-size: clamp(22px, 5vw, 32px);
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-outline-dark {
    justify-content: center;
  }

  .rating-summary {
    padding: 40px 24px;
  }

  .rating-summary__card {
    padding: 36px 24px;
  }

  .rating-summary__stars {
    font-size: 28px;
  }

  .rating-summary__score {
    font-size: 32px;
  }

  .testimonials-page-section {
    padding: 60px 24px;
  }

  .testimonials-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-page-card {
    padding: 32px 24px;
  }

  .accommodations-section {
    padding: 60px 24px;
  }

  .accommodations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .accommodation-card img {
    height: 220px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline {
    padding-left: 30px;
  }
}

/* ==========================================================================
   MULTI-SPECIALTY & AYUSHMAN SCHEMES PREMIUM STYLES
   ========================================================================== */

.specialty-section {
  background: var(--bg2);
  padding: 100px 0;
}

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

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

.specialty-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.15);
}

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

.specialty-card-icon {
  font-size: 38px;
  margin-bottom: 22px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-card-icon {
  transform: scale(1.15) rotate(-5deg);
}

.specialty-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.specialty-card-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.specialty-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
  margin-top: auto;
}

.specialty-card-link:hover {
  gap: 12px;
}

/* Ayushman Banner Widget */
.ayushman-widget {
  background: linear-gradient(135deg, #102e1c 0%, #06170d 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.ayushman-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ayushman-widget-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 14px;
  border-radius: 50px;
  color: #ffd700;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

.ayushman-widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 10px;
}

.ayushman-widget-desc {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 700px;
}

.ayushman-widget-btn {
  background: #ffd700;
  color: #06170d;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  border: none;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.ayushman-widget-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
  .specialty-container {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .specialty-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .specialty-section {
    padding: 70px 0;
  }

  .specialty-container {
    padding: 0 24px;
  }

  .ayushman-widget {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .ayushman-widget-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .specialty-card-grid {
    grid-template-columns: 1fr;
  }
}
/* Premium Outline Red Button for Light Backgrounds */
.btn-outline-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--red);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.2);
}

/* ── CUSTOM SUBPAGE HERO BANNER OVERRIDES ── */
/* All Subpage Banners Background Image Setup */
.page-hero:not(.services-hero):not(.ct-scan-hero) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 100%), url('images/rkimagetwo.jpeg') no-repeat center center / cover !important;
}

/* Ensure all subpage hero text is white and has strong readability text shadows */
.page-hero:not(.services-hero):not(.ct-scan-hero) .page-hero__title {
  color: var(--white) !important;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.9) !important;
}

.page-hero:not(.services-hero):not(.ct-scan-hero) .page-hero__title span {
  color: #ffd700 !important; /* Gold highlights */
}

.page-hero:not(.services-hero):not(.ct-scan-hero) .page-hero__subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85) !important;
}

.page-hero:not(.services-hero):not(.ct-scan-hero) .page-hero__breadcrumb,
.page-hero:not(.services-hero):not(.ct-scan-hero) .page-hero__breadcrumb a,
.page-hero:not(.services-hero):not(.ct-scan-hero) .page-hero__breadcrumb span {
  color: var(--white) !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9) !important;
}

.page-hero:not(.services-hero):not(.ct-scan-hero) .page-hero__breadcrumb a:hover {
  color: #ffd700 !important;
}
