/**
 * Verification Crisis Section Styles
 *
 * @package Meridian_Africa
 * @since 1.0.0
 */

/* ===========================
   VERIFICATION CRISIS SECTION
   =========================== */

.verification-crisis {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.verification-crisis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(46, 143, 51, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(249, 115, 22, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.crisis-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  animation: fadeInUp 0.8s ease;
}

.crisis-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid rgba(249, 115, 22, 0.2);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.crisis-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
}

.crisis-badge span {
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.crisis-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.crisis-header p {
  font-size: 17px;
  color: #333333;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

.crisis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.crisis-card {
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 20px;
  border-left: 6px solid;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease backwards;
}

.crisis-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.05;
  transition: all 0.4s ease;
}

.crisis-card-1 {
  border-left-color: #6366f1;
  animation-delay: 0.1s;
}

.crisis-card-1::before {
  background: #6366f1;
  top: -40px;
  right: -40px;
}

.crisis-card-2 {
  border-left-color: #ec4899;
  animation-delay: 0.2s;
}

.crisis-card-2::before {
  background: #ec4899;
  top: -40px;
  right: -40px;
}

.crisis-card-3 {
  border-left-color: #f59e0b;
  animation-delay: 0.3s;
}

.crisis-card-3::before {
  background: #f59e0b;
  top: -40px;
  right: -40px;
}

.crisis-card-4 {
  border-left-color: #10b981;
  animation-delay: 0.4s;
}

.crisis-card-4::before {
  background: #10b981;
  top: -40px;
  right: -40px;
}

.crisis-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.crisis-card:hover::before {
  opacity: 0.08;
  transform: scale(1.2);
}

.crisis-number {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.crisis-card-1 .crisis-number {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card-2 .crisis-number {
  background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card-3 .crisis-number {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card-4 .crisis-number {
  background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crisis-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.crisis-card p {
  font-size: 15px;
  color: #333333;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===========================
   ANIMATIONS
   =========================== */

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

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */

/* Tablet */
@media (max-width: 991px) {
  .verification-crisis {
    padding: 70px 0;
  }

  .crisis-header h2 {
    font-size: 38px;
  }

  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .verification-crisis {
    padding: 60px 0;
  }

  .crisis-header h2 {
    font-size: 32px;
  }

  .crisis-header p {
    font-size: 15px;
  }

  .crisis-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .crisis-card {
    padding: 32px 28px;
  }

  .crisis-number {
    font-size: 44px;
  }

  .crisis-card h3 {
    font-size: 19px;
  }

  .crisis-card p {
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .verification-crisis {
    padding: 40px 0;
  }

  .crisis-header h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .crisis-header p {
    font-size: 13px;
  }

  .crisis-badge {
    padding: 8px 18px;
  }

  .crisis-badge span {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .crisis-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .crisis-card {
    padding: 28px 24px;
  }

  .crisis-number {
    font-size: 38px;
  }

  .crisis-card h3 {
    font-size: 17px;
  }

  .crisis-card p {
    font-size: 13px;
  }
}

