/* bar di atas video */
.video-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

/* container icon */
.video-tools {
    display: flex;
    gap: 10px;
    background: #eef5ff;          /* biru muda seperti referensi */
    padding: 6px;
    border-radius: 12px;
}

/* tombol icon */
.video-tool {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: #e6f0ff;          /* biru icon */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.video-tool img {
    width: 24px;                  /* sesuai 24x24 */
    height: 24px;
}

/* hover halus */
.video-tool:hover {
    background: #d6e8ff;
}

/* video */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.step-card {
    position: relative;
    background: #fff;
    border: 1px solid #e6e9ef;
    border-radius: 14px;
    padding: 24px 20px 22px;
    height: 100%;

    text-align: left;              /* ⬅️ penting */
}

.step-number {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 52px;
    font-weight: 700;
    color: #eef1f5;
    line-height: 1;
    pointer-events: none;
}

.step-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    display: block;                /* ⬅️ pastikan bukan inline */
}


.step-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 6px;
    text-align: left;
}

.step-desc {
    font-size: 13.5px;
    color: #6c757d;
    margin: 0;
    text-align: left;
}


.pdf-card {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #f1f7ff;                 /* biru muda lembut */
    border: 1.5px dashed #6ea8fe;        /* biru putus-putus */
    border-radius: 16px;

    padding: 18px 20px;
}

.pdf-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pdf-left img {
    width: 44px;
    height: auto;
}

.pdf-title {
    font-weight: 600;
    font-size: 16px;
    color: #1f2a37;
}

.pdf-desc {
    font-size: 14px;
    color: #6b7280;
}

.pdf-btn {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
}

.modal-body .btn-ajukan-layanan.w-100 {
    border-radius: 18px;   /* default BS 0.375rem → ini lebih rounded */
    background-color: #0089ED;
    color: white;
}

@media (max-width: 576px) {
    .pdf-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pdf-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .step-card {
        padding: 20px 18px;
    }

    .step-number {
        font-size: 44px;
    }
}
