/* ============================================================
   NEW VISA DETAIL PAGE STYLES
   Based on Design Layout Image - CORRECTED VERSION
   ============================================================ */

/* CSS Variables */
:root {
    --nv-primary: #2563EB;
    --nv-primary-dark: #1D4ED8;
    --nv-secondary: #10B981;
    --nv-accent: #F59E0B;
    --nv-dark: #1E293B;
    --nv-text: #334155;
    --nv-text-light: #64748B;
    --nv-bg: #FFFFFF;
    --nv-bg-light: #F8FAFC;
    --nv-border: #E2E8F0;
    --nv-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --nv-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --nv-radius: 12px;
    --nv-radius-lg: 16px;
    --nv-radius-xl: 24px;
    --nv-transition: all 0.3s ease;
    /* Modal variables */
    --ink: #0A0A0F;
    --ink-light: #3A3A4A;
    --ink-muted: #7A7A8A;
    --surface: #F5F5F7;
    --surface-2: #EBEBF0;
    --accent: #2D5BE3;
    --accent-2: #00C4A1;
    --accent-hot: #FF4757;
    --ff-display: 'Inter', sans-serif;
    --ff-body: 'Inter', sans-serif;
}

/* Reset & Base */
.new-visa-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--nv-text);
    line-height: 1.6;
    overflow-x: hidden;
}

    .new-visa-page * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

.nv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   HERO SECTION - CSS Background Image with Overlay
   ============================================================ */
.nv-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Background image set inline in CSHTML for dynamic country image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.nv-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-top: 60px;
    padding: 60px 20px;
    width: 100%;
}

.nv-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nv-hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.4;
}

.nv-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
}

    .nv-google-badge img {
        width: 24px;
        height: 24px;
    }

.nv-stars {
    color: #FFD700;
    letter-spacing: 2px;
}

/* ============================================================
   OVERVIEW SECTION
   ============================================================ */
.nv-overview {
    padding: 60px 0;
    background: var(--nv-bg);
}

.nv-overview-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 40px;
    align-items: start;
}

.nv-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--nv-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

    .nv-section-title.center {
        text-align: center;
    }

.nv-overview-intro {
    font-size: 16px;
    color: var(--nv-text-light);
    margin-bottom: 20px;
}

.nv-purpose-list {
    list-style: none;
    margin-bottom: 30px;
}

    .nv-purpose-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 15px;
        color: var(--nv-text);
    }

.nv-check {
    color: var(--nv-primary);
    font-weight: bold;
    font-size: 18px;
}

.nv-service-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nv-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--nv-bg-light);
    border-radius: var(--nv-radius);
    border: 1px solid var(--nv-border);
    font-size: 14px;
    font-weight: 500;
}

    .nv-tag.highlight {
        background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
        border-color: var(--nv-secondary);
    }

.nv-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

    .nv-tag-dot.blue {
        background: var(--nv-primary);
    }

    .nv-tag-dot.green {
        background: var(--nv-secondary);
    }

/* Center Image */
.nv-overview-center {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.nv-consultant-img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
}

/* Assistance Card */
.nv-assistance-card {
    background: linear-gradient(135deg, var(--nv-primary) 0%, var(--nv-primary-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: var(--nv-radius-xl);
    box-shadow: var(--nv-shadow-lg);
}

    .nv-assistance-card h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 12px;
    }

.nv-support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 24px;
}

.nv-clock {
    font-size: 14px;
}

.nv-fee-section {
    margin-bottom: 20px;
}

.nv-fee-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.nv-fee-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.nv-currency {
    font-size: 16px;
    font-weight: 600;
}

.nv-amount {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.nv-fee-amount.inr .nv-amount {
    font-size: 32px;
}

.nv-fee-note {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
    line-height: 1.4;
}

.nv-divider {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 20px 0;
}

.nv-service-fee {
    margin-bottom: 24px;
}

.nv-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: white;
    color: var(--nv-primary);
    border: none;
    border-radius: var(--nv-radius);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--nv-transition);
    text-decoration: none;
}

    .nv-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

/* ============================================================
   NOTE SECTION
   ============================================================ */
.nv-note-section {
    padding: 30px 0;
    background: var(--nv-bg-light);
}

.nv-note-box {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: #F1F5F9;
    padding: 30px;
    border-radius: var(--nv-radius-lg);
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.nv-note-left {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.nv-note-badge {
    background: var(--nv-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.nv-note-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 14px;
    color: var(--nv-text);
}

    .nv-note-list li {
        margin-bottom: 6px;
    }

.nv-note-right {
    text-align: right;
}

.nv-confused-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--nv-dark);
    margin-bottom: 4px;
}

.nv-confused-sub {
    font-size: 13px;
    color: var(--nv-text-light);
    margin-bottom: 12px;
}

.nv-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nv-primary);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.nv-phone-icon {
    font-size: 20px;
}

/* ============================================================
   STEP BY STEP PROCESS
   ============================================================ */
.nv-process-section {
    padding: 60px 0;
    background: var(--nv-bg);
}

.nv-process-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.nv-step-card {
    background: white;
    border: 2px solid var(--nv-primary);
    border-radius: var(--nv-radius-lg);
    padding: 24px 20px;
    text-align: center;
    min-width: 140px;
    position: relative;
    margin: 0 -10px;
    z-index: 1;
}

.nv-step-num {
    width: 36px;
    height: 36px;
    background: var(--nv-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    margin: 0 auto 12px;
}

.nv-step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--nv-dark);
    line-height: 1.4;
}

.nv-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nv-primary);
    font-size: 24px;
    font-weight: bold;
    padding: 0 10px;
    z-index: 2;
}

/* ============================================================
   WHAT'S INCLUDED SECTION
   ============================================================ */
.nv-included-section {
    padding: 60px 0;
    background: var(--nv-bg-light);
}

.nv-included-grid {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 60px;
    align-items: center;
}

.nv-included-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--nv-dark);
    margin-bottom: 16px;
}

.nv-included-text {
    font-size: 15px;
    color: var(--nv-text);
    margin-bottom: 20px;
    line-height: 1.7;
}

.nv-cities-text {
    font-size: 14px;
    color: var(--nv-text-light);
    margin-bottom: 24px;
}

    .nv-cities-text strong {
        color: var(--nv-dark);
        font-weight: 600;
    }

.nv-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--nv-primary);
    color: white;
    border: none;
    border-radius: var(--nv-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--nv-transition);
}

    .nv-btn-secondary:hover {
        background: var(--nv-primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--nv-shadow);
    }

/* Calendar Card */
.nv-calendar-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 15px;
    border-radius: var(--nv-radius-xl);
    box-shadow: var(--nv-shadow-lg);
}

.nv-calendar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.nv-calendar-badge {
    background: var(--nv-secondary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.nv-calendar-month {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.nv-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.nv-cal-day-header {
    text-align: center;
    font-size: 11px;
    opacity: 0.7;
    padding: 8px 0;
}

.nv-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--nv-transition);
}

    .nv-cal-day:hover {
        background: rgba(255,255,255,0.1);
    }

    .nv-cal-day.available {
        background: var(--nv-secondary);
        font-weight: 600;
    }

/* ============================================================
   LOCK PRICE BANNER
   ============================================================ */
.nv-lock-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.nv-lock-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.nv-lock-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.nv-lock-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.nv-lock-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.nv-price-display {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nv-old-price {
    font-size: 24px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    position: relative;
}

.nv-new-price {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.nv-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    color: var(--nv-dark);
    border: none;
    border-radius: var(--nv-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--nv-transition);
    text-decoration: none;
}

    .nv-btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

/* ============================================================
   CONFIDENCE SECTION
   ============================================================ */
.nv-confidence-section {
    padding: 80px 0;
    background: var(--nv-bg);
}

.nv-confidence-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 60px;
    align-items: center;
}

.nv-statue-img {
    max-width: 100%;
    height: auto;
}

.nv-confidence-text {
    font-size: 16px;
    color: var(--nv-text);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ============================================================
   PREMIUM SERVICES SECTION
   ============================================================ */
.nv-services-section {
    padding: 60px 0;
    background: var(--nv-bg-light);
}

.nv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nv-service-card {
    background: white;
    padding: 28px;
    border-radius: var(--nv-radius-lg);
    border: 1px solid var(--nv-border);
    transition: var(--nv-transition);
}

    .nv-service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--nv-shadow-lg);
    }

    .nv-service-card.highlight {
        background: linear-gradient(135deg, var(--nv-primary) 0%, var(--nv-primary-dark) 100%);
        color: white;
        border: none;
        grid-row: span 2;
    }

.nv-service-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

    .nv-service-icon.blue {
        background: #DBEAFE;
        color: var(--nv-primary);
    }

.nv-service-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--nv-dark);
    line-height: 1.4;
}

.nv-service-card.highlight h4 {
    color: white;
    font-size: 22px;
    margin-bottom: 20px;
}

.nv-service-card p {
    font-size: 14px;
    color: var(--nv-text-light);
    line-height: 1.6;
}

.nv-service-card.highlight ul {
    list-style: none;
}

.nv-service-card.highlight li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .nv-service-card.highlight li:before {
        content: "✓";
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .nv-service-card.highlight li:last-child {
        border-bottom: none;
    }

/* ============================================================
   MODAL STYLES - EXACTLY AS ORIGINAL
   ============================================================ */

/* Apply Modal Container */
.visa-apply-modal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

.visa-apply-modal .modal-content {
    border-radius: 28px;
    border: none;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
    background: white;
}

/* Split layout: left panel + right form */
.mf-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 560px;
}

/* LEFT PANEL */
.mf-left {
    background: var(--ink);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .mf-left::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(45,91,227,0.45) 0%, transparent 70%);
        pointer-events: none;
    }

    .mf-left::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(0,196,161,0.30) 0%, transparent 70%);
        pointer-events: none;
    }

.mf-brand {
    font-family: var(--ff-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.mf-left-title {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.mf-left-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

/* Step indicators on left */
.mf-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
    flex: 1;
}

.mf-step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 28px;
    position: relative;
}

    .mf-step-item:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 13px;
        top: 28px;
        width: 2px;
        height: calc(100% - 14px);
        background: rgba(255,255,255,0.10);
    }

    .mf-step-item.done::before {
        background: rgba(0,196,161,0.40);
    }

    .mf-step-item.active::before {
        background: rgba(45,91,227,0.30);
    }

.mf-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--ff-display);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255,255,255,0.04);
}

.mf-step-item.done .mf-step-dot {
    background: var(--accent-2);
    border-color: var(--accent-2);
    color: #fff;
}

.mf-step-item.active .mf-step-dot {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(45,91,227,0.25);
}

.mf-step-text {
    padding-top: 4px;
}

.mf-step-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--ff-display);
}

.mf-step-item.active .mf-step-name {
    color: #fff;
}

.mf-step-item.done .mf-step-name {
    color: rgba(255,255,255,0.65);
}

.mf-step-desc {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin-top: 2px;
    line-height: 1.4;
}

.mf-left-trust {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mf-trust-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

    .mf-trust-row svg {
        fill: var(--accent-2);
        flex-shrink: 0;
    }

/* RIGHT PANEL */
.mf-right {
    background: #fff;
    display: flex;
    flex-direction: column;
}

/* Top progress bar */
.mf-progress-bar-wrap {
    height: 3px;
    background: var(--surface-2);
}

.mf-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
    border-radius: 0 2px 2px 0;
}

/* Header row inside right */
.mf-right-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 0;
}

.mf-step-counter {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.06em;
}

.mf-close-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--surface);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

    .mf-close-btn:hover {
        background: var(--surface-2);
    }

    .mf-close-btn svg {
        stroke: var(--ink-muted);
    }

/* Form panels */
.mf-body {
    padding: 24px 32px 20px;
    flex: 1;
    overflow: hidden;
}

.mf-panel {
    display: none;
    animation: mfSlideIn 0.3s cubic-bezier(0.4,0,0.2,1);
}

    .mf-panel.active {
        display: block;
    }

@keyframes mfSlideIn {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mf-panel-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px;
}

.mf-panel-sub {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Form fields */
.mf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

    .mf-group label {
        font-size: 11.5px;
        font-weight: 700;
        color: var(--ink-light);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .mf-group input,
    .mf-group textarea,
    .mf-group select {
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
        border: 1.5px solid var(--surface-2);
        background: var(--surface);
        font-family: var(--ff-body);
        font-size: 14px;
        color: var(--ink);
        transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        outline: none;
        -webkit-appearance: none;
    }

        .mf-group input:focus,
        .mf-group textarea:focus,
        .mf-group select:focus {
            border-color: var(--accent);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(45,91,227,0.10);
        }

        .mf-group input.error {
            border-color: var(--accent-hot);
            background: #fff5f5;
        }

    .mf-group textarea {
        resize: none;
        height: 80px;
    }

.mf-error-msg {
    font-size: 11.5px;
    color: var(--accent-hot);
    display: none;
}

    .mf-error-msg.show {
        display: block;
    }

/* Phone field with flag */
.mf-phone-wrap {
    display: flex;
    border-radius: 10px;
    border: 1.5px solid var(--surface-2);
    background: var(--surface);
    overflow: hidden;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

    .mf-phone-wrap:focus-within {
        border-color: var(--accent);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(45,91,227,0.10);
    }

.mf-phone-prefix {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: var(--surface-2);
    border-right: 1.5px solid var(--surface-2);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mf-phone-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
    padding: 12px 14px !important;
}

/* Dropzone */
.mf-dropzone {
    border: 2px dashed var(--surface-2);
    border-radius: 14px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

    .mf-dropzone:hover, .mf-dropzone.drag-over {
        border-color: var(--accent);
        background: #eef2fd;
    }

    .mf-dropzone input[type=file] {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
        width: 100%;
        height: 100%;
    }

.mf-dz-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

    .mf-dz-icon svg {
        stroke: #fff;
    }

.mf-dz-title {
    font-family: var(--ff-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.mf-dz-sub {
    font-size: 12px;
    color: var(--ink-muted);
    line-height: 1.5;
}

.mf-file-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mf-file-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #eef2fd;
    border-radius: 8px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
}

    .mf-file-chip svg {
        fill: var(--accent);
        flex-shrink: 0;
    }

/* Footer nav */
.mf-footer {
    padding: 16px 32px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--surface-2);
    gap: 12px;
}

.mf-btn-back {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1.5px solid var(--surface-2);
    background: none;
    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

    .mf-btn-back:hover {
        border-color: var(--ink-muted);
        color: var(--ink);
    }

    .mf-btn-back svg {
        stroke: currentColor;
    }

.mf-btn-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 10px;
    background: var(--accent);
    border: none;
    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: auto;
}

    .mf-btn-next:hover:not(:disabled) {
        background: #1a46cc;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(45,91,227,0.35);
    }

    .mf-btn-next:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .mf-btn-next svg {
        stroke: #fff;
    }

.mf-btn-submit {
    background: linear-gradient(135deg, var(--accent) 0%, #1a46cc 100%);
}

    .mf-btn-submit:hover:not(:disabled) {
        background: linear-gradient(135deg, #1a46cc 0%, #0f2d99 100%);
        box-shadow: 0 8px 28px rgba(45,91,227,0.45);
    }

/* Spinner */
.mf-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.mf-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    flex: 1;
}

.mf-success__anim {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), #00e5bb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.mf-success__anim svg {
    stroke: #fff;
}

.mf-success h3 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
}

.mf-success p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto 24px;
}

.mf-success__ref {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--surface);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-light);
    font-family: var(--ff-display);
    letter-spacing: 0.04em;
}

/* ============================================================
   ELIGIBILITY MODAL - EXACTLY AS ORIGINAL
   ============================================================ */
#eligibilityModal .modal-dialog {
    max-width: 480px;
    margin: 1.75rem auto;
}

#eligibilityModal .modal-content {
    border-radius: 24px;
    border: none;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    overflow: hidden;
}

.em-shell {
    display: flex;
    flex-direction: column;
}

/* Header */
.em-header {
    background: var(--ink);
    padding: 22px 28px 0;
    position: relative;
}

.em-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.em-title {
    font-family: var(--ff-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.em-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

    .em-close:hover {
        background: rgba(255,255,255,0.20);
    }

    .em-close svg {
        stroke: #fff;
    }

/* Stepper dots */
.em-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    padding-bottom: 18px;
}

.em-dot {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.20);
    transition: all 0.35s ease;
    flex: 1;
}

    .em-dot.active {
        background: var(--accent-2);
        flex: 2;
    }

    .em-dot.done {
        background: rgba(0,196,161,0.55);
    }

/* Body */
.em-body {
    padding: 28px;
    min-height: 260px;
}

.em-panel {
    display: none;
}

    .em-panel.active {
        display: block;
        animation: emIn 0.28s ease;
    }

@keyframes emIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.em-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
}

.em-q {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 6px;
}

.em-q-sub {
    font-size: 13px;
    color: var(--ink-muted);
    margin-bottom: 22px;
    line-height: 1.5;
}

.em-phone-field {
    display: flex;
    border-radius: 12px;
    border: 2px solid var(--surface-2);
    overflow: hidden;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px;
}

    .em-phone-field:focus-within {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(45,91,227,0.12);
    }

.em-phone-prefix {
    padding: 14px 16px;
    background: var(--surface);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    border-right: 2px solid var(--surface-2);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.em-phone-input {
    flex: 1;
    border: none;
    background: #fff;
    padding: 14px 16px;
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    outline: none;
    letter-spacing: 0.05em;
}

.em-phone-note {
    font-size: 11.5px;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .em-phone-note svg {
        fill: var(--accent-2);
        flex-shrink: 0;
    }

/* Options grid */
.em-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.em-option {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--surface-2);
    background: var(--surface);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .em-option:hover {
        border-color: var(--accent);
        background: #eef2fd;
        color: var(--accent);
    }

    .em-option.active {
        border-color: var(--accent);
        background: var(--accent);
        color: #fff;
    }

.em-opt-icon {
    font-size: 18px;
    line-height: 1;
}

/* Result panel */
.em-result-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
}

.em-strength-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
}

    .em-strength-badge.strong {
        background: #d4f7ee;
        color: #007a5a;
    }

    .em-strength-badge.medium {
        background: #fff3cd;
        color: #865d00;
    }

    .em-strength-badge.weak {
        background: #ffe0e0;
        color: #a00;
    }

.em-summary-box {
    background: var(--surface);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.85;
    margin-bottom: 16px;
}

    .em-summary-box p {
        display: flex;
        gap: 8px;
    }

    .em-summary-box strong {
        color: var(--ink);
        min-width: 110px;
    }

.em-warnings {
    font-size: 12px;
    color: #b45a00;
    line-height: 1.7;
    margin-bottom: 12px;
}

.em-charts-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 6px;
}

.em-donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    flex: 1;
}

    .em-donut-wrap.winner canvas {
        filter: drop-shadow(0 0 10px rgba(45,91,227,0.4));
    }

.em-donut-label {
    text-align: center;
}

    .em-donut-label span {
        font-family: var(--ff-display);
        font-size: 18px;
        font-weight: 800;
        color: var(--ink);
        display: block;
    }

    .em-donut-label p {
        font-size: 11px;
        color: var(--ink-muted);
    }

.em-donut-badge {
    position: absolute;
    top: -6px;
    right: 4px;
    background: var(--accent);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 999px;
    display: none;
}

.em-donut-wrap.winner .em-donut-badge {
    display: block;
}

/* Footer */
.em-footer {
    padding: 16px 28px 24px;
    display: flex;
    gap: 10px;
}

.em-btn-back {
    padding: 13px 20px;
    border-radius: 10px;
    border: 1.5px solid var(--surface-2);
    background: none;
    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

    .em-btn-back:hover {
        border-color: var(--ink-light);
        color: var(--ink);
    }

.em-btn-next {
    flex: 1;
    padding: 14px 24px;
    border-radius: 10px;
    background: var(--accent);
    border: none;
    font-family: var(--ff-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .em-btn-next:hover {
        background: #1a46cc;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(45,91,227,0.35);
    }

.em-btn-apply {
    flex: 1;
    padding: 14px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-2) 0%, #00a884 100%);
    border: none;
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

    .em-btn-apply:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(0,196,161,0.40);
    }

/* ============================================================
   SLOT POPUP - EXACTLY AS ORIGINAL
   ============================================================ */
.slot-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
    z-index: 9999;
}

    .slot-popup-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

.slot-popup {
    background: #fff;
    width: 420px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    overflow: hidden;
}

.slot-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
}

    .slot-popup-header h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--ink);
        margin: 0;
    }

    .slot-popup-header button {
        background: none;
        border: none;
        font-size: 20px;
        color: var(--ink-muted);
        cursor: pointer;
    }

.slot-popup-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.slot-time {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    padding: 12px;
    background: #eef2fd;
    border-radius: 8px;
    text-align: center;
}

.slot-popup-body label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-light);
}

.slot-popup-body input {
    padding: 12px;
    border-radius: 8px;
    border: 1.5px solid var(--surface-2);
    font-size: 15px;
    outline: none;
}

    .slot-popup-body input:focus {
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(45,91,227,0.10);
    }

.slot-popup-body button {
    padding: 14px;
    background: var(--accent-2);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

    .slot-popup-body button:hover {
        background: #00b894;
    }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .nv-overview-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nv-overview-center {
        display: none;
    }

    .nv-included-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nv-confidence-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nv-statue-img {
        max-width: 300px;
        margin: 0 auto;
    }

    .nv-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nv-service-card.highlight {
        grid-column: span 2;
        grid-row: span 1;
    }

    .mf-shell {
        grid-template-columns: 1fr;
    }

    .mf-left {
        display: none;
    }
}

@media (max-width: 768px) {
    .nv-hero {
        min-height: 400px;
        background-attachment: scroll;
    }

    .nv-overview-grid {
        grid-template-columns: 1fr;
    }

    .nv-overview-right {
        order: -1;
    }

    .nv-assistance-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .nv-note-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nv-note-left {
        flex-direction: column;
        align-items: center;
    }

    .nv-note-right {
        text-align: center;
    }

    .nv-process-grid {
        flex-direction: column;
        align-items: center;
    }

    .nv-step-card {
        width: 100%;
        max-width: 280px;
        margin: 0 0 16px 0;
    }

    .nv-step-arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }

    .nv-lock-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nv-lock-right {
        flex-direction: column;
        gap: 20px;
    }

    .nv-services-grid {
        grid-template-columns: 1fr;
    }

    .nv-service-card.highlight {
        grid-column: span 1;
    }

    .mf-row {
        grid-template-columns: 1fr;
    }

    .em-options {
        grid-template-columns: 1fr;
    }

    .em-charts-row {
        flex-direction: column;
        align-items: center;
    }

    .slot-popup {
        width: 90%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .nv-container {
        padding: 0 16px;
    }

    .nv-assistance-card {
        padding: 24px 20px;
    }

    .nv-fee-amount .nv-amount {
        font-size: 28px;
    }

    .nv-calendar-card {
        padding: 20px;
    }

    .nv-cal-day {
        font-size: 11px;
    }

    .mf-body {
        padding: 20px;
    }

    .mf-footer {
        padding: 16px 20px 24px;
        flex-direction: column;
    }

    .mf-btn-next,
    .mf-btn-back {
        width: 100%;
        justify-content: center;
    }

    .em-body {
        padding: 20px;
    }
}

.visa-apply-modal .modal-content {
    border-radius: 28px;
    border: none;
    overflow: hidden;
    padding: 0px !important;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
}

/* ============================================================
   CONSULTANT BUBBLE LABELS
   ============================================================ */
.nv-bubble{
position:absolute;
background:#ffffff;
padding:8px 14px;
border-radius:30px;
font-size:13px;
font-weight:500;
box-shadow:0 6px 20px rgba(0,0,0,0.12);
white-space:nowrap;
}
.nv-bubble:before{
content:"";
width:8px;
height:8px;
border-radius:50%;
background:var(--nv-primary);
display:inline-block;
margin-right:6px;
}
.bubble-1{ top:20%; left:-40px;}
.bubble-2{ top:15%; right:-30px;}
.bubble-3{ bottom:40%; left:-50px;}
.bubble-4{ bottom:25%; right:-40px;}
.bubble-5{ bottom:5%; left:50%; transform:translateX(-50%);}

/* =========================================
   OVERVIEW GRID + STICKY (FINAL)
========================================= */

.nv-overview-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 40px;
    align-items: start; /* critical for sticky */
}

.nv-overview-right {
    position: relative;
    display: flex;
    align-items: flex-start; /* prevent stretch */
}

/* STICKY */
.nv-sticky-card {
    position: sticky;
    top: 100px;
}

/* =========================================
   OUTER BLUE CARD (FRAME)
========================================= */

.nv-assistance-card{
    background: linear-gradient(135deg, #2D5BE3, #1D4ED8);
    padding: 16px; /* reduced to remove extra space */
    border-radius: 20px;
    color: #fff;
}

/* TITLE */
.nv-assistance-card h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* SUPPORT BADGE */
.nv-support-badge{
    background: rgba(255,255,255,0.15);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 14px;
}

/* =========================================
   INNER WHITE CARD (MAIN CONTENT)
========================================= */

.nv-inner-card{
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    color: #111;
}

/* HEADER */
.nv-fee-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
}

/* FLAGS */
.nv-flag-group img{
    width:26px;
    height:18px;
    margin-left:6px;
}

/* USD */
.nv-fee-amount.usd .nv-amount{
    font-size:30px;
    font-weight:800;
    color:#2D5BE3;
}

/* INR */
.nv-fee-amount.inr .nv-amount{
    font-size:28px;
    font-weight:800;
    color:#2D5BE3;
}

/* LABEL */
.nv-fee-label{
    font-weight:600;
    margin-bottom:6px;
}

/* NOTE TEXT */
.nv-fee-note{
    font-size:13px;
    color:#555;
}

/* DIVIDER */
.nv-divider-dark{
    border-top:2px dashed #ccc;
    margin:14px 0;
}

/* BUTTON */
.nv-btn-main{
    display:block;
    width:100%;
    text-align:center;
    background:#2D5BE3;
    color:#fff;
    padding:14px;
    border-radius:10px;
    font-weight:700;
    margin-top:12px;
    text-decoration:none;
}

.nv-btn-main:hover{
    background:#1D4ED8;
}

/* =========================================
   SAFETY (PREVENT STICKY BREAK)
========================================= */

.nv-overview,
.nv-container,
.nv-overview-grid {
    overflow: visible !important;
}

.new-visa-page {
    overflow-x: clip; /* avoid sticky break */
}

/* =========================================
   MOBILE (DISABLE STICKY)
========================================= */

@media (max-width: 768px) {
    .nv-overview-grid {
        grid-template-columns: 1fr;
    }

    .nv-sticky-card {
        position: relative;
        top: auto;
    }
}