/* ===== CYBERPUNK SERVICES SECTION ===== */
#services {
  position: relative;
  min-height: 100vh;
  padding: 5rem 0;
  background: radial-gradient(ellipse at center, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
  overflow: hidden;
}

/* Section Header */
.services-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.services-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.services-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.services-subtitle {
  color: var(--text-body);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(18, 18, 26, 0.6);
  border: 1px solid rgba(125, 61, 255, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-primary);
  box-shadow: 0 10px 25px rgba(125, 61, 255, 0.15);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(125, 61, 255, 0.1);
  border: 1px solid rgba(125, 61, 255, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--neon-primary) !important;
  color: var(--bg-dark) !important;
  transform: rotate(5deg) scale(1.1);
}

.service-card h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.service-card p {
  color: var(--text-body);
  opacity: 0.8;
  line-height: 1.6;
}

/* Icon Colors */
.service-card:nth-child(1) .service-icon {
  color: var(--accent-cyan);
  border-color: rgba(0, 229, 255, 0.3);
  background: rgba(0, 229, 255, 0.1);
}

.service-card:nth-child(2) .service-icon {
  color: var(--accent-pink);
  border-color: rgba(255, 61, 125, 0.3);
  background: rgba(255, 61, 125, 0.1);
}

.service-card:nth-child(3) .service-icon {
  color: var(--accent-yellow);
  border-color: rgba(255, 230, 0, 0.3);
  background: rgba(255, 230, 0, 0.1);
}

.service-card:nth-child(4) .service-icon {
  color: var(--accent-green);
  border-color: rgba(0, 255, 157, 0.3);
  background: rgba(0, 255, 157, 0.1);
}

.services-extra-text {
  text-align: center;
    max-width: 850px;
    margin: 80px auto 0;
    padding: 50px 25px;
    background: linear-gradient(145deg, rgb(20 20 35 / 33%), rgb(10 10 25 / 20%));
    border-radius: 20px;
    box-shadow: 0 0 40px rgb(120 80 255 / 8%);
    transition: all 0.3s ease;
}

.services-extra-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(140, 90, 255, 0.25);
}

.services-extra-text h3 {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(90deg, #8b5cf6 0%, #00bcd4 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px rgba(96, 165, 250, 0.3);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.services-extra-text p {
  font-size: 1.1rem;
  color: #cfd6ff;
  line-height: 1.8;
}

.services-extra-text p strong {
  color: #fff;
  font-weight: 700;
}

.services-extra-text .highlight {
  color: #00e5ff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.35);
}


/* Background Elements */
.services-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
  background: 
    linear-gradient(rgba(125, 61, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 61, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .services-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  #services {
    padding: 3rem 0;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}