/* =========================================
FLOATING WRAPPER
========================================= */

.floating-contact-buttons {

    position: fixed;

    right: 18px;

    bottom: 18px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

/* =========================================
BUTTON BASE
========================================= */

.floating-contact-btn {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border-radius: 999px;

    text-decoration: none;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    line-height: 1;

    transition: all 0.25s ease;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.16);

    min-width: 180px;

    box-sizing: border-box;
}

/* =========================================
ICONS
========================================= */

.floating-btn-icon {

    width: 22px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.floating-btn-icon svg {

    width: 22px;

    height: 22px;

    display: block;
}

/* =========================================
TEXT
========================================= */

.floating-btn-text {

    display: block;

    white-space: nowrap;

    letter-spacing: 0.01em;
}

/* =========================================
WHATSAPP
========================================= */

.floating-whatsapp {

    background: #25D366;
}

.floating-whatsapp:hover {

    background: #1ebe5d;

    color: #ffffff;

    transform: translateY(-2px);
}

/* =========================================
CALL
========================================= */

.floating-call {

    background: #0A66FF;
}

.floating-call:hover {

    background: #0052d6;

    color: #ffffff;

    transform: translateY(-2px);
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .floating-contact-buttons {

        right: 12px;

        bottom: 12px;

        gap: 10px;
    }

    .floating-contact-btn {

        min-width: auto;

        padding: 12px 16px;

        font-size: 14px;
    }

    .floating-btn-icon svg {

        width: 20px;

        height: 20px;
    }
}