.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;
    }
}