/* ═══════════════════════════════════════
   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 {
  scroll-behavior: smooth;
  font-display: swap;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -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);
}

/* ── 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, background .25s;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 4px;
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg2);
}

.nav-links a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* 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;
}

.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: 75%;
  height: 88%;
  object-fit: cover;
  border-radius: 8px;
  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);
}

.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;
}

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

.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;
}