/* =========================================================
   MODAL PUTR
========================================================= */

.putr-modal {
    display: none;

    position: fixed;
    z-index: 99999;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    align-items: center;
    justify-content: center;
}


/* =========================================================
   KONTEN MODAL
========================================================= */

.putr-modal-content {
    position: relative;

    width: 90%;
    max-width: 850px;

    background: #ffffff;

    border-radius: 20px;

    padding: 24px 34px 38px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

    animation: putrModalShow 0.25s ease;
}


@keyframes putrModalShow {

    from {
        opacity: 0;
        transform: scale(0.96) translateY(-15px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

}


/* =========================================================
   TOMBOL CLOSE - BIRU
========================================================= */

.putr-close {

    position: absolute;

    top: 18px;
    right: 22px;

    border: none;

    background: transparent;

    color: #0d6efd;

    font-size: 32px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition: 0.2s ease;
}

.putr-close:hover {
    color: #0056b3;

    transform: scale(1.1);
}


/* =========================================================
   BRANDING
========================================================= */

.putr-branding {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 12px;
}

.putr-branding img {

    width: 38px;
    height: 38px;

    object-fit: contain;
}

.putr-branding span {

    font-size: 22px;

    font-weight: 700;

    color: #333333;
}


/* =========================================================
   JUDUL
========================================================= */

.putr-modal-content h3 {

    margin-top: 20px;
    margin-bottom: 30px;

    text-align: center;

    font-size: 25px;

    font-weight: 700;

    color: #333333;
}


/* =========================================================
   GRID
========================================================= */

.putr-menu-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* =========================================================
   CARD MENU
   BACKGROUND PUTIH
========================================================= */

.putr-menu-item {

    min-height: 145px;

    border-radius: 20px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    background: #ffffff;

    border: 2px solid #0d6efd;

    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.10);

    transition: all 0.25s ease;
}


/* =========================================================
   ICON - BIRU
========================================================= */

.putr-menu-item i {

    font-size: 40px;

    margin-bottom: 15px;

    color: #0d6efd;
}


/* =========================================================
   TEXT
========================================================= */

.putr-menu-item span {

    font-size: 18px;

    font-weight: 700;

    color: #333333;
}


/* =========================================================
   HOVER
========================================================= */

.putr-menu-item:hover {

    transform: translateY(-5px);

    background: #f8fbff;

    border-color: #0056b3;

    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.20);

    text-decoration: none;
}


/* Icon tetap biru lebih gelap saat hover */

.putr-menu-item:hover i {

    color: #0056b3;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .putr-modal-content {

        width: 94%;

        padding: 22px 20px 30px;
    }

    .putr-branding span {

        font-size: 20px;
    }

    .putr-modal-content h3 {

        font-size: 20px;

        margin-top: 18px;

        margin-bottom: 22px;
    }

    .putr-menu-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .putr-menu-item {

        min-height: 120px;
    }

}