.mt-fixed-contact {
    position: fixed !important;
    right: 20px !important;
    bottom: 90px !important;
    z-index: 999999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.mt-fixed-contact .mt-contact-btn {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #ffffff !important;
    font-size: 26px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.3s ease !important;
}

.mt-fixed-contact .mt-contact-btn:hover {
    transform: scale(1.08) !important;
    color: #ffffff !important;
}

.mt-fixed-contact .mt-whatsapp {
    background: #25d366 !important;
}

.mt-fixed-contact .mt-phone {
    background: #2196f3 !important;
}

.mt-fixed-contact .mt-call-text {
    position: absolute !important;
    right: 72px !important;
    bottom: 4px !important;
    background: #ffffff !important;
    color: #222222 !important;
    padding: 8px 14px !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16) !important;
}

.mt-fixed-contact .mt-call-text::after {
    content: "" !important;
    position: absolute !important;
    right: -8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-left: 8px solid #ffffff !important;
}

.mt-fixed-contact .mt-whatsapp::before,
.mt-fixed-contact .mt-phone::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 50% !important;
    animation: mt-pulse 1.8s infinite !important;
}

.mt-fixed-contact .mt-whatsapp::before {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45) !important;
}

.mt-fixed-contact .mt-phone::before {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.40) !important;
}

@keyframes mt-pulse {
    0% {
        transform: scale(1) !important;
        opacity: 1 !important;
    }
    70% {
        transform: scale(1.35) !important;
        opacity: 0 !important;
    }
    100% {
        transform: scale(1.35) !important;
        opacity: 0 !important;
    }
}

@media (max-width: 768px) {
    .mt-fixed-contact {
        right: 14px !important;
        bottom: 75px !important;
    }

    .mt-fixed-contact .mt-contact-btn {
        width: 54px !important;
        height: 54px !important;
        font-size: 22px !important;
    }

    .mt-fixed-contact .mt-call-text {
        display: none !important;
    }
}