/* Values Section */
.values {
  background-color: var(--primary-dark);
  color: var(--light-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  top: -250px;
  left: -250px;
}

.values::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -200px;
  right: -200px;
}

.values .section-title {
  color: var(--light-color);
  margin-bottom: 60px;
}

.values .section-title::before {
  background-color: var(--secondary-color);
}

.values .section-title::after {
  background-color: var(--secondary-color);
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.value-item {
  text-align: center;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.value-item:hover {
  transform: translateY(-15px);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item i {
  font-size: 50px;
  color: var(--secondary-color);
  margin-bottom: 25px;
  transition: var(--transition);
  display: inline-block;
}

.value-item:hover i {
  transform: scale(1.2);
  animation: pulse 2s infinite;
}

.value-item h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: 700;
}

.value-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .values {
    padding: 80px 0;
  }
  
  .values-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}
