/*************************************/
/***   Floating CTA Button        ***/
/*************************************/

.floating-cta-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: pulse 2s infinite;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #F6AD55 0%, #e89943 100%);
    color: var(--primary-color);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(246, 173, 85, 0.4);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(246, 173, 85, 0.6);
    background: linear-gradient(135deg, #e89943 0%, #F6AD55 100%);
    color: var(--primary-color);
}

.float-btn i {
    font-size: 22px;
    animation: rocket 1.5s ease-in-out infinite;
}

.float-btn span {
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rocket {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(-5px) rotate(-45deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-cta-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        padding: 14px 20px;
        font-size: 13px;
        gap: 10px;
    }
    
    .float-btn i {
        font-size: 18px;
    }
    
    .float-btn span {
        /* max-width: 150px; */
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    /* .float-btn span {
        display: none;
    } */
    
    /* .float-btn {
        padding: 16px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .float-btn i {
        font-size: 24px;
        margin: 0;
    } */
}
