/* ========================================
   Problem Page Styles
   ======================================== */

/* ========================================
   CRISIS SECTION
   ======================================== */
.crisis-section {
  background: #f3f4f6;
  color: var(--primary-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.crisis-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(220,38,38,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.15;
}

.crisis-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

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

.crisis-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: #dc2626;
  text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.crisis-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--secondary-gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ========================================
   STATS GRID
   ======================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.stat-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #f59e0b);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(220, 38, 38, 0.4);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #dc2626;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.stat-description {
  font-size: 0.95rem;
  color: var(--secondary-gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.stat-source {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-source a {
  font-size: 0.8rem;
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.stat-source a:hover {
  color: #dc2626;
  text-decoration: underline;
}

/* ========================================
   INFRASTRUCTURE GAP
   ======================================== */
.gap-section {
  padding: 6rem 0;
  background: var(--light-gray);
}

.gap-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.gap-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.gap-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--secondary-gray);
  margin-bottom: 1.25rem;
}

.gap-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gap-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gap-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.gap-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: var(--light-gray);
}

.gap-point h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary-dark);
}

.gap-point p {
  font-size: 0.95rem;
  color: var(--secondary-gray);
  line-height: 1.5;
  margin: 0;
}

.surveillance-subsection {
  margin-top: 2rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
}

.surveillance-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.surveillance-text p {
  font-size: 1.05rem;
  color: var(--secondary-gray);
  line-height: 1.7;
}

.surveillance-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.surveillance-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--secondary-gray);
  font-weight: 600;
  text-align: center;
}

.surveillance-cta {
  margin-top: 0.85rem;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   PROBLEM CTA
   ======================================== */
.problem-cta-section {
  padding: 5rem 0;
  background: #f8fafc;
  color: var(--primary-dark);
  text-align: center;
}

.problem-cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.problem-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.problem-cta-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--secondary-gray);
  margin-bottom: 2rem;
}

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

}

@media (max-width: 768px) {
  .crisis-section {
    padding: 4rem 0;
  }

  .crisis-container {
    padding: 0 1rem;
  }

  .crisis-header {
    margin-bottom: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .gap-section {
    padding: 4rem 0;
  }

  .gap-text h2 {
    font-size: 2rem;
  }

  .problem-cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .crisis-container {
    padding: 0 0.75rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }
}
