* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #edf3f8;
    color: #111;
}


/* =========================
   TOP HEADER
========================= */

.top-header {
    height: 52px;
    background: #050505;
    color: white;
}

.header-inner {
    max-width: 1200px;
    height: 100%;
    margin: auto;

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

    padding: 0 20px;
}

.logo {
    width: 180px;
    height: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.language {
    border: 1px solid #ff0000;
    background: transparent;
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    cursor: pointer;
}

.language.active {
    background: #ff0000;
}


/* =========================
   RED TITLE
========================= */

.title-bar {
    background: #f00000;
    color: white;
    text-align: center;
    padding: 8px 15px;
}

.title-bar h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    margin-left: 6px;

    border-radius: 50%;
    background: white;
    color: #f00000;

    font-size: 13px;
    font-weight: bold;
}


/* =========================
   APPLY PAGE INFORMATION BOX
========================= */

.info-box {
    width: calc(100% - 40px);
    max-width: 1120px;
    margin: 14px auto;
    padding: 18px 22px;

    background: #ffffff;
    border: 1px solid #c7d3df;
    border-radius: 3px;

    box-sizing: border-box;
}

.info-box h2 {
    margin: 0 0 14px 0;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;

    color: #111;
}

.info-box ol {
    margin: 0;
    padding-left: 22px;
}

.info-box li {
    margin-bottom: 8px;

    font-size: 13px;
    line-height: 1.45;

    color: #111;
}

.info-box strong {
    color: #ff0000;
}


/* =========================
   STEP 3
   TWO INFORMATION BOXES
========================= */

.two-info-boxes {
    width: calc(100% - 40px);
    max-width: 1120px;
    margin: 14px auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.info-card {
    background: #ffffff;

    border: 1px solid #c7d3df;
    border-radius: 3px;

    padding: 18px 20px;

    box-sizing: border-box;

    color: #111;
}

.info-card h2 {
    margin: 0 0 14px 0;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;

    color: #111;
}

.info-card p {
    margin: 0 0 12px 0;

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

    color: #111;
}

.document-guideline {
    margin: 15px 0;
    padding: 10px;

    border: 1px solid #c7d3df;
    background: #ffffff;
}

.document-guideline strong {
    display: block;
    margin-bottom: 8px;
}

.document-guideline ul {
    margin: 0;
    padding-left: 20px;
}

.document-guideline li {
    margin-bottom: 5px;

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

.important-text {
    color: #ff0000;
    font-weight: 600;
}


/* =========================
   STEPS
========================= */

.steps-wrapper {
    width: 100%;
    padding: 25px 15px 15px;
}

.steps {
    max-width: 850px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}

.step {
    position: relative;

    text-align: center;

    font-size: 11px;
    line-height: 1.4;

    min-height: 65px;
}

.step-line {
    height: 3px;
    width: 100%;

    background: #cbd6e1;

    margin-bottom: 10px;
}

.step.active .step-line {
    background: #f00000;
}


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

.application-container {
    max-width: 850px;

    margin: 15px auto 30px;

    padding: 0 15px;
}

.form-card {
    background: white;

    border: 1px solid #c8d4df;
    border-radius: 3px;

    padding: 22px 25px 28px;
}

.form-card h2 {
    text-align: center;

    font-size: 17px;

    margin: 0 0 22px;
}


/* =========================
   FORM GRID
========================= */

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px 20px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    font-size: 11px;

    font-weight: 600;

    margin-bottom: 6px;
}

.required {
    color: #f00000;
}

.field input,
.field select {
    width: 100%;

    height: 32px;

    border: 1px solid #bdccd9;

    border-radius: 3px;

    padding: 5px 9px;

    background: white;

    font-size: 12px;

    outline: none;
}

.field input:focus,
.field select:focus {
    border-color: #f00000;
}


/* =========================
   NEXT / BACK BUTTONS
========================= */

.navigation-card {
    background: white;

    border: 1px solid #c8d4df;

    margin-top: 15px;

    padding: 22px;

    display: flex;

    justify-content: space-between;

    gap: 10px;
}

.next-button {
    background: #f00000;

    color: white;

    border: none;

    border-radius: 3px;

    padding: 10px 22px;

    font-size: 12px;

    font-weight: bold;

    cursor: pointer;
}

.next-button:hover {
    background: #c90000;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #050505;

    color: white;

    padding: 35px 20px 20px;
}

.footer-content {
    max-width: 850px;

    margin: auto;

    display: flex;

    justify-content: center;

    gap: 100px;
}

.footer h3 {
    font-size: 13px;
}

.footer p {
    font-size: 10px;

    margin: 5px 0;
}

.footer-note {
    text-align: center;

    color: #888;

    margin-top: 30px !important;
}


/* =========================
   MOBILE — GENERAL
========================= */

@media (max-width: 700px) {

    .logo {
        width: 130px;
    }

    .title-bar h1 {
        font-size: 16px;
    }

    .steps {
        grid-template-columns: repeat(7, minmax(80px, 1fr));

        overflow-x: auto;
    }

    .steps-wrapper {
        overflow-x: auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;

        gap: 20px;
    }
}


/* =========================
   MOBILE — STEP 3 BOXES
========================= */

@media (max-width: 768px) {

    .two-info-boxes {
        grid-template-columns: 1fr;

        width: calc(100% - 24px);
    }

    .info-box {
        width: calc(100% - 24px);

        padding: 16px;
    }

    .info-card {
        padding: 16px;
    }

    .info-card h2 {
        font-size: 15px;
    }

}

/* =========================================
   STEP 3 — GUIDELINES LIST
========================================= */

.guidelines-list {
    margin: 10px 0 0;
    padding-left: 22px;
}

.guidelines-list li {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
}
/* =========================================
   VISA TYPES SECTION
========================================= */

.visa-types-section {
    width: calc(100% - 40px);
    max-width: 1120px;
    margin: 18px auto;
}

.visa-section-title {
    text-align: center;
    font-size: 18px;
    margin: 18px 0 15px;
}

.visa-type-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 25px;
}

.visa-type-card {
    position: relative;
    background: #ffffff;
    border: 2px dashed #c7d3df;
    padding: 26px 25px;
    min-height: 225px;
}

.visa-type-card.selected {
    border: 2px solid #f00000;
}

.visa-type-card h3 {
    margin: 0 0 5px;
    font-size: 17px;
}

.visa-type-card h4 {
    margin: 0 0 15px;
    font-size: 14px;
}

.visa-type-card p {
    margin: 0 0 15px;
    font-size: 12px;
    line-height: 1.55;
}

.visa-type-card a {
    color: #008bd2;
    text-decoration: none;
}

.visa-type-card a:hover {
    text-decoration: underline;
}

.selected-label {
    position: absolute;
    top: 0;
    right: 0;

    background: #ffffff;
    border-left: 2px solid #f00000;
    border-bottom: 2px solid #f00000;

    color: #f00000;

    padding: 5px 9px;

    font-size: 9px;
    font-weight: bold;
}


/* MOBILE */

@media (max-width: 700px) {

    .visa-types-section {
        width: calc(100% - 24px);
    }

    .visa-type-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}
/* =========================================
   VISA SELECTION MESSAGE
========================================= */

.visa-selection-message {
    width: calc(100% - 40px);
    max-width: 1120px;

    margin: 18px auto 35px;

    padding: 5px 10px;

    border-top: 2px dashed #f00000;
    border-bottom: 2px dashed #f00000;

    text-align: center;

    color: #f00000;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================
   APPLICATION PHASES
========================================= */

.application-phases {
    width: calc(100% - 40px);
    max-width: 1120px;

    margin: 0 auto 30px;
}

.application-phases > h2 {
    text-align: center;

    font-size: 18px;

    margin: 0 0 25px;
}


/* PHASE BOX */

.phase-card {
    background: #ffffff;

    border: 1px solid #c7d3df;

    border-radius: 3px;

    padding: 25px;

    margin-bottom: 24px;
}

.phase-card h3 {
    margin: 0 0 15px;

    font-size: 18px;
}

.phase-card p {
    margin: 0 0 10px;

    font-size: 12px;

    line-height: 1.5;
}

.phase-card ol {
    margin: 8px 0 10px;

    padding-left: 22px;
}

.phase-card li {
    margin-bottom: 7px;

    font-size: 12px;

    line-height: 1.45;
}

.success-text {
    color: #00a52a;
}

.important-text {
    color: #f00000;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 700px) {

    .visa-selection-message {
        width: calc(100% - 24px);

        font-size: 13px;
    }

    .application-phases {
        width: calc(100% - 24px);
    }

    .phase-card {
        padding: 18px;
    }

}
/* =========================================
   ADDITIONAL NOTES
========================================= */

.additional-notes {
    width: calc(100% - 40px);
    max-width: 1120px;

    margin: 18px auto 30px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #c7d3df;

    border-radius: 3px;

    color: #111;
}

.additional-notes h2 {
    margin: 0 0 20px;

    font-size: 18px;

    font-weight: 700;
}

.additional-notes ol {
    margin: 0;

    padding-left: 22px;
}

.additional-notes li {
    margin-bottom: 9px;

    font-size: 12px;

    line-height: 1.5;
}

.additional-notes strong {
    font-weight: 700;
}

.additional-notes .important-text {
    color: #f00000;
}


/* APPEAL BOX */

.appeal-box {
    margin: 8px 0 5px;

    padding: 12px 18px;

    border: 2px solid #ff0000;

    background: #ffffff;

    text-align: center;
}

.appeal-box p {
    margin: 4px 0;

    font-size: 12px;

    line-height: 1.45;
}

.appeal-email {
    color: #006fae;

    font-weight: 700;
}


/* MOBILE */

@media (max-width: 700px) {

    .additional-notes {
        width: calc(100% - 24px);

        padding: 18px;
    }

    .additional-notes li {
        font-size: 11px;
    }

    .appeal-box {
        padding: 10px;
    }

}
/* =========================================
   VISA TYPE HOVER & SELECTION
========================================= */

.visa-selectable {
    cursor: pointer;
    transition: border-color 0.15s ease;
}

/* Mouse le jane par red border */
.visa-selectable:hover {
    border: 2px solid #f00000;
}

/* Click ke baad selected card */
.visa-selectable.visa-selected {
    border: 2px solid #f00000;
}
