/* AGIDER Global Donation CTA - Final Professional */
.bagis-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    border-radius: 999px;
    transition: all .22s ease;
    font-family: 'Roboto', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.bagis-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    z-index: 0;
    transition: transform .22s ease, opacity .22s ease;
}

.bagis-cta:hover::before {
    transform: scale(1.02);
}

.bagis-cta > * {
    position: relative;
    z-index: 1;
}

.bagis-cta__icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.20);
    color: #fff;
    font-size: 16px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.bagis-cta__content {
    display: flex;
    flex-direction: column;
    line-height: 1.04;
}

.bagis-cta__content strong,
.bagis-cta__content small {
    color: #fff;
}

.bagis-cta__content strong {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .1px;
}

.bagis-cta__content small {
    font-size: 11px;
    font-weight: 500;
    opacity: .94;
}

.bagis-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, .30);
}

/* Desktop top CTA */
.bagis-cta-desktop {
    padding: 7px 16px 7px 10px;
    min-height: 50px;
    box-shadow: 0 10px 24px rgba(220, 38, 38, .24);
    margin-left: 18px;
}

.header-top .bagis-cta-desktop {
    vertical-align: middle;
}

/* Mobile bar CTA */
.mobile-bagis-bar {
    display: none;
}

.bagis-cta-mobile {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    min-height: 56px;
    box-shadow: 0 10px 24px rgba(220, 38, 38, .22);
}

.bagis-cta-mobile .bagis-cta__content {
    align-items: center;
    text-align: center;
}

/* stronger visibility around dark teal header */
.header-top .bagis-cta-desktop::after,
.mobile-bagis-bar .bagis-cta-mobile::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
    pointer-events: none;
}

@media (min-width: 992px) {
    .bagis-cta-mobile,
    .mobile-bagis-bar {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .bagis-cta-desktop {
        display: none !important;
    }

    .mobile-bagis-bar {
        display: block;
        background: transparent;
        padding: 10px 0 12px;
    }

    .mobile-bagis-bar .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bagis-cta-mobile .bagis-cta__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 15px;
    }

    .bagis-cta-mobile .bagis-cta__content strong {
        font-size: 16px;
    }

    .bagis-cta-mobile .bagis-cta__content small {
        font-size: 11px;
    }
}

@media (max-width: 575.98px) {
    .mobile-bagis-bar {
        padding: 8px 0 10px;
    }

    .bagis-cta-mobile {
        min-height: 52px;
        padding: 11px 14px;
    }

    .bagis-cta-mobile .bagis-cta__icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .bagis-cta-mobile .bagis-cta__content strong {
        font-size: 15px;
    }
}
