:root {
  --primary:#144A7C;
  --secondary:#3BB99F;
}

.cta-footer-banner {
  margin-bottom: 100px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 25px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.cta-footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-footer-text {
  flex: 1;
}

.cta-footer-heading {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 15px;
}

.cta-footer-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.cta-footer-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cta-primary-btn {
  background: white;
  color: var(--primary);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cta-primary-btn .btn-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

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

.cta-secondary-btn {
  color: white;
  padding: 18px 35px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  background: transparent;
}

.cta-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

.cta-footer-pattern {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 350px;
  opacity: 0.15;
}

.pattern-circle {
  position: absolute;
  border: 3px solid white;
  border-radius: 50%;
  animation: orbit-spin 15s linear infinite;
}

.pattern-circle:nth-child(1) {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pattern-circle:nth-child(2) {
  width: 220px;
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 0.5s;
  animation-duration: 20s;
}

.pattern-circle:nth-child(3) {
  width: 290px;
  height: 290px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
  animation-duration: 25s;
}

.pattern-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  animation: orbit-pulse 2s ease-in-out infinite;
}

.pattern-dot:nth-child(1) {
  top: 20%;
  right: 25%;
}

.pattern-dot:nth-child(2) {
  bottom: 25%;
  right: 15%;
  animation-delay: 0.5s;
}

.pattern-dot:nth-child(3) {
  top: 40%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

@media (max-width: 1024px) {
  .cta-footer-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-footer-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-footer-pattern {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .cta-footer-banner {
    padding: 40px 30px;
    margin-bottom: 40px;
  }

  .cta-footer-heading {
    font-size: 1.3rem;
  }

  .cta-footer-subtext {
    font-size: 1rem;
  }

  .cta-primary-btn,
  .cta-secondary-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
  }

  .cta-footer-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-footer-pattern {
    opacity: 0.08;
    width: 200px;
    height: 200px;
  }
}
