/* Centralized Floating CTA CSS - Optimized for CTR */
.floating-cta-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99999;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

/* Pulsing Outer Rings for High Visibility */
.floating-cta-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.45;
    z-index: -1;
    animation: widgetPulse 2s infinite ease-out;
}

@keyframes widgetPulse {
    0% { transform: scale(1); opacity: 0.45; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.floating-cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.floating-cta-whatsapp {
    background-color: #25d366;
}

.floating-cta-phone {
    background-color: #f8b400;
}

.floating-cta-btn i {
    font-size: 24px;
    color: #050505;
}

.floating-cta-whatsapp i {
    color: #ffffff;
}

/* Hover Tooltips */
.cta-tooltip {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    letter-spacing: 0.02em;
}

.floating-cta-btn:hover .cta-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

@media (max-width: 480px) {
    .floating-cta-container {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    .floating-cta-btn {
        width: 50px;
        height: 50px;
    }
    .floating-cta-btn i {
        font-size: 20px;
    }
    .cta-tooltip {
        display: none; /* Hide tooltips on mobile to prevent clutter */
    }
}
