/* =========================================================
   SI-NARA
   CHECK REQUEST PAGE
========================================================= */

:root {
    --orange: #f36f21;
    --orange-dark: #d95712;
    --orange-light: #fff1e8;
    --orange-soft: #fff8f3;

    --navy: #17253d;
    --navy-dark: #101b2e;

    --text: #273247;
    --text-soft: #687386;
    --muted: #9aa3b2;

    --white: #ffffff;
    --background: #f8f9fb;
    --border: #e8ebf0;

    --green: #20a36a;
    --green-soft: #eaf8f1;

    --blue: #3976e8;
    --blue-soft: #edf3ff;

    --red: #e45555;
    --red-soft: #fff0f0;

    --shadow-sm: 0 4px 18px rgba(25, 35, 55, .06);
    --shadow: 0 18px 50px rgba(25, 35, 55, .10);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    font-family: 'Inter', sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            180deg,
            #fffaf7 0%,
            #f8f9fb 45%,
            #f8f9fb 100%
        );

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

.container {
    width: min(
        calc(100% - 48px),
        1080px
    );

    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.check-navbar {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, .94);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(232, 235, 240, .85);
}

.check-navbar-inner {
    width: min(
        calc(100% - 48px),
        1180px
    );

    min-height: 76px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* BRAND */

.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.brand-logo {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    color: white;

    background:
        linear-gradient(
            135deg,
             var(--white)

        );

    border-radius: 12px;

    box-shadow:
        0 7px 18px rgba(243, 111, 33, .23);

    font-size: 21px;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    color: var(--navy);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: -.3px;
}

.brand-text span {
    margin-top: 4px;

    color: var(--text-soft);

    font-size: 9px;
    font-weight: 500;
}


/* NAV ACTIONS */

.navbar-actions {
    display: flex;
    align-items: center;

    gap: 11px;
}

.back-home {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 10px 13px;

    color: var(--text-soft);

    border-radius: 9px;

    font-size: 11px;
    font-weight: 600;

    transition: .2s ease;
}

.back-home:hover {
    color: var(--orange);

    background: var(--orange-soft);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 15px;

    color: white;

    background: var(--orange);

    border-radius: 9px;

    box-shadow:
        0 7px 18px rgba(243, 111, 33, .17);

    font-size: 10px;
    font-weight: 700;

    transition: .2s ease;
}

.btn-submit:hover {
    color: white;

    background: var(--orange-dark);

    transform: translateY(-1px);

    box-shadow:
        0 10px 23px rgba(243, 111, 33, .23);
}


/* =========================================================
   PAGE
========================================================= */

.check-page {
    position: relative;

    flex: 1;

    padding: 75px 0 90px;

    overflow: hidden;
}


/* DECORATION */

.decor-circle {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;

    border: 1px solid rgba(243, 111, 33, .09);
}

.circle-one {
    width: 430px;
    height: 430px;

    top: -220px;
    right: -160px;
}

.circle-two {
    width: 650px;
    height: 650px;

    bottom: -420px;
    left: -300px;

    border-color: rgba(243, 111, 33, .055);
}


/* =========================================================
   HEADING
========================================================= */

.page-heading {
    position: relative;
    z-index: 2;

    max-width: 650px;

    margin: 0 auto 35px;

    text-align: center;
}

.heading-icon {
    width: 53px;
    height: 53px;

    display: grid;
    place-items: center;

    margin: 0 auto 15px;

    color: var(--orange);

    background: var(--orange-light);

    border: 1px solid #ffe0cf;

    border-radius: 15px;

    font-size: 21px;
}

.heading-label {
    display: block;

    color: var(--orange);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
}

.page-heading h1 {
    margin-top: 8px;

    color: var(--navy);

    font-size: clamp(29px, 4vw, 39px);

    line-height: 1.15;

    letter-spacing: -1.3px;

    font-weight: 800;
}

.page-heading p {
    max-width: 530px;

    margin: 11px auto 0;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   MAIN CARD
========================================================= */

.check-card {
    position: relative;
    z-index: 2;

    width: min(100%, 620px);

    margin: 0 auto;

    padding: 30px;

    background: rgba(255, 255, 255, .98);

    border: 1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);
}


/* =========================================================
   CARD HEADER
========================================================= */

.card-header-custom {
    display: flex;
    align-items: center;

    gap: 13px;

    padding-bottom: 23px;

    border-bottom: 1px solid var(--border);
}

.header-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--orange);

    background: var(--orange-light);

    border-radius: 11px;

    font-size: 18px;
}

.card-header-custom h2 {
    color: var(--navy);

    font-size: 16px;
    font-weight: 800;

    letter-spacing: -.3px;
}

.card-header-custom p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 9px;
}


/* =========================================================
   ERROR
========================================================= */

.alert-error {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin-top: 20px;
    padding: 13px 14px;

    color: #a83d3d;

    background: var(--red-soft);

    border: 1px solid #ffdada;

    border-radius: 10px;
}

.alert-icon {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--red);

    background: white;

    border-radius: 7px;
}

.alert-error strong {
    display: block;

    font-size: 10px;
    font-weight: 800;
}

.alert-error p {
    margin-top: 2px;

    color: #b45b5b;

    font-size: 8px;

    line-height: 1.5;
}


/* =========================================================
   FORM
========================================================= */

.check-form {
    padding-top: 25px;
}

.form-group + .form-group {
    margin-top: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-size: 10px;
    font-weight: 700;
}

.form-group label span {
    color: var(--orange);
}


/* INPUT */

.input-wrapper {
    display: flex;
    align-items: center;

    width: 100%;

    min-height: 48px;

    padding: 0 14px;

    background: white;

    border: 1px solid #dfe3e9;

    border-radius: 10px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.input-wrapper i {
    flex-shrink: 0;

    color: var(--muted);

    font-size: 15px;

    transition: .2s ease;
}

.input-wrapper input {
    width: 100%;

    height: 46px;

    padding: 0 10px;

    color: var(--navy);

    background: transparent;

    border: 0;

    outline: 0;

    font-size: 11px;
    font-weight: 500;
}

.input-wrapper input::placeholder {
    color: #b3bac5;
}

.input-wrapper:focus-within {
    border-color: var(--orange);

    background: #fffdfb;

    box-shadow:
        0 0 0 3px rgba(243, 111, 33, .09);
}

.input-wrapper:focus-within i {
    color: var(--orange);
}

.input-wrapper.has-error {
    border-color: var(--red);

    background: #fffafa;
}


/* HELP */

.form-help {
    display: flex;
    align-items: flex-start;

    gap: 5px;

    margin-top: 7px;

    color: var(--muted);

    font-size: 8px;

    line-height: 1.5;
}

.form-help i {
    margin-top: 1px;

    color: var(--orange);
}


/* FIELD ERROR */

.field-error {
    margin-top: 5px;

    color: var(--red);

    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   BUTTON
========================================================= */

.btn-check {
    width: 100%;

    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 28px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--white)
        );

    border: 0;

    border-radius: 10px;

    box-shadow:
        0 9px 22px rgba(243, 111, 33, .20);

    font-size: 10px;
    font-weight: 800;

    transition: .2s ease;
}

.btn-check:hover {
    transform: translateY(-2px);

    box-shadow:
        0 13px 27px rgba(243, 111, 33, .27);
}

.btn-check:active {
    transform: translateY(0);
}

.btn-check i {
    font-size: 13px;

    transition: transform .2s ease;
}

.btn-check:hover i {
    transform: translateX(3px);
}


/* =========================================================
   DIVIDER
========================================================= */

.card-divider {
    position: relative;

    margin: 27px 0 21px;

    text-align: center;
}

.card-divider::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;
    right: 0;

    height: 1px;

    background: var(--border);
}

.card-divider span {
    position: relative;
    z-index: 1;

    padding: 0 12px;

    color: var(--muted);

    background: white;

    font-size: 8px;
}


/* =========================================================
   NEW REQUEST
========================================================= */

.new-request {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px;

    background: var(--orange-soft);

    border: 1px solid #ffe4d4;

    border-radius: 11px;
}

.new-request-icon {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--orange);

    background: white;

    border-radius: 8px;

    font-size: 14px;
}

.new-request-content {
    min-width: 0;
    flex: 1;
}

.new-request-content strong {
    display: block;

    color: var(--navy);

    font-size: 9px;
    font-weight: 800;
}

.new-request-content p {
    margin-top: 2px;

    color: var(--muted);

    font-size: 7px;

    line-height: 1.5;
}

.new-request-button {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    flex-shrink: 0;

    padding: 8px 10px;

    color: var(--orange);

    background: white;

    border: 1px solid #ffd8c1;

    border-radius: 7px;

    font-size: 8px;
    font-weight: 800;

    transition: .2s ease;
}

.new-request-button:hover {
    color: white;

    background: var(--orange);

    border-color: var(--orange);
}


/* =========================================================
   INFORMATION
========================================================= */

.information-grid {
    position: relative;
    z-index: 2;

    width: min(100%, 850px);

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin: 25px auto 0;
}

.information-item {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    padding: 14px;

    background: rgba(255, 255, 255, .75);

    border: 1px solid var(--border);

    border-radius: 11px;
}

.information-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 8px;

    font-size: 13px;
}

.information-icon.orange {
    color: var(--orange);
    background: var(--orange-light);
}

.information-icon.green {
    color: var(--green);
    background: var(--green-soft);
}

.information-icon.blue {
    color: var(--blue);
    background: var(--blue-soft);
}

.information-item strong {
    display: block;

    color: var(--navy);

    font-size: 8px;
    font-weight: 800;
}

.information-item p {
    margin-top: 3px;

    color: var(--muted);

    font-size: 7px;

    line-height: 1.6;
}


/* =========================================================
   FOOTER
========================================================= */

.check-footer {
    padding: 24px 0;

    background: var(--navy-dark);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;

    gap: 9px;
}

.footer-logo {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    color: white;

    background: var(--orange);

    border-radius: 8px;

    font-size: 14px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: white;

    font-size: 9px;
    font-weight: 800;
}

.footer-brand span {
    margin-top: 2px;

    color: rgba(255,255,255,.40);

    font-size: 7px;
}

.footer-text {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,.35);

    font-size: 7px;
}

.footer-dot {
    color: var(--orange);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 750px) {

    .check-navbar-inner {
        min-height: 68px;
    }

    .navbar-actions {
        gap: 5px;
    }

    .back-home {
        padding: 8px;

        font-size: 0;
    }

    .back-home i {
        font-size: 16px;
    }

    .btn-submit {
        padding: 9px 11px;

        font-size: 8px;
    }

    .check-page {
        padding: 55px 0 65px;
    }

    .information-grid {
        grid-template-columns: 1fr;
    }

    .information-item {
        align-items: center;
    }

    .footer-inner {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 520px) {

    .container,
    .check-navbar-inner {
        width: min(
            calc(100% - 30px),
            1080px
        );
    }

    .check-card {
        padding: 22px 18px;

        border-radius: 16px;
    }

    .page-heading {
        margin-bottom: 25px;
    }

    .page-heading h1 {
        font-size: 29px;
    }

    .page-heading p {
        font-size: 10px;
    }

    .card-header-custom {
        align-items: flex-start;
    }

    .new-request {
        align-items: flex-start;
    }

    .new-request-button {
        margin-top: 1px;
    }

    .footer-text {
        flex-wrap: wrap;
    }

}


@media (max-width: 390px) {

    .brand-text strong {
        font-size: 12px;
    }

    .brand-text span {
        font-size: 8px;
    }

    .brand-logo {
        width: 38px;
        height: 38px;

        font-size: 18px;
    }

    .btn-submit {
        display: none;
    }

    .check-card {
        padding: 20px 15px;
    }
    

}
.check-action {
    margin-top: 20px;
}

.btn-check-request {
    width: 100%;

    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #fff;

    background: var(--orange);

    border: 0;
    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 7px 18px rgba(243,111,33,.18);

    transition: .2s ease;
}

.btn-check-request:hover {
    background: var(--orange-dark);

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(243,111,33,.25);
}

.btn-check-request i {
    font-size: 14px;
}