/* ===================================
   SERVICES SECTION STYLES
   =================================== */

.services-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.services-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-section .section-header .description {
  color: var(--brand-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.service-category {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.service-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.service-category-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-category-icon.ads {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.service-category-icon.content {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.service-category-icon.outdoor {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.service-category-header h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.service-category-header small {
  display: block;
  color: var(--brand-muted);
  font-size: 0.85rem;
}

.service-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  animation: fadeInDown 0.5s ease-out;
}

.service-badge.popular {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  color: var(--brand-primary);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.service-badge.trending {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(14, 165, 233, 0.15));
  color: var(--brand-secondary);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.service-badge.power {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(239, 68, 68, 0.15));
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.service-highlight {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(6, 182, 212, 0.08));
  border-left: 3px solid var(--brand-primary);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-dark);
  animation: slideInLeft 0.5s ease-out;
}

.service-highlight i {
  color: var(--brand-primary);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: grid;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

.service-list li i {
  color: var(--brand-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.service-note {
  font-size: 0.8rem;
  color: var(--brand-muted);
  font-style: italic;
}

.service-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  margin-top: 1rem;
}

.service-stat:first-of-type {
  border-top: none;
  margin-top: 0;
}

.service-stat-label {
  color: var(--brand-muted);
  font-weight: 500;
}

.service-stat-value {
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-service {
  position: relative;
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.featured-service::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 999px;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 0;
  }
  
  .service-category {
    padding: 2rem;
  }
  
  .service-highlight {
    padding: 0.75rem 1rem;
  }
}
