/* Why Choose Us Section Styles */
.why-choose-us-section {
  padding: 5rem 1rem;
  color: white;
  background: linear-gradient(135deg, #1A1A2E 0%, #4A1060 50%, #2D1B00 100%);
}

@media (min-width: 640px) {
  .why-choose-us-section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .why-choose-us-section {
    padding: 5rem 2rem;
  }
}

/* Stats Grid */
.stats-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: opacity 0.2s ease;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
  opacity: 0.9;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #8B2FC9, #E91E8C, #F5A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: white;
  opacity: 0.8;
}

/* Features Section */
.features-section {
  margin-top: 4rem;
}

.features-section .section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #8B2FC9, #E91E8C, #F5A623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-section .section-subtitle {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  transform: scale(1);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: scale(1.02);
  border-color: rgba(245, 166, 35, 0.4);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #F5A623;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: white;
  opacity: 0.7;
  line-height: 1.625;
}

/* Trust Badge */
.trust-badge {
  margin-top: 4rem;
  text-align: center;
  border-radius: 0.75rem;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-text {
  color: white;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.trust-subtext {
  font-size: 0.875rem;
  color: white;
  opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .features-section .section-title {
    font-size: 2rem;
  }
  
  .features-section .section-subtitle {
    font-size: 1.125rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}
