/* =========================================================
   FEEDBACK FORM
   DESKTOP VERSION
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.feedback-page{
    width:100%;
    background:#ffffff;
    color:#172033;
}

/* ================= BREADCRUMB ================= */
.feedback-breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:-50px;
    margin-bottom:0;
    margin-left:-37px;
    transform:translateY(-45px);
    color:#ffffff;
    font-size:14px;
    font-weight:500;
}

.feedback-breadcrumb i{
    font-size:9px;
    opacity:.8;
}

.feedback-breadcrumb a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.feedback-breadcrumb a:hover{
    color:#98d733;
    text-decoration:none;
}

.feedback-breadcrumb span{
    font-weight:750;
    color:#caf5f2;
    text-decoration:none;   
}

/* ================= HERO ================= */
.feedback-hero{
    height:400px;
    position:relative;
    overflow:hidden;
    background-image:url("/static/img/profil/hero.jpg");
    background-size:cover;
    background-position:right center;
    display:flex;
    align-items:center;
    z-index: 1;
}

.feedback-hero .container {
    padding-left:80px;
}

/* RED GRADIENT */
.feedback-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(190,0,0,0.95) 0%,
        rgba(205,0,0,0.75) 35%,
        rgba(205,0,0,0.25) 70%,
        rgba(252, 251, 251, 0.05)
    );
}

/* DOT */
.feedback-hero::before{
    content:"";
    position:absolute;
    top:25px;
    left:35px;
    width:120px;
    height:120px;
    background-image:
    radial-gradient(
        rgba(255,255,255,.8) 2px,
        transparent 2px
    );
    background-size:16px 16px;
    opacity:.5;
    z-index:3;
}

/* CONTENT */
.feedback-hero-container{
    position:relative;
    z-index:2;
    width:100%;
}

.feedback-hero-content{
    max-width:800px;
    color:white;
    transform:translateY(20px);
    padding-left:100px;
    padding-bottom: 110px;
}

.feedback-label{
    color:white;
    font-size:52px;
    font-weight:700;
    margin:0 0 16px -2px;
    line-height:1.15;
}

.feedback-hero p{
    font-size:18px;
    line-height:1.6;
    color:white;
    max-width: 620px;
    margin-bottom: 0;
}

/* =========================================================
   SOFT FADE BAGIAN BAWAH HERO
========================================================= */
.feedback-hero::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:120px;
    z-index:5;
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,.35) 35%,
            rgba(255,255,255,.75) 65%,
            #ffffff 100%
        );
    pointer-events:none;
}

/* =========================================================
   MAIN
========================================================= */

.feedback-main{
    width:100%;

    padding:28px 2.5% 50px;

    background:#ffffff;
}


.feedback-layout{
    display:grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap:24px;

    max-width:1500px;
    margin:0 auto;
}


/* =========================================================
   FORM CARD
========================================================= */

.feedback-form-card{
    background:#ffffff;

    border:1px solid #e6ece9;
    border-radius:12px;

    box-shadow:
        0 5px 20px rgba(15,23,42,.06);

    overflow:hidden;
}


.feedback-form-grid{
    display:grid;

    grid-template-columns:
        1fr
        1fr;

    gap:0;
}


.feedback-column{
    padding:32px 34px 28px;
}


.feedback-column + .feedback-column{
    border-left:1px solid #edf1ef;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.feedback-section-heading{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:26px;
}


.feedback-section-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#fff0f1;
    color:#d71920;

    flex:0 0 40px;

    width:40px;
    height:40px;

    font-size:16px;
}


.feedback-section-heading h2{
    margin:0 0 3px;

    color:#d71920;

    font-size:16px;
    line-height:1.2;
    font-weight:800;
}


.feedback-section-heading p{
    margin:0;

    color:#68777a;

    font-size:12px;
    line-height:1.45;
}


/* =========================================================
   FIELD
========================================================= */

.feedback-field{
    margin-bottom:15px;
}


.feedback-field label{
    display:block;
    margin-bottom:8px;
    color:#172033;
    font-size:13px;
    font-weight:700;
}


.feedback-field label span{
    color:#e60012;
}


.feedback-field label small{
    color:#7b8790;
    font-weight:500;
}


/* =========================================================
   INPUT
========================================================= */

.feedback-input{
    position:relative;

    display:flex;
    align-items:center;

    min-height:48px;

    border:1px solid #dce3e8;
    border-radius:9px;

    background:#ffffff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.feedback-input:focus-within{
    border-color:#d71920;
    box-shadow:
        0 0 0 3px rgba(215,25,32,.08);
}


.feedback-input > i:first-child{
    text-align:center;
    width:46px;
    color:#d71920;
    font-size:15px;
}


.feedback-input input,
.feedback-input select{
    flex:1;
    width:100%;
    min-width:0;
    padding:0 10px 0 0;
    border:0;
    outline:0;
    background:transparent;
    color:#26343b;
    font-family:inherit;
    height:46px;
    font-size:13px;
}


.feedback-input input::placeholder{
    color:#8b969d;
}


.feedback-select{
    padding-right:34px;
}


.feedback-select select{
    appearance:none;
    cursor:pointer;
}


.feedback-select-arrow{
    position:absolute;

    right:13px;

    color:#26343b !important;

    font-size:9px !important;

    pointer-events:none;
}


/* =========================================================
   TEXTAREA
========================================================= */

.feedback-textarea{
    position:relative;
    min-height:150px;
    border-radius:9px;
    border:1px solid #dce4e1;
    background:#ffffff;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.feedback-textarea:focus-within{
    border-color:#d71920;
    box-shadow:
        0 0 0 3px rgba(215,25,32,.08);
}


.feedback-textarea > i{
    position:absolute;

    top:13px;
    left:13px;

    color:#d71920;
    font-size:13px;
}


.feedback-textarea textarea{
    width:100%;
    height:150px;
    padding:14px 14px 28px 42px;
    border:0;
    outline:0;
    resize:none;
    background:transparent;
    color:#26343b;
    font-family:inherit;
    font-size:13px;
    line-height:1.6;
}


.feedback-textarea textarea::placeholder{
    color:#8b969d;
}


.feedback-counter{
    position:absolute;

    right:11px;
    bottom:7px;

    color:#7f8b91;

    font-size:9px;
}


/* =========================================================
   PRIVACY
========================================================= */

.feedback-privacy-box{
    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-top:18px;
    padding:13px;

    border:1px solid #f3d6d8;
    border-radius:7px;

    background:#fff7f7;
}


.feedback-privacy-icon{
    flex:0 0 28px;

    width:28px;
    height:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d71920;

    font-size:16px;
}


.feedback-privacy-box strong{
    display:block;

    margin-bottom:3px;

    color:#d71920;

    font-size:11px;
}


.feedback-privacy-box p{
    margin:0;

    color:#64748b;

    font-size:9px;
    line-height:1.5;
}


/* =========================================================
   UPLOAD
========================================================= */
.feedback-upload{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    min-height:62px;
    padding:12px;
    border:1px dashed #c8d5d1;
    border-radius:7px;
    background:#ffffff;
    text-align:center;
    cursor:pointer;
}

.feedback-upload > i{
    margin-bottom:4px;
    color:#d71920;
    font-size:14px;
}

.feedback-upload strong{
    color:#d71920;
    font-size:10px;
}

.feedback-upload span{
    margin-top:3px;
    color:#7c898e;
    font-size:9px;
}

/* =========================================================
   TIPS
========================================================= */

.feedback-tips{
    margin-top:18px;
    padding:13px;

    border:1px solid #f3d6d8;
    border-radius:7px;

    background:#fff9f9;

}


.feedback-tips > strong{
    display:block;

    margin-bottom:8px;

    color:#d71920;

    font-size:11px;
}


.feedback-tips > strong i{
    margin-right:5px;
}


.feedback-tips ul{
    margin:0;
    padding:0;

    list-style:none;
}


.feedback-tips li{
    position:relative;

    margin-bottom:5px;
    padding-left:17px;

    color:#536067;

    font-size:9px;
    line-height:1.4;
}


.feedback-tips li:last-child{
    margin-bottom:0;
}


.feedback-tips li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#d71920;
    font-weight:800;
}

/* =========================================================
   FORM BOTTOM
========================================================= */
.feedback-form-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:16px 26px;
    border-top:1px solid #edf1ef;
}

.feedback-agreement{
    display:flex;
    align-items:flex-start;
    gap:8px;
    max-width:520px;
    color:#526067;
    font-size:10px;
    line-height:1.5;
    cursor:pointer;
}

.feedback-agreement input{
    flex:0 0 auto;
    margin-top:2px;
}

.feedback-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.feedback-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-family:inherit;
    font-weight:700;
    cursor:pointer;
    min-width:170px;
    padding:13px 20px;
    border-radius:9px;
    font-size:13px;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.feedback-btn:hover{
    transform:translateY(-1px);
}

.feedback-btn-outline{
    border:1px solid #d71920;
    background:#ffffff;
    color:#d71920;
}

.feedback-btn-primary{
    border:1px solid #d71920;
    background:#d71920;
    color:#ffffff;
    box-shadow:
        0 7px 18px rgba(215,25,32,.18);
}

.feedback-btn-primary:hover{
    background:#b9141a;
    box-shadow:
        0 10px 22px rgba(215,25,32,.24);
}

/* =========================================================
   SIDEBAR
========================================================= */
.feedback-sidebar{
    align-self:start;
    padding:28px 26px;
    border-radius:12px;
    border:1px solid #dce4e1;
    background:#ffffff;
    box-shadow:
        0 4px 16px rgba(15,23,42,.04);
}

.feedback-sidebar h2{
    margin:0;
    color:#172033;
    font-size:20px;
    line-height:1.25;
    font-weight:800;
}

.feedback-sidebar-line{
    width:48px;
    height:3px;
    margin:14px 0 18px;
    background:#d71920;
}

.feedback-benefit{
    display:grid;
    grid-template-columns:22px 1fr;
    gap:10px;
    padding:0 0 15px;
    margin-bottom:15px;
    border-bottom:1px solid #e7ecea;
}

.feedback-benefit:last-child{
    padding-bottom:0;
    margin-bottom:0;
    border-bottom:0;
}

.feedback-benefit > span{
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#d71920;
    color:#ffffff;
    font-size:10px;
    font-weight:800;
}

.feedback-benefit strong{
    display:block;
    margin-bottom:4px;
    color:#172033;
    font-size:13px;
    line-height:1.3;
}

.feedback-benefit p{
    margin:0;
    color:#536067;
    font-size:11px;
    line-height:1.55;
}

/* =========================================================
   FEEDBACK FORM — TYPOGRAPHY SCALE DESKTOP
========================================================= */

/* Heading section */
.feedback-section-heading h2{
    font-size:18px;
    line-height:1.25;
}

.feedback-section-heading p{
    font-size:14px;
    line-height:1.5;
}


/* Label field */
.feedback-field label{
    font-size:14px;
    line-height:1.4;
}


/* Input & select */
.feedback-input,
.feedback-select{
    font-size:15px;
}

.feedback-input::placeholder{
    font-size:14px;
}


/* Icon di dalam input */
.feedback-input > i{
    font-size:16px;
}


/* Textarea */
.feedback-textarea{
    font-size:15px;
    line-height:1.65;
}

.feedback-textarea::placeholder{
    font-size:14px;
}

.feedback-textarea > i{
    font-size:16px;
}


/* Counter textarea */
.feedback-textarea-counter{
    font-size:12px;
}


/* Privacy box */
.feedback-privacy-box strong{
    font-size:13px;
}

.feedback-privacy-box p{
    font-size:12px;
    line-height:1.5;
}


/* Upload */
.feedback-upload{
    font-size:14px;
}

.feedback-upload strong{
    font-size:13px;
}

.feedback-upload span{
    font-size:12px;
}


/* Tips */
.feedback-tips > strong{
    font-size:13px;
}

.feedback-tips li{
    font-size:12px;
    line-height:1.55;
}


/* Sidebar heading */
.feedback-sidebar h2{
    font-size:21px;
    line-height:1.25;
}


/* Sidebar item title */
.feedback-benefit-title{
    font-size:14px;
}


/* Sidebar item description */
.feedback-benefit-text{
    font-size:12.5px;
    line-height:1.55;
}


/* Nomor benefit */
.feedback-benefit-number{
    font-size:13px;
}


/* Checkbox */
.feedback-form-agreement{
    font-size:12.5px;
    line-height:1.5;
}


/* Buttons */
.feedback-btn{
    font-size:14px;
}

/* =========================================================
   FEEDBACK FORM — MOBILE
========================================================= */

.feedback-mobile{
    display:none;
}


/* =========================================================
   MOBILE ONLY
========================================================= */

@media (max-width:600px){

    /* =====================================================
       DESKTOP FEEDBACK OFF
    ====================================================== */

    .feedback-page > .feedback-hero,
    .feedback-page > .feedback-main{
        display:none;
    }


    /* =====================================================
       MOBILE ON
    ====================================================== */

    .feedback-mobile{
        display:block;
        width:100%;
        background:#ffffff;
        color:#172033;
        padding-bottom:90px;
    }


    /* =====================================================
       HERO
    ====================================================== */

    .feedback-mobile-hero{
        position:relative;
        min-height:245px;
        overflow:hidden;
        background-image:url("/static/img/profil/hero.jpg");
        background-size:cover;
        background-position:center;
    }

    .feedback-mobile-hero-overlay{
        position:absolute;
        inset:0;
        background:
            linear-gradient(
                105deg,
                rgba(188,0,7,.97) 0%,
                rgba(214,0,10,.91) 52%,
                rgba(184,0,7,.62) 100%
            );
    }

    .feedback-mobile-hero::after{
        content:"";
        position:absolute;
        left:-10%;
        bottom:-37px;
        width:120%;
        height:75px;
        background:#ffffff;
        border-radius:50% 50% 0 0;
    }

    .feedback-mobile-hero-content{
        position:relative;
        z-index:2;
        padding:34px 22px 58px;
        color:#ffffff;
    }

    .feedback-mobile-eyebrow{
        display:block;
        margin-bottom:8px;
        font-size:10px;
        font-weight:800;
        letter-spacing:.7px;
        opacity:.9;
    }

    .feedback-mobile-hero h1{
        margin:0 0 14px;
        color:#ffffff;
        font-size:26px;
        line-height:1.18;
        font-weight:800;
    }

    .feedback-mobile-hero p{
        max-width:310px;
        margin:0;
        color:#ffffff;
        font-size:12px;
        line-height:1.7;
    }


    /* =====================================================
       BODY
    ====================================================== */

    .feedback-mobile-body{
        padding:4px 18px 30px;
    }


    /* =====================================================
       INFO BOX
    ====================================================== */

    .fm-info-box{
        display:flex;
        align-items:flex-start;
        gap:12px;
        padding:15px;
        border-radius:10px;
    }

    .fm-info-green{
        border:1px solid #d8e9df;
        background:#f6fbf8;
    }

    .fm-info-icon{
        flex:0 0 34px;
        width:34px;
        height:34px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        background:#e7f5ee;
        color:#087c57;
        font-size:15px;
    }

    .fm-info-box strong{
        display:block;
        margin-bottom:4px;
        color:#176b50;
        font-size:12px;
        font-weight:800;
    }

    .fm-info-box p{
        margin:0;
        color:#536067;
        font-size:10px;
        line-height:1.6;
    }


    /* =====================================================
       STEPPER
    ====================================================== */

    .fm-step-card{
        margin-top:18px;
        padding:18px 14px;
        border:1px solid #e7ece9;
        border-radius:11px;
        background:#ffffff;
        box-shadow:0 4px 15px rgba(15,23,42,.045);
    }

    .fm-step-title{
        margin-bottom:18px;
        color:#176b50;
        text-align:center;
        font-size:12px;
        font-weight:800;
    }

    .fm-stepper{
        display:flex;
        align-items:flex-start;
    }

    .fm-step-item{
        flex:0 0 70px;
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .fm-step-number{
        display:flex;
        align-items:center;
        justify-content:center;
        width:28px;
        height:28px;
        border-radius:50%;
        background:#ced3d1;
        color:#ffffff;
        font-size:11px;
        font-weight:800;
        transition:.2s ease;
    }

    .fm-step-item small{
        margin-top:7px;
        color:#7b8589;
        font-size:9px;
        line-height:1.3;
    }

    .fm-step-item.active .fm-step-number{
        background:#e30613;
        box-shadow:0 4px 10px rgba(227,6,19,.18);
    }

    .fm-step-item.active small{
        color:#172033;
        font-weight:700;
    }

    .fm-step-item.completed .fm-step-number{
        background:#13815d;
    }

    .fm-step-line{
        flex:1;
        height:1px;
        margin-top:14px;
        background:#dce2df;
    }


    /* =====================================================
       PANELS
    ====================================================== */

    .fm-step-panel{
        display:none;
        margin-top:22px;
    }

    .fm-step-panel.active{
        display:block;
        animation:fmFade .22s ease;
    }

    @keyframes fmFade{
        from{
            opacity:0;
            transform:translateY(5px);
        }

        to{
            opacity:1;
            transform:translateY(0);
        }
    }


    /* =====================================================
       SECTION HEADING
    ====================================================== */

    .fm-section-heading{
        display:flex;
        align-items:flex-start;
        gap:11px;
        margin-bottom:22px;
    }

    .fm-section-icon{
        flex:0 0 31px;
        width:31px;
        height:31px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        background:#e7f5ee;
        color:#087c57;
        font-size:13px;
    }

    .fm-section-heading h2{
        margin:1px 0 5px;
        color:#176b50;
        font-size:14px;
        line-height:1.25;
        font-weight:800;
    }

    .fm-section-heading p{
        margin:0;
        color:#667378;
        font-size:10px;
        line-height:1.6;
    }


    /* =====================================================
       FIELDS
    ====================================================== */

    .fm-field{
        margin-bottom:18px;
    }

    .fm-field > label{
        display:block;
        margin-bottom:8px;
        color:#172033;
        font-size:11px;
        font-weight:700;
    }

    .fm-field > label > span{
        color:#e30613;
    }

    .fm-field > label small{
        color:#7b8790;
        font-weight:500;
    }

    .fm-input{
        position:relative;
        display:flex;
        align-items:center;
        min-height:49px;
        border:1px solid #dbe2e6;
        border-radius:9px;
        background:#ffffff;
        transition:.2s ease;
    }

    .fm-input:focus-within{
        border-color:#d71920;
        box-shadow:0 0 0 3px rgba(215,25,32,.07);
    }

    .fm-input > i:first-child{
        flex:0 0 42px;
        width:42px;
        text-align:center;
        color:#168060;
        font-size:14px;
    }

    .fm-input input,
    .fm-input select{
        flex:1;
        width:100%;
        min-width:0;
        height:47px;
        padding:0 10px 0 0;
        border:0;
        outline:0;
        background:transparent;
        color:#26343b;
        font-family:inherit;
        font-size:11px;
    }

    .fm-input input::placeholder{
        color:#8d989e;
    }

    .fm-select{
        padding-right:32px;
    }

    .fm-select select{
        appearance:none;
    }

    .fm-select-arrow{
        position:absolute;
        right:13px;
        color:#26343b !important;
        font-size:9px !important;
        pointer-events:none;
    }


    /* =====================================================
       ERROR
    ====================================================== */

    .fm-error,
    .fm-agreement-error{
        display:none;
        margin-top:5px;
        color:#d71920;
        font-size:9px;
        line-height:1.4;
    }

    .fm-field.invalid .fm-input,
    .fm-field.invalid .fm-textarea{
        border-color:#d71920;
    }

    .fm-field.invalid .fm-error{
        display:block;
    }


    /* =====================================================
       TEXTAREA
    ====================================================== */

    .fm-textarea{
        position:relative;
        min-height:205px;
        border:1px solid #dbe2e6;
        border-radius:9px;
        background:#ffffff;
    }

    .fm-textarea:focus-within{
        border-color:#d71920;
        box-shadow:0 0 0 3px rgba(215,25,32,.07);
    }

    .fm-textarea > i{
        position:absolute;
        top:15px;
        left:14px;
        color:#168060;
        font-size:14px;
    }

    .fm-textarea textarea{
        width:100%;
        height:205px;
        padding:14px 14px 32px 43px;
        border:0;
        outline:0;
        resize:none;
        background:transparent;
        color:#26343b;
        font-family:inherit;
        font-size:11px;
        line-height:1.65;
    }

    .fm-textarea textarea::placeholder{
        color:#8d989e;
    }

    #fm-counter{
        position:absolute;
        right:11px;
        bottom:8px;
        color:#808b90;
        font-size:9px;
    }


    /* =====================================================
       SOFT BOX
    ====================================================== */

    .fm-soft-box{
        margin-top:-2px;
        margin-bottom:20px;
        padding:13px;
        border:1px solid #e1ebe6;
        border-radius:9px;
        background:#f8fbf9;
        color:#536067;
        font-size:9px;
        line-height:1.5;
    }

    .fm-soft-box > span{
        display:block;
        margin-bottom:6px;
    }

    .fm-soft-box ul{
        margin:0;
        padding-left:18px;
    }

    .fm-soft-box li{
        margin-bottom:3px;
    }

    .fm-soft-box li::marker{
        color:#168060;
    }


    /* =====================================================
       UPLOAD
    ====================================================== */

    .fm-upload{
        display:flex !important;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        min-height:115px;
        padding:15px;
        border:1px dashed #bccdc6;
        border-radius:9px;
        background:#ffffff;
        text-align:center;
        cursor:pointer;
    }

    .fm-upload > i{
        margin-bottom:7px;
        color:#168060;
        font-size:19px;
    }

    .fm-upload strong{
        color:#176b50;
        font-size:11px;
        line-height:1.45;
    }

    .fm-upload span{
        margin-top:6px;
        color:#7b878c;
        font-size:9px;
        line-height:1.45;
    }

    .fm-upload input{
        display:none;
    }

    .fm-file-name{
        margin-top:6px;
        color:#68777a;
        font-size:9px;
        text-align:center;
    }

    .fm-tip-list{
        margin:7px 0 0;
        padding:0;
        list-style:none;
    }

    .fm-tip-list li{
        position:relative;
        margin-bottom:5px;
        padding-left:16px;
        color:#536067;
        font-size:9px;
        line-height:1.45;
    }

    .fm-tip-list li::before{
        content:"✓";
        position:absolute;
        left:0;
        color:#168060;
        font-weight:800;
    }


    /* =====================================================
       BUTTONS
    ====================================================== */

    .fm-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        width:100%;
        min-height:47px;
        padding:10px 14px;
        border-radius:9px;
        font-family:inherit;
        font-size:11px;
        font-weight:800;
        cursor:pointer;
    }

    .fm-btn-primary,
    .fm-btn-submit{
        border:1px solid #e30613;
        background:#e30613;
        color:#ffffff;
        box-shadow:0 6px 14px rgba(227,6,19,.16);
    }

    .fm-navigation{
        display:grid;
        grid-template-columns:105px 1fr;
        gap:10px;
        margin-top:20px;
    }

    .fm-btn-back{
        border:1px solid #dce3e8;
        background:#ffffff;
        color:#536067;
    }


    /* =====================================================
       SUMMARY
    ====================================================== */

    .fm-summary{
        padding:3px 13px;
        border:1px solid #e8edeb;
        border-radius:10px;
        background:#ffffff;
    }

    .fm-summary-row{
        display:flex;
        align-items:flex-start;
        gap:11px;
        padding:13px 0;
        border-bottom:1px solid #edf1ef;
    }

    .fm-summary-row:last-child{
        border-bottom:0;
    }

    .fm-summary-icon{
        flex:0 0 31px;
        width:31px;
        height:31px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        background:#eef8f4;
        color:#168060;
        font-size:12px;
    }

    .fm-summary-row strong{
        display:block;
        margin-bottom:3px;
        color:#172033;
        font-size:10px;
    }

    .fm-summary-row span{
        display:block;
        color:#56636a;
        font-size:10px;
        line-height:1.45;
        overflow-wrap:anywhere;
    }


    /* =====================================================
       EMERGENCY
    ====================================================== */

    .fm-emergency{
        margin-top:17px;
        padding:14px;
        border:1px solid #f1d4d6;
        border-radius:9px;
        background:#fff6f6;
    }

    .fm-emergency > strong{
        color:#b71920;
        font-size:11px;
    }

    .fm-emergency > p{
        margin:5px 0 11px;
        color:#5d666a;
        font-size:9px;
        line-height:1.55;
    }

    .fm-emergency > a{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        min-height:46px;
        border:1px solid #e30613;
        border-radius:8px;
        background:#ffffff;
        color:#e30613;
        text-decoration:none;
        font-size:11px;
        font-weight:800;
    }

    .fm-emergency a small{
        display:block;
        margin-top:2px;
        font-size:9px;
    }


    /* =====================================================
       AGREEMENT
    ====================================================== */

    .fm-agreement{
        display:flex;
        align-items:flex-start;
        gap:9px;
        margin:18px 0 0;
        color:#4f5d63;
        font-size:10px;
        line-height:1.6;
    }

    .fm-agreement input{
        flex:0 0 auto;
        width:15px;
        height:15px;
        margin-top:1px;
    }

    .fm-agreement-error.show{
        display:block;
    }

    .fm-btn-submit{
        margin-top:17px;
    }

    .fm-btn-draft{
        margin-top:10px;
        border:1px solid #e30613;
        background:#ffffff;
        color:#e30613;
    }

    .fm-back-link{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:6px;
        width:100%;
        margin-top:13px;
        padding:7px;
        border:0;
        background:transparent;
        color:#657278;
        font-family:inherit;
        font-size:10px;
        cursor:pointer;
    }


    /* =====================================================
       AFTER SUBMIT
    ====================================================== */

    .fm-after-submit{
        display:flex;
        align-items:flex-start;
        gap:10px;
        margin-top:18px;
        padding:13px;
        border:1px solid #dce5f1;
        border-radius:9px;
        background:#f5f8fc;
    }

    .fm-after-submit > i{
        margin-top:2px;
        color:#28598d;
        font-size:14px;
    }

    .fm-after-submit strong{
        display:block;
        margin-bottom:3px;
        color:#254f80;
        font-size:10px;
    }

    .fm-after-submit p{
        margin:0;
        color:#59666c;
        font-size:9px;
        line-height:1.55;
    }


    /* =====================================================
       IMPORTANT INFO
    ====================================================== */

    .fm-important{
        margin-top:24px;
        padding:16px;
        border:1px solid #dceae3;
        border-radius:10px;
        background:#fbfdfc;
    }

    .fm-important-heading{
        display:flex;
        align-items:center;
        gap:9px;
        margin-bottom:17px;
    }

    .fm-important-heading > div{
        width:30px;
        height:30px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        background:#e7f5ee;
        color:#168060;
    }

    .fm-important-heading h2{
        margin:0;
        color:#176b50;
        font-size:13px;
        font-weight:800;
    }

    .fm-important-list{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:16px 12px;
    }

    .fm-important-item{
        display:flex;
        align-items:flex-start;
        gap:8px;
    }

    .fm-important-item > i{
        flex:0 0 27px;
        width:27px;
        height:27px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:50%;
        background:#e7f5ee;
        color:#168060;
        font-size:10px;
    }

    .fm-important-item strong{
        display:block;
        margin-bottom:3px;
        color:#26343b;
        font-size:9px;
    }

    .fm-important-item p{
        margin:0;
        color:#68777a;
        font-size:8px;
        line-height:1.45;
    }

    .fm-important-emergency{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:9px;
        margin-top:17px;
        padding:11px;
        border:1px solid #f0d6d8;
        border-radius:8px;
        background:#fff6f6;
    }

    .fm-important-emergency strong{
        color:#b71920;
        font-size:9px;
    }

    .fm-important-emergency p{
        margin:3px 0 0;
        color:#636d72;
        font-size:8px;
        line-height:1.4;
    }

    .fm-important-emergency > a{
        flex:0 0 130px;
        padding:9px 7px;
        border:1px solid #e30613;
        border-radius:7px;
        background:#ffffff;
        color:#e30613;
        text-align:center;
        text-decoration:none;
        font-size:8px;
        font-weight:800;
    }

    .fm-important-help{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:8px;
        margin-top:10px;
        padding:10px;
        border:1px solid #dde6f0;
        border-radius:8px;
        background:#f5f8fc;
    }

    .fm-important-help > div{
        display:flex;
        align-items:center;
        gap:6px;
        color:#526067;
        font-size:8px;
    }

    .fm-important-help > div > i{
        color:#087c57;
        font-size:13px;
    }

    .fm-important-help strong{
        color:#26343b;
    }

    .fm-important-help > a{
        flex:0 0 128px;
        padding:9px 6px;
        border-radius:7px;
        background:#087c57;
        color:#ffffff;
        text-align:center;
        text-decoration:none;
        font-size:9px;
        font-weight:800;
    }

        /* =====================================================
       MOBILE — FINAL TYPOGRAPHY & COLOR TUNING
    ====================================================== */

    /* ================= SECTION HEADING ================= */

    .fm-section-heading h2{
        color:#d71920;
        font-size:16px;
        line-height:1.25;
    }

    .fm-section-heading p{
        color:#68777a;
        font-size:11px;
        line-height:1.55;
    }

    .fm-section-icon{
        background:#fff0f1;
        color:#d71920;
        font-size:14px;
    }


    /* ================= FIELD LABEL ================= */

    .fm-field > label{
        color:#172033;
        font-size:12px;
        line-height:1.4;
    }

    .fm-field > label > span{
        color:#d71920;
    }


    /* ================= INPUT ================= */

    .fm-input input,
    .fm-input select{
        font-size:13px;
    }

    .fm-input input::placeholder{
        font-size:12px;
    }

    .fm-input > i:first-child{
        color:#d71920;
        font-size:15px;
    }


    /* ================= TEXTAREA ================= */

    .fm-textarea > i{
        color:#d71920;
        font-size:15px;
    }

    .fm-textarea textarea{
        font-size:13px;
        line-height:1.6;
    }

    .fm-textarea textarea::placeholder{
        font-size:12px;
    }

    #fm-counter{
        font-size:10px;
    }


    /* ================= PRIVACY / SOFT BOX ================= */

    .fm-info-box strong{
        font-size:13px;
    }

    .fm-info-box p{
        font-size:11px;
        line-height:1.55;
    }

    .fm-soft-box{
        font-size:10px;
        line-height:1.55;
    }


    /* ================= UPLOAD ================= */

    .fm-upload strong{
        color:#d71920;
        font-size:12px;
    }

    .fm-upload span{
        font-size:10px;
    }

    .fm-upload > i{
        color:#d71920;
        font-size:20px;
    }

    .fm-file-name{
        font-size:10px;
    }


    /* ================= TIPS ================= */

    .fm-tip-list li{
        font-size:10px;
        line-height:1.5;
    }

    .fm-tip-list li::before{
        color:#d71920;
    }


    /* ================= BUTTON ================= */

    .fm-btn{
        font-size:12px;
    }


    /* ================= SUMMARY ================= */

    .fm-summary-row strong{
        font-size:11px;
    }

    .fm-summary-row span{
        font-size:11px;
        line-height:1.5;
    }

    .fm-summary-icon{
        color:#d71920;
        background:#fff0f1;
    }


    /* ================= EMERGENCY ================= */

    .fm-emergency > strong{
        font-size:12px;
    }

    .fm-emergency > p{
        font-size:10px;
    }

    .fm-emergency > a{
        font-size:12px;
    }

    .fm-emergency a small{
        font-size:9px;
    }


    /* ================= AGREEMENT ================= */

    .fm-agreement{
        font-size:11px;
        line-height:1.55;
    }


    /* ================= AFTER SUBMIT ================= */

    .fm-after-submit strong{
        font-size:11px;
    }

    .fm-after-submit p{
        font-size:10px;
    }


    /* ================= IMPORTANT INFO ================= */

    .fm-important-heading h2{
        font-size:14px;
    }

    .fm-important-item strong{
        font-size:10px;
    }

    .fm-important-item p{
        font-size:9px;
        line-height:1.5;
    }

    .fm-important-emergency strong{
        font-size:10px;
    }

    .fm-important-emergency p{
        font-size:9px;
    }

    .fm-important-emergency > a{
        font-size:9px;
    }

    .fm-important-help > div{
        font-size:9px;
    }

    .fm-important-help > a{
        font-size:10px;
    }

    /* ================= INFO BOX ================= */

    .fm-info-green{
        border-color:#f3d6d8;
        background:#fff7f7;
    }

    .fm-info-icon{
        background:#fff0f1;
        color:#d71920;
    }

    .fm-info-box strong{
        color:#d71920;
    }


    /* ================= STEPPER TITLE ================= */

    .fm-step-title{
        color:#d71920;
    }


    /* ================= SECTION HEADING ================= */

    .fm-section-icon{
        background:#fff0f1;
        color:#d71920;
    }

    .fm-section-heading h2{
        color:#d71920;
    }


    /* ================= INPUT ICON ================= */

    .fm-input > i:first-child{
        color:#d71920;
    }


    /* ================= SOFT BOX ================= */

    .fm-soft-box{
        border-color:#f0e0e1;
        background:#fffafa;
    }

    .fm-soft-box li::marker{
        color:#d71920;
    }


    /* ================= UPLOAD ================= */

    .fm-upload > i{
        color:#d71920;
    }

    .fm-upload strong{
        color:#d71920;
    }


    /* ================= TIPS ================= */

    .fm-tip-list li::before{
        color:#d71920;
    }


    /* ================= SUMMARY ================= */

    .fm-summary-icon{
        background:#fff0f1;
        color:#d71920;
    }


    /* ================= IMPORTANT INFO ================= */

    .fm-important{
        border-color:#f0e0e1;
        background:#fffdfd;
    }

    .fm-important-heading > div{
        background:#fff0f1;
        color:#d71920;
    }

    .fm-important-heading h2{
        color:#d71920;
    }

    .fm-important-item > i{
        background:#fff0f1;
        color:#d71920;
    }


    /* ================= EMERGENCY ================= */

    .fm-important-emergency{
        border-color:#f0d6d8;
        background:#fff6f6;
    }


    /* =====================================================
       TETAP HIJAU — BRAND WHATSAPP
    ====================================================== */

    .fm-important-help > a{
        background:#087c57;
        color:#ffffff;
    }
}