.services {
  position: relative;
  width: 100%;
  padding: 8em 1.5em 12em 1.5em;
  background: var(--color-bg);
  display: flex;
  z-index: 1;
}

.services-col:nth-child(1) {
  flex: 2;
  position: relative;
  z-index: 1;
}

.services-col:nth-child(2) {
  flex: 4;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
  z-index: 1;
}

.services-row {
  position: relative;
  width: 85%;
  display: flex;
  gap: 1em;
  z-index: 1;
}

.service-item {
  position: relative;
  width: 100%;
  min-height: 200px;
  padding: 2.5em 2em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.5em;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 88, 65, 0.1) 0%, rgba(45, 138, 95, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 138, 95, 0.3);
  box-shadow: 0 20px 40px rgba(26, 88, 65, 0.15);
}

.service-item:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, rgba(26, 88, 65, 0.2) 0%, rgba(45, 138, 95, 0.2) 100%);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.service-item:hover .service-icon {
  background: linear-gradient(135deg, #0f3d2b 0%, #2d8a5f 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 16px rgba(26, 88, 65, 0.4);
}

.service-title {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  z-index: 1;
  pointer-events: none;
}

.service-title h4 {
  font-family: var(--font-secondary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-item:hover .service-title h4 {
  color: #2d8a5f;
}

.service-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.service-item:hover .service-desc {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .services {
    flex-direction: column;
    padding: 5em 1.5em 8em 1.5em;
  }

  .services-row {
    width: 100%;
    flex-direction: column;
  }

  .service-item {
    padding: 2em 1.5em;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .service-title h4 {
    font-size: 16px;
  }

  .service-desc {
    font-size: 12px;
  }
}
