/* Stats Sections – Matching Template */

/* Hero Stats (appears in hero section) */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* now 4 items */
  gap: 20px;
  margin-top: 30px;
}

.hero-stats .stat-item {
  text-align: center;
  background: #1a5c3a;
  padding: 15px 10px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.hero-stats .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9a944; /* gold */
  display: block;
  line-height: 1.2;
}

.hero-stats .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Bottom Stats Section (green background) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: linear-gradient(135deg, #1a5c3a 0%, #0d3d26 100%);
  padding: 60px 20px;
  color: #ffffff;
  border-radius: 10px; /* optional, if you want rounded corners */
  margin: 40px 0;
}

.stats-item {
  text-align: center;
}

.stats-item i {
  font-size: 3rem;
  color: #c9a944; /* gold */
  margin-bottom: 15px;
}

.stats-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
  margin-bottom: 5px;
}

.stats-item .label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stats-item .number {
    font-size: 2.5rem;
  }
}