/* =========================================================
   REQUESTS SECTION
========================================================= */

.requests-section {
    background: #ffffff;
}


/* =========================================================
   TITLE
========================================================= */

.section-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0B3768;
    color: white;

    border-radius: 18px;

    font-size: 28px;

    box-shadow: 0 8px 20px rgba(11, 55, 104, .20);
}


.section-title {
    color: #0B3768;

    font-size: 2rem;

    font-weight: 800;

    margin-bottom: 12px;
}


.section-line {
    width: 80px;
    height: 4px;

    background: #1E7886;

    border-radius: 10px;

    margin: 0 auto 20px;
}


.section-description {
    max-width: 850px;

    margin: auto;

    color: #64748b;

    font-size: 1.05rem;

    line-height: 2;

}


/* =========================================================
   CARD
========================================================= */

.modern-request-card {

    height: 100%;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 8px 30px rgba(15, 23, 42, .08);

    transition: all .3s ease;
}


.modern-request-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 15px 40px rgba(15, 23, 42, .13);
}


/* =========================================================
   HEADER
========================================================= */

.request-card-header {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 25px;

    background: linear-gradient(
        135deg,
        #0B3768,
        #1E7886
    );

    color: white;
}


.request-icon {

    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.15);

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 16px;

    font-size: 25px;
}


.request-badge {

    display: inline-block;

    background: #FFC107;

    color: #111827;

    font-size: .8rem;

    font-weight: 700;

    padding: 5px 12px;

    border-radius: 20px;

    margin-bottom: 5px;
}


.request-card-header h4 {

    margin: 0;

    font-size: 1.45rem;

    font-weight: 800;
}


/* =========================================================
   BODY
========================================================= */

.request-card-body {

    padding: 25px;

    color: #334155;

    line-height: 1.9;
}


.info-box {

    display: flex;

    gap: 15px;

    padding: 15px;

    background: #f8fafc;

    border-radius: 14px;

    border-right: 4px solid #1E7886;

    margin-bottom: 20px;
}


.info-box > i {

    color: #0B3768;

    font-size: 24px;

    margin-top: 5px;
}


.info-box strong {

    display: block;

    color: #0B3768;

    font-size: 1rem;

    margin-bottom: 4px;
}


.info-box p {

    margin: 0;

    font-size: .95rem;

    color: #64748b;
}


/* =========================================================
   DATE
========================================================= */

.important-date {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px;

    background: #fff7f7;

    border: 1px solid #fecaca;

    border-radius: 14px;
}


.date-icon {

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #D7262B;

    color: white;

    border-radius: 12px;

    font-size: 20px;
}


.important-date small {

    display: block;

    color: #64748b;

    font-size: .8rem;
}


.important-date strong {

    display: block;

    color: #D7262B;

    font-size: .95rem;
}


/* =========================================================
   TITLES
========================================================= */

.request-card-body h6 {

    color: #0B3768;

    font-weight: 800;

    font-size: 1.05rem;

    margin-bottom: 8px;
}


.request-card-body h6 i {

    color: #1E7886;

    margin-left: 6px;
}


/* =========================================================
   CREDENTIALS
========================================================= */

.credentials-box {

    background: #f8fafc;

    border-radius: 12px;

    padding: 12px 15px;

    margin-top: 15px;
}


.credentials-box > div {

    display: flex;

    align-items: center;

    gap: 7px;

    margin: 6px 0;

    font-size: .9rem;
}


.credentials-box i {

    color: #1E7886;

    width: 20px;
}


.credentials-box span {

    color: #64748b;
}


.credentials-box strong {

    color: #0B3768;
}


/* =========================================================
   DOCUMENTS
========================================================= */

.documents-list {

    list-style: none;

    padding: 0;

    margin: 10px 0 20px;
}


.documents-list li {

    position: relative;

    padding: 7px 30px 7px 0;

    font-size: .92rem;

    color: #475569;
}


.documents-list li i {

    position: absolute;

    right: 0;

    top: 12px;

    color: #1E7886;

    font-size: 13px;
}


/* =========================================================
   ALERT
========================================================= */

.deposit-alert {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    padding: 13px 15px;

    background: #fff8e1;

    border: 1px solid #ffe082;

    border-radius: 12px;

    color: #7c5a00;

    font-size: .9rem;

    font-weight: 600;
}


.deposit-alert i {

    color: #f59e0b;

    margin-top: 5px;
}


/* =========================================================
   FOOTER
========================================================= */

.request-card-footer {

    padding: 14px 25px;

    border-top: 1px solid #edf0f3;

    background: #fafafa;

    color: #64748b;

    font-size: .85rem;
}


.request-card-footer i {

    color: #1E7886;

    margin-left: 5px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .section-title {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: .95rem;

        padding: 0 10px;
    }

    .request-card-header {
        padding: 20px;
    }

    .request-card-header h4 {
        font-size: 1.2rem;
    }

    .request-card-body {
        padding: 20px;
    }

    .important-date strong {
        font-size: .85rem;
    }

    .credentials-box > div {
        align-items: flex-start;

        flex-wrap: wrap;
    }

}