/* Enhanced CTA Section Styles */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 11, 0.9) 0%,
    rgba(26, 26, 30, 0.95) 100%
  );
  overflow: hidden;
  z-index: 1;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1624397640148-949b1732bb0a?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
  opacity: 0.2;
  z-index: -1;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--electric-blue) 0%,
    var(--neon-purple) 100%
  );
  opacity: 0.05;
  z-index: -1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.cta-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--pure-white);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
    0 0 30px rgba(0, 212, 255, 0.5);
  animation: title-glow 3s ease-in-out infinite alternate;
}

.cta-subtitle {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--cyber-green);
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.cta-description {
  font-size: 1.2rem;
  color: var(--light-gray);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta-highlight {
  color: var(--electric-blue);
  font-weight: 600;
  text-shadow: 0 0 5px var(--electric-blue);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.cta-buttons .btn {
  padding: 18px 36px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.btn-glow {
  position: relative;
  overflow: visible;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--cyber-gradient);
  border-radius: 40px;
  z-index: -1;
  opacity: 0.5;
  animation: pulse-glow 2s infinite;
}

.cta-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1/1;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.cta-image-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: var(--cyber-gradient);
  border-radius: 30px;
  opacity: 0.5;
  z-index: 0;
  animation: pulse-glow 3s infinite;
}

.cta-image-container::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--cyber-green);
  border-radius: 15px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.cta-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cta-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--electric-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.cta-feature-text {
  font-size: 1.05rem;
  color: var(--pure-white);
  font-weight: 600;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
}

.shape {
  position: absolute;
  background: var(--electric-blue);
  border-radius: 50%;
  opacity: 0.3;
}

.shape:nth-child(1) {
  width: 150px;
  height: 150px;
  top: -50px;
  left: 10%;
  animation: float 15s infinite;
}

.shape:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 5%;
  animation: float 12s infinite 2s;
}

.shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 10%;
  left: 15%;
  animation: float 10s infinite 1s;
}

.shape:nth-child(4) {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: 10%;
  animation: float 8s infinite 3s;
}

.shape:nth-child(5) {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 30%;
  animation: float 13s infinite 1.5s;
}

.shape:nth-child(6) {
  width: 70px;
  height: 70px;
  top: 40%;
  right: 25%;
  animation: float 11s infinite 2.5s;
}

.shape:nth-child(7) {
  width: 90px;
  height: 90px;
  bottom: 20%;
  left: 40%;
  animation: float 14s infinite 0.5s;
}

.shape:nth-child(8) {
  width: 50px;
  height: 50px;
  bottom: 30%;
  right: 35%;
  animation: float 9s infinite 1.8s;
}

.shape:nth-child(odd) {
  background: var(--neon-purple);
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes title-glow {
  0% {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
      0 0 30px rgba(0, 212, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9),
      0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-features {
    max-width: 500px;
    margin: 40px auto 0;
  }

  .cta-feature {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .cta-subtitle {
    font-size: 1.4rem;
  }

  .cta-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-features {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 2.3rem;
  }

  .cta-subtitle {
    font-size: 1.2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons .btn {
    padding: 16px 30px;
    font-size: 1.05rem;
  }

  .cta-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .cta-feature-text {
    font-size: 0.95rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }
}
