/* ═══════════════════════════════════════════════
   main.css — all component/layout-specific styles
   ═══════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;600;700;800;900&display=swap');

/* ── Base ── */
body {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #1a1a2e;
}

/* ── Z-index ── */
.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/* ── Icon sizes ── */
.icon-xxs {
    width: 12px;
    height: 12px;
}

.icon-xs {
    width: 14px;
    height: 14px;
}

.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-cta {
    width: 17px;
    height: 17px;
}

.icon-md {
    width: 18px;
    height: 18px;
}

.icon-lg {
    width: 20px;
    height: 20px;
}

.icon-xl {
    width: 22px;
    height: 22px;
}

.icon-2xl {
    width: 24px;
    height: 24px;
}

.icon-3xl {
    width: 26px;
    height: 26px;
}

.icon-4xl {
    width: 28px;
    height: 28px;
}

/* ── Max-width utilities ── */
.max-w-480 {
    max-width: 480px;
}

.max-w-500 {
    max-width: 500px;
}

.max-w-520 {
    max-width: 520px;
}

.max-w-540 {
    max-width: 540px;
}

.max-w-560 {
    max-width: 560px;
}

/* ── Typography helpers ── */
.text-xxs {
    font-size: 0.66rem;
}

.text-xs {
    font-size: 0.7rem;
}

.text-xsm {
    font-size: 0.72rem;
}

.text-sm2 {
    font-size: 0.78rem;
}

.text-sm3 {
    font-size: 0.82rem;
}

.cta-text {
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════ */
.announce-bar {
    background-color: #002b69;
    padding: 7px 0;
    font-size: 0.78rem;
}

.announce-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.announce-link:hover {
    color: #fff;
}

.announce-text {
    color: rgba(255, 255, 255, 0.6);
}

.announce-whatsapp {
    background: #25d366;
    color: #fff;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.75rem;
    transition: background 0.2s;
    white-space: nowrap;
}

.announce-whatsapp:hover {
    background: #1ebe5a;
    color: #fff;
}

.announce-social-link {
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.announce-social-link:hover {
    color: #fff;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.site-navbar {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid #eef0f5;
}

.site-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(2, 46, 110, 0.10);
    border-bottom-color: transparent;
}

.navbar-logo {
    height: 52px;
    width: auto;
}

.navbar-brand-title {
    color: #002b69;
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.1;
}

.navbar-brand-sub {
    color: #f80113;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.site-nav-link:hover {
    color: #f80113;
    background: rgba(248, 1, 19, 0.06);
}

.site-nav-link.active {
    color: #f80113;
}

.nav-cta-mdac {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
    border: 1.5px solid #002b69;
    color: #002b69;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-cta-mdac:hover {
    background: #002b69;
    color: #fff;
}

.nav-cta-visa {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 1.2rem;
    border-radius: 4px;
    background: #f80113;
    color: #fff;
    text-decoration: none;
    border: 1.5px solid #f80113;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(248, 1, 19, 0.28);
}

.nav-cta-visa:hover {
    background: #d0000f;
    border-color: #d0000f;
    color: #fff;
    box-shadow: 0 4px 18px rgba(248, 1, 19, 0.38);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 50;
    min-width: 260px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(2, 46, 110, 0.14);
    padding: 8px;
    z-index: 200;
    border: 1px solid #eef0f5;
}

.nav-dropdown-menu.open {
    display: block;
}

.nav-track-wrap:hover .nav-dropdown-menu {
    display: block;
}

.nav-track-wrap:hover .nav-track-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 4px;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
    background: rgba(2, 46, 110, 0.06);
    color: #002b69;
}

.nav-track-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-track-btn:hover {
    color: #002b69;
    background: rgba(2, 46, 110, 0.06);
}

.nav-track-arrow {
    transition: transform 0.25s ease;
    width: 14px;
    height: 14px;
}

.nav-track-arrow.rotate-180 {
    transform: rotate(180deg);
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 1040;
    background: #fff;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.mobile-drawer.hidden {
    display: none;
}

.mobile-nav-link {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(248, 1, 19, 0.07);
    color: #f80113;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6c757d;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.mobile-sub-link:hover {
    background: rgba(2, 46, 110, 0.06);
    color: #002b69;
}

/* ═══════════════════════════════════════════════
   HERO — Shared floating badge utilities
   ═══════════════════════════════════════════════ */
.hero-v2-badge-dot {
    width: 7px;
    height: 7px;
    background: #f80113;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-float-badge {
    background: #fff;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(2, 46, 110, 0.16);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #f0f3fa;
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-country-chip {
    position: absolute;
    background: rgba(2, 46, 110, 0.88);
    border-radius: 30px;
    padding: 5px 14px 5px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon-red {
    background: rgba(248, 1, 19, 0.1);
}

.badge-icon-navy {
    background: rgba(2, 46, 110, 0.1);
}

.fb-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #002b69;
    line-height: 1.2;
}

.fb-sub {
    font-size: 0.68rem;
    color: #9ca3af;
}

.fb-title-light {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.fb-sub-light {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
}

.flag-img {
    height: 16px;
    border-radius: 2px;
}

.country-chip-text {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════
   HERO OPTION 2 — Navy Split
   ═══════════════════════════════════════════════ */
.h2-split {
    display: flex;
    min-height: 650px;
    height: 650px;
    overflow: hidden;
}

.h2-split-navy {
    width: 46%;
    background: #002b69;
    display: flex;
    align-items: center;
    padding: 80px 56px;
    position: relative;
    flex-shrink: 0;
}

.h2-split-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}

.h2-split-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.h2-split-photo {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.h2-split-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.h2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 1, 19, 0.15);
    border: 1.5px solid rgba(248, 1, 19, 0.35);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #f80113;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.h2-headline {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.h2-headline-red {
    color: #f80113;
}

.h2-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}

.h2-btn-primary {
    background: #f80113;
    color: #fff;
    border: 2px solid #f80113;
    padding: 0.8rem 2rem;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(248, 1, 19, 0.4);
}

.h2-btn-primary:hover {
    background: #d0000f;
    border-color: #d0000f;
    color: #fff;
    transform: translateY(-2px);
}

.h2-btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 0.8rem 2rem;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.h2-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.h2-trust {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.h2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h2-trust-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 991px) {
    .h2-split {
        flex-direction: column;
    }

    .h2-split-navy {
        width: 100%;
        padding: 70px 24px 60px;
    }

    .h2-split-photo {
        height: 320px;
    }
}

/* ── Hero photo blue blur overlay ── */
.hero-photo-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 80, 200, 0.52) 0%,
            rgba(0, 43, 105, 0.38) 50%,
            rgba(30, 100, 220, 0.46) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Keep floating badges above blur */
.h2-split-photo .hero-country-chip,
.h2-split-photo .hero-float-badge {
    z-index: 2;
}

/* ── Hero quick facts strip ── */
.h2-quick-facts {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 4px;
}

.h2-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 80px;
}

.h2-fact-num {
    font-size: 1.25rem;
    font-weight: 900;
    color: #f80113;
    line-height: 1.1;
}

.h2-fact-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
    text-align: center;
}

.h2-fact-sep {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    margin: 0 4px;
}

/* ── Scroll-reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── Hero entrance ── */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero-animate {
    animation: heroFadeUp 0.8s ease forwards;
}

.hero-animate-delay {
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.2s forwards;
}

.hero-animate-delay-2 {
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.4s forwards;
}

.hero-animate-delay-3 {
    opacity: 0;
    animation: heroFadeUp 0.8s ease 0.6s forwards;
}

/* ═══════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════ */
.stats-section {
    background: #f0f5ff;
}

.stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid #e8edf8;
    box-shadow: 0 2px 16px rgba(2, 46, 110, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(2, 46, 110, 0.12);
}

.stat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-card-icon.icon-red {
    background: rgba(248, 1, 19, 0.08);
}

.stat-card-icon.icon-navy {
    background: rgba(2, 46, 110, 0.08);
}

.stat-card-icon.icon-gold {
    background: rgba(2, 46, 110, 0.08);
}

.stat-card-icon.icon-green {
    background: rgba(248, 1, 19, 0.08);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #002b69;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-num-red {
    color: #f80113;
}

.stat-lbl {
    font-size: 0.82rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   SECTION LABELS & HEADINGS
   ═══════════════════════════════════════════════ */
.section-label {
    color: #f80113;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #002b69;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-sub {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   VISA TYPE CARDS
   ═══════════════════════════════════════════════ */
.vcard {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eef0f5;
    box-shadow: 0 2px 16px rgba(2, 46, 110, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.vcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(2, 46, 110, 0.13);
    border-color: rgba(248, 1, 19, 0.15);
}

.vcard-bar {
    height: 4px;
    background: #f80113;
    flex-shrink: 0;
}

.vcard-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vcard-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(2, 46, 110, 0.07);
    color: #002b69;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}

.vcard:hover .vcard-icon {
    background: #002b69;
    color: #fff;
}

.vcard-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(248, 1, 19, 0.1);
    color: #f80113;
    white-space: nowrap;
    align-self: flex-start;
}

.vcard-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #002b69;
    margin-bottom: 8px;
    line-height: 1.3;
}

.vcard-desc {
    font-size: 0.84rem;
    color: #6c757d;
    line-height: 1.68;
    flex-grow: 1;
    margin-bottom: 0;
}

.vcard-divider {
    border: none;
    border-top: 1px solid #eef0f5;
    margin: 18px 0 16px;
}

.vcard-footer {
    display: flex;
}

.vcard-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #002b69;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.vcard-cta:hover {
    color: #f80113;
    gap: 10px;
}

/* ═══════════════════════════════════════════════
   DESTINATIONS GALLERY
   ═══════════════════════════════════════════════ */
.dest-section {
    background: #f8fafd;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 220px;
    gap: 16px;
}

.dest-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.dest-item:first-child {
    grid-row: 1 / 3;
}

.dest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dest-item:hover img {
    transform: scale(1.07);
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(2, 46, 110, 0.72);
    padding: 14px 18px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.dest-item:hover .dest-overlay {
    transform: translateY(0);
}

.dest-label {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    background: rgba(2, 46, 110, 0.7);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.dest-overlay-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.dest-overlay-sub {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 180px;
    }

    .dest-item:first-child {
        grid-row: auto;
    }
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════ */
.how-section {
    background: #fff;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px 28px;
    text-align: center;
    border: 1.5px solid #eef0f5;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
    height: 100%;
}

.step-card:hover {
    border-color: rgba(248, 1, 19, 0.2);
    box-shadow: 0 8px 40px rgba(2, 46, 110, 0.1);
}

.step-num-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(2, 46, 110, 0.07);
    color: #002b69;
    font-size: 1.3rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    border: 2px solid rgba(2, 46, 110, 0.15);
    transition: background 0.3s, color 0.3s;
}

.step-card:hover .step-num-circle {
    background: #f80113;
    color: #fff;
    border-color: #f80113;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(248, 1, 19, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background 0.3s;
}

.step-card:hover .step-icon-wrap {
    background: rgba(248, 1, 19, 0.15);
}

.step-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #002b69;
    margin-bottom: 8px;
}

.step-card-desc {
    font-size: 0.84rem;
    color: #6c757d;
    line-height: 1.65;
}

.step-connector {
    position: absolute;
    top: 50px;
    right: -18px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #eef0f5;
    color: #002b69;
}

@media (max-width: 991px) {
    .step-connector {
        display: none;
    }
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════ */
.why-section {
    background: #fff;
    padding: 96px 0;
}

/* Image frame */
.why-image-frame {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(2, 46, 110, 0.16);
}

.why-image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Floating badge — top left */
.why-badge-top {
    position: absolute;
    top: 22px;
    left: 22px;
    background: #002b69;
    color: #fff;
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

/* Floating stat — bottom right */
.why-stat-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(2, 46, 110, 0.22);
    text-align: center;
    min-width: 118px;
}

.why-stat-num {
    font-size: 1.85rem;
    font-weight: 900;
    color: #f80113;
    line-height: 1;
}

.why-stat-lbl {
    font-size: 0.7rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 3px;
}

/* Stats strip below image */
.why-stats-strip {
    display: flex;
    align-items: center;
    margin-top: 18px;
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(2, 46, 110, 0.06);
    overflow: hidden;
}

.why-strip-item {
    flex: 1;
    text-align: center;
    padding: 18px 10px;
}

.why-strip-div {
    width: 1px;
    height: 38px;
    background: #eef0f5;
    flex-shrink: 0;
}

.why-strip-num {
    display: block;
    font-size: 1.45rem;
    font-weight: 900;
    color: #002b69;
    line-height: 1;
    margin-bottom: 4px;
}

.why-strip-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Feature items */
.feature-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #eef0f5;
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.feature-item:hover {
    border-color: rgba(2, 46, 110, 0.18);
    box-shadow: 0 4px 20px rgba(2, 46, 110, 0.07);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(2, 46, 110, 0.07);
    color: #002b69;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

.feature-item:hover .feature-icon {
    background: #002b69;
    color: #fff;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #002b69;
    margin-bottom: 3px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 0.79rem;
    color: #6c757d;
    line-height: 1.62;
}

/* CTA button */
.why-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 4px;
    background: #002b69;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #002b69;
    transition: background 0.25s, color 0.25s;
}

.why-cta-btn:hover {
    background: transparent;
    color: #002b69;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testi-section {
    background: #fff;
}

.testi-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 28px;
    border: 1.5px solid #eef0f5;
    box-shadow: 0 2px 20px rgba(2, 46, 110, 0.06);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(2, 46, 110, 0.12);
}

.testi-quote-mark {
    position: absolute;
    top: 22px;
    right: 26px;
    font-size: 4rem;
    color: rgba(248, 1, 19, 0.1);
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: 900;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.icon-star {
    width: 16px;
    height: 16px;
    color: #f80113;
}

.testi-review {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #f0f3fa;
}

.testi-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #002b69;
    line-height: 1.3;
}

.testi-city {
    font-size: 0.76rem;
    color: #9ca3af;
}

/* ═══════════════════════════════════════════════
   ELIGIBLE COUNTRIES
   ═══════════════════════════════════════════════ */
.eligible-section {
    background: #f8fafd;
}

.eligible-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.eligible-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #eef0f5;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #002b69;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: default;
}

.eligible-card:hover {
    border-color: rgba(0, 43, 105, 0.25);
    box-shadow: 0 4px 18px rgba(0, 43, 105, 0.10);
    transform: translateY(-2px);
}

.eligible-card-link {
    display: contents;
    text-decoration: none;
    color: inherit;
}

.eligible-flag-img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.eligible-card-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.eligible-iso {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f80113;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.eligible-name {
    line-height: 1.25;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eligible-note {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: #6c757d;
    max-width: 520px;
    line-height: 1.65;
    margin: 0 auto;
}

.eligible-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
    border: 1.5px solid #dce6f5;
    border-left: 4px solid #002b69;
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 32px;
    box-shadow: 0 4px 24px rgba(0, 43, 105, 0.07);
}

.eligible-cta-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.eligible-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 43, 105, 0.08);
    color: #002b69;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eligible-cta-title {
    font-size: 1rem;
    font-weight: 700;
    color: #002b69;
    margin-bottom: 4px;
}

.eligible-cta-sub {
    font-size: 0.84rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {
    .eligible-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .eligible-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }

    .eligible-card {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .eligible-flag {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .eligible-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq-section {
    background: #f8fafd;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 12px;
    border: 1.5px solid #eef0f5;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(248, 1, 19, 0.18);
}

.accordion-button {
    background: #fff;
    color: #002b69;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 18px 22px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    color: #f80113;
    box-shadow: none;
}

.accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23022e6e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f80113'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 0 22px 20px;
    font-size: 0.86rem;
    color: #6c757d;
    line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════ */
.cta-section {
    background: #002b69;
    position: relative;
    overflow: hidden;
}

.cta-section-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.btn-cta-white {
    background: #fff;
    color: #f80113;
    border: 2px solid #fff;
    padding: 0.85rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}

.btn-cta-white:hover {
    background: #f5f5f5;
    color: #f80113;
    transform: translateY(-2px);
}

.btn-cta-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.85rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, border-color 0.2s;
}

.btn-cta-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer-logo-box {
    width: 40px;
    height: 40px;
    background: #002b69;
}

.footer-col-heading {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
}

.footer-link:hover {
    color: #f80113 !important;
}

.social-icon:hover {
    color: #002b69 !important;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE (preserved)
   ═══════════════════════════════════════════════ */
.timeline-year {
    width: 56px;
    height: 32px;
    background: #002b69;
    font-size: 0.78rem;
}

.about-img {
    object-fit: cover;
    max-height: 460px;
}

.about-stat-badge {
    bottom: 24px;
    right: 24px;
    min-width: 130px;
}

.about-stat-number {
    font-size: 2rem;
    color: #f80113;
    line-height: 1;
}

.stat-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
}

.mv-icon-wrap {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.value-icon-wrap {
    width: 60px;
    height: 60px;
}

.value-icon-wrap-primary {
    background: rgba(248, 1, 19, 0.1);
}

.value-icon-wrap-secondary {
    background: rgba(2, 46, 110, 0.1);
}

.trust-card {
    background: #fafafa;
}

.trust-icon-wrap {
    width: 48px;
    height: 48px;
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE (preserved)
   ═══════════════════════════════════════════════ */
.contact-icon-wrap {
    width: 44px;
    height: 44px;
}

/* ── Micro utilities ── */
.mt-2px {
    margin-top: 2px;
}

.card-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(2, 46, 110, 0.14) !important;
}

/* ── FAQ toggle (old pages) ── */
.faq-answer {
    display: none;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

/* ── Yii2 form validation ── */
.field-error input,
.field-error textarea,
.field-error select {
    border-color: #f80113 !important;
}

.help-block-error {
    color: #f80113;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.has-error .help-block {
    color: #f80113;
    font-size: 0.8rem;
}

.not-set {
    color: #f80113;
    font-style: italic;
}

.hint-block {
    display: block;
    margin-top: 0.3rem;
    color: #6c757d;
    font-size: 0.8rem;
}

.error-summary {
    color: #a80010;
    background: rgba(248, 1, 19, 0.07);
    border-left: 3px solid rgba(248, 1, 19, 0.4);
    padding: 10px 20px;
    margin: 0 0 15px 0;
    border-radius: 0.25rem;
}

/* ═══════════════════════════════════════════════
   CONTACT US PAGE (cu-*)
   ═══════════════════════════════════════════════ */

/* Hero */
.cu-hero {
    background: linear-gradient(135deg, #001f52 0%, #002b69 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.cu-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    pointer-events: none;
}

.cu-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.cu-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.cu-breadcrumb a:hover {
    color: #fff;
}

.cu-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.cu-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.cu-hero-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.cu-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.72;
    max-width: 520px;
    margin: 0;
}

.cu-hero-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 0;
    backdrop-filter: blur(4px);
}

.cu-stat {
    flex: 1;
    text-align: center;
}

.cu-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #f80113;
    line-height: 1;
    margin-bottom: 4px;
}

.cu-stat-lbl {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cu-stat-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
    margin: 0 8px;
}

/* Info cards */
.cu-main {
    background: #f8fafd;
}

.cu-info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1.5px solid #eef0f5;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cu-info-card:hover {
    border-color: rgba(0, 43, 105, 0.2);
    box-shadow: 0 4px 18px rgba(0, 43, 105, 0.07);
}

.cu-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cu-icon-red {
    background: rgba(248, 1, 19, 0.08);
    color: #f80113;
}

.cu-icon-navy {
    background: rgba(0, 43, 105, 0.08);
    color: #002b69;
}

.cu-info-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #002b69;
    margin-bottom: 4px;
}

.cu-info-sub {
    font-size: 0.78rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 6px;
}

.cu-info-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: #f80113;
    text-decoration: none;
    word-break: break-all;
}

a.cu-info-link:hover {
    text-decoration: underline;
}

/* Help card */
.cu-help-card {
    background: #fff;
    border: 1.5px solid #eef0f5;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.cu-help-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #002b69;
    margin-bottom: 12px;
}

.cu-help-title svg {
    color: #002b69;
    flex-shrink: 0;
}

.cu-help-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cu-help-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #374151;
}

/* Track card */
.cu-track-card {
    background: #002b69;
    border-radius: 10px;
    padding: 20px;
}

.cu-track-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.cu-track-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 14px;
}

.cu-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #f80113;
    color: #fff;
    padding: 9px 20px;
    border-radius: 4px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.cu-track-btn:hover {
    background: #d0000f;
    color: #fff;
    transform: translateY(-1px);
}

/* Form card */
.cu-form-card {
    background: #fff;
    border: 1.5px solid #eef0f5;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 43, 105, 0.07);
    overflow: hidden;
}

.cu-form-header {
    padding: 28px 32px 0;
    border-bottom: 1px solid #eef0f5;
    padding-bottom: 20px;
}

.cu-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #002b69;
    margin-bottom: 6px;
}

.cu-form-sub {
    font-size: 0.84rem;
    color: #6c757d;
    line-height: 1.65;
    margin: 0;
}

.cu-form-card .row {
    padding: 28px 32px;
}

.cu-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.cu-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dce6f5;
    border-radius: 10px;
    font-size: 0.88rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.cu-input:focus {
    border-color: #002b69;
    box-shadow: 0 0 0 3px rgba(0, 43, 105, 0.1);
}

.cu-input::placeholder {
    color: #9ca3af;
}

.cu-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cu-secure-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #6c757d;
}

.cu-secure-note svg {
    color: #002b69;
    flex-shrink: 0;
}

.cu-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f80113;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(248, 1, 19, 0.3);
}

.cu-submit-btn:hover {
    background: #d0000f;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(248, 1, 19, 0.4);
}

/* FAQ section */
.cu-faq-section {
    background: #fff;
}

@media (max-width: 767px) {
    .cu-hero {
        padding: 40px 0 36px;
    }

    .cu-hero-stat-card {
        padding: 18px;
    }

    .cu-stat-num {
        font-size: 1.4rem;
    }

    .cu-form-header {
        padding: 20px 20px 16px;
    }

    .cu-form-card .row {
        padding: 20px;
    }

    .cu-form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .cu-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Login page ── */
.login-brand-panel {
    background-color: #002b69;
}

.login-btn {
    background-color: #f80113;
    border-color: #f80113;
}

.login-btn:hover {
    background-color: #d0000f;
    border-color: #d0000f;
}

.login-split-card {
    width: 100%;
    max-width: 820px;
    border-radius: 16px;
}

.login-brand-title {
    font-size: 2.5rem;
}

.login-mobile-logo {
    max-height: 36px;
}

/* ── Select2 */
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    color: #fff;
    background-color: #002f73;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
    color: #fff;
    background-color: #002f73 !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    border-top: 1px solid #c7c7c7;
}

.form-check-input:checked {
    background-color: #002f73;
    border-color: #002f73;
}

/* Form */
.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #dee2e6;
    background-image: none;
}

.is-valid+.select2-container--bootstrap-5 .select2-selection,
.was-validated select:valid+.select2-container--bootstrap-5 .select2-selection {
    border-color: #dee2e6 !important;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
    border-color: #d7e4f1;
    box-shadow: none !important;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #002b69;
    outline: 0;
    box-shadow: none !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #002b69 !important;
    box-shadow: none !important;
}

.select2-container--bootstrap-5 .select2-dropdown {
    z-index: 1056;
    overflow: hidden;
    color: #212529;
    background-color: #fff;
    border-color: #002b69 !important;
    border-radius: .25rem;
}

.form-control {
    padding: 8px 12px !important;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #bfc4cd;
}

.select2-container--bootstrap-5 .select2-selection--single {
    padding: 8px 12px !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: none !important;
    height: 42px !important;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════
   VISA FEES PAGE  (vf-*)
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
.vf-hero {
    background: linear-gradient(135deg, #001f52 0%, #002b69 60%, #003d99 100%);
    padding: 56px 0 40px;
    position: relative;
    overflow: hidden;
}

.vf-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vf-hero-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vf-hero-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
}

.vf-hero-sub {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 0;
}

.vf-hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vf-hero-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    min-width: 90px;
    backdrop-filter: blur(4px);
}

.vf-hs-num {
    display: block;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.vf-hs-lbl {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.03em;
}

.vf-breadcrumb {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.vf-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.vf-breadcrumb a:hover {
    color: #fff;
}

.vf-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.vf-breadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ── Intro section ── */
.vf-intro-sec {
    padding: 60px 0 48px;
    background: #f8faff;
    border-bottom: 1px solid #e8edf5;
}

.vf-intro-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #001f52;
    margin-bottom: 14px;
}

.vf-intro-sec p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.vf-intro-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.vf-ipt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #2d3748;
    font-weight: 500;
}

.vf-ipt .fa {
    color: #0d9966;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.vf-note-box {
    background: #fff;
    border: 1px solid #dce6f5;
    border-left: 4px solid #002b69;
    border-radius: 14px;
    padding: 26px 24px;
    box-shadow: 0 4px 16px rgba(0, 43, 105, 0.07);
}

.vf-note-icon {
    color: #002b69;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.vf-note-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #001f52;
    margin-bottom: 14px;
}

.vf-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vf-note-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #4a5568;
}

.vf-note-list li .fa {
    color: #0d9966;
    flex-shrink: 0;
}

/* ── Calculator banner ── */
.vf-calc-banner {
    background: #fff;
    border-top: 1px solid #e8edf5;
    border-bottom: 1px solid #e8edf5;
    padding: 48px 0;
}

.vf-calc-eyebrow {
    color: #f80113;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vf-calc-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #001f52;
    margin-bottom: 10px;
}

.vf-calc-sub {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.vf-select-card {
    background: #f8faff;
    border: 1px solid #dce6f5;
    border-radius: 16px;
    padding: 24px 26px;
    box-shadow: 0 2px 12px rgba(0, 43, 105, 0.06);
}

.vf-select-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #002b69;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 12px;
}

.vf-select-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vf-select {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 2px solid #c8d8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #1a1a2e;
    background: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23002b69' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.vf-select:focus {
    border-color: #002b69;
    box-shadow: 0 0 0 3px rgba(0, 43, 105, 0.12);
}

.vf-select-hint {
    font-size: 0.78rem;
    color: #64748b;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vf-select-hint .fa {
    color: #002b69;
}

/* ── Results section ── */
.vf-results-sec {
    padding: 48px 0 60px;
    background: #f0f5ff;
    min-height: 280px;
}

.vf-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 16px;
    color: #64748b;
    font-size: 0.9rem;
}

.vf-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid #dce6f5;
    border-top-color: #002b69;
    border-radius: 50%;
    animation: vf-spin 0.8s linear infinite;
}

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

.vf-error {
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-left: 4px solid #f80113;
    border-radius: 10px;
    padding: 16px 20px;
    color: #7f1d1d;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.vf-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.vf-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #c8d8f0;
}

.vf-placeholder h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.vf-placeholder p {
    font-size: 0.88rem;
    max-width: 380px;
    margin: 0 auto;
}

/* ── Fee results card ── */
.vf-results {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #dce6f5;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 43, 105, 0.09);
}

.vf-results-hdr {
    background: linear-gradient(135deg, #001f52, #002b69);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vf-results-flag {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.vf-results-country {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.vf-results-country span {
    color: #93c5fd;
}

.vf-results-note {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    margin: 0;
}

.vf-type-group {
    border-bottom: 1px solid #e8edf5;
}

.vf-type-group:last-of-type {
    border-bottom: none;
}

.vf-type-heading {
    background: #f0f5ff;
    padding: 13px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #002b69;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #dce6f5;
}

.vf-type-heading .fa {
    color: #f80113;
}

.vf-duration-label {
    padding: 9px 28px;
    font-size: 0.82rem;
    color: #4a5568;
    background: #fafbff;
    border-bottom: 1px solid #eef1f8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vf-duration-label .fa {
    color: #64748b;
}

/* ── Fee table ── */
.vf-fee-table-wrap {
    overflow-x: auto;
}

.vf-fee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.vf-fee-table thead tr {
    background: #f8faff;
    border-bottom: 2px solid #dce6f5;
}

.vf-fee-table thead th {
    padding: 12px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-align: left;
}

.vf-fee-table tbody tr {
    border-bottom: 1px solid #f0f4fa;
    transition: background 0.15s;
}

.vf-fee-table tbody tr:last-child {
    border-bottom: none;
}

.vf-fee-table tbody tr:hover {
    background: #f8faff;
}

.vf-fee-table td {
    padding: 14px 18px;
    color: #2d3748;
    vertical-align: middle;
}

.vf-td-name {
    font-weight: 600;
    color: #001f52;
}

.vf-td-time {
    color: #64748b;
    font-size: 0.83rem;
    white-space: nowrap;
}

.vf-td-time .fa {
    margin-right: 4px;
}

.vf-td-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #002b69;
    white-space: nowrap;
}

/* ── Processing badges ── */
.vf-proc-badge-sm {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.vf-badge-std {
    background: #e0f2fe;
    color: #075985;
}

.vf-badge-exp {
    background: #fef3c7;
    color: #92400e;
}

.vf-badge-urg {
    background: #fee2e2;
    color: #991b1b;
}

.vf-badge-pri {
    background: #f3e8ff;
    color: #6b21a8;
}

/* ── Apply button in table ── */
.vf-apply-btn {
    display: inline-block;
    padding: 7px 18px;
    background: #002b69;
    color: #fff;
    border-radius: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}

.vf-apply-btn:hover {
    background: #f80113;
    color: #fff;
    transform: translateY(-1px);
}

.vf-disclaimer {
    padding: 14px 28px;
    font-size: 0.78rem;
    color: #64748b;
    background: #f8faff;
    border-top: 1px solid #e8edf5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vf-disclaimer .fa {
    color: #002b69;
    margin-top: 1px;
    flex-shrink: 0;
}

.vf-no-fees {
    padding: 40px 28px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

.vf-no-fees a {
    color: #002b69;
    font-weight: 600;
}

/* ── Section title shared ── */
.vf-sec-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #001f52;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.vf-title-bar {
    display: inline-block;
    width: 4px;
    height: 22px;
    background: #f80113;
    border-radius: 2px;
    flex-shrink: 0;
}

.vf-sec-sub {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 32px;
}

/* ── Fee policy section ── */
.vf-policy-sec {
    padding: 60px 0;
    background: #fff;
}

.vf-policy-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 6px;
}

.vf-policy-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vf-policy-icon {
    width: 40px;
    height: 40px;
    background: #f0f5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #002b69;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.vf-policy-item strong {
    display: block;
    font-size: 0.9rem;
    color: #001f52;
    margin-bottom: 4px;
}

.vf-policy-item p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ list ── */
.vf-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vf-faq-item {
    border-bottom: 1px solid #eef1f8;
    padding: 16px 0;
}

.vf-faq-item:first-child {
    padding-top: 0;
}

.vf-faq-item h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #002b69;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.vf-faq-item h4 .fa {
    color: #f80113;
    margin-top: 2px;
    flex-shrink: 0;
}

.vf-faq-item p {
    font-size: 0.83rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    padding-left: 20px;
}

/* ── CTA section ── */
.vf-cta-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #001f52 0%, #002b69 100%);
    position: relative;
    overflow: hidden;
}

.vf-cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.vf-cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: rgba(248, 1, 19, 0.07);
    border-radius: 50%;
}

.vf-cta-wrap {
    position: relative;
    z-index: 1;
}

.vf-cta-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.vf-cta-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

.vf-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.vf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #f80113;
    color: #fff;
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(248, 1, 19, 0.35);
}

.vf-btn-primary:hover {
    background: #d0000f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(248, 1, 19, 0.45);
}

.vf-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.vf-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .vf-hero {
        padding: 40px 0 32px;
    }

    .vf-hero-title {
        font-size: 1.8rem;
    }

    .vf-calc-banner {
        padding: 36px 0;
    }

    .vf-results-sec {
        padding: 36px 0 48px;
    }

    .vf-policy-sec {
        padding: 44px 0;
    }
}

@media (max-width: 767.98px) {
    .vf-hero-title {
        font-size: 1.5rem;
    }

    .vf-intro-title {
        font-size: 1.3rem;
    }

    .vf-calc-title {
        font-size: 1.3rem;
    }

    .vf-cta-title {
        font-size: 1.4rem;
    }

    .vf-select-row {
        flex-direction: column;
        align-items: stretch;
    }

    .vf-select {
        min-width: 0;
    }

    .vf-select-hint {
        display: none;
    }

    .vf-results-hdr {
        flex-direction: column;
        gap: 10px;
    }

    .vf-fee-table thead th,
    .vf-fee-table td {
        padding: 10px 12px;
    }

    .vf-type-heading {
        padding: 11px 16px;
    }

    .vf-duration-label {
        padding: 8px 16px;
    }

    .vf-disclaimer {
        padding: 12px 16px;
    }

    .vf-policy-item {
        gap: 12px;
    }

    .vf-policy-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .vf-cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .vf-btn-primary,
    .vf-btn-ghost {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .vf-intro-sec {
        padding: 40px 0 36px;
    }
}