.fmv-apply-page{
    font-family:Inter,Arial,sans-serif;
    background:#f5f8ff;
    color:#071833;
    min-height:100vh;
    padding:36px 18px 70px;
}

.fmv-apply-page *{
    box-sizing:border-box;
}

/* HERO */
.fmv-apply-hero{
    background:linear-gradient(135deg,#082b63,#123d82);
    color:#fff;
    border-radius:0 0 28px 28px;
    margin:-36px -18px 35px;
    padding:45px 18px;
    overflow:hidden;
}

.fmv-hero-inner{
    max-width:1180px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:35px;
}

.fmv-hero-inner h1{
    margin:0;
    font-size:42px;
    font-weight:950;
    letter-spacing:-1px;
}

.fmv-hero-inner p{
    margin:10px 0 0;
    color:#d7e6ff;
    font-size:18px;
}

.fmv-hero-stats{
    display:flex;
    gap:14px;
}

.fmv-hero-stats div{
    min-width:160px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:16px;
    backdrop-filter:blur(10px);
}

.fmv-hero-stats span{
    font-size:24px;
    display:block;
    margin-bottom:8px;
}

.fmv-hero-stats strong{
    display:block;
    color:#fff;
    font-size:16px;
}

.fmv-hero-stats small{
    display:block;
    color:#d7e6ff;
    margin-top:5px;
}

/* PROGRESS */
.fmv-progress{
    max-width:1180px;
    margin:0 auto 30px;
    background:#fff;
    border:1px solid #e5edf7;
    border-radius:22px;
    padding:20px 28px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
    box-shadow:0 22px 60px rgba(15,23,42,.07);
    position:relative;
}

.fmv-progress:before{
    content:"";
    position:absolute;
    left:90px;
    right:90px;
    top:42px;
    height:3px;
    background:#e7eef8;
    z-index:0;
}

.fmv-progress div{
    text-align:center;
    position:relative;
    z-index:2;
    color:#8a9ab3;
    font-weight:900;
}

.fmv-progress span{
    width:42px;
    height:42px;
    border-radius:50%;
    margin:0 auto 9px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef3fa;
    color:#8a9ab3;
    font-size:17px;
    font-weight:950;
}

.fmv-progress .active span,
.fmv-progress .done span{
    background:#1459ff;
    color:#fff;
}

.fmv-progress .active small,
.fmv-progress .done small{
    color:#071833;
}

/* LAYOUT */
.fmv-apply-grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 370px;
    gap:28px;
    align-items:start;
}

.fmv-card,
.fmv-summary-card{
    background:#fff;
    border:1px solid #e2eaf5;
    border-radius:28px;
    box-shadow:0 26px 70px rgba(15,23,42,.08);
}

.fmv-card{
    padding:42px;
}

.fmv-card h2{
    margin:0 0 10px;
    font-size:36px;
    line-height:1.12;
    letter-spacing:-.04em;
    color:#071833;
}

.fmv-card p{
    margin:0 0 28px;
    color:#64748b;
    font-size:15px;
    line-height:1.75;
}

/* FORM */
.fmv-field{
    margin-bottom:18px;
}

.fmv-field label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:950;
    color:#12233f;
}

.fmv-field input,
.fmv-field select{
    width:100%;
    height:56px;
    border:1px solid #d7e1ee;
    border-radius:15px;
    background:#fbfdff;
    padding:0 16px;
    font-size:15px;
    font-weight:800;
    outline:0;
    color:#071833;
}

.fmv-field input:focus,
.fmv-field select:focus{
    border-color:#1459ff;
    box-shadow:0 0 0 4px rgba(20,89,255,.10);
    background:#fff;
}

.fmv-two-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.fmv-readonly-box{
    height:56px;
    border:1px solid #d9e4f1;
    border-radius:15px;
    background:#f8fbff;
    display:flex;
    align-items:center;
    padding:0 18px;
    font-weight:850;
}

/* BUTTONS */
.fmv-next-step{
    width:62%;
    min-width:280px;
    height:58px;
    border:0;
    border-radius:15px;
    background:linear-gradient(135deg,#1459ff,#4f46e5);
    color:#fff;
    font-size:15px;
    font-weight:950;
    cursor:pointer;
    box-shadow:0 16px 32px rgba(20,89,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:30px auto 0;
}

.fmv-next-step:hover{
    transform:translateY(-1px);
    box-shadow:0 20px 38px rgba(20,89,255,.32);
}

.fmv-back-step{
    display:inline-flex;
    height:46px;
    padding:0 22px;
    border:1px solid #d7e1ee;
    border-radius:12px;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#64748b;
    font-weight:950;
    background:#fff;
    margin-top:14px;
}

.fmv-step-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-top:28px;
}

.fmv-step-actions .fmv-next-step{
    margin:0;
    width:auto;
    min-width:260px;
}

.fmv-step-actions .fmv-back-step{
    margin:0;
}

/* SUMMARY */
.fmv-summary{
    position:sticky;
    top:24px;
}

.fmv-summary-card{
    padding:28px;
}

.fmv-summary-card h3{
    margin:0 0 22px;
    font-size:22px;
    letter-spacing:-.02em;
    color:#071833;
}

.fmv-summary-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.fmv-summary-card li{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:14px 0;
    border-bottom:1px solid #edf2f8;
    color:#53657f;
    font-size:14px;
    font-weight:850;
}

.fmv-summary-card li strong{
    color:#071833;
    text-align:right;
    font-weight:950;
}

.fmv-summary-card .fmv-total{
    border-bottom:0;
    margin-top:8px;
    padding-top:20px;
    color:#071833;
    font-size:17px;
}

.fmv-summary-card .fmv-total strong{
    color:#1459ff;
    font-size:26px;
}

.fmv-summary-illustration{
    border:1px solid #edf2fb;
    background:#fbfdff;
    border-radius:18px;
    padding:30px 18px;
    text-align:center;
    margin-bottom:22px;
}

.fmv-illustration-icon{
    font-size:48px;
    margin-bottom:12px;
}

.fmv-summary-illustration strong{
    display:block;
    font-size:18px;
    color:#071833;
}

.fmv-summary-illustration small{
    display:block;
    margin-top:8px;
    color:#64748b;
}

.fmv-secure-card{
    margin-top:18px;
    background:#fff;
    border:1px solid #e4edf8;
    border-radius:18px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 18px 45px rgba(15,23,42,.05);
}

.fmv-secure-icon{
    width:54px;
    height:54px;
    border-radius:15px;
    background:#eef6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
}

.fmv-secure-card strong{
    display:block;
    font-size:16px;
}

.fmv-secure-card small{
    color:#64748b;
}

.fmv-safe-line{
    text-align:center;
    color:#64748b;
    margin-top:18px;
    font-size:14px;
}

/* STEP 2 TRAVELLERS */
.fmv-family-title{
    font-size:18px;
    font-weight:950;
    color:#071833;
    margin:10px 0 16px;
}

.fmv-family-counter-box{
    border:1px solid #e2eaf5;
    border-radius:20px;
    padding:18px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-bottom:18px;
    background:#fbfdff;
}

.fmv-family-counter,
.fmv-total-travellers-box{
    background:#fff;
    border:1px solid #e2eaf5;
    border-radius:16px;
    padding:18px;
    box-shadow:0 14px 35px rgba(15,23,42,.045);
}

.fmv-family-counter strong,
.fmv-total-travellers-box strong{
    display:block;
    font-size:15px;
    color:#071833;
}

.fmv-family-counter small{
    display:block;
    margin-top:4px;
    color:#64748b;
    font-size:12px;
}

.fmv-counter-controls{
    margin-top:14px;
    display:grid;
    grid-template-columns:40px 1fr 40px;
    gap:9px;
    align-items:center;
}

.fmv-count-btn{
    width:40px;
    height:40px;
    border:1px solid #d7e1ee;
    background:#fff;
    color:#1459ff;
    border-radius:11px;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
}

.fmv-count-btn:hover{
    background:#1459ff;
    color:#fff;
    border-color:#1459ff;
}

.fmv-counter-controls span{
    height:40px;
    border:1px solid #d7e1ee;
    border-radius:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    font-weight:950;
}

.fmv-total-travellers-box{
    background:#eef5ff;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.fmv-total-travellers-box b{
    color:#1459ff;
    font-size:36px;
    margin-top:8px;
}

.fmv-traveller-note{
    background:#eaf2ff;
    color:#1459ff;
    border-radius:12px;
    padding:13px 15px;
    font-size:13px;
    font-weight:850;
    margin-bottom:18px;
}

.fmv-traveller-card{
    background:#fff;
    border:1px solid #e2eaf5;
    border-radius:20px;
    padding:22px;
    margin-bottom:16px;
    box-shadow:0 16px 42px rgba(15,23,42,.055);
}

.fmv-traveller-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:18px;
}

.fmv-traveller-head h3{
    margin:0;
    font-size:20px;
    color:#071833;
}

.fmv-traveller-head small{
    color:#64748b;
    font-weight:800;
}

.fmv-traveller-head span{
    background:#eaf2ff;
    color:#1459ff;
    border-radius:999px;
    padding:7px 13px;
    font-size:12px;
    font-weight:950;
}

.fmv-form-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.fmv-fee-card{
    margin-top:18px;
}

/* DOCUMENTS */
.fmv-doc-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin:25px 0;
}

.fmv-doc-card{
    background:#fff;
    border:1.5px dashed #b8c8dd;
    border-radius:22px;
    padding:22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    cursor:pointer;
    transition:.2s;
    box-shadow:0 14px 35px rgba(15,23,42,.04);
}

.fmv-doc-card:hover{
    border-color:#1459ff;
    background:#f5f9ff;
}

.fmv-doc-card strong{
    display:block;
    font-size:17px;
    color:#071833;
}

.fmv-doc-card small{
    display:block;
    margin-top:6px;
    color:#64748b;
    font-weight:800;
}

.fmv-doc-status{
    background:#eaf2ff;
    color:#1459ff;
    border-radius:999px;
    padding:8px 14px;
    font-size:12px;
    font-weight:950;
}

.fmv-doc-card input{
    display:none;
}

.fmv-doc-card.uploaded{
    border-style:solid;
    border-color:#16a34a;
    background:#f0fdf4;
}

.fmv-doc-card.uploaded .fmv-doc-status{
    background:#dcfce7;
    color:#166534;
}

/* REVIEW */
.fmv-review-table{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin:25px 0;
}

.fmv-review-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    background:#f8fbff;
    border:1px solid #e3edf9;
    border-radius:16px;
}

.fmv-review-row span{
    color:#64748b;
    font-weight:800;
}

.fmv-review-row strong{
    color:#071833;
    font-weight:950;
}

.fmv-review-total{
    background:#1459ff;
}

.fmv-review-total span,
.fmv-review-total strong{
    color:#fff;
}

.fmv-error{
    max-width:900px;
    margin:30px auto;
    padding:18px;
    border-radius:16px;
    background:#fee2e2;
    color:#991b1b;
    font-weight:900;
    text-align:center;
}

/* RESPONSIVE */
@media(max-width:1000px){
    .fmv-apply-grid{
        grid-template-columns:1fr;
    }

    .fmv-summary{
        position:static;
    }

    .fmv-family-counter-box,
    .fmv-form-grid{
        grid-template-columns:1fr;
    }

    .fmv-next-step{
        width:100%;
    }
}

@media(max-width:900px){
    .fmv-hero-inner{
        flex-direction:column;
        text-align:center;
    }

    .fmv-hero-stats{
        flex-wrap:wrap;
        justify-content:center;
    }

    .fmv-two-grid{
        grid-template-columns:1fr;
    }

    .fmv-step-actions{
        flex-direction:column-reverse;
        align-items:stretch;
    }

    .fmv-step-actions .fmv-next-step,
    .fmv-step-actions .fmv-back-step{
        width:100%;
    }
}

@media(max-width:700px){
    .fmv-doc-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:640px){
    .fmv-apply-page{
        padding:22px 12px 50px;
    }

    .fmv-apply-hero{
        margin:-22px -12px 28px;
        padding:34px 14px;
        border-radius:0 0 22px 22px;
    }

    .fmv-hero-inner h1{
        font-size:31px;
    }

    .fmv-hero-inner p{
        font-size:15px;
    }

    .fmv-hero-stats div{
        min-width:130px;
    }

    .fmv-progress{
        display:flex;
        overflow:auto;
        padding:16px;
        border-radius:18px;
    }

    .fmv-progress:before{
        display:none;
    }

    .fmv-progress div{
        min-width:85px;
    }

    .fmv-card,
    .fmv-summary-card{
        padding:22px;
        border-radius:20px;
    }

    .fmv-card h2{
        font-size:28px;
    }
}

.fmv-next-step,
.fmv-step-actions .fmv-next-step{
    background:linear-gradient(135deg,#1459ff,#4f46e5) !important;
    color:#ffffff !important;
    border:0 !important;
    font-weight:950 !important;
    font-size:16px !important;
    border-radius:16px !important;
    box-shadow:0 18px 38px rgba(20,89,255,.32) !important;
}

.fmv-next-step:hover{
    transform:translateY(-2px);
    box-shadow:0 24px 50px rgba(20,89,255,.42) !important;
}

.fmv-next-step *{
    color:#ffffff !important;
}

.fmv-step2-page .fmv-card{
    padding:26px !important;
}

.fmv-step2-page .fmv-progress{
    margin-bottom:24px !important;
}

.fmv-family-panel{
    border:1px solid #dbe6f4;
    border-radius:18px;
    background:#fff;
    padding:18px;
    margin:20px 0 18px;
    box-shadow:0 14px 36px rgba(15,23,42,.04);
}

.fmv-step2-page .fmv-family-counter-box{
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
    grid-template-columns:repeat(4,1fr);
}

.fmv-step2-page .fmv-family-counter,
.fmv-step2-page .fmv-total-travellers-box{
    border-radius:14px;
    box-shadow:none;
}

.fmv-step2-page .fmv-traveller-card{
    border-radius:18px;
    padding:20px;
}

.fmv-step2-page .fmv-traveller-head span{
    background:#e8f1ff;
    color:#1459ff;
}

.fmv-summary-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
    border-bottom:1px solid #e5edf7;
    padding-bottom:14px;
    margin-bottom:14px;
}

.fmv-summary-head h3{
    margin:0 !important;
}

.fmv-summary-head a{
    color:#1459ff;
    text-decoration:none;
    font-weight:950;
    font-size:13px;
}

.fmv-mini-country{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 0 18px;
    border-bottom:1px solid #e5edf7;
    margin-bottom:8px;
}

.fmv-mini-country span{
    width:34px;
    height:34px;
    border-radius:8px;
    background:#f1f5f9;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.fmv-mini-country strong{
    display:block;
    color:#071833;
    font-size:15px;
}

.fmv-mini-country small{
    display:block;
    color:#475569;
    margin-top:4px;
}

.fmv-secure-list{
    align-items:flex-start !important;
}

.fmv-secure-list small{
    display:block;
    margin-top:10px;
    color:#475569;
}

@media(max-width:900px){
    .fmv-step2-page .fmv-family-counter-box{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:640px){
    .fmv-step2-page .fmv-family-counter-box{
        grid-template-columns:1fr;
    }
}

/* FMV STEP 2 LUXURY OVERRIDE */
.fmv-step2-page{
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.10), transparent 32%),
        linear-gradient(180deg,#f8fbff,#eef4ff) !important;
    padding-top:34px !important;
}

.fmv-step2-page .fmv-apply-grid{
    max-width:1480px !important;
    grid-template-columns:minmax(880px,1fr) 380px !important;
    gap:34px !important;
}

.fmv-step2-page .fmv-card,
.fmv-step2-page .fmv-summary-card,
.fmv-step2-page .fmv-secure-card{
    background:rgba(255,255,255,.92) !important;
    border:1px solid rgba(210,225,245,.9) !important;
    box-shadow:0 30px 80px rgba(15,23,42,.10) !important;
    backdrop-filter:blur(18px) !important;
}

.fmv-step2-page .fmv-card{
    border-radius:30px !important;
    padding:34px !important;
}

.fmv-step2-page .fmv-progress{
    border-radius:24px !important;
    padding:24px 34px !important;
    background:linear-gradient(180deg,#ffffff,#f8fbff) !important;
    box-shadow:inset 0 0 0 1px #e5edf7 !important;
}

.fmv-step2-page .fmv-progress span{
    width:46px !important;
    height:46px !important;
    box-shadow:0 12px 28px rgba(37,99,235,.18) !important;
}

.fmv-step2-page h2{
    font-size:36px !important;
    font-weight:950 !important;
    letter-spacing:-.045em !important;
    color:#061735 !important;
}

.fmv-step2-page .fmv-card > p{
    font-size:16px !important;
    color:#52647d !important;
    margin-bottom:24px !important;
}

.fmv-family-panel{
    border-radius:24px !important;
    padding:24px !important;
    background:linear-gradient(180deg,#fff,#f8fbff) !important;
    border:1px solid #dce8f7 !important;
}

.fmv-family-title{
    font-size:17px !important;
    margin-bottom:18px !important;
}

.fmv-step2-page .fmv-family-counter-box{
    grid-template-columns:repeat(4,1fr) !important;
    gap:16px !important;
}

.fmv-step2-page .fmv-family-counter,
.fmv-step2-page .fmv-total-travellers-box{
    border-radius:20px !important;
    min-height:136px !important;
    padding:20px !important;
    background:#fff !important;
    border:1px solid #e1eaf6 !important;
    box-shadow:0 18px 40px rgba(15,23,42,.055) !important;
}

.fmv-step2-page .fmv-total-travellers-box{
    background:linear-gradient(135deg,#edf5ff,#f8fbff) !important;
}

.fmv-step2-page .fmv-total-travellers-box b{
    font-size:44px !important;
    line-height:1 !important;
}

.fmv-step2-page .fmv-counter-controls{
    grid-template-columns:44px 1fr 44px !important;
    margin-top:18px !important;
}

.fmv-step2-page .fmv-count-btn{
    width:44px !important;
    height:44px !important;
    border-radius:14px !important;
    border-color:#cfe0f5 !important;
    color:#1459ff !important;
    background:#fff !important;
}

.fmv-step2-page .fmv-count-btn:hover{
    background:#1459ff !important;
    color:#fff !important;
}

.fmv-step2-page .fmv-counter-controls span{
    height:44px !important;
    border-radius:14px !important;
    background:#f8fbff !important;
    border-color:#dce8f7 !important;
}

.fmv-traveller-note{
    border-radius:16px !important;
    padding:15px 18px !important;
    background:#eaf2ff !important;
    color:#1459ff !important;
}

.fmv-step2-page .fmv-traveller-card{
    border-radius:26px !important;
    padding:26px !important;
    background:#fff !important;
    border:1px solid #dce8f7 !important;
    box-shadow:0 24px 60px rgba(15,23,42,.075) !important;
}

.fmv-step2-page .fmv-traveller-head{
    padding-bottom:16px !important;
    border-bottom:1px solid #edf2f8 !important;
}

.fmv-step2-page .fmv-traveller-head h3{
    font-size:22px !important;
    font-weight:950 !important;
}

.fmv-step2-page .fmv-traveller-head span{
    background:#e8f1ff !important;
    color:#1459ff !important;
    padding:9px 16px !important;
}

.fmv-step2-page .fmv-form-grid{
    grid-template-columns:repeat(3,1fr) !important;
    gap:18px !important;
}

.fmv-step2-page .fmv-field label{
    font-size:13px !important;
    color:#061735 !important;
}

.fmv-step2-page .fmv-field input,
.fmv-step2-page .fmv-field select{
    height:58px !important;
    border-radius:16px !important;
    border:1px solid #d7e3f2 !important;
    background:#fbfdff !important;
    font-size:15px !important;
}

.fmv-step2-page .fmv-field input:focus,
.fmv-step2-page .fmv-field select:focus{
    border-color:#1459ff !important;
    box-shadow:0 0 0 5px rgba(20,89,255,.10) !important;
}

.fmv-step2-page .fmv-step-actions{
    margin-top:28px !important;
}

.fmv-step2-page .fmv-next-step{
    height:58px !important;
    min-width:330px !important;
    border-radius:16px !important;
    background:linear-gradient(135deg,#1459ff,#4f46e5) !important;
    color:#fff !important;
    font-size:16px !important;
    font-weight:950 !important;
    box-shadow:0 18px 42px rgba(37,99,235,.32) !important;
}

.fmv-step2-page .fmv-back-step{
    height:58px !important;
    border-radius:16px !important;
    padding:0 28px !important;
}

.fmv-step2-page .fmv-summary-card{
    border-radius:28px !important;
    padding:28px !important;
}

.fmv-summary-head{
    padding-bottom:18px !important;
}

.fmv-mini-country{
    padding:18px 0 !important;
}

.fmv-mini-country span{
    width:42px !important;
    height:42px !important;
    font-size:26px !important;
}

.fmv-step2-page .fmv-summary-card li{
    padding:16px 0 !important;
}

.fmv-step2-page .fmv-summary-card li span{
    color:#52647d !important;
}

.fmv-step2-page .fmv-summary-card .fmv-total strong{
    color:#1459ff !important;
    font-size:30px !important;
}

.fmv-step2-page .fmv-secure-card{
    border-radius:26px !important;
    padding:26px !important;
}

@media(max-width:1000px){
    .fmv-step2-page .fmv-apply-grid{
        grid-template-columns:1fr !important;
    }
}

@media(max-width:700px){
    .fmv-step2-page .fmv-family-counter-box,
    .fmv-step2-page .fmv-form-grid{
        grid-template-columns:1fr !important;
    }

    .fmv-step2-page .fmv-step-actions{
        flex-direction:column-reverse !important;
        align-items:stretch !important;
    }

    .fmv-step2-page .fmv-next-step,
    .fmv-step2-page .fmv-back-step{
        width:100% !important;
        min-width:0 !important;
    }
}

/* =====================================
   PREMIUM STEP 1
===================================== */

.fmv-premium-hero{
position:relative;
overflow:hidden;
padding:90px 0;
background:linear-gradient(135deg,#071B4D,#0A5CFF);
color:#fff;
}

.fmv-premium-overlay{
position:absolute;
inset:0;
background:
radial-gradient(circle at top right,rgba(255,255,255,.18),transparent 40%),
radial-gradient(circle at bottom left,rgba(255,255,255,.10),transparent 35%);
}

.fmv-premium-wrap{
max-width:1280px;
margin:auto;
padding:0 30px;
display:grid;
grid-template-columns:1.1fr .9fr;
align-items:center;
gap:60px;
position:relative;
z-index:2;
}

.fmv-premium-left h1{
font-size:60px;
line-height:1.05;
font-weight:900;
margin:20px 0;
}

.fmv-premium-left p{
font-size:20px;
line-height:1.8;
opacity:.92;
max-width:700px;
}

.fmv-badge{
display:inline-flex;
padding:10px 18px;
border-radius:999px;
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
font-weight:700;
}

.fmv-premium-features{
display:flex;
gap:22px;
margin-top:35px;
}

.fmv-premium-features div{
background:#fff;
color:#071B4D;
padding:18px 22px;
border-radius:18px;
min-width:150px;
text-align:center;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.fmv-premium-features strong{
display:block;
font-size:30px;
font-weight:900;
}

.fmv-premium-features small{
display:block;
margin-top:6px;
color:#64748b;
}

.fmv-premium-right{
text-align:center;
}

.fmv-premium-right img{
width:100%;
max-width:500px;
}

.fmv-step-heading{
margin-bottom:35px;
}

.fmv-step-heading span{
display:inline-block;
padding:7px 16px;
background:#eaf2ff;
color:#0A5CFF;
border-radius:999px;
font-size:13px;
font-weight:800;
margin-bottom:14px;
}

.fmv-step-heading h2{
font-size:40px;
margin:0;
font-weight:900;
color:#071B4D;
}

.fmv-step-heading p{
margin-top:10px;
font-size:17px;
color:#64748b;
}

.fmv-premium-form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
margin-top:25px;
}

.fmv-field-big{
grid-column:span 2;
}

.fmv-premium-info-row{
display:flex;
gap:16px;
margin:28px 0;
}

.fmv-premium-info-row div{
flex:1;
background:#F8FBFF;
padding:16px;
border-radius:16px;
text-align:center;
font-weight:700;
border:1px solid #E5E7EB;
}

/*=========================================
PREMIUM FORM
=========================================*/

.fmv-card{
background:#fff;
border-radius:28px;
padding:42px;
box-shadow:0 25px 70px rgba(0,0,0,.08);
border:1px solid #edf2f7;
}

.fmv-field{
margin-bottom:22px;
}

.fmv-field label{
display:block;
font-size:14px;
font-weight:800;
margin-bottom:10px;
color:#1e293b;
}

.fmv-field input,
.fmv-field select{
width:100%;
height:62px;
padding:0 20px;
border:1px solid #dbe4f0;
border-radius:16px;
font-size:15px;
background:#fff;
transition:.25s;
outline:none;
}

.fmv-field input:focus,
.fmv-field select:focus{
border-color:#0A5CFF;
box-shadow:0 0 0 5px rgba(10,92,255,.08);
}

.fmv-readonly-box{
height:62px;
display:flex;
align-items:center;
padding:0 20px;
background:#f8fbff;
border:1px solid #dbeafe;
border-radius:16px;
font-weight:800;
color:#0A5CFF;
}

.fmv-next-step{
width:100%;
height:64px;
border:none;
border-radius:18px;
background:linear-gradient(135deg,#0A5CFF,#2563EB);
color:#fff;
font-size:18px;
font-weight:900;
cursor:pointer;
transition:.25s;
box-shadow:0 20px 40px rgba(10,92,255,.28);
}

.fmv-next-step:hover{
transform:translateY(-3px);
box-shadow:0 28px 55px rgba(10,92,255,.35);
}

.fmv-safe-line{
margin-top:18px;
text-align:center;
font-size:14px;
font-weight:700;
color:#16a34a;
}

/*=========================================
RIGHT SUMMARY
=========================================*/

.fmv-summary{
display:flex;
flex-direction:column;
gap:22px;
}

.fmv-summary-card{
background:#fff;
border-radius:28px;
padding:28px;
box-shadow:0 20px 60px rgba(0,0,0,.08);
border:1px solid #edf2f7;
}

.fmv-summary-card h3{
margin:0 0 24px;
font-size:24px;
font-weight:900;
color:#071B4D;
}

.fmv-summary-illustration{
text-align:center;
padding:24px 10px;
margin-bottom:22px;
background:#F8FBFF;
border-radius:20px;
}

.fmv-illustration-icon{
width:72px;
height:72px;
margin:auto auto 18px;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
background:#EAF2FF;
border-radius:50%;
}

.fmv-summary-card ul{
margin:0;
padding:0;
list-style:none;
}

.fmv-summary-card li{
display:flex;
justify-content:space-between;
align-items:center;
padding:14px 0;
border-bottom:1px solid #eef2f7;
}

.fmv-summary-card li:last-child{
border:none;
}

.fmv-summary-card li span{
color:#64748b;
font-size:14px;
}

.fmv-summary-card li strong{
font-size:16px;
font-weight:900;
color:#071B4D;
}

.fmv-total{
margin-top:10px;
padding-top:18px!important;
border-top:2px dashed #dbeafe;
}

.fmv-total strong{
font-size:26px!important;
color:#0A5CFF!important;
}

.fmv-secure-card{
display:flex;
gap:18px;
align-items:center;
background:#fff;
border-radius:22px;
padding:24px;
border:1px solid #edf2f7;
box-shadow:0 18px 45px rgba(0,0,0,.06);
}

.fmv-secure-icon{
width:58px;
height:58px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
border-radius:16px;
background:#EAFBF2;
}

.fmv-secure-card strong{
display:block;
font-size:18px;
margin-bottom:6px;
color:#071B4D;
}

.fmv-secure-card small{
color:#64748b;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.fmv-premium-wrap{
grid-template-columns:1fr;
text-align:center;
}

.fmv-premium-features{
justify-content:center;
flex-wrap:wrap;
}

.fmv-apply-grid{
grid-template-columns:1fr;
}

.fmv-premium-form-grid{
grid-template-columns:1fr;
}

.fmv-field-big{
grid-column:auto;
}

}

@media(max-width:768px){

.fmv-premium-left h1{
font-size:38px;
}

.fmv-card{
padding:24px;
}

.fmv-summary-card{
padding:22px;
}

}

/* STEP 1 FINAL OVERRIDE */

.fmv-step1-premium .fmv-step-heading h2,
.fmv-step1-premium .fmv-step-heading p,
.fmv-step1-premium .fmv-step-heading span{
display:none!important;
}

.fmv-step1-premium .fmv-selected-box{
height:62px;
display:flex;
align-items:center;
gap:14px;
padding:0 18px;
border:1px solid #dbe4f0;
border-radius:16px;
background:#f8fbff;
}

.fmv-step1-premium .fmv-selected-box span{
font-size:24px;
}

.fmv-step1-premium .fmv-selected-box strong{
font-size:15px;
font-weight:900;
color:#071B4D;
}

.fmv-step1-premium .fmv-premium-form-grid{
grid-template-columns:1fr 1fr;
}

.fmv-step1-premium .fmv-field{
margin-bottom:22px;
}

.fmv-step1-premium .fmv-premium-info-row div{
display:flex;
flex-direction:column;
gap:4px;
}

.fmv-step1-premium .fmv-premium-info-row small{
font-size:12px;
color:#64748b;
}

.fmv-step1-premium .fmv-secure-list small{
display:block;
margin-top:9px;
}

@media(max-width:768px){
.fmv-step1-premium .fmv-premium-form-grid{
grid-template-columns:1fr;
}
}

/* STEP 2 FINAL POLISH */
.fmv-step2-page .fmv-step-heading{
margin-bottom:24px!important;
}

.fmv-step2-page .fmv-step-heading span{
display:inline-flex;
padding:7px 15px;
background:#eaf2ff;
color:#1459ff;
border-radius:999px;
font-size:12px;
font-weight:950;
margin-bottom:12px;
}

.fmv-step2-page .fmv-step-heading h2{
margin:0 0 8px!important;
font-size:38px!important;
line-height:1.12!important;
letter-spacing:-.04em!important;
color:#061735!important;
}

.fmv-step2-page .fmv-step-heading p{
margin:0!important;
color:#52647d!important;
font-size:16px!important;
}

.fmv-step2-page .fmv-family-title{
font-size:20px!important;
color:#061735!important;
}

.fmv-step2-page .fmv-family-title:before{
content:"👨‍👩‍👧 ";
}

.fmv-step2-page .fmv-traveller-card{
position:relative;
overflow:hidden;
}

.fmv-step2-page .fmv-traveller-card:before{
content:"";
position:absolute;
inset:0 auto 0 0;
width:5px;
background:linear-gradient(180deg,#1459ff,#4f46e5);
}

.fmv-step2-page .fmv-traveller-head h3:before{
content:"🛂 ";
}

.fmv-step2-page .fmv-summary-card:first-child{
background:linear-gradient(180deg,#ffffff,#f8fbff)!important;
}

.fmv-step2-page .fmv-fee-card{
background:linear-gradient(135deg,#061735,#1459ff)!important;
color:#fff!important;
}

.fmv-step2-page .fmv-fee-card h3,
.fmv-step2-page .fmv-fee-card li span,
.fmv-step2-page .fmv-fee-card li strong{
color:#fff!important;
}

.fmv-step2-page .fmv-fee-card li{
border-bottom:1px solid rgba(255,255,255,.18)!important;
}

.fmv-step2-page .fmv-fee-card .fmv-total strong{
color:#fff!important;
font-size:32px!important;
}

/* APPLY STEP 1 HERO FIX */

.fmv-step1-premium {
    background: #f3f7ff;
}

.fmv-step1-hero {
    min-height: 330px !important;
    padding: 48px 70px 95px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.fmv-step1-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.fmv-step1-hero-inner span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
}

.fmv-step1-hero-inner h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 950;
}

.fmv-step1-hero-inner p {
    max-width: 620px;
    color: rgba(255,255,255,.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 22px;
}

.fmv-step1-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.fmv-step1-stats div {
    min-width: 120px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 18px;
    padding: 14px 18px;
    color: #fff;
    backdrop-filter: blur(8px);
}

.fmv-step1-stats b {
    display: block;
    font-size: 20px;
    font-weight: 950;
}

.fmv-step1-stats small {
    display: block;
    margin-top: 4px;
    opacity: .88;
}

.fmv-step1-premium > .fmv-progress {
    max-width: 1120px;
    margin: -54px auto 32px !important;
    position: relative !important;
    z-index: 20 !important;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.fmv-step1-premium .fmv-apply-grid {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .fmv-step1-hero {
        min-height: 300px !important;
        padding: 38px 20px 85px !important;
    }

    .fmv-step1-hero-inner h1 {
        font-size: 32px;
    }

    .fmv-step1-premium > .fmv-progress {
        margin: -45px 16px 24px !important;
    }
}

/* ==========================================================
   STEP 3 - TRAVELLER DOCUMENTS
========================================================== */

.fmv-doc-traveller-wrap{
    display:flex;
    flex-direction:column;
    gap:28px;
    margin-top:30px;
}

.fmv-traveller-doc-section{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:22px;
    padding:24px;
    box-shadow:0 12px 30px rgba(15,23,42,.05);
}

.fmv-traveller-doc-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
    padding-bottom:18px;
    border-bottom:1px solid #edf2f7;
}

.fmv-traveller-doc-head h3{
    margin:0;
    font-size:22px;
    font-weight:900;
    color:#0f172a;
}

.fmv-traveller-doc-head small{
    display:block;
    margin-top:4px;
    color:#64748b;
    font-size:13px;
}

.fmv-traveller-doc-head span{
    background:#eff6ff;
    color:#0A5CFF;
    font-weight:800;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
}

.fmv-doc-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
}

.fmv-doc-card{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px;
    border:2px dashed #cbd5e1;
    border-radius:18px;
    cursor:pointer;
    background:#fff;
    transition:.25s;
    overflow:hidden;
}

.fmv-doc-card:hover{
    border-color:#0A5CFF;
    background:#f8fbff;
    transform:translateY(-2px);
}

.fmv-doc-card.uploaded{
    border-style:solid;
    border-color:#16a34a;
    background:#f0fdf4;
}

.fmv-doc-card strong{
    display:block;
    font-size:15px;
    font-weight:800;
    color:#0f172a;
}

.fmv-doc-card small{
    display:block;
    margin-top:6px;
    color:#64748b;
    font-size:12px;
}

.fmv-doc-status{
    background:#0A5CFF;
    color:#fff;
    font-size:12px;
    font-weight:800;
    padding:8px 14px;
    border-radius:999px;
}

.fmv-doc-card.uploaded .fmv-doc-status{
    background:#16a34a;
}

.fmv-doc-card input[type=file]{
    position:absolute;
    inset:0;
    opacity:0;
    cursor:pointer;
}

@media(max-width:768px){

    .fmv-traveller-doc-head{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .fmv-doc-grid{
        grid-template-columns:1fr;
    }

}