/* Floating CTA Button Styles */
.floating-cta-button {
    position: fixed;
    z-index: 9999;
    animation: fadeInUp 0.5s ease-in-out;
}

.floating-cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.floating-cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-decoration: none !important;
}

.cta-icon {
    display: flex;
    align-items: center;
}

.cta-icon svg {
    display: block;
}

/* Responsive: Hide text on mobile, show only icon */
@media (max-width: 768px) {
    .floating-cta-button {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        top: auto !important;
    }

    .cta-text {
        display: none;
    }

    .floating-cta-link {
        padding: 15px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for attention */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 10px rgba(231, 76, 60, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

.floating-cta-link.pulse {
    animation: pulse 2s infinite;
}
