/* Floating CTA Button Styles */
.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    background-color: #FF5E14;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 94, 20, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    text-decoration: none;
    opacity: 0; /* Start hidden */
}

.floating-cta i {
    font-size: 20px;
}

.floating-cta:hover {
    background-color: #e04d04;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.5);
    animation: none;
    color: white;
    text-decoration: none;
}

/* Pulsing animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 94, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        left: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .floating-cta i {
        font-size: 18px;
    }
}