/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  background: url('../IMG/background.png') center / cover no-repeat;
  overflow-x: hidden;
  overflow-y: auto;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(2px);
  z-index: 0;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  display: grid;
  grid-template-columns: 1fr; /* ← was 1fr 1fr */
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-left {
  text-align: left;
}

.hero-title {
  font-size: 67px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f2933;
  margin: 0 0 24px 0;
}

.highlight {
  color: #1f7a63;
}

.hero-description {
  margin: 24px 0 40px;
  color: #4b5563;
  font-size: 22px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background: #1f7a63;
  color: #ffffff;
}

.btn-primary:hover {
  background: #165a48;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #1f7a63;
  color: #1f7a63;
}

.btn-secondary:hover {
  background: #1f7a63;
  color: #ffffff;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px);
}

.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 34px;
  font-weight: 700;
  color: #1f7a63;
  margin: 0 0 8px 0;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.hero-right {
  min-height: 75px;
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px 40px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .cta-buttons {
    justify-content: center;
  }

  .stats {
    justify-content: center;
  }

  .stat-item {
    text-align: center;
  }

  .hero-right {
    display: none;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stats {
    flex-direction: row !important;
    justify-content: center;
    gap: 20px;
  }
}