.contact-support {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    font-family: 'Poppins', 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

.contact-support-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 17px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #17734a;
    box-shadow: 0 10px 28px rgba(14, 85, 53, .26);
    font: inherit;
    font-size: .9rem;
    font-weight: 650;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.contact-support-trigger:hover {
    background: #115f3c;
    box-shadow: 0 13px 30px rgba(14, 85, 53, .32);
    transform: translateY(-2px);
}

.contact-support-trigger:focus-visible,
.contact-support-close:focus-visible,
.contact-support-action:focus-visible,
.contact-support-number:focus-visible {
    outline: 3px solid rgba(23, 115, 74, .3);
    outline-offset: 3px;
}

.contact-support-panel {
    position: absolute;
    right: 0;
    bottom: 60px;
    width: min(330px, calc(100vw - 32px));
    padding: 20px;
    border: 1px solid #dbe4ec;
    border-radius: 14px;
    color: #27364a;
    background: #fff;
    box-shadow: 0 18px 46px rgba(29, 49, 72, .2);
}

.contact-support-panel[hidden] {
    display: none !important;
}

.contact-support-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    color: #69798c;
    background: transparent;
    cursor: pointer;
}

.contact-support-close:hover {
    color: #27364a;
    background: #f0f4f7;
}

.contact-support-eyebrow {
    display: block;
    margin-bottom: 4px;
    color: #17734a;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-support-panel h2 {
    margin: 0 36px 7px 0;
    color: #1f2c3d;
    font-size: 1.18rem;
    font-weight: 700;
}

.contact-support-panel p {
    margin: 0 0 15px;
    color: #617185;
    font-size: .84rem;
    line-height: 1.5;
}

.contact-support-number {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: #155f93;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-support-number:hover {
    color: #0f4c77;
    text-decoration: underline;
}

.contact-support-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.contact-support-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    border-radius: 9px;
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none;
}

.contact-support-call {
    color: #174f78;
    background: #eaf4fb;
    border: 1px solid #cfe4f3;
}

.contact-support-call:hover {
    color: #103d5e;
    background: #dceefa;
}

.contact-support-whatsapp {
    color: #fff;
    background: #1f9d5a;
    border: 1px solid #1f9d5a;
}

.contact-support-whatsapp:hover {
    color: #fff;
    background: #18844b;
    border-color: #18844b;
}

@media (max-width: 1024px) {
    .modern-app .contact-support {
        right: 16px;
        bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .modern-app .contact-support-panel {
        bottom: 58px;
    }
}

@media (max-width: 480px) {
    .contact-support {
        right: 16px;
        bottom: 16px;
    }

    .contact-support-trigger {
        min-height: 44px;
        padding: 0 14px;
    }

    .contact-support-panel {
        position: fixed;
        right: 16px;
        bottom: 72px;
        left: 16px;
        width: auto;
    }

    .modern-app .contact-support-panel {
        bottom: calc(140px + env(safe-area-inset-bottom));
    }
}

@media print {
    .contact-support {
        display: none !important;
    }
}
