* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #e9e9e9;
    color: #ffffff;
}

body {
    min-width: 320px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-bg {
    width: 100%;
}

/* =========================
   HEADER
========================= */

.main-header {
    width: 100%;
    max-width: 1000px;
    margin: 8px auto 0;
    background: #3f73b8;
}

.header-top {
    position: relative;
    min-height: 120px;
    overflow: hidden;
    background: url('/assets/images/header-bg.png') no-repeat center center;
    background-size: cover;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px 10px 22px;
    min-height: 120px;
}

.brand-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.brand-emblem {
    width: 42px;
    height: auto;
    flex: 0 0 auto;
}

.brand-text {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 400;
    max-width: 520px;
}

.brand-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 0 0 auto;
}

.right-top {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
}

.lang-switch a {
    display: block;
}

.lang-switch img {
    width: 18px;
    height: auto;
    display: block;
}

.visa-logo {
    width: 240px;
    height: auto;
    display: block;
}

.logo-line {
    width: 302px;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    margin-top: 6px;
}

.main-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    background: #3f73b8;
}

.nav-toggle {
    display: none;
    width: 100%;
    background: #3f73b8;
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-size: 22px;
    text-align: left;
    cursor: pointer;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.nav-menu li {
    display: flex;
}

.nav-menu a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 18px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.06);
}

.nav-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
}

.nav-start::before {
    background: #f2c318;
}

.nav-need::before {
    background: #8d43ff;
}

.nav-apply::before {
    background: #b7d91d;
}

.nav-continue::before {
    background: #57d7db;
}

.nav-status::before {
    background: #d81c1c;
}

.nav-check::before {
    background: #f2c318;
}

/* =========================
   PAGE CONTENT WRAPPER
========================= */

.page-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 400px;
    background: transparent;
    color: #222;
    padding: 25px 0 0 0;
}

/* =========================
   INDEX / HOME PAGE BODY
========================= */

.home-wrap {
    width: 1000px;
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.home-sidebar {
    width: 140px;
    flex: 0 0 140px;
}

.extra-box {
    width: 140px;
}

.extra-box-title {
    height: 28px;
    line-height: 28px;
    padding: 0 9px;
    font-size: 12px;
    color: #000;
    background: #d9d9d9;
    border: 1px solid #4b4b4b;
    border-bottom: none;
    overflow: hidden;
    white-space: nowrap;
}

.extra-box-link {
    display: block;
    margin-top: 6px;
    padding: 8px 8px 9px 8px;
    font-size: 12px;
    line-height: 1.15;
    color: #fff;
    text-decoration: none;
    background: #4676bb;
    border-left: 14px solid #2f61aa;
    border-radius: 0 0 3px 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.extra-box-link:hover {
    text-decoration: none;
}

.home-content {
    flex: 1;
    min-width: 0;
}

.home-title {
    margin: 0 0 8px 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}

.home-title-line {
    border-top: 1px dashed #6c86b0;
    margin-bottom: 14px;
}

.home-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-links li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 11px 0;
}

.doc-ico {
    position: relative;
    width: 16px;
    height: 14px;
    flex: 0 0 16px;
    margin-top: 2px;
    border: 1px solid #7f97bd;
    background: #f5f7fb;
}

.doc-ico::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 10px;
    height: 2px;
    background: #a9b7d1;
    box-shadow: 0 3px 0 #a9b7d1, 0 6px 0 #a9b7d1;
}

.home-links a {
    color: #0045a8;
    font-size: 13px;
    line-height: 1.25;
    text-decoration: none;
}

.home-links a:hover {
    text-decoration: underline;
}

.home-contact {
    margin-top: 30px;
    font-size: 13px;
    color: #000;
}

.home-contact strong {
    font-weight: 700;
    color: #000;
}

.home-contact a {
    color: #0000ee;
    text-decoration: underline;
}

/* =========================
   FOOTER
========================= */

.main-footer {
    width: 100%;
    max-width: 1000px;
    margin: 10px auto 0;
    background: transparent;
}

.footer-inner {
    border-top: 1px solid #4b4b4b;
    padding: 10px 4px 0 4px;
    min-height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #bfbfbf;
    font-size: 12px;
    line-height: 1.4;
}

.footer-left {
    color: #c8c8c8;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #4a4a4a;
}

.footer-right span {
    color: #4a4a4a;
}

.footer-right a {
    color: #0000ee;
    text-decoration: underline;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {
    .main-header,
    .page-content,
    .main-footer,
    .home-wrap {
        width: calc(100% - 20px);
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .brand-right {
        align-items: flex-start;
        width: 100%;
    }

    .right-top {
        flex-direction: row;
        align-items: flex-start;
    }

    .logo-line {
        width: 240px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        justify-content: flex-start;
        width: 100%;
        padding: 14px 16px;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .home-wrap {
        flex-direction: column;
        gap: 18px;
    }

    .home-sidebar {
        width: 100%;
        flex: none;
    }

    .extra-box {
        width: 220px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .main-header,
    .page-content,
    .main-footer,
    .home-wrap {
        width: calc(100% - 16px);
        margin-left: auto;
        margin-right: auto;
    }

    .header-top {
        min-height: auto;
    }

    .header-inner {
        padding: 12px;
        gap: 10px;
    }

    .brand-left {
        gap: 10px;
    }

    .brand-emblem {
        width: 34px;
    }

    .brand-text {
        font-size: 12px;
        line-height: 1.25;
        max-width: 100%;
    }

    .brand-right {
        margin-left: 0;
    }

    .visa-logo {
        width: 180px;
    }

    .logo-line {
        width: 180px;
    }

    .lang-switch img {
        width: 16px;
    }

    .page-content {
        padding-top: 20px;
    }

    .home-title {
        font-size: 18px;
    }

    .extra-box,
    .home-sidebar {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
        min-height: auto;
    }

    .footer-right {
        gap: 10px;
        flex-wrap: wrap;
    }
}



/* =========================
   APPLY NOW PAGE
========================= */

.apply-page-wrap {
    width: 1000px;
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.apply-sidebar {
    width: 200px;
    flex: 0 0 200px;
    padding-top: 20px;
}

.apply-content {
    flex: 1;
    min-width: 0;
}

.apply-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}

.apply-title-line {
    border-top: 1px dashed #6c86b0;
    margin-bottom: 18px;
}

.apply-form {
    width: 552px;
    background: #c8dada;
    border: 1px solid #9aa8a8;
    color: #000;
}

.apply-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background: #efefef;
    border-bottom: 1px solid #b7b7b7;
    padding: 3px 6px;
}

.apply-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.apply-left {
    border-right: 1px dotted #b7c4c4;
    padding: 8px 6px 10px 6px;
}

.apply-right {
    padding: 8px 6px 10px 8px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row label {
    display: block;
    font-size: 12px;
    color: #000;
    margin-bottom: 6px;
}

.form-row label span {
    color: #d50000;
}

.form-row input,
.form-row select {
    width: 100%;
    height: 17px;
    border: 1px solid #8f8f8f;
    background: #fff;
    font-size: 12px;
    color: #000;
    padding: 0 4px;
    outline: none;
}

.form-row select {
    height: 19px;
    padding-right: 2px;
}

.captcha-block {
    margin: 6px 0 2px 0;
}

.captcha-image {
    width: 200px;
    height: 72px;
    border: 1px solid #d0d0d0;
    background:
        radial-gradient(#8fc2ff 0.6px, transparent 0.7px),
        radial-gradient(#bde2ff 0.6px, transparent 0.7px),
        #eef6fb;
    background-size: 7px 7px, 9px 9px, auto;
    background-position: 0 0, 3px 2px, 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e6cff;
    font-size: 24px;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 4px;
}

.captcha-refresh {
    font-size: 12px;
    color: #0000ee;
    text-decoration: underline;
}

.captcha-input-row {
    margin-top: 0;
}

.form-notes {
    margin-top: 12px;
    font-size: 12px;
    color: #000;
    line-height: 1.5;
}

.form-notes span {
    color: #d50000;
}

.form-submit-wrap {
    margin-top: 24px;
}

.apply-submit-btn {
    min-width: 198px;
    height: 26px;
    border: 2px solid #2c2c2c;
    background: #427ac0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 16px;
}

.apply-submit-btn:hover {
    opacity: 0.95;
}

.help-box {
    padding: 0 0 4px 0;
    margin-bottom: 12px;
    border-bottom: 1px dotted #9cb1b1;
}

.help-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.help-box a {
    display: inline-block;
    color: #5d78a8;
    font-size: 12px;
    text-decoration: underline;
    margin-bottom: 2px;
}

.help-box p {
    font-size: 12px;
    line-height: 1.35;
    color: #000;
}

/* =========================
   APPLY PAGE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .apply-page-wrap {
        width: calc(100% - 20px);
        flex-direction: column;
        gap: 18px;
    }

    .apply-sidebar {
        width: 100%;
        flex: none;
        padding-top: 0;
    }

    .apply-form {
        width: 100%;
    }

    .apply-grid {
        grid-template-columns: 1fr;
    }

    .apply-left {
        border-right: none;
        border-bottom: 1px dotted #b7c4c4;
    }
}

@media (max-width: 768px) {
    .apply-page-wrap {
        width: calc(100% - 16px);
    }

    .apply-title {
        font-size: 20px;
    }

    .captcha-image {
        width: 180px;
        max-width: 100%;
    }

    .apply-submit-btn {
        width: 100%;
        min-width: 0;
    }
}



/* =========================
   CONTINUE APPLICATION PAGE
========================= */

.continue-page-wrap {
    width: 1000px;
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.continue-sidebar {
    width: 200px;
    flex: 0 0 200px;
    padding-top: 20px;
}

.continue-content {
    flex: 1;
    min-width: 0;
}

.continue-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}

.continue-title-line {
    border-top: 1px dashed #6c86b0;
    margin-bottom: 18px;
}

.continue-form {
    width: 552px;
    background: #c8dada;
    border: 1px solid #9aa8a8;
    color: #000;
}

.continue-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background: #efefef;
    border-bottom: 1px solid #b7b7b7;
    padding: 3px 6px;
}

.continue-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.continue-left {
    border-right: 1px dotted #b7c4c4;
    padding: 8px 6px 10px 6px;
}

.continue-right {
    min-height: 210px;
}

.continue-captcha-block {
    margin: 10px 0 2px 0;
}

.continue-submit-wrap {
    margin-top: 16px;
}

/* =========================
   CONTINUE PAGE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .continue-page-wrap {
        width: calc(100% - 20px);
        flex-direction: column;
        gap: 18px;
    }

    .continue-sidebar {
        width: 100%;
        flex: none;
        padding-top: 0;
    }

    .continue-form {
        width: 100%;
    }

    .continue-grid {
        grid-template-columns: 1fr;
    }

    .continue-left {
        border-right: none;
        border-bottom: 1px dotted #b7c4c4;
    }

    .continue-right {
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .continue-page-wrap {
        width: calc(100% - 16px);
    }

    .continue-title {
        font-size: 20px;
    }
}

/* =========================
   CHECK STATUS PAGE
========================= */

.status-page-wrap {
    width: 1000px;
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.status-sidebar {
    width: 200px;
    flex: 0 0 200px;
    padding-top: 20px;
}

.status-content {
    flex: 1;
    min-width: 0;
}

.status-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}

.status-title-line {
    border-top: 1px dashed #6c86b0;
    margin-bottom: 18px;
}

.status-form {
    width: 552px;
    background: #c8dada;
    border: 1px solid #9aa8a8;
    color: #000;
}

.status-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background: #efefef;
    border-bottom: 1px solid #b7b7b7;
    padding: 3px 6px;
}

.status-grid {
    display: grid;
    grid-template-columns: 312px 1fr;
}

.status-left {
    border-right: 1px dotted #b7c4c4;
    padding: 8px 6px 4px 6px;
}

.status-right {
    min-height: 230px;
}

.status-captcha-block {
    margin: 8px 0 2px 0;
}

.status-submit-wrap {
    margin-top: 10px;
}

.status-submit-btn {
    min-width: 200px;
    height: 26px;
    border: 2px solid #2c2c2c;
    background: #427ac0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 16px;
}

.status-submit-btn:hover {
    opacity: 0.95;
}

/* =========================
   STATUS PAGE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .status-page-wrap {
        width: calc(100% - 20px);
        flex-direction: column;
        gap: 18px;
    }

    .status-sidebar {
        width: 100%;
        flex: none;
        padding-top: 0;
    }

    .status-form {
        width: 100%;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .status-left {
        border-right: none;
        border-bottom: 1px dotted #b7c4c4;
    }

    .status-right {
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .status-page-wrap {
        width: calc(100% - 16px);
    }

    .status-title {
        font-size: 20px;
    }

    .status-submit-btn {
        width: 100%;
        min-width: 0;
    }
}


/* =========================
   CHECK VISA PAGE
========================= */

.visa-check-page-wrap {
    width: 1000px;
    margin: 0 auto 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.visa-check-sidebar {
    width: 200px;
    flex: 0 0 200px;
    padding-top: 20px;
}

.visa-check-content {
    flex: 1;
    min-width: 0;
}

.visa-check-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
}

.visa-check-title-line {
    border-top: 1px dashed #6c86b0;
    margin-bottom: 18px;
}

.visa-check-form {
    width: 552px;
    background: #c8dada;
    border: 1px solid #9aa8a8;
    color: #000;
}

.visa-check-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background: #efefef;
    border-bottom: 1px solid #b7b7b7;
    padding: 3px 6px;
}

.visa-check-grid {
    display: grid;
    grid-template-columns: 315px 1fr;
}

.visa-check-left {
    border-right: 1px dotted #b7c4c4;
    padding: 8px 6px 4px 6px;
}

.visa-check-right {
    min-height: 176px;
}

.visa-check-captcha-block {
    margin: 10px 0 2px 0;
}

.visa-check-submit-wrap {
    margin-top: 10px;
}

.visa-check-submit-btn {
    min-width: 200px;
    height: 26px;
    border: 2px solid #2c2c2c;
    background: #427ac0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    padding: 0 16px;
}

.visa-check-submit-btn:hover {
    opacity: 0.95;
}

/* =========================
   CHECK VISA PAGE RESPONSIVE
========================= */

@media (max-width: 992px) {
    .visa-check-page-wrap {
        width: calc(100% - 20px);
        flex-direction: column;
        gap: 18px;
    }

    .visa-check-sidebar {
        width: 100%;
        flex: none;
        padding-top: 0;
    }

    .visa-check-form {
        width: 100%;
    }

    .visa-check-grid {
        grid-template-columns: 1fr;
    }

    .visa-check-left {
        border-right: none;
        border-bottom: 1px dotted #b7c4c4;
    }

    .visa-check-right {
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .visa-check-page-wrap {
        width: calc(100% - 16px);
    }

    .visa-check-title {
        font-size: 20px;
    }

    .visa-check-submit-btn {
        width: 100%;
        min-width: 0;
    }
}

.result-box{
background:#c8dada;
padding:20px;
border:1px solid #a3b7b7;
}

.result-grid{
display:flex;
gap:30px;
}

.result-photo img{
width:140px;
border:1px solid #999;
}

.result-info p{
margin-bottom:8px;
font-size:15px;
}

.btn-download{
background:#3b6fb6;
color:#fff;
padding:8px 14px;
border-radius:4px;
}

.result-search-again{
margin-top:20px;
text-align:center;
}

/* =========================
   PUBLIC SEARCH ERROR
========================= */

.public-error-box {
    width: 552px;
    margin: 0 0 12px 0;
    padding: 8px 10px;
    background: #fde7e7;
    border: 1px solid #d9a9a9;
    color: #a10000;
    font-size: 12px;
}

/* =========================
   VERIFY STATUS PAGE
========================= */

.status-page-wrap {
    width: 1000px;
    margin: 0 auto 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.status-sidebar {
    width: 200px;
    flex: 0 0 200px;
    padding-top: 14px;
}

.status-content {
    flex: 1;
    min-width: 0;
}

.status-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 400;
    color: #000;
}

.status-title-line {
    border-top: 1px dashed #6b88b6;
    margin-bottom: 18px;
}

.status-form {
    width: 555px;
    border: 1px solid #a8b4b4;
    background: #c9dddd;
}

.status-section-title {
    height: 21px;
    line-height: 21px;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    background: #efefef;
    border-bottom: 1px solid #bfc7c7;
}

.status-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.status-left {
    padding: 7px 5px 6px 5px;
    border-right: 1px dotted #b8c7c7;
}

.status-right {
    min-height: 292px;
}

.status-form-row {
    margin-bottom: 10px;
}

.status-form-row label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #000;
}

.status-form-row input {
    width: 100%;
    height: 17px;
    padding: 0 4px;
    border: 1px solid #8f8f8f;
    background: #fff;
    font-size: 12px;
    color: #000;
}

.status-captcha-box {
    margin: 14px 0 2px 0;
}

.status-captcha-image {
    width: 205px;
    height: 72px;
    margin-bottom: 2px;
    border: 1px solid #d7d7d7;
    background:
        radial-gradient(#87baff 0.6px, transparent 0.8px),
        radial-gradient(#b5ddff 0.6px, transparent 0.8px),
        #eef7fb;
    background-size: 7px 7px, 9px 9px, auto;
    background-position: 0 0, 2px 3px, 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c63ff;
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.status-refresh-link {
    color: #0000ee;
    text-decoration: underline;
    font-size: 12px;
}

.status-captcha-input-row {
    margin-top: 2px;
    margin-bottom: 9px;
}

.status-submit-wrap {
    margin-top: 2px;
}

.status-submit-btn {
    width: 202px;
    height: 25px;
    border: 2px solid #2f2f2f;
    border-radius: 4px;
    background: #447cc0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.status-submit-btn:hover {
    opacity: 0.96;
}

/* =========================
   VERIFY VISA PAGE
========================= */

.visa-search-page-wrap {
    width: 1000px;
    margin: 0 auto 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.visa-search-sidebar {
    width: 200px;
    flex: 0 0 200px;
    padding-top: 14px;
}

.visa-search-content {
    flex: 1;
    min-width: 0;
}

.visa-search-title {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 400;
    color: #000;
}

.visa-search-title-line {
    border-top: 1px dashed #6b88b6;
    margin-bottom: 18px;
}

.visa-search-form {
    width: 555px;
    border: 1px solid #a8b4b4;
    background: #c9dddd;
}

.visa-search-section-title {
    height: 21px;
    line-height: 21px;
    padding: 0 4px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    background: #efefef;
    border-bottom: 1px solid #bfc7c7;
}

.visa-search-grid {
    display: grid;
    grid-template-columns: 302px 1fr;
}

.visa-search-left {
    padding: 7px 5px 6px 5px;
    border-right: 1px dotted #b8c7c7;
}

.visa-search-right {
    min-height: 230px;
}

.visa-search-form-row {
    margin-bottom: 10px;
}

.visa-search-form-row label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #000;
}

.visa-search-form-row input {
    width: 100%;
    height: 17px;
    padding: 0 4px;
    border: 1px solid #8f8f8f;
    background: #fff;
    font-size: 12px;
    color: #000;
}

.visa-search-captcha-box {
    margin: 26px 0 2px 0;
}

.visa-search-captcha-image {
    width: 205px;
    height: 72px;
    margin-bottom: 2px;
    border: 1px solid #d7d7d7;
    background:
        radial-gradient(#87baff 0.6px, transparent 0.8px),
        radial-gradient(#b5ddff 0.6px, transparent 0.8px),
        #eef7fb;
    background-size: 7px 7px, 9px 9px, auto;
    background-position: 0 0, 2px 3px, 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c63ff;
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
}

.visa-search-refresh-link {
    color: #0000ee;
    text-decoration: underline;
    font-size: 12px;
}

.visa-search-captcha-input-row {
    margin-top: 2px;
    margin-bottom: 9px;
}

.visa-search-submit-wrap {
    margin-top: 2px;
}

.visa-search-submit-btn {
    width: 202px;
    height: 25px;
    border: 2px solid #2f2f2f;
    border-radius: 4px;
    background: #447cc0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.visa-search-submit-btn:hover {
    opacity: 0.96;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .public-error-box,
    .status-page-wrap,
    .visa-search-page-wrap {
        width: calc(100% - 20px);
    }

    .status-page-wrap,
    .visa-search-page-wrap {
        flex-direction: column;
        gap: 18px;
    }

    .status-sidebar,
    .visa-search-sidebar {
        width: 100%;
        flex: none;
        padding-top: 0;
    }

    .status-form,
    .visa-search-form,
    .public-error-box {
        width: 100%;
    }

    .status-grid,
    .visa-search-grid {
        grid-template-columns: 1fr;
    }

    .status-left,
    .visa-search-left {
        border-right: none;
        border-bottom: 1px dotted #b8c7c7;
    }

    .status-right,
    .visa-search-right {
        min-height: 40px;
    }
}

@media (max-width: 768px) {
    .status-page-wrap,
    .visa-search-page-wrap,
    .public-error-box {
        width: calc(100% - 16px);
    }

    .status-title,
    .visa-search-title {
        font-size: 20px;
    }

    .status-captcha-image,
    .visa-search-captcha-image {
        width: 180px;
        max-width: 100%;
    }

    .status-submit-btn,
    .visa-search-submit-btn {
        width: 100%;
    }
}

/* =========================
   RESULT PAGE
========================= */

.result-page-wrap {
    width: 1250px;
    margin: 0 auto 28px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.result-sidebar {
    width: 245px;
    flex: 0 0 245px;
    padding-top: 30px;
}

.result-know-box {
    width: 245px;
    border: 1px solid #454545;
    background: #efefef;
    padding: 0 0 8px 0;
}

.result-know-title {
    padding: 8px 10px 7px;
    font-size: 18px;
    line-height: 1.15;
    color: #444;
    font-weight: 400;
}

.result-know-link {
    display: block;
    margin: 0 8px;
    padding: 7px 10px 8px;
    background: #4a80c6;
    color: #d7e7ff;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.result-content {
    flex: 1;
    min-width: 0;
}

.result-main-title {
    margin: 0 0 10px 0;
    font-size: 39px;
    line-height: 1.05;
    font-weight: 400;
    color: #2a2a2a;
}

.result-main-line {
    border-top: 1px dashed #84a3cf;
    margin-bottom: 28px;
}

.result-card {
    background: #d7e8e8;
    border: 1px solid #c2d2d2;
    padding: 14px 14px 18px;
    min-height: 430px;
}

.result-top {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.result-photo-col {
    width: 163px;
    flex: 0 0 163px;
}

.result-photo-img {
    width: 163px;
    height: 195px;
    object-fit: cover;
    border: 1px solid #d0d0d0;
    background: #fff;
}

.result-photo-placeholder {
    width: 163px;
    height: 195px;
    border: 1px solid #d0d0d0;
    background: #fff;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.result-details-col {
    flex: 1;
    padding-top: 2px;
}

.result-detail-row,
.result-status-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #2f2f2f;
}

.result-label {
    font-weight: 400;
    color: #2f2f2f;
}

.result-value {
    color: #2f2f2f;
}

.result-value.strong {
    font-weight: 700;
}

.result-bottom {
    margin-top: 28px;
    font-size: 18px;
}

.result-status-red,
.result-status-red .result-label,
.result-status-red .result-value {
    color: #d85151;
}

.result-action-wrap {
    text-align: center;
    margin-top: 22px;
}

.result-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    height: 34px;
    padding: 0 24px;
    background: #4a80c6;
    color: #dcecff;
    border: 1px solid #2f547f;
    border-radius: 4px;
    font-size: 18px;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.result-pdf-wrap {
    margin-top: 14px;
    text-align: center;
}

.result-pdf-link {
    color: #0000ee;
    text-decoration: underline;
    font-size: 14px;
}

/* =========================
   RESULT RESPONSIVE
========================= */

@media (max-width: 1280px) {
    .result-page-wrap {
        width: calc(100% - 24px);
    }
}

@media (max-width: 992px) {
    .result-page-wrap {
        flex-direction: column;
        gap: 18px;
    }

    .result-sidebar {
        width: 100%;
        flex: none;
        padding-top: 0;
    }

    .result-know-box {
        width: 245px;
    }

    .result-main-title {
        font-size: 28px;
    }

    .result-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .result-page-wrap {
        width: calc(100% - 16px);
    }

    .result-top {
        flex-direction: column;
    }

    .result-photo-col {
        width: 150px;
        flex: none;
    }

    .result-photo-img,
    .result-photo-placeholder {
        width: 150px;
        height: 180px;
    }

    .result-main-title {
        font-size: 22px;
    }

    .result-detail-row,
    .result-status-row {
        font-size: 16px;
        flex-wrap: wrap;
    }

    .result-action-btn {
        min-width: 220px;
        font-size: 16px;
    }

    .result-know-box {
        width: 100%;
    }
}