/* ========================= */


/* FLOATING CTA BUTTONS */


/* ========================= */

.floating-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}


/* BASE BUTTON STYLE */

.cta-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}


/* HOVER EFFECT */

.cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}


/* WHATSAPP */

.cta-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulseGreen 2s infinite;
}


/* PHONE */


/* PHONE */

.cta-phone-btn {
    background: linear-gradient(135deg, #111827, #374151);
    animation: pulsePhone 1.6s infinite;
}


/* STRONGER PHONE PULSE */

@keyframes pulsePhone {
    0% {
        box-shadow: 0 0 0 0 rgba(17, 24, 39, 0.55);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(17, 24, 39, 0);
        transform: scale(1.06);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(17, 24, 39, 0);
        transform: scale(1);
    }
}


/* PULSE ANIMATION (GREEN) */

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {
    .floating-cta {
        right: 15px;
        bottom: 15px;
    }
    .cta-btn {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
}


/* ITEM WRAPPER */

.cta-item {
    position: relative;
    display: flex;
    align-items: center;
}


/* LABEL */

.cta-label {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}


/* SHOW STATE */

.cta-label.show {
    opacity: 1;
    transform: translateX(0);
}


/* COLORS */

.whatsapp-label {
    background: rgba(37, 211, 102, 0.9);
}

.phone-label {
    background: rgba(17, 24, 39, 0.9);
}