/* === SERVICES PAGE STYLES === */
.service-card {
  background: var(--bg-secondary);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform 0.8s, background 0.3s, color 0.3s;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
  transform: rotateY(360deg);
}

.service-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.service-card ul li {
  margin-bottom: 0.5rem;
}

/* Sections specific spacing */
#automation, #development, #funnels {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
}

.cta .card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 3rem;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 2rem;
  }
} 