/* ===============================
   FLOATING ACTION BUTTONS
================================= */
.call-float,
.whatsapp-float {
    position: fixed;
    right: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    z-index: 1000;
}

/* Call Button */
.call-float {
    bottom: 100px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #074171 0%, #0a5a99 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(7, 65, 113, 0.3);
}

.call-float i {
    font-size: 24px;
}

.call-float:hover {
    background: linear-gradient(135deg, #01a8a3 0%, #01a8a3 100%);
    color: #074171;
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 214, 10, 0.4);
}

/* WhatsApp Button */
.whatsapp-float {
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #2bb673;
    color: #fff;
}

.whatsapp-float i {
    font-size: 35px;
}

.whatsapp-float:hover {
    background: #239e60;
    transform: scale(1.1);
}

/* Pulse Animation */
.call-float::before,
.whatsapp-float::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 1.5s infinite;
}

.call-float::before {
    width: 60px;
    height: 60px;
    background: rgba(255, 214, 10, 0.2);
}

.whatsapp-float::before {
    width: 60px;
    height: 60px;
    background: rgba(43, 182, 115, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* Floating Responsive */
@media (max-width: 768px) {

    .call-float,
    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .call-float::before,
    .whatsapp-float::before {
        width: 55px;
        height: 55px;
    }

    .call-float i {
        font-size: 22px;
    }
}