.kef-stats-section,
.kef-stats-section * {
  box-sizing: border-box;
}

.kef-stats-section {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  padding: 80px 20px;
  background: #f8fbf9;
  direction: rtl;
}

.kef-stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.kef-stats-header h2 {
  font-size: 34px;
  color: #1b4332;
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.35;
}

.kef-stats-line {
  width: 60px;
  height: 4px;
  background: #2d6a4f;
  margin: auto;
  border-radius: 2px;
}

.kef-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.kef-stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.kef-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.kef-stat-icon {
  width: 65px;
  height: 65px;
  background: #ecf7f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.kef-stat-icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: invert(20%) sepia(30%) saturate(1200%) hue-rotate(110deg);
}

.kef-stat-number {
  font-size: 36px;
  line-height: 1.2;
  color: #2d6a4f;
  font-weight: 800;
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
}

.kef-stat-text {
  margin-top: 10px;
  font-size: 15px;
  color: #52796f;
  font-weight: 600;
}

@media (max-width: 767px) {
  .kef-stats-section {
    padding: 55px 14px;
  }
  .kef-stats-header {
    margin-bottom: 35px;
  }
  .kef-stats-header h2 {
    font-size: 28px;
  }
  .kef-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .kef-stat-card {
    padding: 24px 10px;
    border-radius: 15px;
  }
  .kef-stat-number {
    font-size: 29px;
  }
  .kef-stat-text {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .kef-stats-grid {
    grid-template-columns: 1fr;
  }
}
