/* ============================================
   CTA BANNER SECTION
   ============================================ */
/* CTA banner animation */
.cta-banner.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.cta-banner {
  background: #293683;
  border: 2px solid rgba(100, 150, 255, 0.3);
}

.cta-title {
  background-color: rgba(255, 255, 255, 0.8235294118);
  background-image: url(../../../assets/img/title-background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 2px solid rgba(100, 150, 255, 0.5);
  border-radius: 50px;
  color: #4da6ff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.3);
}

/* Sticky CTA Button */
.sticky-cta-button {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: rgba(100, 150, 255, 0.1);
  border: 2px solid rgba(100, 150, 255, 0.5);
  border-radius: 50px;
  color: #4da6ff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 480px) {
  .sticky-cta-button {
    bottom: 20px;
    padding: 14px 32px;
    font-size: 18px;
  }
}

.sticky-cta-button.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.sticky-cta-button:hover {
  background: rgba(100, 150, 255, 0.2);
  border-color: rgba(100, 150, 255, 0.7);
  transform: translate(-50%, -4px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.3);
}

.sticky-cta-button:hover .sticky-cta-arrow {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner {
    padding: 35px 25px;
    margin: 60vh 0;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-description {
    font-size: 18px;
  }
  .cta-guarantees {
    flex-direction: column;
    gap: 10px;
  }
}