/* ================= CALL FLOAT MODULE ================= */

.call-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    background: #c9a24d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 0 0 rgba(201,162,77,0.6);
    animation: callPulse 2s infinite;
    transition: transform 0.3s ease;
}

.call-float:hover {
    transform: scale(1.08);
}

/* ICON */

.call-icon {
    width: 26px;
    height: 26px;
    fill: #0b0e13;
    display: block;
}


/* PULSE ANIMATION */

@keyframes callPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201,162,77,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(201,162,77,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201,162,77,0);
    }
}

/* MOBILE */

@media (max-width: 768px) {
    .call-float {
        width: 70px;
        height: 70px;
        right: 20px;
        bottom: 20px;
    }

    .call-icon {
        width: 30px;
        height: 30px;
    }
}
