/* ═══════════════════════════════════════════════════
   VOX eSIM FINDER  v2.0  –  Light UI
   Matches the clean blue/white design in screenshots
   ALL rules scoped under .vef-wrap for isolation
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── FULL-WIDTH PAGE BREAKOUT ─────────────────── */
.vef-wrap {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    background: #eef2ff;
    min-height: 100vh;
    font-family: 'Inter', system-ui, sans-serif;
    color: #111827;
    padding-bottom: 60px;
    box-sizing: border-box;
}

/* ── RESET INSIDE WRAPPER ─────────────────────── */
.vef-wrap *, .vef-wrap *::before, .vef-wrap *::after { box-sizing: border-box; font-family: 'Inter', system-ui, sans-serif; }
.vef-wrap h1,.vef-wrap h2,.vef-wrap h3 { margin:0; padding:0; border:none; background:none; color:#111827; }
.vef-wrap p,.vef-wrap ul,.vef-wrap li  { margin:0; padding:0; list-style:none; }
.vef-wrap a { text-decoration:none; }
.vef-wrap button { font-family:'Inter',system-ui,sans-serif; cursor:pointer; border:none; outline:none; background:none; }
.vef-wrap input  { font-family:'Inter',system-ui,sans-serif; outline:none; }

/* ── TITLE BAR ────────────────────────────────── */
.vef-title-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 0;
    text-align: center;
}
.vef-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 10px;
    letter-spacing: .02em;
}
.vef-main-title {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ── PROGRESS ─────────────────────────────────── */
.vef-progress-outer { height: 5px; background: #e5e7eb; margin: 22px 0 0; }
.vef-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #10b981);
    border-radius: 0 4px 4px 0;
    transition: width .5s ease;
}
.vef-step-labels {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px 0;
    max-width: 960px;
    margin: 0 auto;
}
.vef-sl       { font-size: 12px; font-weight: 500; color: #9ca3af; letter-spacing: .03em; transition: color .2s; }
.vef-sl-active { color: #2563eb; font-weight: 600; }
.vef-sl-done   { color: #10b981; }

/* ── CARD ─────────────────────────────────────── */
.vef-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    max-width: 900px;
    margin: 22px auto 0;
    padding: 36px 40px 44px;
    width: calc(100% - 40px);
    /*min-height: 380px;*/
    min-height: 100px;
}

/* ── STEP BADGE ───────────────────────────────── */
.vef-step-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.vef-step-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
    line-height: 1.2;
    display: block;
}
.vef-step-desc { font-size: 14px; color: #6b7280; margin-bottom: 28px; display: block; }

/* ── GRIDS ────────────────────────────────────── */
.vef-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.vef-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.vef-grid-2-tall .vef-option-card { min-height: 110px; }

/* ── OPTION CARDS ─────────────────────────────── */
.vef-option-card {
    background: #fff;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color .18s, background .18s, transform .18s, box-shadow .18s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}
.vef-option-card:hover {
    border-color: #93c5fd;
    background: #f0f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37,99,235,0.1);
}
.vef-option-card.vef-card-active {
    border-color: #2563eb !important;
    background: #eff6ff !important;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.12) !important;
}
.vef-option-icon    { font-size: 28px; line-height: 1; display: block; }
.vef-option-icon-lg { font-size: 44px; line-height: 1; display: block; margin-bottom: 4px; }
.vef-option-card strong { font-size: 14px; font-weight: 700; color: #111827; display: block; line-height: 1.3; }
.vef-option-sub { font-size: 12px; color: #6b7280; display: block; }
.vef-card-centered { justify-content: center; }

/* ── DESTINATION SEARCH ───────────────────────── */
.vef-search-wrap { position: relative; margin-bottom: 20px; }
.vef-search-input {
    width: 100%;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 16px;
    color: #111827;
    background: #fff;
    display: block;
    transition: border-color .2s, box-shadow .2s;
}
.vef-search-input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.vef-search-results {
    position: absolute;
    top: calc(100% + 4px); left: 0; right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 100;
    display: none;
    overflow: hidden;
}
.vef-search-item {
    padding: 11px 18px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
    transition: background .15s;
    color: #111827;
}
.vef-search-item:last-child { border-bottom: none; }
.vef-search-item:hover { background: #eff6ff; color: #2563eb; }
.vef-dest-selected { margin-top: 8px; }
.vef-chosen-pill {
    display: inline-block;
    background: #d1fae5;
    color: #065f46;
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 600;
}
.vef-popular-label {
    font-size: 12px; font-weight: 600; color: #9ca3af;
    letter-spacing: .05em; text-transform: uppercase; margin-bottom: 12px;
}
.vef-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.vef-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 13px; font-weight: 500; color: #374151;
    cursor: pointer; transition: .18s;
}
.vef-chip:hover  { border-color: #93c5fd; background: #eff6ff; color:#000 !important; }
.vef-chip-active { border-color: #2563eb !important; background: #eff6ff !important; color: #2563eb !important; font-weight: 600 !important; }

/* ── BUDGET ───────────────────────────────────── */
.vef-budget-center { text-align: center; }
.vef-budget-amount { font-size: 64px; font-weight: 800; color: #2563eb; line-height: 1; margin-bottom: 28px; }
.vef-slider-container { max-width: 600px; margin: 0 auto 16px; }
.vef-slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 6px;
    background: #e5e7eb; border-radius: 100px;
    outline: none; cursor: pointer; display: block; margin-bottom: 8px;
}
.vef-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px; height: 22px; border-radius: 50%;
    background: #2563eb; border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(37,99,235,0.4);
    cursor: pointer; transition: transform .15s;
}
.vef-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.vef-slider::-moz-range-thumb { width:22px; height:22px; border-radius:50%; background:#2563eb; border:3px solid #fff; cursor:pointer; }
.vef-slider-ends { display: flex; justify-content: space-between; font-size: 12px; color: #9ca3af; }
.vef-budget-presets { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.vef-preset-btn {
    background: #fff; border: 1.5px solid #e5e7eb; border-radius: 100px;
    padding: 9px 20px; font-size: 13px; font-weight: 500; color: #374151; cursor: pointer; transition: .18s;
}
.vef-preset-btn:hover,.vef-preset-active { border-color: #2563eb; color: #2563eb; background: #eff6ff; }

/* ── NAV BUTTONS ──────────────────────────────── */
.vef-nav {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 900px; margin: 16px auto 0;
    padding: 0 20px; width: calc(100% - 40px);
}
.vef-btn-back {
    display: inline-flex; align-items: center; gap: 6px;
    background: #111827; border: 1.5px solid #e5e7eb; border-radius: 10px;
    padding: 12px 22px; font-size: 14px; font-weight: 500; color: #374151;
    cursor: pointer; text-decoration: none; transition: .18s;
}
.vef-btn-back:hover { border-color: #2563eb; color: #fff !important; }
.vef-btn-next {
    display: inline-flex; align-items: center; gap: 8px;
    background: #2563eb !important; border: none; border-radius: 10px;
    padding: 13px 30px; font-size: 15px; font-weight: 700; color: #fff;
    cursor: pointer; transition: .18s;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
    margin-left: auto;
}
.vef-btn-next:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,0.4); color: #fff; }

/* ── SEARCHING ────────────────────────────────── */
.vef-searching-wrap { text-align: center; padding: 20px 0 10px; }
.vef-spinner { width: 64px; height: 64px; margin: 0 auto 24px; animation: vefSpin 1.4s linear infinite; }
.vef-spinner svg { width: 100%; height: 100%; }
.vef-spinner-track { stroke: #e5e7eb; }
.vef-spinner-arc   { stroke: #2563eb; }
@keyframes vefSpin { to { transform: rotate(360deg); } }
.vef-searching-title { font-size: 24px; font-weight: 800; color: #111827; margin-bottom: 24px; }
.vef-search-steps { max-width: 440px; margin: 0 auto; text-align: left; }
.vef-search-step {
    background: #f0fdf4; border-radius: 10px; padding: 12px 16px;
    font-size: 14px; font-weight: 500; color: #065f46; margin-bottom: 10px;
    opacity: 0; transform: translateY(8px);
    transition: opacity .4s ease, transform .4s ease;
}
.vef-ss-active { opacity: 1 !important; transform: translateY(0) !important; }
.vef-ss-dim    { opacity: 0.28 !important; color: #9ca3af !important; background: #f9fafb !important; }

/* ── RESULTS ──────────────────────────────────── */
.vef-results-summary {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; font-size: 14px; color: #6b7280; font-weight: 500;
    margin-bottom: 20px; flex-wrap: wrap;
}
.vef-search-again-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; border: 1.5px solid #e5e7eb !important; border-radius: 8px;
    padding: 8px 16px; font-size: 13px; font-weight: 600; color: #374151!important;
    text-decoration: none; transition: .18s; white-space: nowrap;
}
.vef-search-again-btn:hover { border-color: #2563eb; color: #2563eb; }
.vef-results-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 28px; }
.vef-skeleton-card {
    height: 240px;
    background: linear-gradient(90deg,#f3f4f6 25%,#e9ecef 50%,#f3f4f6 75%);
    background-size: 200% 100%;
    animation: vefSkel 1.4s infinite;
    border-radius: 16px;
}
@keyframes vefSkel { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.vef-result-card {
    background: #fff; border: 1.5px solid #e5e7eb; border-radius: 16px;
    padding: 22px 20px; position: relative;
    animation: vefFadeUp .5s ease both;
    transition: transform .2s, box-shadow .2s;
}
.vef-result-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
@keyframes vefFadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

.vef-best-badge {
    position: absolute; top: -1px; right: 16px;
    background: #10b981; color: #fff;
    font-size: 11px; font-weight: 700; padding: 4px 12px;
    border-radius: 0 0 8px 8px; letter-spacing: .04em;
}
.vef-rc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vef-rc-logo {
    width: 42px; height: 42px; border-radius: 10px;
    background: #eff6ff; color: #2563eb;
    font-size: 18px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vef-rc-info { flex: 1; min-width: 0; }
.vef-rc-name { font-size: 16px; font-weight: 700; color: #111827; }
.vef-rc-stars { display: flex; align-items: center; gap: 2px; margin-top: 2px; }
.vef-star { font-size: 13px; }
.vef-star-full  { color: #f59e0b; }
.vef-star-half  { color: #f59e0b; opacity: .5; }
.vef-star-empty { color: #d1d5db; }
.vef-star-label { font-size: 12px; color: #6b7280; margin-left: 4px; font-weight: 500; }
.vef-rc-price { font-size: 22px; font-weight: 800; color: #2563eb; white-space: nowrap; }
.vef-rc-price small { font-size: 11px; color: #9ca3af; font-weight: 400; display: block; text-align: right; }
.vef-rc-plan-name {
    font-size: 13px; color: #374151; background: #f9fafb;
    border-radius: 8px; padding: 8px 12px; margin-bottom: 14px; font-weight: 500;
}
.vef-rc-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.vef-spec { background: #f3f4f6; border-radius: 8px; padding: 10px 6px; text-align: center; }
.vef-spec strong { display: block; font-size: 13px; font-weight: 700; color: #111827; }
.vef-spec span   { display: block; font-size: 10px; color: #9ca3af; font-weight: 600; letter-spacing: .05em; margin-top: 2px; }
.vef-rc-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: #041e47; color: #fff !important; border-radius: 10px;
    padding: 13px; font-size: 14px; font-weight: 700;
    text-decoration: none; transition: .18s; cursor: pointer; margin-bottom: 10px;
}
.vef-rc-btn:hover { background: #041e47; color: #fff !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.vef-rc-speed-tag {
    display: inline-block; background: #eff6ff; color: #2563eb;
    font-size: 11px; font-weight: 600; border-radius: 6px; padding: 3px 10px;
}

/* ── EMAIL BOX ────────────────────────────────── */
.vef-email-box { background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.vef-email-inner strong { font-size: 16px; font-weight: 700; color: #111827; display: block; margin-bottom: 4px; }
.vef-email-inner p  { font-size: 13px; color: #6b7280; margin-bottom: 16px; }
.vef-email-row { display: flex; gap: 10px; }
.vef-email-input {
    flex: 1; border: 1.5px solid #d1d5db; border-radius: 8px;
    padding: 11px 16px; font-size: 14px; color: #111827;
    background: #fff; min-width: 0; display: block; transition: border-color .2s;
}
.vef-email-input:focus { border-color: #2563eb; }
.vef-email-submit {
    background: #2563eb; color: #fff; border: none; border-radius: 8px;
    padding: 11px 22px; font-size: 14px; font-weight: 700;
    cursor: pointer; white-space: nowrap; transition: .18s;
}
.vef-email-submit:hover { background: #1d4ed8; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 720px) {
    .vef-card { padding: 28px 20px 32px; width: calc(100% - 24px); }
    .vef-step-labels { padding: 10px 12px 0; }
    .vef-sl { font-size: 10px; }
    .vef-grid-3 { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .vef-results-grid { grid-template-columns: 1fr; }
    .vef-email-row { flex-direction: column; }
    .vef-nav { padding: 0 12px; width: calc(100% - 24px); }
    .vef-budget-amount { font-size: 48px; }
}
@media (max-width: 480px) {
    .vef-grid-3 { grid-template-columns: 1fr; }
    .vef-grid-2 { grid-template-columns: 1fr; }
    .vef-chips { gap: 6px; }
    .vef-chip  { font-size: 12px; padding: 6px 11px; }
    .vef-main-title { font-size: 20px; }
}

/* ── FEATURES ROW (below result cards) ───────── */
.vef-features-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.vef-feature-block {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
}
.vef-fb-provider {
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}
.vef-fb-list li {
    font-size: 13px;
    color: #6b7280 !important;
    line-height: 2 !important;
    display: block !important;
}
.vef-fb-list li::before { content: none !important; }

/* ── RESULT CARD: logo colour variants ──────── */
.vef-result-card:nth-child(1) .vef-rc-logo { background: #eff6ff; color: #2563eb; }
.vef-result-card:nth-child(2) .vef-rc-logo { background: #f0fdf4; color: #16a34a; }
.vef-result-card:nth-child(3) .vef-rc-logo { background: #faf5ff; color: #7c3aed; }

/* ── RESPONSIVE additions ────────────────────── */
@media (max-width: 720px) {
    .vef-features-row { grid-template-columns: 1fr; gap: 10px; }
}
