/* assets/css/services.css */

.services-hero {
  background: linear-gradient(135deg, rgba(0,102,255,0.9), rgba(0,212,255,0.8)), url('../img/services-bg.jpg') center/cover;
  padding: 180px 0 120px;
  text-align: center;
  color: white;
}

.services-list {
  background: #f8f9ff;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-item.reverse {
  grid-template-columns: 1fr 100px;
  text-align: right;
}

.service-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  flex-shrink: 0;
}

.service-content h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.service-features {
  list-style: none;
  margin: 30px 0;
}

.service-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: bold;
}

.service-cta {
  color: #0066ff;
  font-weight: 600;
  font-size: 1.1rem;
}

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

.pricing-card {
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.4s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-15px);
}

.pricing-card.popular {
  border: 3px solid #0066ff;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0066ff;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0066ff;
  margin: 20px 0;
}

.pricing-card ul {
  list-style: none;
  margin: 30px 0;
}

.pricing-card ul li {
  padding: 12px 0;
  color: #555;
}

.services-cta {
  background: #0066ff;
  color: white;
  text-align: center;
  padding: 120px 0;
}

.services-cta h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.btn-primary.large {
  padding: 18px 50px;
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 992px) {
  .service-item, .service-item.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-icon {
    margin: 0 auto 30px;
  }
  .pricing-card.popular {
    transform: none;
  }
}

