.contact-cta-section {
  padding: 100px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-cta-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
}

.contact-cta-circle-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-color);
  top: -150px;
  left: -150px;
}

.contact-cta-circle-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary-color);
  bottom: -150px;
  right: -150px;
}

.contact-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.contact-cta-card {
  background: var(--dark-card);
  border-radius: 30px;
  padding: 80px 60px;
  text-align: center;
  border: 1px solid rgba(108, 99, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-cta-title {
  font-size: 48px;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-cta-description {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-cta-btn {
  background: var(--gradient-1);
  color: var(--text-light);
  padding: 16px 50px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
  transition: all 0.3s ease;
}

.contact-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(108, 99, 255, 0.6);
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 60px 0;
  }

  .contact-cta-card {
    padding: 50px 30px;
  }

  .contact-cta-title {
    font-size: 32px;
  }

  .contact-cta-description {
    font-size: 16px;
  }

  .contact-cta-btn {
    padding: 14px 40px;
    font-size: 16px;
    width: 100%;
  }
}
