/* Service Page Template Styles */
.service-hero {
  background: linear-gradient(135deg, #0f1422 0%, #121826 100%);
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.service-hero h1 {
  font-size: 3rem;
  margin: 0 0 1.5rem;
  color: #fff;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero p {
  font-size: 1.25rem;
  color: #8b97b1;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.section {
  padding: 5rem 2rem;
  position: relative;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  color: #8b5cf6;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-heading {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
  color: #fff;
}

.section-description {
  color: #8b97b1;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon.purple { background: rgba(139, 92, 246, 0.1); }
.feature-icon.blue { background: rgba(59, 130, 246, 0.1); }
.feature-icon.green { background: rgba(16, 185, 129, 0.1); }
.feature-icon.pink { background: rgba(236, 72, 153, 0.1); }

.feature-card h3 {
  color: #fff;
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: #8b97b1;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.process-step {
  background: linear-gradient(180deg, #121826 0%, #0f1422 100%);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
}

/* CTA Section */
.cta-box {
  background: linear-gradient(135deg, #0f1422 0%, #121826 100%);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin: 4rem 0;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-box h3 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: #fff;
}

.cta-box p {
  color: #8b97b1;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #2563eb 100%);
  color: white;
  border: none;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-hero h1 {
    font-size: 2.25rem;
  }
  
  .service-hero p {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
}
