/* =============================================
   HEALTH INSURANCE PAGE - MODERN REDESIGN
   Scoped with .health-page to avoid bleed
   ============================================= */

.health-page {
  --hp-bg-light: #f8fff4;
  --hp-bg-white: #ffffff;
  --hp-bg-accent: #e7f9e9;
  --hp-bg-soft: #f0f6ea;
  --hp-gradient: linear-gradient(135deg, #f0fff7 0%, #e2f5e9 50%, #f8fff4 100%);
  --hp-text-dark: #1f2937;
  --hp-text-muted: #4b5563;
  --hp-radius-lg: 28px;
  --hp-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --hp-shadow-md: 0 10px 28px rgba(0, 0, 0, 0.12);
  --hp-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.16);
}

/* Hero */
.health-page .health-hero {
  background: var(--hp-gradient);
  padding: clamp(2rem, 6vw, 4rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  animation: hpFadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.health-page .health-hero::before,
.health-page .health-hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 60, 48, 0.1) 0%, transparent 70%);
  filter: blur(2px);
}
.health-page .health-hero::before {
  top: -30%;
  right: -15%;
}
.health-page .health-hero::after {
  bottom: -35%;
  left: -20%;
  background: radial-gradient(
    circle,
    rgba(95, 160, 10, 0.09) 0%,
    transparent 70%
  );
}

.health-page .health-hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.2rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  animation: hpFadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.health-page .health-hero p.lead-intro {
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  line-height: 1.85;
  color: var(--hp-text-muted);
  margin-bottom: 1.3rem;
  max-width: 720px;
  animation: hpFadeInUp 1.05s cubic-bezier(0.4, 0, 0.2, 1);
}

.health-page .health-hero-img {
  border-radius: 0 0 0 48px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.health-page .health-hero-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

/* CTA button */
.health-page .health-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-primary);
  border: none;
  border-radius: 48px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 10px 28px rgba(95, 160, 10, 0.28);
  overflow: hidden;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
}
.health-page .health-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary-hover);
  opacity: 0.14;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.health-page .health-cta-btn:hover::before {
  transform: scaleX(1);
}
.health-page .health-cta-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 16px 42px rgba(95, 160, 10, 0.42);
}
.health-page .health-cta-btn i {
  font-size: 1.35em;
  transition: transform 0.35s;
}
.health-page .health-cta-btn:hover i {
  transform: translateX(6px);
}

/* Section headings */
.health-page .hp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.health-page .hp-section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: Georgia, "Times New Roman", Times, serif;
  position: relative;
  display: inline-block;
  line-height: 1.15;
}
.health-page .hp-section-header h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 86px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
  transform: translateX(-50%);
  border-radius: 5px;
}
.health-page .hp-section-header p {
  font-size: 1.15rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Card design */
.health-page .hp-card {
  background: #fff;
  border-radius: 22px;
  border: 2px solid #eef2f1;
  padding: 2.25rem 1.9rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--hp-shadow-sm);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.health-page .hp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 60, 48, 0.06) 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.health-page .hp-card:hover {
  transform: translateY(-14px);
  border-color: rgba(95, 160, 10, 0.35);
  box-shadow: var(--hp-shadow-hover);
}
.health-page .hp-card:hover::before {
  opacity: 1;
}
.health-page .hp-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.health-page .hp-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

/* Icon circle inside cards */
.health-page .hp-icon-circle {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-primary);
  background: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 100%);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
  position: relative;
  transition: all 0.45s ease;
}
.health-page .hp-card:hover .hp-icon-circle {
  transform: translateY(-8px) scale(1.08) rotate(-4deg);
}
.health-page .hp-icon-circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-hover) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
  pointer-events: none;
}
.health-page .hp-icon-circle > * {
  position: relative;
  z-index: 1;
}
.health-page .hp-card:hover .hp-icon-circle::before {
  opacity: 1;
}

/* Benefit row list styling */
.health-page .hp-benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.2rem;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 14px;
  border-left: 5px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.health-page .hp-benefit-row:hover {
  background: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 100%);
  transform: translateX(10px);
  border-left-width: 7px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.health-page .hp-benefit-row i {
  font-size: 1.55rem;
  color: var(--color-primary);
  min-width: 34px;
  transition: all 0.35s ease;
}
.health-page .hp-benefit-row:hover i {
  color: var(--color-primary-hover);
  transform: scale(1.25) rotate(5deg);
}
.health-page .hp-benefit-row p,
.health-page .hp-benefit-row span {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #333;
}

/* FAQ modern tweaks (reuse existing markup) */
.health-page .faq-item {
  border-radius: 20px;
  border: 2px solid #e2ece9;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}
.health-page .faq-item:hover {
  border-color: rgba(95, 160, 10, 0.35);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
}
.health-page .faq-question {
  font-weight: 600;
  color: var(--color-primary);
  padding: 1.25rem 1.75rem;
}
.health-page .faq-answer {
  padding: 0 1.75rem 1.4rem;
  line-height: 1.75;
  color: #555;
}

/* Utility spacing */
.health-page section {
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
  min-height: auto;
}
.health-page .hp-tight {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Section background colors for clear separation */
.health-page section:nth-of-type(odd) {
  background-color: var(--hp-bg-white);
}
.health-page section:nth-of-type(even) {
  background-color: var(--hp-bg-light);
}

/* Override specific section backgrounds if they have inline styles */
.health-page section.bg-light {
  background-color: var(--hp-bg-light) !important;
}
.health-page section[style*="background-color: #f0f6ea"],
.health-page section[style*="background-color:#f0f6ea"] {
  background-color: var(--hp-bg-soft) !important;
}
.health-page section[style*="background-color: #f8fff4"],
.health-page section[style*="background-color:#f8fff4"] {
  background-color: var(--hp-bg-light) !important;
}
.health-page section[style*="background: linear-gradient"] {
  background: linear-gradient(135deg, #e7f9e9, #f0fff4) !important;
}

/* Hero extras */
.health-page .hp-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  background: rgba(0, 60, 48, 0.08);
  color: var(--color-primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}
.health-page .hp-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
  align-items: center;
}
.health-page .hp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: #fff;
  border-radius: 40px;
  font-size: 0.9rem;
  color: var(--color-primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.health-page .hp-trust-badge i {
  color: var(--color-primary-hover);
}

/* Highlight card and lists for intro section */
.health-page .hp-highlight {
  background: linear-gradient(135deg, #ffffff 0%, #f3fbf7 100%);
}
.health-page .hp-list {
  margin: 0.75rem 0 0 0;
  padding: 0;
  list-style: none;
}
.health-page .hp-list li {
  position: relative;
  padding-left: 1.25rem;
  margin: 0.4rem 0;
  color: #334155;
}
.health-page .hp-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}
.health-page .hp-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.health-page .hp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.5rem 0;
  color: #334155;
}
.health-page .hp-checklist i {
  color: var(--color-primary);
}

/* Animations */
@keyframes hpFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-34px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes hpFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* Simple scroll reveal utility */
.aos {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.aos.aos-in {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 992px) {
  .health-page .health-hero {
    text-align: center;
  }
  .health-page .hp-section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }
}

@media (max-width: 768px) {
  .health-page .health-hero {
    padding: 2.5rem 0 2rem;
  }
  .health-page .health-hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
    margin-bottom: 1rem;
  }
  .health-page .health-hero p.lead-intro {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  .health-page .health-hero-img {
    margin-top: 1.5rem;
    width: 95%;
    border-radius: 0 0 0 30px !important;
  }
  .health-page .health-cta-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
  .health-page .hp-trust-badges {
    justify-content: center;
    margin-top: 1.25rem;
  }
  .health-page .hp-trust-badge {
    font-size: 0.85rem;
    padding: 0.45rem 0.75rem;
  }
  .health-page section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .health-page .hp-section-header {
    margin-bottom: 2rem;
  }
  .health-page .hp-section-header h2 {
    font-size: clamp(1.6rem, 5.5vw, 2rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d7a5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.75rem;
  }
  .health-page .hp-section-header h2::after {
    bottom: 0;
    width: 60px;
    height: 3px;
  }
  .health-page .hp-section-header p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .health-page .hp-card {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 18px;
  }
  .health-page .hp-card h5 {
    font-size: 1.15rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .health-page .hp-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
  }
  .health-page .hp-card:hover {
    transform: translateY(-6px);
  }
  .health-page .hp-icon-circle {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .health-page .hp-benefit-row {
    flex-direction: column;
    text-align: center;
    border-left-width: 0;
    border-top: 4px solid var(--color-primary);
    padding: 1.25rem 1rem;
    margin-bottom: 0.85rem;
  }
  .health-page .hp-benefit-row i {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
  }
  .health-page .hp-benefit-row h5 {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .health-page .hp-benefit-row p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 576px) {
  .health-page .health-hero {
    padding: 2rem 0 1.75rem;
  }
  .health-page .health-hero h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    line-height: 1.2;
    font-weight: 800;
  }
  .health-page .health-hero p.lead-intro {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .health-page .health-cta-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }
  .health-page .hp-trust-badges {
    gap: 0.5rem;
  }
  .health-page .hp-trust-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.65rem;
  }
  .health-page section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .health-page .hp-section-header {
    margin-bottom: 1.75rem;
  }
  .health-page .hp-section-header h2 {
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a5f48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    padding-bottom: 0.65rem;
  }
  .health-page .hp-section-header h2::after {
    bottom: 0;
    width: 50px;
    height: 3px;
  }
  .health-page .hp-section-header p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .health-page .hp-card {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    border: 1.5px solid #e8f5e9;
  }
  .health-page .hp-card h5 {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.65rem;
    line-height: 1.35;
    text-align: center;
  }
  .health-page .hp-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #444;
    text-align: center;
  }
  .health-page .hp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  .health-page .hp-icon-circle {
    width: 58px;
    height: 58px;
    font-size: 1.6rem;
    margin: 0 auto 0.85rem;
  }
  .health-page .hp-benefit-row {
    padding: 1.15rem 0.95rem;
    border-top-width: 3px;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  .health-page .hp-benefit-row i {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .health-page .hp-benefit-row h5 {
    font-size: 1.05rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  .health-page .hp-benefit-row p,
  .health-page .hp-benefit-row span {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #555;
  }
  .health-page .hp-benefit-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  .health-page .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
