/* ============================================
   PRICING HERO - VISIBILITY FIX
   Ensure all text, icons, and email are visible (white color)
   ============================================ */

/* ============================================
   1. HERO SECTION - WHITE TEXT
   ============================================ */

.pricing-hero-new {
  background: linear-gradient(180deg, #1E3A8A 0%, #2563EB 50%, #3B82F6 100%) !important;
  color: #FFFFFF !important;
}

.pricing-hero-content-new {
  color: #FFFFFF !important;
}

/* ============================================
   2. HERO BADGE - WHITE TEXT & ICON
   ============================================ */

.pricing-hero-badge {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.pricing-hero-badge span {
  color: #FFFFFF !important;
}

.pricing-hero-badge i {
  color: #FFFFFF !important;
}

/* ============================================
   3. HERO TITLE - WHITE TEXT
   ============================================ */

.pricing-hero-title-new {
  color: #FFFFFF !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

.pricing-hero-title-new .pricing-gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  text-shadow: none !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
}

/* Alternative: If gradient doesn't work well, use white */
.pricing-hero-title-new .pricing-gradient-text {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  background: none !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   4. HERO SUBTITLE - WHITE TEXT
   ============================================ */

.pricing-hero-subtitle-new {
  color: #FFFFFF !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
  opacity: 0.95 !important;
}

/* ============================================
   5. HERO CTA - WHITE ICON & TEXT
   ============================================ */

.pricing-hero-cta-new {
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.pricing-hero-cta-new span {
  color: #FFFFFF !important;
}

.pricing-hero-cta-new i {
  color: #FFFFFF !important;
}

.pricing-hero-cta-new:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: #FFFFFF !important;
}

/* ============================================
   6. EMAIL ICON - WHITE COLOR
   ============================================ */

/* Email icon in buttons - ensure white */
.btn-view-details i.fa-envelope,
.pricing-actions .btn-view-details i.fa-envelope,
.pricing-actions a i.fa-envelope,
.pricing-actions a.btn-view-details i.fa-envelope,
.pricing-card-modern .btn-view-details i.fa-envelope,
.pricing-card-modern a i.fa-envelope {
  color: #FFFFFF !important;
}

/* Email icon in cards */
.pricing-card-modern .fa-envelope,
.pricing-card-modern i.fa-envelope {
  color: #FFFFFF !important;
}

/* All icons in view details button should be white */
.pricing-actions .btn-view-details i,
.pricing-actions a.btn-view-details i {
  color: #FFFFFF !important;
}

/* ============================================
   7. ALL ICONS - WHITE IN HERO
   ============================================ */

.pricing-hero-new i,
.pricing-hero-content-new i,
.pricing-hero-badge i,
.pricing-hero-cta-new i {
  color: #FFFFFF !important;
}

/* ============================================
   8. LAO TEXT SUPPORT - ENSURE VISIBILITY
   ============================================ */

.lang-lao .pricing-hero-title-new,
.lang-lao .pricing-hero-subtitle-new,
.lang-lao .pricing-hero-badge,
.lang-lao .pricing-hero-cta-new {
  color: #FFFFFF !important;
  font-family: 'Noto Sans Lao', 'Phetsarath OT', 'Saysettha OT', sans-serif !important;
}

.lang-lao .pricing-hero-title-new {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.lang-lao .pricing-hero-subtitle-new {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
}

/* ============================================
   9. OVERRIDE DARK COLORS
   ============================================ */

/* Override any dark colors from other CSS files */
.pricing-hero-new * {
  color: inherit !important;
}

.pricing-hero-content-new * {
  color: inherit !important;
}

/* Specific overrides for text elements */
.pricing-hero-title-new,
.pricing-hero-subtitle-new,
.pricing-hero-badge,
.pricing-hero-cta-new {
  color: #FFFFFF !important;
}

/* ============================================
   10. MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .pricing-hero-title-new {
    color: #FFFFFF !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
  }
  
  .pricing-hero-subtitle-new {
    color: #FFFFFF !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important;
  }
  
  .pricing-hero-badge,
  .pricing-hero-cta-new {
    color: #FFFFFF !important;
  }
  
  .pricing-hero-badge i,
  .pricing-hero-cta-new i {
    color: #FFFFFF !important;
  }
}

