/* ============================================================
   rvNotice — modern ink+gold notification popup (Contactus.js).
   Replaces the old Bootstrap #WarningModalDiv. 2026-07-08.
   ============================================================ */
.rvn-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(20, 17, 10, .62);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .25s ease;
}
.rvn-overlay.is-open { opacity: 1; }

.rvn-card {
    width: 100%;
    max-width: 430px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .40);
    transform: translateY(14px) scale(.97);
    transition: transform .25s ease;
}
.rvn-overlay.is-open .rvn-card { transform: translateY(0) scale(1); }

.rvn-head {
    position: relative;
    background: #1c1c1c;
    background-image: linear-gradient(135deg, #1c1c1c 0%, #4a3413 100%);
    text-align: center;
    padding: 18px 46px 16px;
}
.rvn-eyebrow { font-size: 10px; letter-spacing: 3px; color: #d9cdaf; margin-bottom: 4px; }
.rvn-title { font-family: Georgia, 'Times New Roman', serif; font-size: 21px; font-weight: 700; color: #fff; }
.rvn-rule { width: 56px; height: 3px; background: #c9a44c; margin: 10px auto 0; border-radius: 2px; }
.rvn-err .rvn-head { background-image: linear-gradient(135deg, #1c1c1c 0%, #3a1510 100%); }
.rvn-err .rvn-rule { background: #c0392b; }

.rvn-x {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.rvn-x:hover { background: #c9a44c; transform: rotate(90deg); }

.rvn-body { padding: 22px 26px 6px; text-align: center; }
.rvn-icon { font-size: 46px; line-height: 1; margin-bottom: 12px; }
.rvn-ok .rvn-icon { color: #1c8a4c; }
.rvn-err .rvn-icon { color: #c0392b; }
.rvn-msg { font-size: 14.5px; line-height: 1.65; color: #4a4335; }

.rvn-foot { padding: 16px 26px 22px; text-align: center; }
.rvn-btn {
    min-width: 130px;
    padding: 10px 26px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #c9a44c, #a8863a);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(201, 164, 76, .38);
    transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.rvn-btn:hover { transform: translateY(-1px); background: #1c1c1c; box-shadow: 0 8px 18px rgba(0, 0, 0, .3); }
.rvn-err .rvn-btn { background: linear-gradient(135deg, #c0392b, #922b21); box-shadow: 0 6px 16px rgba(192, 57, 43, .35); }
.rvn-err .rvn-btn:hover { background: #1c1c1c; }

@media (max-width: 420px) {
    .rvn-card { max-width: 94vw; }
    .rvn-title { font-size: 18px; }
    .rvn-body { padding: 18px 16px 4px; }
}
