body.page-template-default {
  background-color: #000000;
  color: white;
}

body {
  background-color: #000000;
  color: white;
}

.services-hero {
  height: 60vh;
  min-height: 500px;

  padding-top: 80px;

  box-sizing: border-box;
}

.services-floating-section {
  margin-top: 5vh;
  padding-top: 4rem;
}

.services-cta-section {
  padding: 8rem 0 10rem;
  position: relative;
  overflow: hidden;
}

.services-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(146, 71, 215, 0.15) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
  filter: blur(60px);
}

.cta-content-wrapper {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #a0a0a0;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 16px 40px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(146, 71, 215, 0.3);
  border: 2px solid transparent;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(146, 71, 215, 0.5);
  background: #a855f7;
  color: white;
}

.cta-btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cta-btn:hover .cta-btn-icon {
  transform: translateX(5px);
}
