/* =========================================================
   SPEAKER REQUEST
   ========================================================= */

body {
    background: #f7f8fa;
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, .95);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(232, 235, 240, .9);
}

.main-navbar .container {
    min-height: 76px;

    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: 22px;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.1;
}

.brand-text strong {
    color: var(--navy);

    font-size: 15px;
    font-weight: 800;

    letter-spacing: -.3px;
}

.brand-text small {
    display: block;

    margin-top: 5px;

    color: var(--text-soft);

    font-size: 10px;
    font-weight: 500;
}


/* NAV MENU */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.nav-menu > a:not(.nav-button) {
    position: relative;

    padding: 27px 0;

    color: #626c7e;

    font-size: 13px;
    font-weight: 600;

    transition: .2s ease;
}

.nav-menu > a:not(.nav-button):hover {
    color: var(--orange);
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 17px;

    color: white !important;

    background: var(--orange);

    border-radius: 10px;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 7px 18px rgba(243, 111, 33, .17);

    transition: .2s ease;
}

.nav-button:hover {
    color: white;

    background: var(--orange-dark);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(243, 111, 33, .25);
}


/* =========================================================
   PAGE
   ========================================================= */

.request-page {
    padding: 55px 0 80px;
}

.request-header {
    margin-bottom: 30px;
}

.request-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 22px;

    color: #66717c;
    font-size: 12px;
    font-weight: 650;

    transition: .2s ease;
}

.request-header .back-link:hover {
    color: #f26923;
}

.request-header h1 {
    margin: 0 0 8px;

    color: #17212b;
    font-size: 34px;
    font-weight: 850;
    letter-spacing: -.8px;
}

.request-header p {
    margin: 0;

    color: #7c8790;
    font-size: 13px;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.request-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 24px;
    align-items: start;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.form-card,
.summary-card {
    background: #fff;

    border: 1px solid #e9edf0;
    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(23, 33, 43, .055);
}

.form-card {
    padding: 30px;
}


/* =========================================================
   FORM SECTION
   ========================================================= */

.form-section {
    padding-bottom: 30px;
    margin-bottom: 30px;

    border-bottom: 1px solid #edf0f2;
}

.form-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;

    border-bottom: 0;
}

.form-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    margin-bottom: 22px;
}

.section-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #fff3ec;
    color: #f26923;

    font-size: 16px;
}

.form-section-heading h2 {
    margin: 0;

    color: #17212b;
    font-size: 16px;
    font-weight: 800;
}

.form-section-heading p {
    margin: 4px 0 0;

    color: #929aa2;
    font-size: 11px;
}


/* =========================================================
   FORM ELEMENT
   ========================================================= */

.form-label {
    margin-bottom: 7px;

    color: #34414c;
    font-size: 11px;
    font-weight: 750;
}

.required {
    color: #f26923;
}

.form-control,
.form-select {
    min-height: 45px;

    border: 1px solid #dfe4e7;
    border-radius: 10px;

    color: #26343f;
    font-size: 12px;

    box-shadow: none !important;
}

textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.form-control::placeholder {
    color: #b1b7bc;
}

.form-control:focus,
.form-select:focus {
    border-color: #f26923;

    box-shadow:
        0 0 0 3px rgba(242, 105, 35, .08) !important;
}

.field-help {
    margin-top: 6px;

    color: #a0a7ad;
    font-size: 10px;
}

.invalid-feedback {
    font-size: 10px;
}

.is-invalid {
    border-color: #dc3545 !important;
}


/* =========================================================
   DATE
   ========================================================= */

.date-picker-wrapper {
    position: relative;
}

.date-picker-wrapper i {
    position: absolute;
    top: 50%;
    left: 14px;

    transform: translateY(-50%);

    color: #f26923;
    font-size: 15px;

    pointer-events: none;
}

.date-picker-wrapper input {
    padding-left: 40px;
}


/* =========================================================
   FILE UPLOAD
   ========================================================= */

.upload-box {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 115px;
    padding: 20px;

    border: 1.5px dashed #d9dfe3;
    border-radius: 14px;

    background: #fcfdfd;

    cursor: pointer;

    transition: .2s ease;
}

.upload-box:hover,
.upload-box.dragging {
    border-color: #f26923;
    background: #fff8f4;
}

.upload-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #fff3ec;
    color: #f26923;

    font-size: 21px;
}

.upload-content strong {
    display: block;

    margin-bottom: 4px;

    color: #26343f;
    font-size: 12px;
    font-weight: 800;
}

.upload-content span {
    display: block;

    color: #929aa2;
    font-size: 10px;
    line-height: 1.5;
}

.upload-content .file-name {
    color: #f26923;
    font-weight: 750;
}

.upload-input {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    cursor: pointer;
}


/* =========================================================
   AGREEMENT
   ========================================================= */

.agreement-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    padding: 15px;

    border: 1px solid #edf0f2;
    border-radius: 12px;

    background: #fafbfc;
}

.agreement-box input {
    width: 16px;
    height: 16px;

    margin-top: 2px;

    accent-color: #f26923;
}

.agreement-box label {
    color: #66717c;
    font-size: 10px;
    line-height: 1.7;

    cursor: pointer;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-top: 25px;
}

.submit-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    color: #929aa2;
    font-size: 10px;
    line-height: 1.6;
}

.submit-note i {
    color: #f26923;
    font-size: 13px;
}

.submit-button {
    min-height: 48px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border: 0;
    border-radius: 11px;

    background: #f26923;
    color: #fff;

    font-size: 12px;
    font-weight: 800;

    box-shadow:
        0 9px 22px rgba(242, 105, 35, .18);

    transition: .2s ease;
}

.submit-button:hover {
    background: #dc5917;
    color: #fff;

    transform: translateY(-2px);
}

.submit-button:disabled {
    opacity: .75;
    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   SUMMARY CARD
   ========================================================= */

.summary-card {
    position: sticky;
    top: 100px;

    overflow: hidden;
}

.summary-header {
    padding: 23px 22px;

    background: #17212b;
    color: #fff;
}

.summary-header span {
    color: #ff9b65;

    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.5px;
}

.summary-header h3 {
    margin: 6px 0 0;

    font-size: 18px;
    font-weight: 800;
}

.summary-body {
    padding: 21px;
}


/* =========================================================
   SUMMARY EMPTY
   ========================================================= */

.summary-empty {
    padding: 15px 0 22px;

    text-align: center;
}

.summary-empty-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #fff3ec;
    color: #f26923;

    font-size: 22px;
}

.summary-empty strong {
    display: block;

    margin-bottom: 5px;

    color: #26343f;
    font-size: 12px;
}

.summary-empty p {
    margin: 0;

    color: #a0a7ad;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   SUMMARY DATA
   ========================================================= */

.summary-data {
    display: none;
}

.summary-data.active {
    display: block;
}

.summary-row {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 12px 0;

    border-bottom: 1px solid #edf0f2;
}

.summary-row:last-child {
    border-bottom: 0;
}

.summary-row > i {
    margin-top: 1px;

    color: #f26923;
    font-size: 14px;
}

.summary-row div {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.summary-row small {
    margin-bottom: 3px;

    color: #9ba3aa;
    font-size: 9px;
}

.summary-row strong {
    color: #33414c;
    font-size: 11px;
    font-weight: 750;

    overflow-wrap: anywhere;
}

.summary-info {
    margin-top: 15px;
    padding: 13px;

    border-radius: 10px;

    background: #fff8f4;

    color: #8c5b43;
    font-size: 9px;
    line-height: 1.7;
}

.summary-info i {
    margin-right: 4px;

    color: #f26923;
}


/* =========================================================
   ALERT
   ========================================================= */

.request-alert {
    margin-bottom: 22px;

    border: 0;
    border-radius: 12px;

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .request-layout {
        grid-template-columns: 1fr;
    }

    .summary-card {
        position: static;
        order: -1;
    }

    .summary-empty {
        padding-bottom: 5px;
    }

    .summary-data {
        display: none !important;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .request-page {
        padding: 35px 0 60px;
    }

    .request-header h1 {
        font-size: 28px;
    }

    .form-card {
        padding: 21px;
        border-radius: 16px;
    }

    .request-layout {
        gap: 15px;
    }

    .row {
        --bs-gutter-y: 15px;
    }

    .submit-area {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-button {
        width: 100%;
    }

    .upload-box {
        min-height: 105px;
    }
    /* =========================================================
   SUCCESS PAGE
========================================================= */

.success-page {
    min-height: calc(100vh - 150px);
    padding: 70px 0 90px;
    background:
        radial-gradient(
            circle at top right,
            rgba(241, 119, 37, .08),
            transparent 35%
        ),
        #f8fafc;
}


.success-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.success-icon {
    width: 86px;
    height: 86px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff3e8;

    color: #f47725;

    font-size: 42px;

    box-shadow:
        0 12px 30px rgba(244, 119, 37, .15);
}


.success-icon::after {
    content: "";

    position: absolute;
}


/* =========================================================
   TITLE
========================================================= */

.success-label {
    display: inline-block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;

    color: #f47725;
}


.success-title h1 {
    margin: 0 0 14px;

    font-size: clamp(30px, 4vw, 44px);

    font-weight: 800;

    color: #172033;
}


.success-title p {
    max-width: 650px;

    margin: 0 auto;

    color: #687386;

    line-height: 1.8;

    font-size: 15px;
}



/* =========================================================
   BOOKING CODE
========================================================= */

.booking-code-card {
    margin: 35px auto 24px;

    padding: 24px;

    max-width: 460px;

    border: 1px solid rgba(244, 119, 37, .2);

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #fff8f2,
        #fff
    );
}


.booking-code-card span {
    display: block;

    margin-bottom: 8px;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: #8b95a5;
}


.booking-code-card strong {
    display: block;

    font-size: 28px;

    letter-spacing: 2px;

    color: #f47725;
}


.booking-code-card p {
    margin: 8px 0 0;

    font-size: 12px;

    color: #8b95a5;
}



/* =========================================================
   DETAIL CARD
========================================================= */

.success-detail-card {

    margin-top: 28px;

    overflow: hidden;

    border-radius: 20px;

    background: #fff;

    border: 1px solid #e7eaf0;

    box-shadow:
        0 12px 35px rgba(23, 32, 51, .06);

    text-align: left;
}


.success-detail-header {

    padding: 25px 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    border-bottom: 1px solid #edf0f4;
}


.success-detail-header span {

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;

    color: #f47725;
}


.success-detail-header h2 {

    margin: 5px 0 0;

    font-size: 21px;

    font-weight: 800;

    color: #172033;
}


.status-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    border-radius: 999px;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;
}


.status-badge.pending {

    background: #fff6df;

    color: #a86c00;
}



/* =========================================================
   DETAIL BODY
========================================================= */

.success-detail-body {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0;

}


.detail-item {

    display: flex;

    gap: 14px;

    padding: 22px 25px;

    border-bottom: 1px solid #edf0f4;
}


.detail-item:nth-child(odd) {

    border-right: 1px solid #edf0f4;

}


.detail-icon {

    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #fff4ea;

    color: #f47725;

    font-size: 17px;
}


.detail-item span {

    display: block;

    margin-bottom: 4px;

    font-size: 11px;

    font-weight: 600;

    color: #929baa;
}


.detail-item strong {

    display: block;

    color: #20293a;

    font-size: 14px;

    line-height: 1.5;
}



/* =========================================================
   NEXT STEP
========================================================= */

.next-step-card {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-top: 24px;

    padding: 22px 25px;

    text-align: left;

    border-radius: 16px;

    background: #fff8f2;

    border: 1px solid #ffe3cf;
}


.next-step-icon {

    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff;

    color: #f47725;

    font-size: 19px;
}


.next-step-card h3 {

    margin: 0 0 7px;

    font-size: 15px;

    font-weight: 800;

    color: #252d3d;
}


.next-step-card p {

    margin: 0 0 7px;

    font-size: 13px;

    line-height: 1.7;

    color: #687386;
}



/* =========================================================
   ACTIONS
========================================================= */

.success-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.btn-primary-orange,
.btn-secondary-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 11px;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        .2s ease;
}


.btn-primary-orange {

    background: #f47725;

    color: #fff;

    box-shadow:
        0 8px 18px rgba(244, 119, 37, .2);
}


.btn-primary-orange:hover {

    background: #dd6418;

    color: #fff;

    transform: translateY(-1px);
}


.btn-secondary-outline {

    background: #fff;

    color: #4e5869;

    border: 1px solid #dfe3e9;
}


.btn-secondary-outline:hover {

    color: #f47725;

    border-color: #f47725;

    background: #fff8f2;
}



/* =========================================================
   FOOTNOTE
========================================================= */

.success-footnote {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 25px;

    font-size: 12px;

    color: #929baa;
}


.success-footnote i {

    color: #f47725;

    font-size: 15px;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .success-page {

        padding:
            45px 0
            60px;

    }


    .success-title h1 {

        font-size: 30px;

    }


    .success-detail-header {

        align-items: flex-start;

        flex-direction: column;

        padding: 22px;

    }


    .success-detail-body {

        grid-template-columns: 1fr;

    }


    .detail-item:nth-child(odd) {

        border-right: none;

    }


    .detail-item {

        padding: 18px 20px;

    }


    .next-step-card {

        padding: 20px;

    }


    .success-actions {

        flex-direction: column;

    }


    .btn-primary-orange,
    .btn-secondary-outline {

        width: 100%;

    }

}


@media (max-width: 480px) {

    .booking-code-card strong {

        font-size: 23px;

    }


    .success-icon {

        width: 72px;

        height: 72px;

        font-size: 34px;

    }

}

}
