/* ═══════════════════════════════════════════════
   ISD GENERIC POPUP  –  styles
═══════════════════════════════════════════════ */
.isd-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(10, 12, 30, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.isd-popup-overlay.active {
    display: flex;
    animation: isdPopupFadeIn 0.28s ease both;
}
@keyframes isdPopupFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.isd-popup-card {
    background: #ffffff;
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 32px 80px rgba(0,0,0,0.40), 0 8px 20px rgba(0,0,0,0.20);
    animation: isdCardSlideUp 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    overflow: hidden;
}
@keyframes isdCardSlideUp {
    from { opacity: 0; transform: translateY(48px) scale(0.92); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
.isd-popup-card::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #f6a623 0%, #e8890a 50%, #c0392b 100%);
    border-radius: 24px 24px 0 0;
}
.isd-popup-x {
    position: absolute;
    top: 18px; right: 18px;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: #777;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2;
}
.isd-popup-x:hover { background: #f44336; color: #fff; transform: rotate(90deg); }
.isd-popup-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px 0 12px;
}
.isd-popup-icon-pulse {
    position: absolute;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(246,166,35,0.15);
    animation: isdPulse 2s ease-in-out infinite;
}
@keyframes isdPulse {
    0%,100% { transform: scale(1);    opacity: 0.8; }
    50%      { transform: scale(1.18); opacity: 0.3; }
}
.isd-popup-icon-circle {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6a623 0%, #e8890a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(246,166,35,0.45);
    position: relative;
    z-index: 1;
    transition: background 0.3s, box-shadow 0.3s;
}
.isd-popup-content { padding: 0 30px 4px; text-align: center; }
.isd-popup-title { font-size: 22px; font-weight: 800; color: #1a1a2e; margin: 0 0 10px; line-height: 1.3; }
.isd-popup-message { font-size: 15px; color: #666; line-height: 1.7; margin: 0; }
.isd-popup-contacts { display: none; padding: 20px 24px 0; }
.isd-popup-contacts.show { display: block; }
.isd-popup-contact-label {
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: #aaa; margin: 0 0 10px; text-align: center;
}
.isd-popup-contact-grid { display: flex; flex-direction: column; gap: 10px; }
.isd-popup-contact-card {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; border-radius: 14px; text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
    position: relative; overflow: hidden;
}
.isd-popup-contact-card:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(0,0,0,0.10); text-decoration: none; }
.isd-contact-call { background: #fff8f0; border-color: rgba(246,166,35,0.3); }
.isd-contact-call:hover { border-color: #f6a623; background: #fff3e0; }
.isd-contact-call .isd-contact-icon-wrap { background: linear-gradient(135deg,#f6a623,#e8890a); }
.isd-contact-whatsapp { background: #f0faf4; border-color: rgba(37,211,102,0.3); }
.isd-contact-whatsapp:hover { border-color: #25d366; background: #e3f9eb; }
.isd-contact-whatsapp .isd-contact-icon-wrap { background: linear-gradient(135deg,#25d366,#128c7e); }
.isd-contact-email { background: #f0f4ff; border-color: rgba(99,102,241,0.3); }
.isd-contact-email:hover { border-color: #6366f1; background: #e8eaff; }
.isd-contact-email .isd-contact-icon-wrap { background: linear-gradient(135deg,#6366f1,#4f46e5); }
.isd-contact-icon-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.isd-contact-info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.isd-contact-type { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #999; }
.isd-contact-value { font-size: 14px; font-weight: 700; color: #1a1a2e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.isd-contact-arrow { font-size: 12px; color: #ccc; flex-shrink: 0; transition: transform 0.18s, color 0.18s; }
.isd-popup-contact-card:hover .isd-contact-arrow { transform: translateX(3px); color: #999; }
.isd-popup-footer { padding: 20px 24px 28px; display: flex; justify-content: center; }
.isd-popup-close-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff; border: none; padding: 13px 40px; border-radius: 50px;
    font-size: 15px; font-weight: 700; cursor: pointer; letter-spacing: 0.4px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(15,52,96,0.35);
}
.isd-popup-close-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(15,52,96,0.45); }
@media (max-width: 480px) {
    .isd-popup-card      { border-radius: 18px; }
    .isd-popup-content   { padding: 0 20px 4px; }
    .isd-popup-contacts  { padding: 16px 16px 0; }
    .isd-popup-footer    { padding: 16px 16px 22px; }
    .isd-popup-title     { font-size: 19px; }
    .isd-popup-message   { font-size: 14px; }
}
