/* Statistics Styles */
.statistics {
  margin-bottom: 35px;
}

.stats-title {
  margin-bottom: 25px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: var(--border-gradient-onyx);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  position: relative;
  z-index: 1;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

.stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(10deg);
}

.stat-card:hover::after {
  left: 100%;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  transition: all 0.3s ease;
}

/* Her kart farklı renk */
.stat-card-1 .stat-icon {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  box-shadow: 0 8px 20px rgba(255, 210, 0, 0.35);
}
.stat-card-2 .stat-icon {
  background: linear-gradient(135deg, #11998e, #38ef7d);
  box-shadow: 0 8px 20px rgba(56, 239, 125, 0.3);
}
.stat-card-3 .stat-icon {
  background: linear-gradient(135deg, #4776e6, #8e54e9);
  box-shadow: 0 8px 20px rgba(142, 84, 233, 0.3);
}
.stat-card-4 .stat-icon {
  background: linear-gradient(135deg, #f953c6, #b91d73);
  box-shadow: 0 8px 20px rgba(249, 83, 198, 0.3);
}

.stat-card-1 .stat-number, .stat-card-1 .stat-suffix { color: #ffd200; }
.stat-card-2 .stat-number, .stat-card-2 .stat-suffix { color: #38ef7d; }
.stat-card-3 .stat-number, .stat-card-3 .stat-suffix { color: #8e54e9; }
.stat-card-4 .stat-number, .stat-card-4 .stat-suffix { color: #f953c6; }

.stat-card-1:hover { box-shadow: 0 15px 40px rgba(255, 210, 0, 0.25); }
.stat-card-2:hover { box-shadow: 0 15px 40px rgba(56, 239, 125, 0.2); }
.stat-card-3:hover { box-shadow: 0 15px 40px rgba(142, 84, 233, 0.2); }
.stat-card-4:hover { box-shadow: 0 15px 40px rgba(249, 83, 198, 0.2); }

.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: var(--fw-600);
  color: var(--orange-yellow-crayola);
  line-height: 1;
  display: inline-block;
  min-width: 60px;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: var(--fw-600);
  color: var(--orange-yellow-crayola);
  margin-left: 2px;
}

.stat-label {
  color: #e8e8e8;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
  white-space: normal;
}

/* Animation for counting */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number.animate {
  animation: countUp 0.6s ease;
}

/* Responsive */
@media (min-width: 580px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stat-card {
    padding: 35px 25px;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-suffix {
    font-size: 2.2rem;
  }
}

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

@media (min-width: 1024px) {
  .stat-card {
    padding: 40px 30px;
  }
  
  .stat-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin-bottom: 25px;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .stat-suffix {
    font-size: 2.5rem;
  }
}