.mobile-call-button-green {
    display: none;
    position: fixed;
    bottom: 8rem; 
    right: 3.4rem; 
    z-index: 1000; 
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    background: #28a745;
    border: 8px solid rgba(129, 199, 132, 0.3); 
    backdrop-filter: blur(2px);
    animation: pulse-green 1.5s infinite;
}

.mobile-call-button-green::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 135%;
    height: 135%;
    border-radius: 50%;
    border: 2px solid rgba(40, 167, 69, 0.5);
    background: transparent;
    transform: translate(-50%, -50%) scale(1);
    animation: b24-wave-medium 1.8s infinite;
    z-index: -1;
}

.mobile-call-button-green::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170%;
    height: 170%;
    border-radius: 50%;
    border: 1px solid rgba(40, 167, 69, 0.3);
    background: transparent;
    transform: translate(-50%, -50%) scale(1);
    animation: b24-wave-medium 1.8s infinite 0.7s;
    z-index: -2;
}

.mobile-call-button-green .call-button-inner-green {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-call-button-green .call-button-inner-green:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-call-button-green .call-button-inner-green svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(40, 167, 69, 0.7);
    }
    100% {
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    }
}

@keyframes b24-wave-medium {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.35;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .mobile-call-button-green {
        display: block;
    }
}
