/* ==========================================================================
Call Button Widget - Start
========================================================================== */

.call-button-wrap {
    display: block;
}

.call-button-container {
    display: inline-block;
}

.call-button-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #2D5BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.call-button-icon i,
.call-button-icon svg {
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.call-button-content {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.call-button-label {
    font-size: 14px;
    color: #666666;
    margin-bottom: 3px;
    line-height: 1.2;
}

.call-button-phone {
    font-size: 18px;
    font-weight: 600;
    color: #0A0E1A;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.call-button-phone:hover {
    color: #2D5BFF;
}

/* Hover Effects */
.call-button-link:hover .call-button-icon {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(45, 91, 255, 0.3);
}

.call-button-link:hover .call-button-phone {
    color: #2D5BFF;
}

/* Responsive */
@media (max-width: 767px) {
    .call-button-icon {
        width: 48px;
        height: 48px;
    }
    
    .call-button-icon i,
    .call-button-icon svg {
        font-size: 20px;
    }
    
    .call-button-label {
        font-size: 12px;
    }
    
    .call-button-phone {
        font-size: 16px;
    }
    
    .call-button-content {
        margin-left: 12px;
    }
}

/* ==========================================================================
Call Button Widget - End
========================================================================== */
