﻿/* ── Call Us Pill Button ── */
/*.call-button {
    position: fixed;
    bottom: 24px;
    right: 190px;*/ /* sits to the left of chat-button-wrapper; adjust as needed */
    /*display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px 0 16px;
    height: 50px;
    background: linear-gradient(135deg, #b1c906, #005423);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 84, 35, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
    z-index: 1000;
}

    .call-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 7px 24px rgba(0, 84, 35, 0.45);
        color: #fff;
    }

    .call-button i {
        font-size: 17px;
        color: #fff;
        flex-shrink: 0;
        animation: ring 2.2s ease-in-out infinite;
    }

.call-button-label {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }

    5%, 15% {
        transform: rotate(-15deg);
    }

    10%, 20% {
        transform: rotate(15deg);
    }

    25% {
        transform: rotate(0deg);
    }
}

@media (max-width: 480px) {
    .call-button {
        right: 12px;
        bottom: 76px;*/ /* stacks above chat button on mobile */
        /*height: 44px;
        padding: 0 14px 0 12px;
    }

    .call-button-label {
        font-size: 0.74rem;
    }
}*/


.contact-call-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(177, 201, 6, 0.14), rgba(0, 84, 35, 0.09));
    border-left: 3px solid #005423;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #2d4a1e;
}

    .contact-call-banner i {
        font-size: 16px;
        color: #005423;
        flex-shrink: 0;
    }

    .contact-call-banner a {
        color: #005423;
        font-weight: 700;
        text-decoration: none;
    }

        .contact-call-banner a:hover {
            text-decoration: underline;
        }

