/* Modern Call Button Styles */
.call-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 150, 199, 0.3);
    position: relative;
    overflow: hidden;
}

.call-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.call-button-modern:hover::before {
    left: 100%;
}

.call-button-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 199, 0.4);
    color: #ffffff;
}

.call-button-modern .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.call-button-modern:hover .icon-circle {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg) scale(1.1);
}

.call-button-modern .icon-circle i {
    font-size: 18px;
    color: #ffffff;
}

.call-button-modern .button-text {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (min-width: 1200px) and (max-width: 1399px) {
    .call-button-modern {
        padding: 10px 20px;
        font-size: 15px;
        gap: 10px;
    }
    
    .call-button-modern .icon-circle {
        width: 32px;
        height: 32px;
    }
    
    .call-button-modern .icon-circle i {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .call-button-modern {
        padding: 10px 18px;
        font-size: 14px;
        gap: 8px;
    }
    
    .call-button-modern .icon-circle {
        width: 30px;
        height: 30px;
    }
    
    .call-button-modern .icon-circle i {
        font-size: 15px;
    }
}

/* Animation for icon */
@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

.call-button-modern:hover .icon-circle i {
    animation: phoneRing 0.6s ease-in-out;
}
