/* ===== CYBERPUNK SERVICES SECTION ===== */
.services {
  padding: 120px 0;
  background: 
    radial-gradient(circle at 20% 30%, #0a0a0a 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(
      45deg,
      transparent 65%,
      rgba(0, 102, 255, 0.05) 100%
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 255, 204, 0.03) 0px,
      rgba(0, 255, 204, 0.03) 1px,
      transparent 1px,
      transparent 3px
    );
  z-index: 0;
}

.services h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 60px;
  color: transparent;
  background: linear-gradient(90deg, #00ffcc, #0066ff);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.services h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #0066ff, #00ffcc);
  margin: 15px auto 0;
  border-radius: 3px;
  box-shadow: 0 0 15px #0066ff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(20, 20, 40, 0.6);
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-left: 3px solid #0066ff;
  backdrop-filter: blur(5px);
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 0 15px rgba(0, 102, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-left: 3px solid #00ffcc;
  box-shadow: 
    0 15px 30px rgba(0, 102, 255, 0.2),
    inset 0 0 20px rgba(0, 255, 204, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: #00ffcc;
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

.service-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.service-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #0066ff;
  transition: all 0.4s ease;
}

.service-card:hover h3::after {
  width: 80px;
  background: #00ffcc;
}

.service-card p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.7;
}

.highlight {
  color: #00ffcc;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 255, 204, 0.3);
}

@media (max-width: 768px) {
  .services {
    padding: 80px 0;
  }
  
  .services h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
}