.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 24, 0.72);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

.contact-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 520px);
    padding: 36px 32px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255, 132, 0, 0.18), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #fff7ef 100%);
    border: 1px solid rgba(230, 81, 0, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    text-align: center;
    z-index: 10000;
    opacity: 0;
    animation: contactPopupFadeIn 0.45s forwards;
}

@keyframes contactPopupFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -47%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.contact-popup-header {
    margin-bottom: 20px;
}

.contact-popup-logo {
    display: block;
    max-width: min(140px, 42%);
    max-height: 52px;
    width: auto;
    height: auto;
    margin: 0 auto 10px;
    object-fit: contain;
}

.contact-popup-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(230, 81, 0, 0.1);
    color: #d35400;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-popup-header h2 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(90deg, #e65100, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-popup-message {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.65;
}

.contact-popup-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(18, 140, 126, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-popup-button:hover,
.contact-popup-button:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 140, 126, 0.36);
}

.close-popup {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.06);
    color: #6b7280;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.close-popup:hover,
.close-popup:focus {
    background: rgba(17, 24, 39, 0.12);
    color: #111827;
}

@media (max-width: 576px) {
    .contact-popup {
        padding: 32px 20px 24px;
    }

    .contact-popup-header h2 {
        font-size: 28px;
    }

    .contact-popup-message {
        font-size: 16px;
    }

    .contact-popup-button {
        width: 100%;
    }
}
