/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #00AEEF;
    color: white;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.4);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    animation: slideUp 0.5s ease-out forwards;
}

.sticky-mobile-cta i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}