/* W Digital Form Success Popup Modal */
.w-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.w-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.w-popup-card {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 14px;
    padding: 30px 24px 26px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    border-top: 5px solid #ff6b00;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.w-popup-overlay.active .w-popup-card {
    transform: scale(1);
}

.w-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.w-popup-close:hover {
    color: #1f2937;
}

.w-popup-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(255, 107, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.w-popup-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: #ff6b00;
}

.w-popup-title {
    font-size: 19px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 8px 0;
}

.w-popup-desc {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0 0 22px 0;
}

.w-popup-btn {
    background-color: #ff6b00;
    color: #ffffff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 36px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    transition: background-color 0.2s ease, transform 0.1s ease;
    display: inline-block;
}

.w-popup-btn:hover {
    background-color: #e65c00;
    color: #ffffff;
    transform: translateY(-1px);
}

.w-popup-btn:active {
    transform: translateY(0);
}
