.asi-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.4s ease;
}

.asi-popup {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    animation: slideFadeIn 0.5s ease-out;
    width: 92%;
    max-width: 440px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    position: relative;
}

.asi-popup h3 {
    font-size: 18px;
    padding: 18px 48px 18px 24px;
    margin: 0;
    background-color: #0f172a;
    color: #ffffff;
    font-weight: 700;
    border-bottom: 1px solid #e2e8f0;
}

.asi-popup p {
    font-size: 14.5px;
    color: #475569;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.asi-icons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 14px;
    padding: 22px 24px 12px 24px;
    background-color: #ffffff;
}

.asi-icon {
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
    text-align: center;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #feda75 0%, #fa7e1e 40%, #d62976 60%, #962fbf 90%);
}
.tiktok { background: #000000; }
.twitter { background: #1DA1F2; }
.youtube { background: #FF0000; }
.facebook { background: #3b5998; }
.whatsapp { background: #25D366; }

.asi-icon:hover {
    transform: translateY(-4px);
    opacity: 0.92;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.asi-icon i {
    font-size: 18px;
}

.asi-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10000;
}

.asi-close:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.asi-call-box {
    margin: 0;
    padding: 16px;
    background: #f9fafb;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #1e293b;
}

.asi-call-box a {
    font-weight: bold;
    color: #0284c7;
    text-decoration: none;
    margin-left: 6px;
    transition: 0.3s ease;
}

.asi-call-box a:hover {
    color: #0369a1;
    text-decoration: underline;
}

@keyframes slideFadeIn {
    from {
        transform: translateY(-60px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media(max-width: 500px) {
    .asi-popup h3 {
        font-size: 17px;
        padding: 14px 44px 14px 18px;
    }
    .asi-popup {
        border-radius: 18px;
    }
    .asi-icons {
        grid-template-columns: 1fr 1fr;
        row-gap: 16px;
        padding: 18px;
    }
    .asi-icon {
        font-size: 13.5px;
        padding: 10px 12px;
    }
}