/* =========================================================
   FLOATING CONTACT ACTIONS
   ========================================================= */

.floating-actions {
    position: fixed;

    right: 24px;
    bottom: 24px;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 12px;

    z-index: 9999;
}


/* =========================================================
   REQUEST A QUOTE
   ========================================================= */

.floating-quote {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 21px;

    background: var(--primary-color, #1f7a4d);
    color: #ffffff;

    border-radius: 30px;

    font-family: 'Inter', sans-serif;

    font-size: 14px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.floating-quote:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.25);

    color: #ffffff;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.floating-whatsapp {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Actual WhatsApp SVG */

.floating-whatsapp img {
    width: 32px;
    height: 32px;

    display: block;

    object-fit: contain;
}


/* WhatsApp hover */

.floating-whatsapp:hover {
    transform: scale(1.08);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.28);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .floating-actions {
        right: 16px;
        bottom: 16px;

        gap: 10px;
    }


    .floating-quote {
        padding: 11px 16px;

        font-size: 13px;
    }


    .floating-whatsapp {
        width: 52px;
        height: 52px;
    }


    .floating-whatsapp img {
        width: 28px;
        height: 28px;
    }

}