@font-face {
  font-family: 'Peignot Demi';
  src: url('./PGB__.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --red: #E8001D;
  --red-dark: #B0001A;
  --red-light: #FF3355;
  --blue: #0047FF;
  --off-white: #F7F8FC;
  --gold: #FFB700;
  --dark: #0A0A14;
  --gray: #6B7280;
  --light-gray: #E5E7EB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* fade page in to create polished first impression; visible by default, script will trigger */
body { opacity: 1; transition: opacity 0.4s ease-in; }
body.fade-in { opacity: 0; }

/* nav shrink on scroll for more visual confidence */
.rh-nav.shrink { height: 60px; padding: 0 56px; }
.rh-nav.shrink .rh-logo-text .logo-main { font-size: 17px; }
.rh-nav.shrink .rh-logo-icon {
  width: 46px;
  height: 46px;
}

/* focus styles for form fields to improve accessibility and polish */
.rh-appt-form input:focus,
.rh-appt-form select:focus {
  outline: 2px solid var(--blue);
  box-shadow: 0 0 0 3px rgba(0,71,255,0.2);
}

/* hero entry animation */
.rh-hero-left,
.rh-hero-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.rh-hero.loaded .rh-hero-left,
.rh-hero.loaded .rh-hero-right {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
}

.brand-font {
  font-family: 'Peignot Demi', 'Times New Roman', serif;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  font-style: inherit;
}

/* CURSOR GLOW */
.cursor-glow {
  position: fixed; width: 300px; height: 300px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(232,0,29,0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: left 0.4s ease, top 0.4s ease;
}

/* NAV */
.rh-nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 76px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,0,29,0.15);
  box-shadow: 0 1px 40px rgba(0,0,0,0.06);
}
.rh-logo { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.rh-logo-icon {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(232,0,29,0.2);
  box-shadow: 0 6px 16px rgba(232,0,29,0.18);
  flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.rh-logo:hover .rh-logo-icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 10px 22px rgba(232,0,29,0.24);
}
.rh-cross { width: 38px; height: 38px; position: relative; flex-shrink: 0; }
.rh-cross::before, .rh-cross::after {
  content: ''; position: absolute; background: var(--red); border-radius: 3px; transition: transform 0.3s;
}
.rh-cross::before { width: 100%; height: 30%; top: 35%; left: 0; }
.rh-cross::after { width: 30%; height: 100%; top: 0; left: 35%; }
.rh-logo:hover .rh-cross::before { transform: scaleX(1.1); }
.rh-logo:hover .rh-cross::after { transform: scaleY(1.1); }
.rh-logo-text { display: flex; flex-direction: column; line-height: 1; }
.rh-logo-text .logo-main { font-family: 'Peignot Demi', 'Times New Roman', serif !important; font-size: 19px; font-weight: 400; color: var(--dark); letter-spacing: 0.3px; }
.rh-logo-text .logo-sub { font-family: 'Peignot Demi', 'Times New Roman', serif !important; font-size: 9px; font-weight: 400; color: var(--red); letter-spacing: 4px; text-transform: uppercase; margin-top: 2px; }
.rh-nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.rh-nav-links a {
  text-decoration: none; color: #374151; font-size: 13px;
  font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.2s; cursor: pointer; position: relative;
}
.rh-nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px;
  background: var(--red); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.rh-nav-links a:hover { color: var(--red); }
.rh-nav-links a:hover::after { transform: scaleX(1); }
.rh-nav-links a.active { color: var(--blue); }
.rh-nav-links a.active::after { transform: scaleX(1); background: var(--blue); }

/* smooth transitions for transform/opacity globally */
* { transition: all 0.2s ease; }

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0s !important;
  }
}

/* admin availability row styling */
.avail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.avail-row input[type="date"],
.avail-row input[type="text"] {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.avail-row .removeAvail {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.avail-row .addSlotBtn,
.avail-row .removeSlotBtn {
  background: #999;
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.slots-container {
  display: flex;
  gap: 4px;
  align-items: center;
}
.slot-input {
  width: 100px;
}
.rh-nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 11px 26px; border-radius: 4px; letter-spacing: 0.5px !important;
  box-shadow: 0 4px 20px rgba(232,0,29,0.3);
}
.rh-nav-cta::after { display: none !important; }
.rh-nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,0,29,0.4) !important; }

/* TICKER */
.rh-ticker-wrap {
  background: var(--dark); overflow: hidden; padding: 14px 0;
  border-top: 2px solid var(--red); border-bottom: 2px solid var(--red);
}
.rh-ticker { display: flex; white-space: nowrap; animation: rhTicker 30s linear infinite; }
@keyframes rhTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.rh-ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0 40px;
}
.rh-ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* HERO */
.rh-hero {
  min-height: calc(100vh - 76px);
  background: linear-gradient(135deg, #fff0f1 0%, #ffffff 35%, #f0f5ff 70%, #e8f0ff 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; position: relative;
}


.rh-hero::before {
  content: ''; position: absolute; top: -100px; left: -100px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,0,29,0.07) 0%, transparent 65%); pointer-events: none;
}
.rh-hero::after {
  content: ''; position: absolute; bottom: -150px; right: -100px; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,71,255,0.07) 0%, transparent 65%); pointer-events: none;
}
.rh-particle {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: rhDrift linear infinite;
}
@keyframes rhDrift {
  0% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { opacity: 1; }
  100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}
.rh-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 80px; position: relative; z-index: 1;
}
.rh-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,0,29,0.06); border: 1px solid rgba(232,0,29,0.2);
  color: var(--red); padding: 8px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 32px; width: fit-content;
}
.rh-badge-dot {
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
  animation: rhPulse 2s infinite;
}
@keyframes rhPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(232,0,29,0.4); }
  50% { opacity: 0.8; transform: scale(1.3); box-shadow: 0 0 0 6px rgba(232,0,29,0); }
}
.rh-h1 {
  font-family: 'Peignot Demi', 'Times New Roman', serif !important;
  font-size: clamp(38px, 3.5vw, 62px); font-weight: 900;
  color: var(--dark); line-height: 1.05; margin-bottom: 28px; letter-spacing: -0.5px;
}
.rh-h1 em {
  font-family: 'Peignot Demi', 'Times New Roman', serif !important;
  font-style: normal;
  color: var(--red);
}
.rh-hero-p { font-size: 17px; line-height: 1.8; color: #4B5563; max-width: 460px; margin-bottom: 44px; font-weight: 300; }
.rh-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.rh-btn-primary {
  background: var(--red); color: #fff; padding: 16px 36px;
  border-radius: 4px; font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif; letter-spacing: 0.5px;
  box-shadow: 0 4px 24px rgba(232,0,29,0.3); position: relative; overflow: hidden;
}
.rh-btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent); opacity: 0; transition: opacity 0.3s;
}
.rh-btn-primary:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(232,0,29,0.45); }
.rh-btn-primary:hover::before { opacity: 1; }
.rh-btn-secondary {
  background: transparent; color: var(--dark); padding: 16px 36px;
  border-radius: 4px; font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(0,0,0,0.18); cursor: pointer; letter-spacing: 0.5px;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.rh-btn-secondary:hover { border-color: var(--dark); transform: translateY(-3px); background: rgba(0,0,0,0.02); }
.rh-stats { display: flex; gap: 48px; margin-top: 56px; padding-top: 40px; border-top: 1px solid rgba(0,0,0,0.08); }
.rh-stat h3 { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--dark); line-height: 1; }
.rh-stat h3 span { color: var(--red); }
.rh-stat p { font-size: 12px; color: #9CA3AF; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* HERO RIGHT / VISUAL */
.rh-hero-right { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.rh-hero-right-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(232,0,29,0.04) 0%, rgba(255,255,255,0) 40%, rgba(0,71,255,0.05) 100%);
}
.rh-hero-hospital-photo {
  position: absolute;
  inset: 0;
  background: url('Revive Photo.jpeg') center center / cover no-repeat;
  opacity: 0.2;
  filter: grayscale(24%) blur(1.2px);
  z-index: 0;
  pointer-events: none;
}
.rh-hero-hospital-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(247,248,252,0.84) 0%, rgba(247,248,252,0.18) 38%, rgba(247,248,252,0.18) 62%, rgba(247,248,252,0.84) 100%),
    linear-gradient(to bottom, rgba(247,248,252,0.6) 0%, rgba(247,248,252,0.12) 28%, rgba(247,248,252,0.12) 72%, rgba(247,248,252,0.6) 100%);
}
.rh-visual {
  position: relative;
  z-index: 2;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rh-visual::before {
  content: '';
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  background: none;
  opacity: 0;
  filter: none;
  box-shadow: none;
}
.rh-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0) 44%, rgba(255,255,255,0.2) 100%);
  pointer-events: none;
}
.rh-visual-circle {
  width: 340px; height: 340px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,0,29,0.08) 0%, rgba(0,71,255,0.08) 100%);
  border: 1.5px dashed rgba(232,0,29,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: rhSpin 22s linear infinite; position: relative;
  box-shadow: none;
}
@keyframes rhSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.rh-visual-ring2 {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  border: 1px solid rgba(0,71,255,0.15); animation: rhSpin 14s linear infinite reverse;
}
.rh-visual-inner {
  width: 210px; height: 210px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(232,0,29,0.92) 0%, rgba(255,107,138,0.88) 48%, rgba(0,71,255,0.9) 100%);
  display: flex; align-items: center; justify-content: center; font-size: 80px;
  box-shadow: 0 24px 80px rgba(232,0,29,0.3), 0 0 0 20px rgba(232,0,29,0.06), 0 0 0 40px rgba(232,0,29,0.03);
  animation: rhSpin 22s linear infinite reverse; position: relative; z-index: 2;
}
.rh-orbit-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 16px rgba(232,0,29,0.7); }
.rh-hero-card {
  position: absolute; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-radius: 16px; padding: 18px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 14px; min-width: 210px;
  animation: rhFloat 3.5s ease-in-out infinite alternate; border: 1px solid rgba(255,255,255,0.6);
}
.rh-hero-card-1 { bottom: 55px; left: 28px; }
.rh-hero-card-2 { top: 55px; right: 28px; animation-delay: 1.2s; }
@keyframes rhFloat {
  from { transform: translateY(0) rotate(-0.5deg); }
  to { transform: translateY(-12px) rotate(0.5deg); }
}
.rh-card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0; box-shadow: 0 4px 12px rgba(232,0,29,0.3);
}
.rh-hero-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: var(--dark); }
.rh-hero-card p { font-size: 11px; color: var(--gray); letter-spacing: 0.3px; }

/* EMERGENCY */
.rh-emergency {
  background: var(--red); padding: 18px 56px;
  display: flex; align-items: center; justify-content: center; gap: 28px;
}
.rh-emergency span { color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }
.rh-emergency a { color: #fff; font-size: 20px; font-weight: 900; text-decoration: none; font-family: 'Playfair Display', serif; }
.rh-epulse { width: 10px; height: 10px; background: #fff; border-radius: 50%; animation: rhPulse 1.5s infinite; }

/* SECTIONS */
.rh-section { padding: 120px 80px; }

/* button press feedback */
.rh-btn-primary:active,
.rh-btn-secondary:active {
  transform: translateY(1px) scale(0.98);
}
.rh-label {
  font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.rh-label::before { content: ''; width: 28px; height: 1.5px; background: var(--blue); }
.rh-section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 50px);
  font-weight: 900; line-height: 1.08; margin-bottom: 20px; letter-spacing: -0.5px;
}
.rh-section-sub { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 560px; margin-bottom: 60px; font-weight: 300; }

/* SERVICES */
.rh-services { background: #fff; }
.rh-services-header { text-align: center; }
.rh-services-header .rh-label { justify-content: center; }
.rh-services-header .rh-label::before { display: none; }
.rh-services-header .rh-section-sub { margin: 0 auto 64px; }
.rh-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.rh-service-card {
  border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  position: relative; overflow: hidden; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.rh-service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,0,29,0.03), rgba(0,71,255,0.03)); opacity: 0; transition: opacity 0.4s;
}
.rh-service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.rh-service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); border-color: transparent; }
.rh-service-card:hover::before { opacity: 1; }
.rh-service-card:hover::after { transform: scaleX(1); }
.rh-service-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.rh-service-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.rh-service-card p { font-size: 13px; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* STATS BAND */
.rh-stats-band {
  background: linear-gradient(135deg, var(--dark) 0%, #0d0d1f 100%);
  padding: 80px; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; overflow: hidden;
}
.rh-stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,0,29,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(0,71,255,0.12) 0%, transparent 60%);
}
.rh-band-stat {
  text-align: center; padding: 20px; position: relative; z-index: 1;
  border-right: 1px solid rgba(255,255,255,0.06); transition: transform 0.4s;
}
.rh-band-stat:last-child { border-right: none; }
.rh-band-stat:hover { transform: scale(1.04); }
.rh-band-stat .bnum {
  font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 8px; display: block;
}
.rh-band-stat .bnum span { color: var(--red); -webkit-text-fill-color: var(--red); }
.rh-band-stat .blbl { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }
.rh-band-icon { font-size: 28px; margin-bottom: 16px; display: block; }

/* MARQUEE */
.rh-marquee-section {
  padding: 60px 0; background: #fff; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04);
}
.rh-marquee-track { display: flex; white-space: nowrap; }
.rh-marquee-word {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; padding: 0 24px;
  color: transparent; -webkit-text-stroke: 1.5px rgba(0,0,0,0.12);
  transition: color 0.3s, -webkit-text-stroke 0.3s; cursor: default;
}
.rh-marquee-word:hover { color: var(--red); -webkit-text-stroke: 1.5px var(--red); }
.rh-marquee-sep { color: var(--red) !important; -webkit-text-stroke: 0 !important; font-size: 24px; }
@keyframes rhMarquee1 { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes rhMarquee2 { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.rh-marquee-1 { animation: rhMarquee1 20s linear infinite; }
.rh-marquee-2 { animation: rhMarquee2 22s linear infinite; margin-top: 16px; }

/* VACCINATIONS */
.rh-vax { background: var(--off-white); }
.rh-vax-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rh-vax-card {
  background: #fff; border-radius: 12px; padding: 22px 20px;
  border-left: 3px solid var(--red); box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.rh-vax-card::after {
  content: ''; position: absolute; top: 0; right: 0; width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(232,0,29,0.06), transparent);
  border-radius: 50%; transform: translate(20px,-20px);
}
.rh-vax-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); border-left-color: var(--blue); }
.rh-vax-card h4 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.rh-vax-card p { font-size: 12px; color: var(--gray); font-weight: 300; }

/* PACKAGES */
.rh-packages { background: #fff; }
.rh-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rh-pkg-card {
  border: 1px solid rgba(0,0,0,0.07); border-radius: 20px; padding: 40px 32px;
  transition: all 0.4s; position: relative; overflow: hidden; background: #fff;
}
.rh-pkg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.rh-pkg-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,0.1); transform: translateY(-6px); border-color: transparent; }
.rh-pkg-card:hover::before { transform: scaleX(1); }
.rh-pkg-badge {
  display: inline-block; background: rgba(232,0,29,0.07); color: var(--red);
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 18px; border: 1px solid rgba(232,0,29,0.15);
}
.rh-pkg-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--dark); letter-spacing: -0.3px; }
.rh-pkg-tests { display: flex; flex-wrap: wrap; gap: 8px; }
.rh-test-tag {
  background: var(--off-white); color: #374151; font-size: 11px; padding: 5px 12px;
  border-radius: 100px; font-weight: 500; border: 1px solid rgba(0,0,0,0.05); transition: all 0.2s;
}
.rh-test-tag:hover { background: rgba(232,0,29,0.06); border-color: rgba(232,0,29,0.2); color: var(--red); }

/* WHY US */
.rh-why {
  background: linear-gradient(160deg, #f8f9ff 0%, #fff 50%, #fff5f6 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 110px 80px; border-top: 1px solid #e5e7ef; border-bottom: 1px solid #e5e7ef;
  position: relative; overflow: hidden;
}
.rh-why::after {
  content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,71,255,0.03) 0%, transparent 70%); pointer-events: none;
}
.rh-features { display: flex; flex-direction: column; gap: 28px; margin-top: 20px; }
.rh-feature { display: flex; gap: 20px; align-items: flex-start; }
.rh-feat-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--red); line-height: 1; flex-shrink: 0; width: 56px; opacity: 0.2; }
.rh-feature h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.rh-feature p { font-size: 14px; color: #6B7280; line-height: 1.7; font-weight: 300; }
.rh-why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rh-stat-card {
  background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: 16px;
  padding: 36px 24px; text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,0.04); transition: all 0.3s;
}
.rh-stat-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.rh-stat-card.accent { background: linear-gradient(135deg, var(--red-dark), var(--red)); border-color: transparent; box-shadow: 0 8px 32px rgba(232,0,29,0.3); }
.rh-stat-card .num { font-family: 'Playfair Display', serif; font-size: 46px; font-weight: 900; color: var(--dark); line-height: 1; margin-bottom: 8px; }
.rh-stat-card.accent .num { color: #fff; }
.rh-stat-card .lbl { font-size: 11px; color: #9CA3AF; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.rh-stat-card.accent .lbl { color: rgba(255,255,255,0.75); }

/* DOCTORS */
.rh-doctors { background: var(--off-white); }
.rh-doctors-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.rh-doctors-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.rh-doc-nav {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.rh-doc-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}
.rh-doc-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}
.rh-doctors-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 12px;
}
.rh-doctors-track::-webkit-scrollbar { height: 8px; }
.rh-doctors-track::-webkit-scrollbar-track { background: rgba(0,0,0,0.05); border-radius: 100px; }
.rh-doctors-track::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--red), var(--blue)); border-radius: 100px; }
.rh-doctor-card {
  min-width: min(370px, 86vw);
  scroll-snap-align: start;
  background: linear-gradient(145deg, #ffffff 0%, #f7f9ff 100%);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.rh-doctor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), #7a53ff, var(--blue));
}
.rh-doctor-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}
.rh-doc-info { padding: 22px 20px 18px; }
.rh-doc-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.rh-doc-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border: 1px solid rgba(0,71,255,0.2);
  border-radius: 100px;
  padding: 5px 10px;
  margin-bottom: 12px;
  background: rgba(0,71,255,0.06);
}
.rh-doc-exp {
  font-size: 14px;
  color: #364152;
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .rh-doctors-carousel { grid-template-columns: 1fr; }
  .rh-doc-nav { display: none; }
  .rh-doctor-card { min-width: 88vw; }
}

/* APPOINTMENT */
.rh-appt {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 45%, #6040ff 80%, var(--blue) 100%);
  padding: 90px 80px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.rh-appt::before {
  content: ''; position: absolute; top: -150px; right: -150px; width: 500px; height: 500px;
  border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.rh-appt::after {
  content: ''; position: absolute; bottom: -180px; left: -100px; width: 450px; height: 450px;
  border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.rh-appt h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 52px); font-weight: 900; margin-bottom: 16px; position: relative; z-index: 1; letter-spacing: -0.5px; }
.rh-appt > p { font-size: 17px; opacity: 0.8; margin-bottom: 52px; position: relative; z-index: 1; font-weight: 300; }
.rh-appt-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.rh-appt-form input, .rh-appt-form select {
  padding: 15px 22px; border-radius: 8px; border: none; font-size: 14px;
  font-family: 'DM Sans', sans-serif; background: rgba(255,255,255,0.97);
  color: var(--dark); min-width: 180px; outline: none; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.rh-appt-form select[name="time"] option { color: #111827; }
.rh-appt-form select[name="time"] option:disabled { color: #A0A8B6; }
.rh-appt-form button {
  padding: 15px 36px; background: var(--dark); color: #fff; border: none;
  border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.3s; letter-spacing: 0.3px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.rh-appt-form button:hover { background: #1a1a2e; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }

/* REVIEWS */
.rh-reviews { background: #fff; }
.rh-reviews-header { text-align: center; margin-bottom: 64px; }
.rh-reviews-header .rh-label { justify-content: center; }
.rh-reviews-header .rh-label::before { display: none; }
.rh-reviews-header .rh-section-sub { margin: 0 auto; }
.rh-google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 100px;
  padding: 8px 20px; margin-top: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.rh-google-badge .gscore { font-size: 22px; font-weight: 900; color: var(--dark); font-family: 'Playfair Display', serif; }
.rh-google-badge .gstars { color: #FBBC05; font-size: 16px; letter-spacing: 1px; }
.rh-google-badge .gtext { font-size: 13px; color: var(--gray); font-weight: 500; }
.google-badge-g, .rh-google-g .g-mark {
  font-weight: 900;
  font-family: Arial, sans-serif;
  background: conic-gradient(#4285F4 0 25%, #34A853 25% 50%, #FBBC05 50% 75%, #EA4335 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.google-badge-g { font-size: 24px; line-height: 1; }
.rh-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rh-review-card {
  border-radius: 20px; padding: 36px; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.rh-review-card:hover { transform: translateY(-6px); }
.rh-review-card:nth-child(1) { background: var(--off-white); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.rh-review-card:nth-child(2) { background: linear-gradient(135deg, var(--red-dark), var(--red)); color: #fff; box-shadow: 0 8px 40px rgba(232,0,29,0.3); }
.rh-review-card:nth-child(3) { background: linear-gradient(135deg, #0d0d1f, var(--dark)); color: #fff; box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
.rh-review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.rh-stars { font-size: 16px; color: #FBBC05; letter-spacing: 2px; }
.rh-google-g {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 900; color: #fff; font-family: 'Playfair Display', serif;
}
.rh-review-card:nth-child(1) .rh-google-g { background: rgba(66,133,244,0.12); color: #4285F4; }
.rh-review-card blockquote { font-size: 15px; line-height: 1.8; margin-bottom: 28px; font-weight: 300; font-style: normal; }
.rh-review-card:nth-child(1) blockquote { color: #374151; }
.rh-review-author { display: flex; align-items: center; gap: 14px; }
.rh-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.rh-review-card:nth-child(1) .rh-avatar { background: linear-gradient(135deg, var(--red), var(--red-light)); color: #fff; }
.rh-review-author h5 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.rh-review-meta { font-size: 11px; opacity: 0.6; letter-spacing: 0.5px; }
.rh-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; opacity: 0.7; margin-top: 4px; }

/* FOOTER */
.rh-footer { background: var(--dark); color: #fff; padding: 80px 80px 44px; position: relative; overflow: hidden; }
.rh-footer::before {
  content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(232,0,29,0.06) 0%, transparent 60%);
}
.rh-footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 36px; position: relative; z-index: 1; }
.rh-footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.9; margin-top: 18px; max-width: 270px; font-weight: 300; }
.rh-footer .rh-logo-text .logo-main { color: #fff; }
.rh-footer .rh-logo-text .logo-sub { color: rgba(255,255,255,0.72); }
.rh-footer-contact { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.rh-footer-contact a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; font-weight: 300; }
.rh-footer-contact a[href*="maps.app.goo.gl"] { font-family: 'Peignot Demi', serif; }
.rh-footer-contact a:hover { color: #fff; }
.rh-footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.rh-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rh-footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: all 0.2s; font-weight: 300; }
.rh-footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.rh-footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.25); position: relative; z-index: 1; }
.rh-footer-bottom p { font-family: 'Peignot Demi', serif; }
.rh-footer-bottom a { color: var(--red); text-decoration: none; }
.rh-socials { display: flex; gap: 10px; }
.rh-social-btn {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  color: rgba(255,255,255,0.6); transition: all 0.2s; cursor: pointer; border: 1px solid rgba(255,255,255,0.06);
}
.rh-social-btn:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); }

/* MODAL */
.rh-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  z-index: 2000; align-items: center; justify-content: center; backdrop-filter: blur(8px);
}
.rh-modal-overlay.active { display: flex; }
.rh-modal {
  background: #fff; border-radius: 24px; padding: 52px; max-width: 440px; width: 90%;
  text-align: center; position: relative;
  animation: rhScaleIn 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
@keyframes rhScaleIn { from { transform: scale(0.7); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.rh-modal h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; margin-bottom: 14px; color: var(--dark); }
.rh-modal p { color: var(--gray); font-size: 15px; margin-bottom: 32px; line-height: 1.7; font-weight: 300; }
.rh-modal-close { position: absolute; top: 18px; right: 22px; font-size: 24px; cursor: pointer; color: var(--gray); background: none; border: none; opacity: 0.6; }
.rh-modal-close:hover { opacity: 1; }

/* PARALLAX WORDS */
.rh-parallax-word {
  position: absolute; font-family: 'Playfair Display', serif;
  font-size: 160px; font-weight: 900; color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.04); pointer-events: none;
  white-space: nowrap; user-select: none; z-index: 0; will-change: transform;
}

/* SCROLL ANIMATIONS */
.rh-fade { opacity: 0; transform: translateY(32px); transition: opacity 0.42s ease, transform 0.42s ease; }
.rh-fade.visible { opacity: 1; transform: translateY(0); }
.rh-fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.42s ease, transform 0.42s ease; }
.rh-fade-left.visible { opacity: 1; transform: translateX(0); }
.rh-fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.42s ease, transform 0.42s ease; }
.rh-fade-right.visible { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .rh-nav {
    padding: 0 16px;
    height: 68px;
    overflow: visible;
  }

  .rh-logo {
    gap: 10px;
    max-width: calc(100% - 56px);
  }

  .rh-logo-icon {
    width: 48px;
    height: 48px;
  }

  .rh-logo-text .logo-main {
    font-size: 16px;
  }

  .rh-logo-text .logo-sub {
    font-size: 8px;
    letter-spacing: 3px;
  }

  .rh-nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .rh-nav-links {
    position: absolute;
    top: 68px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(232, 0, 29, 0.18);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 0 12px;
    z-index: 1200;
  }

  .rh-nav.mobile-open .rh-nav-links {
    max-height: 70vh;
    opacity: 1;
    pointer-events: auto;
    padding: 12px;
  }

  .rh-nav-links li,
  .rh-nav-links a {
    width: 100%;
  }

  .rh-nav-links a {
    display: block;
    padding: 10px 4px;
  }

  .rh-nav-cta {
    width: 100%;
    text-align: center;
  }

  .rh-hero,
  .rh-section,
  .rh-stats-band,
  .rh-marquee-section,
  .rh-appt,
  .rh-footer,
  .rh-why,
  .rh-emergency {
    overflow-x: hidden;
  }

  .rh-section {
    padding: 64px 16px;
  }

  .rh-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .rh-hero-left,
  .rh-hero-right {
    padding: 36px 16px;
  }

  .rh-h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .rh-section-title {
    font-size: clamp(24px, 7vw, 34px);
  }

  .rh-appt h2 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .rh-hero-p,
  .rh-section-sub,
  .rh-appt > p {
    font-size: 15px;
    max-width: none;
  }

  .rh-services-grid,
  .rh-vax-grid,
  .rh-pkg-grid,
  .rh-reviews-grid,
  .rh-stats-band,
  .rh-footer-top,
  .rh-why,
  .rh-why-stats {
    grid-template-columns: 1fr;
  }

  .rh-doctors-header {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .rh-doctors-carousel {
    grid-template-columns: 1fr;
  }

  .rh-doc-nav {
    display: none;
  }

  .rh-doctors-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .rh-doctor-card {
    min-width: 86vw;
  }

  .rh-appt {
    padding: 64px 16px;
  }

  .rh-appt-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .rh-appt-form input,
  .rh-appt-form select,
  .rh-appt-form button {
    width: 100%;
    min-width: 0;
  }

  .rh-btns {
    flex-direction: column;
  }

  .rh-btn-primary,
  .rh-btn-secondary,
  .rh-nav-cta {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .rh-ticker-item {
    font-size: 10px;
    padding: 0 20px;
  }

  .rh-marquee-word {
    font-size: 26px;
    padding: 0 14px;
  }

  .rh-marquee-sep {
    font-size: 16px;
  }

  .rh-emergency {
    padding: 14px 16px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .rh-emergency span {
    font-size: 12px;
  }

  .rh-emergency a {
    font-size: 16px;
  }

  .rh-footer {
    padding: 56px 16px 28px;
  }

  .rh-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .rh-modal-overlay {
    padding: 0;
  }

  .rh-modal {
    width: 100vw;
    max-width: none;
    height: 100vh;
    border-radius: 0;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .rh-modal-close {
    top: 12px;
    right: 12px;
  }

  .rh-modal h3 {
    font-size: 24px;
  }
}
