/********** Call Us Popup **********/
.call-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 17, 26, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .25s ease;
}

.call-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.call-popup-card {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 48px 36px 36px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    transform: translateY(16px) scale(.97);
    transition: transform .25s ease;
}

.call-popup-overlay.show .call-popup-card {
    transform: translateY(0) scale(1);
}

.call-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
    line-height: 1;
}

.call-popup-close:hover {
    background: #F1F3FA;
}

.call-popup-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    border-radius: 18px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-popup-icon i {
    color: #FFFFFF;
    font-size: 26px;
}

.call-popup-heading {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.call-popup-heading .call-popup-heading-line {
    display: block;
}

.call-popup-body {
    color: var(--secondary);
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.5;
}

.call-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.call-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    background: var(--dark);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s ease;
}

.call-popup-btn:hover {
    background: #000000;
    color: #FFFFFF;
}

.call-popup-btn i {
    font-size: 16px;
}

.call-popup-btn-label {
    white-space: normal;
    text-align: center;
}

@media (max-width: 420px) {
    .call-popup-card {
        padding: 40px 24px 28px;
    }

    .call-popup-btn {
        font-size: 14px;
        padding: 14px 14px;
    }
}
