/* =========================================================
   CUSTOM ADDITIONS - Good Health Physiotherapy Centre
   Floating WhatsApp + Call Buttons (site-wide)
   (Old hero-specific styles have moved into premium-redesign.css)
   ========================================================= */

/* ---------- Floating WhatsApp + Call Buttons ---------- */
.floating-contact-buttons{
    position: fixed;
    right: 22px;
    bottom: 26px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.floating-btn{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: transform 0.25s ease;
    position: relative;
}
.floating-btn:hover{
    transform: scale(1.08);
    color: #fff;
}
.floating-btn.whatsapp-btn{
    background: #25D366;
}
.floating-btn.whatsapp-btn::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.55;
    animation: floatPulse 1.8s infinite;
    z-index: -1;
}
.floating-btn.call-btn{
    background: var(--primary-color, #1b9ab4);
}
.floating-btn.call-btn.call-btn-secondary{
    background: #172232;
}
@keyframes floatPulse{
    0%{ transform: scale(1); opacity: 0.55; }
    100%{ transform: scale(1.9); opacity: 0; }
}
@media (max-width: 767px){
    .floating-contact-buttons{
        right: 14px;
        bottom: 16px;
        gap: 10px;
    }
    .floating-btn{
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}
