/* =========================================================
   Payment Advisory â€” Premium glassmorphism card
   (top of mock-payment-methods.php). Scoped to .pay-advisory
   so it never affects the footer advisory card.
   ========================================================= */
.pay-advisory {
    position: relative;
    margin-bottom: 1.75rem;
    padding: 42px 46px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 243, 255, 0.92) 100%);
    border: 1px solid rgba(0, 46, 191, 0.12);
    /* border-left: 6px solid #002ebf; */
    box-shadow: 0 24px 60px rgba(0, 46, 191, 0.16);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    backdrop-filter: blur(14px) saturate(140%);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Top accent line (theme gradient) */
.pay-advisory::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #002ebf, #ffb100);
    z-index: 2;
}

/* Soft decorative glow */
.pay-advisory::after {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 46, 191, 0.10), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.pay-advisory:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 72px rgba(0, 46, 191, 0.24);
}

/* ---------- Header ---------- */
.pay-advisory__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.pay-advisory__icon {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    color: #ffffff;
    background: linear-gradient(135deg, #002ebf, #001546);
    box-shadow: 0 14px 28px rgba(0, 46, 191, 0.35);
    position: relative;
}

/* Pulsing ring around the shield */
.pay-advisory__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid rgba(0, 46, 191, 0.45);
    animation: payAdvisoryPulse 2.6s ease-out infinite;
}

@keyframes payAdvisoryPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.pay-advisory__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #002ebf;
    background: rgba(0, 46, 191, 0.08);
    padding: 4px 13px;
    border-radius: 30px;
    margin-bottom: 9px;
}

.pay-advisory__title {
    margin: 0;
    font-size: 33px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: #17012C;
}

/* ---------- Highlight chips ---------- */
.pay-advisory__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.pay-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 17px;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pay-chip i {
    font-size: 15px;
}

.pay-chip:hover {
    transform: translateY(-2px);
}

.pay-chip--ok {
    color: #0f7b54;
    background: rgba(31, 157, 107, 0.12);
    border: 1px solid rgba(31, 157, 107, 0.32);
}

.pay-chip--ok:hover {
    box-shadow: 0 8px 18px rgba(31, 157, 107, 0.22);
}

.pay-chip--bad {
    color: #c2410c;
    background: rgba(234, 88, 12, 0.10);
    border: 1px solid rgba(234, 88, 12, 0.28);
}

.pay-chip--bad:hover {
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.2);
}

/* ---------- Body text + inline highlights ---------- */
.pay-advisory__text {
    margin: 0 0 28px;
    font-size: 15.5px;
    line-height: 1.95;
    color: #3f4a60;
    position: relative;
    z-index: 1;
}

.pay-hl {
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 6px;
}

.pay-hl--ok {
    color: #0f7b54;
    background: rgba(31, 157, 107, 0.14);
}

.pay-hl--warn {
    color: #c2410c;
    background: rgba(234, 88, 12, 0.14);
}

/* ---------- Contact buttons ---------- */
.pay-advisory__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.pay-advisory__contact {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, #002ebf, #001546);
    box-shadow: 0 12px 26px rgba(0, 46, 191, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.pay-advisory__contact i {
    font-size: 19px;
}

.pay-advisory__contact .pay-contact-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.pay-advisory__contact .pay-contact-meta small {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    opacity: 0.85;
}

.pay-advisory__contact .pay-contact-meta strong {
    font-size: 15.5px;
    font-weight: 700;
}

.pay-advisory__contact:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
    box-shadow: 0 18px 34px rgba(0, 46, 191, 0.4);
}

.pay-advisory__contact--alt {
    background: linear-gradient(135deg, #912215, #912215);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(255, 177, 0, 0.35);
}

.pay-advisory__contact--alt:hover {
    box-shadow: 0 18px 34px rgba(255, 177, 0, 0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .pay-advisory {
        padding: 36px 32px;
    }

    .pay-advisory__title {
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .pay-advisory {
        padding: 30px 24px;
        border-radius: 18px;
    }

    .pay-advisory__header {
        gap: 16px;
    }

    .pay-advisory__icon {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }

    .pay-advisory__title {
        font-size: 25px;
    }

    .pay-advisory__contact {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pay-advisory {
        padding: 26px 18px;
    }

    .pay-advisory__title {
        font-size: 22px;
    }

    .pay-advisory__header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}
