/* ================================================
   TRAVEL HEALTH LANDING PAGE — travel-health.css
   Uses homepage CSS variables & design system
   ================================================ */

/* ========== HERO ========== */
.th-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 100px;
}

.th-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.th-hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.th-hero-orb-1 { width: 600px; height: 600px; top: -200px; right: -120px; }
.th-hero-orb-2 { width: 500px; height: 500px; bottom: -180px; left: -160px; }

.th-hero-container { position: relative; z-index: 2; }

.th-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.th-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(250, 204, 21, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #facc15;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(250, 204, 21, 0.45);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.th-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.th-hero-title .gradient-text {
  display: inline;
}

.th-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.th-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.th-btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.th-hero-ctas .btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.th-btn-outline-hero {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.th-btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.th-trust-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1s both;
}

.th-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
}

.th-trust-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.th-hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.th-hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Hero Badge — Premium glassmorphism */
.th-hero-badge-premium {
  position: absolute;
  bottom: -24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  animation: fadeInUp 0.8s ease 1s both;
}

.th-badge-icon-wrap {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.th-badge-text {
  display: flex;
  flex-direction: column;
}

.th-badge-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.th-badge-sublabel {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  margin-top: 2px;
}

/* ========== STATS — Dark Premium ========== */
.th-stats-section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 72px 0;
}

.th-stats-bg-dark {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.th-stats-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.th-stats-orb-1 { width: 400px; height: 400px; top: -160px; right: -80px; }
.th-stats-orb-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }

.th-stats-container-dark { position: relative; z-index: 2; }

.th-stats-grid-dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.th-stat-card-dark {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

.th-stat-card-dark.th-revealed {
  opacity: 1;
  transform: translateY(0);
}

.th-stat-card-dark:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.th-stat-number-dark {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.th-stat-label-dark {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.th-stat-desc-dark {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.th-stat-card-dark:nth-child(1) { transition-delay: 0s; }
.th-stat-card-dark:nth-child(2) { transition-delay: 0.1s; }
.th-stat-card-dark:nth-child(3) { transition-delay: 0.2s; }
.th-stat-card-dark:nth-child(4) { transition-delay: 0.3s; }

/* ========== WHY CHOOSE — Premium 3-col ========== */
.th-why-section {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%);
  position: relative;
  overflow: hidden;
}

.th-why-section .section-title {
  text-align: center;
}

/* Keep the fade effect on the "travel clinic?" heading span but use
   darker brand blues so it stays legible on this section's light
   background. The default .gradient-text (white → #bfdbfe) is
   designed for dark section backgrounds and becomes invisible
   here. Same override pattern used on .services-section and
   .locations-section on the homepage. */
.th-why-section .gradient-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 40%, var(--light-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.th-why-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.th-why-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(10, 47, 138, 0.1);
  box-shadow: 0 4px 24px rgba(10, 47, 138, 0.06);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(24px);
}

.th-why-card.th-revealed {
  opacity: 1;
  transform: translateY(0);
}

.th-why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(10, 47, 138, 0.16);
  border-color: rgba(10, 47, 138, 0.2);
}

.th-why-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.th-why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.th-why-card:hover .th-why-card-image img {
  transform: scale(1.06);
}

.th-why-card-body {
  padding: 28px 28px 32px;
  position: relative;
}

.th-why-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.th-why-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.th-why-card-body p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.th-why-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(10, 47, 138, 0.2);
  background: rgba(10, 47, 138, 0.04);
}

.th-why-card-link:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
  transform: translateX(4px);
}

.th-why-card-link svg {
  transition: transform 0.3s;
}

.th-why-card-link:hover svg {
  transform: translateX(3px);
}

.th-why-card:nth-child(1) { transition-delay: 0s; }
.th-why-card:nth-child(2) { transition-delay: 0.12s; }
.th-why-card:nth-child(3) { transition-delay: 0.24s; }

/* ========== DESTINATIONS GRID OVERRIDE (4-col on page) ========== */
.th-dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.th-dest-note {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.th-dest-note a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.th-dest-note a:hover { opacity: 0.9; }

/* ========== SERVICES GRID ========== */
.th-services-section {
  padding: 80px 0;
  /* Same jewel-tone drift used on .th-vaccines-section so both
     adjacent dark sections share a coherent rich backdrop. Card
     size and grid differ (3-col here, 4-col on vaccines) which
     provides enough natural visual separation. */
  background: linear-gradient(135deg, #0A2F8A 0%, #1E3A8A 30%, #312E81 65%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}

.th-services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(90, 127, 196, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(90, 127, 196, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.th-services-section .container { position: relative; z-index: 1; }

.th-services-section .section-title { color: var(--white); }
.th-services-section .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.th-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.th-service-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
}

.th-service-card.th-revealed {
  opacity: 1;
  transform: translateY(0);
}

.th-service-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.th-service-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s;
}

.th-service-card:hover .th-service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.th-service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.th-service-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ============================================
   CATEGORY-CODED SERVICE ICONS
   Same pattern as the vaccines section but with a smaller 3-colour
   palette. Each .th-service-card has a data-category attribute
   that maps to two CSS custom properties: --svc-accent (R,G,B
   triplet for rgba mixing) and --svc-icon-color (solid stroke
   colour). A shared icon rule consumes both so hover states work
   from a single rule set.
   Palette choices:
     clinical — sky blue (NEW, not in vaccines palette — gives the
       services section its own identity)
     supply   — amber (echoes vaccines "viral" palette — creates
       cohesion with the vaccines grid below)
     advice   — soft violet (echoes vaccines "meningo" palette —
       same cohesion reason)
   ============================================ */
.th-service-card[data-category="clinical"] { --svc-accent: 56, 189, 248;  --svc-icon-color: #7DD3FC; }  /* sky     — administered treatments (Vaccinations, Malaria Prevention) */
.th-service-card[data-category="supply"]   { --svc-accent: 245, 158, 11;  --svc-icon-color: #FCD34D; }  /* amber   — physical takeaways (Travel Health Kits, Official Certificates) */
.th-service-card[data-category="advice"]   { --svc-accent: 139, 92, 246;  --svc-icon-color: #C4B5FD; }  /* violet  — knowledge / information (Pre-Travel Advice, Post-Travel Follow-Up) */

.th-service-card[data-category] .th-service-icon {
  background: rgba(var(--svc-accent), 0.14);
  border-color: rgba(var(--svc-accent), 0.35);
  color: var(--svc-icon-color);
}
.th-service-card[data-category]:hover .th-service-icon {
  background: rgba(var(--svc-accent), 0.22);
  border-color: rgba(var(--svc-accent), 0.55);
  box-shadow: 0 8px 24px rgba(var(--svc-accent), 0.2);
}

/* ========== VACCINES GRID ========== */
.th-vaccines-section {
  position: relative;
  overflow: hidden;
  /* Jewel-tone multi-stop gradient — same navy entry point as other
     dark sections on the page, then drifts through deep indigo and
     violet into near-midnight. Adds "considered depth" without
     introducing a new dominant colour. */
  background: linear-gradient(135deg, #0A2F8A 0%, #1E3A8A 30%, #312E81 65%, #0F172A 100%);
  padding: 100px 0 80px;
}

.th-vaccines-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.th-vaccines-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.th-vaccines-orb-1 { width: 500px; height: 500px; top: -160px; left: -140px; }
.th-vaccines-orb-2 { width: 600px; height: 600px; bottom: -200px; right: -120px; }

.th-vaccines-container { position: relative; z-index: 2; }

.th-vaccine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.th-vaccine-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
}

.th-vaccine-card.th-revealed {
  opacity: 1;
  transform: translateY(0);
}

.th-vaccine-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.th-vaccine-featured {
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(250, 204, 21, 0.08);
}

.th-vaccine-featured:hover {
  border-color: rgba(250, 204, 21, 0.6);
  background: rgba(250, 204, 21, 0.14);
}

.th-vaccine-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #facc15, #eab308);
  color: #1a1a1a;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.th-vaccine-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
}

.th-vaccine-card:hover .th-vaccine-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(255, 255, 255, 0.25);
}

.th-vaccine-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ============================================
   CATEGORY-CODED VACCINE ICONS
   Each .th-vaccine-card has a data-category attribute that maps
   to one of five accent colours. The category rule sets two CSS
   custom properties (--vax-accent as R,G,B for rgba() mixing, and
   --vax-icon-color as the solid stroke colour for the SVG). The
   shared icon rule below then consumes both via var() so hover
   states work with a single rule set.
   Light variants are used for the SVG stroke so they stay legible
   on the dark jewel-tone section background (WCAG AA).
   ============================================ */
.th-vaccine-card[data-category="viral"]     { --vax-accent: 245, 158, 11;  --vax-icon-color: #FCD34D; }  /* amber   — flavivirus/neurological (Yellow Fever, JE, Rabies, TBE) */
.th-vaccine-card[data-category="hepatic"]   { --vax-accent: 16, 185, 129;  --vax-icon-color: #6EE7B7; }  /* jade    — liver-targeting (Hep A, Hep B) */
.th-vaccine-card[data-category="bacterial"] { --vax-accent: 244, 63, 94;   --vax-icon-color: #FDA4AF; }  /* coral   — bacterial enteric (Typhoid, Cholera) */
.th-vaccine-card[data-category="meningo"]   { --vax-accent: 139, 92, 246;  --vax-icon-color: #C4B5FD; }  /* violet  — meningeal/respiratory (Meningitis, BCG, MMR) */
.th-vaccine-card[data-category="booster"]   { --vax-accent: 20, 184, 166;  --vax-icon-color: #5EEAD4; }  /* teal    — combined boosters (DTP) */

.th-vaccine-card[data-category] .th-vaccine-icon {
  background: rgba(var(--vax-accent), 0.14);
  border-color: rgba(var(--vax-accent), 0.35);
  color: var(--vax-icon-color);
}
.th-vaccine-card[data-category]:hover .th-vaccine-icon {
  background: rgba(var(--vax-accent), 0.22);
  border-color: rgba(var(--vax-accent), 0.55);
}

.th-vaccine-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* ========== STEP META ========== */
.th-step-meta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* ========== TRUST / ABOUT ========== */
.th-trust-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%);
  position: relative;
  overflow: hidden;
}

.th-trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.th-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.th-trust-title {
  text-align: left !important;
  margin-bottom: 24px !important;
}

.th-trust-intro {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.th-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.th-feature-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10, 47, 138, 0.1);
  box-shadow: 0 2px 12px rgba(10, 47, 138, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-20px);
}

.th-feature-card.th-revealed {
  opacity: 1;
  transform: translateX(0);
}

.th-feature-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(10, 47, 138, 0.12);
  border-color: var(--primary-blue);
}

.th-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(10, 47, 138, 0.1), rgba(10, 47, 138, 0.04));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  border: 1px solid rgba(10, 47, 138, 0.15);
  transition: all 0.4s;
}

.th-feature-card:hover .th-feature-icon {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
  border-color: var(--primary-blue);
}

.th-feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.th-feature-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.th-trust-visual {
  position: relative;
}

.th-trust-visual > img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(10, 47, 138, 0.15);
  border: 1px solid rgba(10, 47, 138, 0.12);
  object-fit: cover;
  max-height: 720px;
}

.th-trust-float-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(10, 47, 138, 0.2);
  border: 1px solid rgba(10, 47, 138, 0.12);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 15px;
}

.th-trust-float-badge svg { color: var(--primary-blue); flex-shrink: 0; }

/* ========== LOCATION EXTRAS ========== */
.th-location-services {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 8px;
}

.th-location-services strong {
  color: var(--primary-blue);
}

.th-location-area {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ========== FAQ ========== */
.th-faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%);
}

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

.th-faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10, 47, 138, 0.12);
  box-shadow: 0 2px 12px rgba(10, 47, 138, 0.04);
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(10px);
}

.th-faq-item.th-revealed {
  opacity: 1;
  transform: translateY(0);
}

.th-faq-item:hover {
  border-color: rgba(10, 47, 138, 0.2);
  box-shadow: 0 4px 20px rgba(10, 47, 138, 0.08);
}

.th-faq-item.is-open {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 32px rgba(10, 47, 138, 0.12);
}

.th-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  gap: 16px;
  transition: color 0.3s;
}

.th-faq-trigger:hover,
.th-faq-item.is-open .th-faq-trigger {
  color: var(--primary-blue);
}

.th-faq-chevron {
  flex-shrink: 0;
  color: var(--text-gray);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
}

.th-faq-item.is-open .th-faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.th-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.th-faq-item.is-open .th-faq-content {
  max-height: 400px;
}

.th-faq-content p {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ========== FOOTER CTA BLOCK (merged CTA + Newsletter) ========== */
.th-footer-cta-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 72px;
}

.th-footer-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.th-footer-cta-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.th-footer-cta-orb-1 { width: 500px; height: 500px; top: -180px; right: -120px; }
.th-footer-cta-orb-2 { width: 400px; height: 400px; bottom: -140px; left: -100px; }

.th-footer-cta-inner {
  position: relative;
  z-index: 2;
}

.th-footer-cta-top {
  text-align: center;
  padding-bottom: 56px;
}

.th-footer-cta-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.th-footer-cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.th-footer-cta-top .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Primary CTA button */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border: 2px solid transparent;
}

.btn-cta-primary:hover {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Ghost secondary button */
.btn-cta-secondary-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: -0.01em;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-secondary-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

/* Divider between CTA top and newsletter */
.th-footer-cta-divider {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 56px;
}

/* Newsletter row */
.th-footer-newsletter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.th-footer-newsletter-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.th-footer-newsletter-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.th-footer-newsletter-form .newsletter-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  gap: 10px;
  transition: border-color 0.3s;
}

.th-footer-newsletter-form .newsletter-input-wrapper:focus-within {
  border-color: rgba(255, 255, 255, 0.55);
}

.th-footer-newsletter-form .newsletter-icon {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.th-footer-newsletter-form .newsletter-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}

.th-footer-newsletter-form .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.th-footer-newsletter-form .newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
}

.th-footer-newsletter-form .newsletter-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive overrides for footer CTA block */
@media (max-width: 768px) {
  .th-footer-cta-block {
    padding: 56px 0 52px;
  }

  .th-footer-cta-title {
    font-size: 30px;
  }

  .th-footer-cta-sub {
    font-size: 16px;
  }

  .th-footer-cta-top .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta-primary,
  .btn-cta-secondary-ghost {
    width: 100%;
    justify-content: center;
  }

  .th-footer-newsletter-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ========== CTA EXTRAS ========== */
.th-cta-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.th-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.th-cta-checks {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.th-cta-checks span {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ========== SCROLL REVEAL STAGGERING ========== */

.th-service-card:nth-child(1) { transition-delay: 0s; }
.th-service-card:nth-child(2) { transition-delay: 0.1s; }
.th-service-card:nth-child(3) { transition-delay: 0.2s; }
.th-service-card:nth-child(4) { transition-delay: 0.3s; }
.th-service-card:nth-child(5) { transition-delay: 0.4s; }

.th-vaccine-card:nth-child(1) { transition-delay: 0s; }
.th-vaccine-card:nth-child(2) { transition-delay: 0.05s; }
.th-vaccine-card:nth-child(3) { transition-delay: 0.1s; }
.th-vaccine-card:nth-child(4) { transition-delay: 0.15s; }
.th-vaccine-card:nth-child(5) { transition-delay: 0.2s; }
.th-vaccine-card:nth-child(6) { transition-delay: 0.25s; }
.th-vaccine-card:nth-child(7) { transition-delay: 0.3s; }
.th-vaccine-card:nth-child(8) { transition-delay: 0.35s; }
.th-vaccine-card:nth-child(9) { transition-delay: 0.4s; }
.th-vaccine-card:nth-child(10) { transition-delay: 0.45s; }
.th-vaccine-card:nth-child(11) { transition-delay: 0.5s; }
.th-vaccine-card:nth-child(12) { transition-delay: 0.55s; }

.th-feature-card:nth-child(1) { transition-delay: 0s; }
.th-feature-card:nth-child(2) { transition-delay: 0.1s; }
.th-feature-card:nth-child(3) { transition-delay: 0.2s; }
.th-feature-card:nth-child(4) { transition-delay: 0.3s; }

.th-faq-item:nth-child(1) { transition-delay: 0s; }
.th-faq-item:nth-child(2) { transition-delay: 0.05s; }
.th-faq-item:nth-child(3) { transition-delay: 0.1s; }
.th-faq-item:nth-child(4) { transition-delay: 0.15s; }
.th-faq-item:nth-child(5) { transition-delay: 0.2s; }
.th-faq-item:nth-child(6) { transition-delay: 0.25s; }
.th-faq-item:nth-child(7) { transition-delay: 0.3s; }
.th-faq-item:nth-child(8) { transition-delay: 0.35s; }

/* Reveal transition */
.th-stat-card-dark,
.th-why-card,
.th-service-card,
.th-vaccine-card,
.th-feature-card,
.th-faq-item {
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .th-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .th-hero-title { font-size: 42px; }

  .th-stats-grid-dark {
    grid-template-columns: repeat(2, 1fr);
  }

  .th-why-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .th-dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .th-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .th-vaccine-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .th-trust-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .th-trust-title { text-align: center !important; }
  .th-eyebrow { text-align: center; }
  .th-trust-intro { text-align: center; }
  .th-trust-content .btn-primary { display: block; text-align: center; }
}

@media (max-width: 768px) {
  .th-hero {
    padding: 48px 0 60px;
  }

  .th-hero-title {
    font-size: 32px;
  }

  .th-hero-subtitle {
    font-size: 16px;
  }

  .th-hero-ctas {
    flex-direction: column;
  }

  .th-btn-lg {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .th-trust-strip {
    flex-direction: column;
    gap: 12px;
  }

  .th-stats-grid-dark {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .th-stat-card-dark {
    padding: 24px 16px;
  }

  .th-stat-number-dark {
    font-size: 28px;
  }

  .th-why-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .th-dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .th-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .th-vaccine-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .th-vaccine-card {
    padding: 20px 16px;
  }

  .th-vaccine-card h4 {
    font-size: 13px;
  }

  .th-feature-card {
    flex-direction: column;
    gap: 12px;
  }

  .th-trust-float-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 13px;
    padding: 16px;
  }

  .th-cta-badges {
    flex-direction: column;
    align-items: center;
  }

  .th-cta-checks {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .th-hero-badge-premium {
    left: 12px;
    bottom: -16px;
    padding: 10px 16px;
    gap: 10px;
  }

  .th-badge-icon-wrap {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .th-badge-label { font-size: 13px; }
  .th-badge-sublabel { font-size: 11px; }
}
