/* ============================================
   FRAUD ALERT — Anti-Penipuan Pembayaran
   PMB Universitas Methodist Indonesia
   ============================================ */

/* ----- Fraud Alert Banner ----- */
.fraud-alert-banner {
    background: #ffffff;
    border: 1px solid rgba(220, 53, 69, 0.15);
    border-left: 6px solid #dc3545;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    padding: 0;
    box-shadow: 0 10px 30px rgba(45, 64, 95, 0.08);
    animation: fraud-pulse 3s ease-in-out infinite;
    overflow: hidden;
}

.fraud-alert-banner__inner {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
}

.fraud-alert-banner__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(220, 53, 69, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    font-size: 1.3rem;
}

.fraud-alert-banner__content {
    flex: 1;
}

.fraud-alert-banner__title {
    color: #2d405f;
    font-family: "Krub", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fraud-alert-banner__title i {
    color: #dc3545;
    font-size: 1.15rem;
}

.fraud-alert-banner__list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4e5d78;
    font-size: 0.92rem;
    line-height: 1.7;
}

.fraud-alert-banner__list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.45rem;
}

.fraud-alert-banner__list li::before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #dc3545;
    font-size: 0.82rem;
    top: 2px;
}

.fraud-alert-banner__list li:last-child::before {
    content: "\f095";
    color: #3b4ef8;
}

.fraud-alert-banner__list li strong {
    color: #141d2b;
}

.fraud-alert-banner__list li:last-child strong {
    background: rgba(59, 78, 248, 0.08);
    color: #3b4ef8;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: "Krub", sans-serif;
    border: 1px solid rgba(59, 78, 248, 0.15);
}


/* ----- Fraud Alert Modal ----- */
.fraud-modal .modal-content {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fraud-modal__header {
    background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #303f9f 100%);
    border-bottom: none;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fraud-modal__header-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64b5f6;
    flex-shrink: 0;
}

.fraud-modal__title {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
}

.fraud-modal__body {
    padding: 2rem;
}

.fraud-modal__intro {
    font-size: 1rem;
    color: #424242;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.fraud-modal__points {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.fraud-modal__point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    background: #f5f7ff;
    border-radius: 0.5rem;
    border-left: 4px solid #3f51b5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fraud-modal__point:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(63, 81, 181, 0.15);
}

.fraud-modal__point-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3f51b5, #5c6bc0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.fraud-modal__point-text {
    font-size: 0.92rem;
    color: #37474f;
    line-height: 1.5;
    padding-top: 0.15rem;
}

.fraud-modal__warning {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: 0.5rem;
    padding: 0.9rem 1rem;
    font-size: 0.88rem;
    color: #e65100;
    line-height: 1.6;
}

.fraud-modal__warning i {
    margin-right: 0.4rem;
}

.fraud-modal__warning strong {
    color: #bf360c;
}

.fraud-modal__footer {
    padding: 1rem 2rem 1.5rem;
    border-top: none;
    display: flex;
    justify-content: center;
}

.fraud-modal__btn {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.fraud-modal__btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: #fff;
}

.fraud-modal__btn:active {
    transform: translateY(0);
}

.fraud-modal__btn i {
    margin-right: 0.4rem;
}


/* ----- Security Checklist ----- */
.security-checklist__header {
    background: linear-gradient(135deg, #0d47a1, #1565c0);
    color: #fff;
}

.security-checklist__header h6 {
    color: #fff;
}

.security-checklist__header i {
    margin-right: 0.4rem;
}

.checklist-item {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    border: 2px solid #e0e0e0;
    background: #fafafa;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    border-color: #90caf9;
    background: #f5f9ff;
}

.checklist-item.checked {
    border-color: #4caf50;
    background: #e8f5e9;
}

.checklist-item__label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    cursor: pointer;
    user-select: none;
}

.checklist-item__input {
    display: none;
}

.checklist-item__checkmark {
    width: 28px;
    height: 28px;
    border: 2px solid #bdbdbd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: #fff;
}

.checklist-item.checked .checklist-item__checkmark {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-color: #4caf50;
    color: #fff;
}

.checklist-item__text {
    font-size: 0.9rem;
    color: #424242;
    line-height: 1.5;
}

.checklist-item.checked .checklist-item__text {
    color: #2e7d32;
    font-weight: 500;
}

.checklist-status__complete {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border: 1px solid #a5d6a7;
    border-radius: 0.5rem;
    padding: 0.9rem 1rem;
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    animation: fadeInUp 0.4s ease;
}

.checklist-status__complete i {
    margin-right: 0.35rem;
    font-size: 1rem;
}


/* ----- Official Contact Card ----- */
.official-contact-card__header {
    background: linear-gradient(135deg, #004d40, #00695c);
    color: #fff;
}

.official-contact-card__header h6 {
    color: #fff;
}

.official-contact-card__header i {
    margin-right: 0.4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: #e8f5e9;
    border-color: #a5d6a7;
}

.contact-item__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00695c, #00897b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item__detail {
    display: flex;
    flex-direction: column;
}

.contact-item__label {
    font-size: 0.78rem;
    color: #757575;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-item__value {
    font-size: 0.92rem;
    color: #1b5e20;
}

.contact-warning {
    background: #fff8e1;
    border: 1px solid #ffcc80;
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
    font-size: 0.85rem;
    color: #e65100;
    line-height: 1.6;
}

.contact-warning i {
    margin-right: 0.35rem;
    color: #ff9800;
}

.contact-warning strong {
    color: #bf360c;
}


/* ----- Animations ----- */
@keyframes fraud-pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(45, 64, 95, 0.08), 0 0 0 0px rgba(220, 53, 69, 0);
    }
    50% {
        box-shadow: 0 10px 35px rgba(45, 64, 95, 0.12), 0 0 0 4px rgba(220, 53, 69, 0.06);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ----- Responsive ----- */
@media (max-width: 768px) {
    .fraud-alert-banner__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }

    .fraud-alert-banner__list li {
        text-align: left;
    }

    .fraud-modal__body {
        padding: 1.25rem;
    }

    .fraud-modal__point {
        padding: 0.7rem;
    }

    .fraud-modal__header {
        padding: 1.25rem;
    }

    .checklist-item__text {
        font-size: 0.85rem;
    }

    .contact-item {
        padding: 0.6rem;
    }
}

/* ============================================
   LANDING PAGE FRAUD ALERT POPUP MODAL
   ============================================ */
.landing-fraud-modal {
    border: none;
    border-radius: 1.25rem;
    box-shadow: 0 25px 80px rgba(45, 64, 95, 0.25);
    overflow: hidden;
    background: #ffffff;
}

.landing-fraud-modal__header {
    background: linear-gradient(135deg, #2d405f 0%, #1f2b40 100%);
    color: #ffffff;
    border-bottom: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.landing-fraud-modal__header-icon {
    font-size: 2.25rem;
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-fraud-modal__title {
    font-family: "Krub", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

.landing-fraud-modal__body {
    padding: 2rem;
}

.landing-fraud-modal__alert-badge {
    background: #fff3e0;
    border: 1px solid #ffe0b2;
    color: #e65100;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.landing-fraud-modal__alert-badge i {
    font-size: 1.15rem;
}

.landing-fraud-modal__text {
    font-family: "Open Sans", sans-serif;
    color: #4e5d78;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.landing-fraud-modal__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.landing-fraud-modal__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 0.75rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.landing-fraud-modal__item:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

.landing-fraud-modal__item-num {
    font-size: 1.4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.landing-fraud-modal__item:nth-child(1) .landing-fraud-modal__item-num {
    color: #2e7d32;
}

.landing-fraud-modal__item:nth-child(2) .landing-fraud-modal__item-num {
    color: #d32f2f;
}

.landing-fraud-modal__item:nth-child(3) .landing-fraud-modal__item-num {
    color: #f57c00;
}

.landing-fraud-modal__item-content strong {
    display: block;
    font-family: "Krub", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2d405f;
    margin-bottom: 0.25rem;
}

.landing-fraud-modal__item-content p {
    font-family: "Open Sans", sans-serif;
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.landing-fraud-modal__footer-note {
    background: #f1f5f9;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
}

.landing-fraud-modal__footer-note i {
    color: #3b4ef8;
    margin-right: 0.25rem;
}

.landing-fraud-modal__footer-note strong {
    color: #1e293b;
    font-size: 1rem;
}

.landing-fraud-modal__footer {
    border-top: none;
    padding: 1rem 2rem 2rem;
    display: flex;
    justify-content: center;
}

.landing-fraud-modal__btn {
    background: #3b4ef8 !important;
    border: none !important;
    color: #ffffff !important;
    font-family: "Krub", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 3rem !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 15px rgba(59, 78, 248, 0.35) !important;
    transition: all 0.3s ease !important;
}

.landing-fraud-modal__btn:hover {
    background: #1d2fd0 !important;
    box-shadow: 0 6px 20px rgba(59, 78, 248, 0.45) !important;
    transform: translateY(-2px);
}

.landing-fraud-modal__btn:active {
    transform: translateY(0);
}

