/* ===== SERVICES PAGE STYLES ===== */

/* Service Hero Section */
.service-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.service-hero__content {
  position: relative;
  z-index: 2;
}

.service-hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero__subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

/* Service Features Grid */
.service-features {
  padding: 80px 0;
  background: var(--bg-primary);
}

.service-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.service-feature {
  text-align: center;
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.service-feature:hover {
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
}

.service-feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.service-feature__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-feature__desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Service Process */
.service-process {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.service-process__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.process-step {
  position: relative;
  padding-left: 60px;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.process-step__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.process-step__desc {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Service CTA */
.service-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.service-cta__content {
  position: relative;
  z-index: 2;
}

.service-cta__title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}

.service-cta__desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-cta__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-hero {
    padding: 100px 0 60px;
  }
  
  .service-hero__title {
    font-size: 36px;
  }
  
  .service-hero__subtitle {
    font-size: 18px;
  }
  
  .service-features,
  .service-process {
    padding: 60px 0;
  }
  
  .service-features__grid,
  .service-process__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .service-cta {
    padding: 80px 0;
  }
  
  .service-cta__title {
    font-size: 32px;
  }
  
  .service-cta__desc {
    font-size: 18px;
  }
  
  .service-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-cta__buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .service-hero__title {
    font-size: 28px;
  }
  
  .service-feature {
    padding: 24px;
  }
  
  .process-step {
    padding-left: 50px;
  }
  
  .process-step::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
