.new_form_popup{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
    align-items:center;
    justify-content:center;
    padding:20px;
}
.new_form_popup.show{
    display:flex;
}
.new_form_overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(3px);
}
.new_form_box{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    max-height:90vh;
    overflow-y:auto;
    background:#fff;
    border-radius:18px;
    padding:32px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}
.new_form_close{
    position:absolute;
    top:14px;
    right:16px;
    width:36px;
    height:36px;
    border:0;
    border-radius:50%;
    background:#f1f3f5;
    color:#333;
    font-size:26px;
    line-height:32px;
    cursor:pointer;
}
.new_form_close:hover{
    background:#e5e7eb;
}
.new_form_header{
    display:flex;
    align-items:center;
    gap:15px;
    padding-right:35px;
    margin-bottom:25px;
}
.new_form_icon{
    width:52px;
    height:52px;
    flex:0 0 52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#eef7ff;
    color:#0878d1;
}
.new_form_icon svg{
    width:26px;
    height:26px;
}
.new_form_header h3{
    margin:0 0 5px;
    font-size:25px;
    font-weight:700;
    color:#123f8f;
}
.new_form_header p{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#777;
}
.new_form_group{
    margin-bottom:18px;
}
.new_form_group label{
    display:block;
    margin-bottom:7px;
    font-size:14px;
    font-weight:600;
    color:#333;
}
.new_form_group label span{
    color:#e53935;
}
.new_form_input{
    position:relative;
}
.new_form_input > svg{
    position:absolute;
    left:14px;
    top:50%;
    width:18px;
    height:18px;
    color:#777;
    transform:translateY(-50%);
    pointer-events:none;
}
.new_form_input input,
.new_form_input textarea{
    width:100%;
    border:1px solid #d9dfe7;
    border-radius:10px;
    background:#fff;
    color:#222;
    font-size:15px;
    padding:13px 14px 13px 43px;
    outline:none;
    transition:.2s;
    box-sizing:border-box;
}
.new_form_input input:focus,
.new_form_input textarea:focus{
    border-color:#168de2;
    box-shadow:0 0 0 3px rgba(22,141,226,.10);
}
.new_form_input input::placeholder,
.new_form_input textarea::placeholder{
    color:#aaa;
    opacity:1;
}
.new_form_textarea > svg{
    top:18px;
    transform:none;
}
.new_form_input textarea{
    min-height:105px;
    resize:vertical;
}
.new_form_submit{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:0;
    border-radius:10px;
    background:#0878d1;
    color:#fff;
    padding:14px 20px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}
.new_form_submit:hover{
    background:#0668b8;
}
.new_form_submit:disabled{
    opacity:.65;
    cursor:not-allowed;
}
.new_form_submit svg{
    width:18px;
    height:18px;
}
#newEnquiryResult{
    margin-bottom:15px;
}
.new_form_success,
.new_form_error{
    padding:12px 14px;
    border-radius:8px;
    font-size:14px;
    line-height:1.5;
}
.new_form_success{
    background:#eaf8ef;
    color:#18743a;
}
.new_form_error{
    background:#fff0f0;
    color:#c62828;
}

.new_form_popup{
    position:fixed !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    left:0 !important;
    width:100vw !important;
    height:100vh !important;
    display:none !important;
    align-items:center !important;
    justify-content:center !important;
    padding:20px !important;
    box-sizing:border-box !important;
}
.new_form_popup.show{
    display:flex !important;
}
.new_form_popup_overlay{
    position:absolute !important;
    top:0 !important;
    right:0 !important;
    bottom:0 !important;
    left:0 !important;
    width:100% !important;
    height:100% !important;
}
.new_form_box{
    position:relative !important;
    top:auto !important;
    right:auto !important;
    bottom:auto !important;
    left:auto !important;
    margin:0 auto !important;
    transform:none !important;
}

/* ------ Brochure Form ----------------------------- */
.new_form_download_btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:12px;
    padding:13px 20px;
    border-radius:10px;
    background:#58a800;
    color:#fff !important;
    font-size:15px;
    font-weight:700;
    text-decoration:none !important;
    box-sizing:border-box;
}
.new_form_download_btn:hover{
    background:#4b9200;
    color:#fff !important;
}
.new_form_download_btn svg{
    width:18px;
    height:18px;
}


@media(max-width:600px){
    .new_form_popup{
        padding:12px;
    }
    .new_form_box{
        padding:25px 20px;
        border-radius:14px;
    }
    .new_form_header h3{
        font-size:22px;
    }
}