/* Secțiunea Servicii */
.services {
  padding: 60px 20px;
  text-align: center;
  background-color: #111;
  color: #fff;
  font-family: 'Nunito', sans-serif;
}

.services.visible {
  opacity: 1; /* Devine vizibilă când este în viewport */
  transform: translateY(0); /* Se mută în poziția finală */
}

.services h2 {
  font-size: 2rem;
  color: #ff6600;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #ff6600;
  padding-bottom: 10px;
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services li {
  margin: 20px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 500;
  color: #ccc;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.services li i {
  font-size: 1.5rem;
  color: #ff6600;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Efect hover pe iconuri (mai subtil) */
.services li:hover i {
  transform: scale(1.05); /* Mai subtil decât înainte */
  color: #fff;
}

/* Efect hover pe elemente de listă (mai subtile) */
.services li:hover {
  color: #ff6600;
  background-color: #222; /* Folosim o nuanță mai închisă */
  border-radius: 5px;
  padding: 12px; /* Nu mai e atât de agresiv */
}

/* Responsivitate */
@media (max-width: 768px) {
  .services {
    padding: 40px 20px;
  }

  .services h2 {
    font-size: 1.7rem;
  }

  .services li {
    font-size: 1rem;
    margin: 15px 0;
  }

  .services li i {
    font-size: 1.3rem;
  }
}
