/* Sanjeevini Blood Centre — Custom Styles */

:root {
  --blood-red: #c8102e;
  --blood-red-dark: #9b0c24;
  --blood-red-light: #fef2f2;
  --text-dark: #1a1a2e;
  --text-muted: #64748b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* Blood drop decorative element */
.blood-drop {
  display: inline-block;
  width: 12px;
  height: 16px;
  background: var(--blood-red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.blood-drop-lg {
  width: 24px;
  height: 32px;
}

/* Animated pulse for CTAs */
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.35); }
  50% { box-shadow: 0 0 0 12px rgba(200, 16, 46, 0); }
}

.btn-pulse {
  animation: pulse-soft 2.5s ease-in-out infinite;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children > .fade-in:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > .fade-in:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > .fade-in:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > .fade-in:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > .fade-in:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > .fade-in:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > .fade-in:nth-child(8) { transition-delay: 0.4s; }

/* Hero gradient background */
.hero-gradient {
  background: linear-gradient(135deg, #fff 0%, #fef2f2 50%, #fff 100%);
}

/* Footer flag icons */
.footer-flag {
  display: inline-block;
  width: 1.125rem;
  height: 0.75rem;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  vertical-align: middle;
}

.footer-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Blood group card hover */
.blood-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blood-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(200, 16, 46, 0.15);
}

.blood-card-dark:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(200, 16, 46, 0.2);
}

/* Process step connector */
.process-step::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(50% + 2rem);
  width: calc(100% - 4rem);
  height: 2px;
  background: linear-gradient(90deg, var(--blood-red), #fecaca);
}

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.hidden-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blood-red);
  outline-offset: 2px;
}

/* Image hover zoom */
.img-hover {
  transition: transform 0.5s ease;
}

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

/* Section divider with blood drop pattern */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--blood-red), transparent);
  border-radius: 2px;
  max-width: 120px;
  margin: 0 auto;
}

/* Floating animation for hero graphic */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

/* Card shine on hover */
.help-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-color: rgba(255, 255, 255, 0.5);
}

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

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

.help-card:hover::before {
  left: 100%;
}

/* Form styles */
.form-input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--blood-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

/* Navbar scroll effect */
.navbar-scrolled {
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
}

.nav-more-menu {
  background: rgba(255, 255, 255, 0.88) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.nav-more-menu a {
  white-space: nowrap;
}

.blood-card-dark {
  background: rgba(17, 24, 39, 0.82) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
}

  white-space: nowrap;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--blood-red);
  color: white;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Consistent blood-drop SVG icon */
.blood-drop-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.blood-drop-svg {
  display: block;
  width: 14px;
  height: 18px;
  background: var(--blood-red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.blood-drop-icon-sm .blood-drop-svg { width: 10px; height: 14px; }
.blood-drop-icon-lg .blood-drop-svg { width: 20px; height: 26px; }

.btn-drop-hover:hover .blood-drop-svg {
  transform: rotate(-45deg) translateY(-3px);
}

/* Hero floating blood drops */
.hero-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-drop {
  position: absolute;
  opacity: 0.15;
}

.hero-drop .blood-drop-svg {
  background: var(--blood-red);
}

@keyframes drop-float-1 {
  0%, 100% { transform: translate(0, 0) rotate(-45deg); }
  50% { transform: translate(8px, -18px) rotate(-45deg); }
}

@keyframes drop-float-2 {
  0%, 100% { transform: translate(0, 0) rotate(-45deg); }
  50% { transform: translate(-12px, -14px) rotate(-45deg); }
}

.hero-drop:nth-child(1) { top: 15%; left: 10%; animation: drop-float-1 5s ease-in-out infinite; }
.hero-drop:nth-child(2) { top: 60%; left: 5%; animation: drop-float-2 6s ease-in-out infinite 0.5s; }
.hero-drop:nth-child(3) { top: 25%; right: 15%; animation: drop-float-1 4.5s ease-in-out infinite 1s; }
.hero-drop:nth-child(4) { bottom: 20%; right: 8%; animation: drop-float-2 5.5s ease-in-out infinite 0.3s; }

/* Text reveal animation */
.text-reveal {
  display: inline-block;
  overflow: hidden;
}

.text-reveal-inner {
  display: inline-block;
  animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform: translateY(100%);
  opacity: 0;
}

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

.text-reveal-delay .text-reveal-inner {
  animation-delay: 0.25s;
}

/* Glowing CTA */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200, 16, 46, 0.35), 0 0 0 0 rgba(200, 16, 46, 0.2); }
  50% { box-shadow: 0 4px 30px rgba(200, 16, 46, 0.5), 0 0 0 8px rgba(200, 16, 46, 0); }
}

.btn-glow {
  animation: glow-pulse 2.5s ease-in-out infinite;
}

/* Heart pulse ring around icon */
@keyframes heart-ring {
  0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(200, 16, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

.heart-pulse-ring {
  animation: heart-ring 2s ease-out infinite;
  border-radius: 50%;
}

/* Blood group card enhanced hover */
.blood-card-animated {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.blood-card-animated:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 32px rgba(200, 16, 46, 0.18);
}

.blood-icon-pulse:hover .blood-drop-svg {
  animation: drop-bounce 0.5s ease;
}

@keyframes drop-bounce {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.2); }
}

/* Process timeline animation */
.process-timeline .process-step {
  opacity: 0;
  transform: translateY(20px);
}

.process-timeline.visible .process-step {
  animation: stepFadeIn 0.6s ease forwards;
}

.process-timeline.visible .process-step:nth-child(1) { animation-delay: 0.1s; }
.process-timeline.visible .process-step:nth-child(2) { animation-delay: 0.3s; }
.process-timeline.visible .process-step:nth-child(3) { animation-delay: 0.5s; }
.process-timeline.visible .process-step:nth-child(4) { animation-delay: 0.7s; }

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

.process-timeline.visible .process-step::after {
  animation: lineGrow 0.8s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}

.process-timeline.visible .process-step:nth-child(1)::after { animation-delay: 0.4s; }
.process-timeline.visible .process-step:nth-child(2)::after { animation-delay: 0.6s; }
.process-timeline.visible .process-step:nth-child(3)::after { animation-delay: 0.8s; }

@keyframes lineGrow {
  to { transform: scaleX(1); }
}

/* Event card hover lift */
.event-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Emergency alert pulse border */
.emergency-alert {
  animation: emergencyPulse 2s ease-in-out infinite;
}

@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

/* Stat counter ready state */
.stat-value[data-stat-counter] {
  font-variant-numeric: tabular-nums;
}

/* Donor form success fade */
.donor-form-success {
  animation: fadeInUp 0.5s ease forwards;
}

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

/* Site header offset */
:root {
  --site-header-h: 6.25rem;
  --sticky-lead-h: 4rem;
}

body.has-site-header main {
  padding-top: var(--site-header-h);
}

body.has-lead-tools {
  padding-bottom: var(--sticky-lead-h);
}

@media (min-width: 1024px) {
  body.has-lead-tools {
    padding-bottom: 0;
  }
}

/* Lead path cards */
.lead-path-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 2px solid #f3f4f6;
  background: white;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.lead-path-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(200, 16, 46, 0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lead-path-card:hover {
  border-color: rgba(200, 16, 46, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(200, 16, 46, 0.12);
}

.lead-path-card:hover::before { opacity: 1; }

.lead-path-donate:hover { border-color: var(--blood-red); }
.lead-path-request:hover { border-color: #f87171; }

.lead-path-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lead-path-icon-alert { background: #fff1f2; }

.lead-path-arrow {
  margin-left: auto;
  font-size: 1.25rem;
  color: var(--blood-red);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.lead-path-card:hover .lead-path-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Glass morphism — Apple-style frosted surfaces */
.glass-surface,
.glass-card,
.glass-nav,
.glass-bar,
.glass-fab {
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.navbar-scrolled.glass-nav,
#navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.glass-bar {
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* SF Symbol–style filled icons */
.sf-icon {
  display: block;
  flex-shrink: 0;
}

.sf-icon-sm { width: 1.125rem; height: 1.125rem; }
.sf-icon-md { width: 1.25rem; height: 1.25rem; }
.sf-icon-lg { width: 1.5rem; height: 1.5rem; }

/* Enhanced form inputs */
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.375rem;
}

.form-input-enhanced {
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1.5px solid #e5e7eb;
  background: #fafafa;
  color: #111827;
  transition: all 0.2s ease;
}

.form-input-enhanced:hover {
  border-color: #fecaca;
  background: white;
}

.form-input-enhanced:focus {
  background: white;
  border-color: var(--blood-red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08);
}

.form-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blood-red);
  padding-top: 0.5rem;
  border-top: 1px solid #f3f4f6;
  margin-top: 0.25rem;
}

.form-section-label:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* Blood card accent top bar */
.blood-card-accent {
  position: relative;
  overflow: hidden;
}

.blood-card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blood-red), #fca5a5);
}

.blood-card-accent-1::before { background: linear-gradient(90deg, #b91c1c, #fecaca); }
.blood-card-accent-2::before { background: linear-gradient(90deg, #991b1b, #fed7d7); }
.blood-card-accent-3::before { background: linear-gradient(90deg, #7f1d1d, #fee2e2); }

/* Sticky mobile lead bar */
.sticky-lead-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-lead-bar.visible {
  transform: translateY(0);
}

.sticky-lead-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.65rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
  text-decoration: none;
}

.sticky-lead-call {
  color: #374151;
  background: transparent;
}

.sticky-lead-call:active { background: rgba(0, 0, 0, 0.04); }

.sticky-lead-donate {
  color: white;
  background: linear-gradient(135deg, var(--blood-red), #e11d48);
  border: none;
  font-family: inherit;
  cursor: pointer;
  margin: 0.35rem;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
}

.sticky-lead-donate:active { background: var(--blood-red-dark); }

.sticky-lead-request {
  color: var(--blood-red);
  background: transparent;
}

.sticky-lead-request:active { background: rgba(200, 16, 46, 0.08); }

.sticky-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.625rem;
  margin-bottom: 0.1rem;
}

.sticky-icon-call {
  background: linear-gradient(135deg, #34c759, #28a745);
  color: white;
  box-shadow: 0 2px 8px rgba(52, 199, 89, 0.35);
}

.sticky-icon-donate {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.sticky-icon-alert {
  background: linear-gradient(135deg, #ff9500, #ff6b00);
  color: white;
  box-shadow: 0 2px 8px rgba(255, 149, 0, 0.35);
}

/* Floating action buttons (desktop) */
.fab-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 44;
}

.fab-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem 0.625rem 0.625rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.glass-fab {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #1f2937;
}

.glass-fab:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  color: white;
}

.fab-icon-call {
  background: linear-gradient(145deg, #34c759 0%, #28a745 100%);
  box-shadow: 0 3px 12px rgba(52, 199, 89, 0.45);
}

.fab-icon-donate {
  background: linear-gradient(145deg, var(--blood-red) 0%, #e11d48 100%);
  box-shadow: 0 3px 12px rgba(200, 16, 46, 0.45);
}

.fab-call:hover .fab-icon-call {
  box-shadow: 0 4px 16px rgba(52, 199, 89, 0.55);
}

.fab-donate:hover .fab-icon-donate {
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.55);
}

.fab-label { white-space: nowrap; font-weight: 600; }

/* Donor registration modal */
.donor-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.donor-modal.hidden {
  display: none;
}

.donor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.65);
  backdrop-filter: blur(4px);
}

.donor-modal-panel {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: min(90vh, 900px);
  z-index: 1;
}

.donor-modal-scroll {
  max-height: min(90vh, 900px);
  overflow-y: auto;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.donor-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  color: #374151;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, color 0.2s ease;
}

.donor-modal-close:hover {
  background: white;
  color: var(--blood-red);
}

body.donor-modal-open {
  overflow: hidden;
}

/* Hero mesh gradient enhancement */
.hero-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(254, 226, 226, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(254, 202, 202, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #fff 0%, #fef2f2 50%, #fff 100%);
}

/* Trust strip */
.trust-strip a:hover {
  text-decoration: underline;
}

/* Donor guide — eligibility cards */
.eligibility-card {
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 2px solid #f3f4f6;
  background: white;
}

.eligibility-card-yes { border-color: #bbf7d0; background: linear-gradient(135deg, #fff 0%, #f0fdf4 100%); }
.eligibility-card-no { border-color: #fecaca; background: linear-gradient(135deg, #fff 0%, #fef2f2 100%); }
.eligibility-card-women { border-color: #e9d5ff; background: linear-gradient(135deg, #fff 0%, #faf5ff 100%); }

.eligibility-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.eligibility-badge {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.eligibility-badge-yes { background: #dcfce7; color: #15803d; }
.eligibility-badge-no { background: #fee2e2; color: #b91c1c; }
.eligibility-badge-info { background: #f3e8ff; color: #7c3aed; }

.eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.eligibility-item {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.eligibility-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ca3af;
}

.eligibility-yes::before { background: #22c55e; }
.eligibility-no::before { background: #ef4444; }

/* FAQ accordion */
.faq-chevron.rotate-180 {
  transform: rotate(180deg);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(200, 16, 46, 0.25);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.08);
}

/* Guide sub-navigation */
.guide-subnav-link {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  border-radius: 9999px;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
}

.guide-subnav-link:hover {
  color: var(--blood-red);
  background: #fef2f2;
}
