/* Services Grid Layout - Modern Clean Design */

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-category {
  margin-bottom: 80px;
}

.category-header {
  text-align: center;
  margin-bottom: 50px;
}

.category-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.category-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
}

.service-item {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

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

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  transform: scale(1.1);
}

.service-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-type {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.service-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-container {
    padding: 0 15px;
  }
  
  .service-category {
    margin-bottom: 60px;
  }
  
  .category-header {
    margin-bottom: 40px;
  }
  
  .category-header h3 {
    font-size: 2rem;
  }
  
  .category-header p {
    font-size: 1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .service-item {
    padding: 20px;
    gap: 15px;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .service-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .category-header h3 {
    font-size: 1.75rem;
  }
  
  .service-item {
    padding: 18px;
    gap: 12px;
  }
  
  .service-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }
}

/* Clean grid layout for larger screens */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}