/* ============================================
   RABIES PAGE STYLES
   Uses rabies- prefix
   ============================================ */

/* ============================================
   BREADCRUMB
   ============================================ */
.rabies-breadcrumb {
  padding: 1rem 0;
  background: var(--white);
  border-bottom: 1px solid rgba(196, 122, 101, 0.1);
  margin-top: 0; /* Body already has padding-top: 80px for fixed nav */
}

.rabies-breadcrumb .section-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.rabies-breadcrumb a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.rabies-breadcrumb a:hover {
  color: var(--brand-purple);
}

.rabies-breadcrumb .separator {
  color: #cbd5e1;
}

.rabies-breadcrumb .current {
  color: var(--brand-purple);
  font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */
.rabies-hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background-color: #6d68b5;
  background-size: cover;
  background-position: center;
}

.rabies-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(107, 79, 160, 0.95), rgba(139, 109, 186, 0.85), rgba(163, 138, 207, 0.4));
  z-index: 1;
}

.rabies-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 2;
}

.rabies-hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  color: var(--white);
}

.rabies-hero-line {
  width: 60px;
  height: 4px;
  background: var(--white);
  margin-bottom: 1.5rem;
  border-radius: 9999px;
}

.rabies-hero-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.rabies-hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .rabies-hero-title {
    font-size: 4rem;
  }
}

.rabies-hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.rabies-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .rabies-hero-actions {
    flex-direction: row;
  }
}

.rabies-btn-primary {
  background: var(--white);
  color: var(--brand-dark);
  border: none;
}

.rabies-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rabies-btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.rabies-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.rabies-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.rabies-hero-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   PROTECTION SECTION
   ============================================ */
.rabies-protect-section {
  padding: 6rem 0;
  background: var(--white);
}

.rabies-protect-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rabies-protect-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.rabies-protect-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.rabies-protect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .rabies-protect-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.rabies-protect-image-wrapper {
  position: relative;
}

.rabies-protect-image-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196, 122, 101, 0.12);
  border: 4px solid var(--white);
}

.rabies-protect-image {
  width: 100%;
  height: auto;
  display: block;
}

.rabies-protect-name-tag {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rabies-protect-name-tag .name {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: #2D1B4E;
  font-family: var(--font-heading);
}

.rabies-protect-name-tag .role {
  display: block;
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 600;
}

.rabies-protect-badge-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(196, 122, 101, 0.08);
  color: var(--brand-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(196, 122, 101, 0.2);
}

.rabies-protect-badge-box i {
  font-size: 1rem;
}

.rabies-protect-subtitle {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2D1B4E;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.rabies-protect-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.rabies-protect-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .rabies-protect-features {
    grid-template-columns: 1fr 1fr;
  }
}

.rabies-protect-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.rabies-protect-feature .icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(196, 122, 101, 0.25);
}

.rabies-protect-feature .text strong {
  display: block;
  font-size: 1rem;
  color: #2D1B4E;
  margin-bottom: 0.25rem;
}

.rabies-protect-feature .text p {
  font-size: 0.9375rem;
  color: var(--text-gray);
  line-height: 1.5;
}

.rabies-protect-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .rabies-protect-actions {
    flex-direction: row;
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.rabies-stats-section {
  background: linear-gradient(to right, var(--brand-purple), var(--brand-dark));
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.rabies-stats-bar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .rabies-stats-bar {
    flex-direction: row;
    justify-content: space-between;
  }
}

.rabies-stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rabies-stat-item .icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.rabies-stat-item .content {
  display: flex;
  flex-direction: column;
}

.rabies-stat-item .number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.rabies-stat-item .label {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rabies-stat-divider {
  display: none;
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .rabies-stat-divider {
    display: block;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.rabies-about-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.rabies-about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rabies-about-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.rabies-about-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
}

/* Enhanced Grid Layout */
.rabies-about-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 4rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .rabies-about-content-grid {
    grid-template-columns: 40% 1fr;
    gap: 4rem;
  }
}

.rabies-about-image-wrapper {
  position: relative;
  width: 100%;
}

.rabies-about-image-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196, 122, 101, 0.12);
  aspect-ratio: 3/4;
}

.rabies-about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.rabies-about-image-card:hover img {
  transform: scale(1.05);
}

.rabies-about-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rabies-about-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rabies-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(196, 122, 101, 0.12);
  transition: transform 0.3s ease;
}

.rabies-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(196, 122, 101, 0.1);
}

.rabies-info-card .icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(196, 122, 101, 0.25);
}

.rabies-info-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2D1B4E;
  margin-bottom: 0.75rem;
}

.rabies-info-card p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

.rabies-about-callout {
  background: #fff1f2;
  border: 2px solid #fecaca;
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.rabies-about-callout .badge {
  display: inline-block;
  background: #e11d48;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.rabies-about-callout h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #9f1239;
  margin-bottom: 1rem;
}

.rabies-about-callout p {
  font-size: 1.125rem;
  color: #881337;
  line-height: 1.6;
}

/* ============================================
   WHO NEEDS VACCINATION
   ============================================ */
.rabies-needs-section {
  padding: 6rem 0;
  background: var(--white);
}

.rabies-needs-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rabies-needs-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.rabies-needs-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.rabies-needs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .rabies-needs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.rabies-needs-card {
  padding: 2.5rem;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
}

.rabies-needs-card.recommended {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}

.rabies-needs-card.consider {
  background: #fffbeb;
  border: 2px solid #fcd34d;
}

.rabies-needs-card .card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.rabies-needs-card.recommended .card-badge {
  background: #16a34a;
  color: var(--white);
}

.rabies-needs-card.consider .card-badge {
  background: #f59f00;
  color: var(--white);
}

.rabies-needs-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.rabies-needs-card.recommended h3 { color: #14532d; }
.rabies-needs-card.consider h3 { color: #92400e; }

.rabies-needs-card p {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.rabies-needs-card.recommended p { color: #14532d; }
.rabies-needs-card.consider p { color: #78350f; }

.rabies-needs-card .check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rabies-needs-card .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
}

.rabies-needs-card.recommended .check-list li { color: #14532d; }
.rabies-needs-card.consider .check-list li { color: #92400e; }

.rabies-needs-card .check-list i {
  margin-top: 0.25rem;
}

/* ============================================
   RISK ZONES
   ============================================ */
.rabies-risk-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.rabies-risk-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rabies-risk-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.rabies-risk-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

.rabies-risk-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .rabies-risk-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Destination Images */
.rabies-destination-image {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(196, 122, 101, 0.1);
}

.rabies-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.rabies-destination-image:hover img {
  transform: scale(1.05);
}

.rabies-risk-card {
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(196, 122, 101, 0.12);
}

.rabies-risk-card.high {
  border-top: 6px solid #e11d48;
}

.rabies-risk-card.moderate {
  border-top: 6px solid #f59f00;
}

.rabies-risk-card .card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.rabies-risk-card.high .card-icon {
  background: #fff1f2;
  color: #e11d48;
}

.rabies-risk-card.moderate .card-icon {
  background: #fffbeb;
  color: #f59f00;
}

.rabies-risk-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.rabies-risk-card .desc {
  font-size: 1.0625rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rabies-risk-card .country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.rabies-risk-card .country-list span {
  background: #f3f4f6;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.rabies-risk-footer {
  text-align: center;
  margin-top: 4rem;
}

.rabies-risk-footer .info-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(196, 122, 101, 0.08), rgba(196, 122, 101, 0.04));
  color: var(--brand-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(196, 122, 101, 0.2);
}

.rabies-risk-footer .info-badge i {
  color: var(--brand-purple);
}

.rabies-risk-footer .actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ============================================
   DETAILS SECTION
   ============================================ */
.rabies-details-section {
  padding: 6rem 0;
  background: var(--white);
}

.rabies-details-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rabies-details-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.rabies-details-desc {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.rabies-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .rabies-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rabies-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rabies-detail-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.rabies-detail-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(196, 122, 101, 0.25);
  transform: translateY(-4px);
}

.rabies-detail-card .icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-dark));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.rabies-detail-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2D1B4E;
  margin-bottom: 0.75rem;
}

.rabies-detail-card p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.rabies-faq-section {
  padding: 6rem 0;
  background: var(--brand-light);
}

.rabies-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rabies-faq-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2D1B4E;
  margin-bottom: 1rem;
}

.rabies-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rabies-faq-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
}

.rabies-faq-item:hover {
  border-color: rgba(196, 122, 101, 0.3);
  box-shadow: 0 20px 50px rgba(196, 122, 101, 0.12);
  transform: translateY(-2px);
}

.rabies-faq-item.travel-faq-active {
  box-shadow: 0 8px 20px rgba(196, 122, 101, 0.1);
  border-color: var(--brand-purple);
  background: var(--white);
}

.rabies-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.rabies-faq-btn .num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(196, 122, 101, 0.3);
}

.rabies-faq-btn .text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2D1B4E;
}

.rabies-faq-btn .icon {
  color: var(--brand-purple);
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

.rabies-faq-item.travel-faq-active .icon {
  transform: rotate(45deg);
}

.rabies-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.rabies-faq-item.travel-faq-active .rabies-faq-content {
  max-height: 300px;
  padding: 0 2rem 2rem 5.5rem;
}

.rabies-faq-content p {
  font-size: 1.0625rem;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 640px) {
  .rabies-faq-btn {
    padding: 1.25rem;
    gap: 1rem;
  }
  
  .rabies-faq-item.travel-faq-active .rabies-faq-content {
    padding: 0 1.25rem 1.5rem 1.25rem;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.rabies-cta-section {
  position: relative;
  background: linear-gradient(to right, var(--brand-purple), var(--brand-accent), var(--brand-dark));
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.rabies-cta-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}

.rabies-cta-content {
  position: relative;
  z-index: 10;
}

.rabies-cta-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.rabies-cta-badges .badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rabies-cta-title {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.rabies-cta-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.rabies-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.rabies-cta-actions .white-btn {
  background: #ffffff;
  color: var(--brand-dark);
}

.rabies-cta-actions .white-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.rabies-cta-actions .outline-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.rabies-cta-actions .outline-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
