.call-now-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 16px;
    border: none;
    cursor: pointer;
    animation: pulse-shadow 2s infinite;
}

.call-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.6);
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
}

.call-now-button:active {
    transform: translateY(-1px);
}

.call-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    animation: ring 2s infinite;
}

.call-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.call-label {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.call-number {
    font-size: 16px;
    font-weight: bold;
}

/* Animations */
@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(39, 174, 96, 0.6);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60% {
        transform: rotate(10deg);
    }
    80% {
        transform: rotate(0deg);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .call-now-button {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 12px 16px;
        font-size: 14px;
        justify-content: center;
    }
    
    .call-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .call-number {
        font-size: 14px;
    }
    
    .call-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .call-now-button {
        padding: 8px 12px;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        font-size: 12px;
    }
    
    .call-icon {
        width: 16px;
        height: 16px;
        margin-right: 6px;
    }
    
    .call-number {
        font-size: 12px;
    }
    
    .call-label {
        font-size: 10px;
    }
}