* ===== Floating Feedback Button ===== */
.floating-feedback {
    position: fixed;
    bottom: 100px; /* above messenger button */
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #009245; /* RHAC green */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 999;
}

    .floating-feedback:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    }

    /* Pulse animation */
    .floating-feedback::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(0,146,69,0.4);
        animation: pulse-feedback 2s infinite;
        z-index: -1;
    }

@keyframes pulse-feedback {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Responsive adjust */
@media (max-width: 768px) {
    .floating-feedback {
        width: 55px;
        height: 55px;
        font-size: 20px;
        bottom: 90px;
        right: 18px;
    }
}
.floating-feedback {
    position: fixed;
    bottom: 100px;
    right: 25px;

    width: 60px;
    height: 60px;
    border-radius: 50%;

    background: #009245;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    text-decoration: none;

    box-shadow: 0 12px 35px rgba(0,0,0,.25);
    transition: all .3s ease;

    z-index: 99999;   /* IMPORTANT */
}
