:root {
    --zv-blue: #254395;
    --zv-blue-2: #2b4d9b;
    --zv-navy: #1c1f52;
    --zv-red: #bc3430;
    --zv-red-dark: #a52f2b;
    --zv-ink: #242638;
    --zv-muted: #686a78;
    --zv-line: #e8e4de;
    --zv-soft: #f7f4ef;
    --zv-soft-blue: #eef1f9;
    --zv-white: #ffffff;
    --zv-green: #17865d;
    --zv-radius: 20px;
    --zv-radius-sm: 12px;
    --zv-shadow: 0 24px 65px rgba(28, 31, 82, 0.13);
    --zv-shadow-sm: 0 12px 34px rgba(28, 31, 82, 0.09);
    --zv-container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--zv-ink);
    background: #fff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.zv-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--zv-blue); text-decoration: none; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
a:hover { color: var(--zv-red); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .55em; color: var(--zv-navy); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.15em; }
ul, ol { margin: 0 0 1.3em; }
::selection { color: #fff; background: var(--zv-red); }

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    clip: auto !important;
    clip-path: none;
    display: block;
    height: auto;
    left: 12px;
    top: 12px;
    width: auto;
    z-index: 100000;
    padding: 12px 18px;
    background: #fff;
    color: var(--zv-blue);
    border-radius: 6px;
    box-shadow: var(--zv-shadow-sm);
}

.zv-site-wrap { overflow: clip; }
.zv-container { width: min(calc(100% - 40px), var(--zv-container)); margin-inline: auto; }
.zv-main { min-height: 50vh; }
.zv-section { padding: 100px 0; position: relative; }
.zv-soft-section { background: linear-gradient(135deg, #f2f5fb 0%, #e9effc 100%); }
.zv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--zv-red);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.zv-eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 20px; }
.zv-section-heading { max-width: 760px; margin-bottom: 48px; }
.zv-section-heading p { color: var(--zv-muted); font-size: 1.1rem; }
.zv-heading-centre { text-align: center; margin-inline: auto; }
.zv-heading-centre .zv-eyebrow { justify-content: center; }

.zv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.zv-btn:hover { transform: translateY(-2px); }
.zv-btn-primary { color: #fff; background: var(--zv-red); box-shadow: 0 12px 26px rgba(207, 18, 54, .24); }
.zv-btn-primary:hover { color: #fff; background: var(--zv-red-dark); box-shadow: 0 16px 34px rgba(207, 18, 54, .3); }
.zv-btn-light { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.09); backdrop-filter: blur(8px); }
.zv-btn-light:hover { color: var(--zv-navy); background: #fff; border-color: #fff; }
.zv-btn-white { color: var(--zv-blue); background: #fff; box-shadow: 0 14px 32px rgba(0,0,0,.15); }
.zv-btn-white:hover { color: var(--zv-red); background: #fff; }

/* Top bar + navigation */
.zv-topbar { color: rgba(255,255,255,.86); background: var(--zv-navy); font-size: .82rem; }
.zv-topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.zv-topbar p { margin: 0; }
.zv-topbar-links { display: flex; gap: 22px; }
.zv-topbar a { color: #fff; }
.zv-topbar a:hover { color: #ffdbe3; }
.zv-header { position: relative; z-index: 80; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(8,38,111,.07); transition: box-shadow .2s ease, background .2s ease; }
.zv-header.is-scrolled { position: sticky; top: 0; box-shadow: 0 9px 30px rgba(8,38,111,.11); }
.admin-bar .zv-header.is-scrolled { top: 32px; }
.zv-header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.zv-brand { flex: 0 0 auto; }
.zv-brand img { display: block; width: 220px; max-height: 66px; object-fit: contain; object-position: left center; }
.custom-logo-link { display: flex; align-items: center; }
.zv-nav { display: flex; align-items: center; gap: 26px; }
.zv-nav ul { display: flex; align-items: center; gap: 5px; list-style: none; margin: 0; padding: 0; }
.zv-nav li { position: relative; }
.zv-nav li a { display: block; padding: 13px 11px; color: var(--zv-ink); font-size: .93rem; font-weight: 700; }
.zv-nav li.current-menu-item > a, .zv-nav li a:hover { color: var(--zv-red); }
.zv-nav .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: block;
    min-width: 235px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    background: #fff;
    border: 1px solid var(--zv-line);
    border-radius: 14px;
    box-shadow: var(--zv-shadow-sm);
    transition: .2s ease;
}
.zv-nav li:hover > .sub-menu, .zv-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.zv-nav .sub-menu li a { padding: 10px 12px; border-radius: 8px; }
.zv-nav .sub-menu li a:hover { background: var(--zv-soft); }
.zv-header-cta { min-height: 45px; padding: 11px 18px; white-space: nowrap; }
.zv-menu-toggle { display: none; align-items: center; gap: 5px; border: 0; background: transparent; color: var(--zv-blue); }
.zv-menu-toggle span { display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
.zv-menu-toggle b { margin-left: 5px; font-size: .9rem; }

/* Hero */
.zv-hero {
    position: relative;
    min-height: 710px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 75% 25%, rgba(55,112,255,.35), transparent 30%),
        radial-gradient(circle at 15% 85%, rgba(207,18,54,.34), transparent 30%),
        linear-gradient(135deg, #041947 0%, #08266f 56%, #0c2f7b 100%);
}
.zv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to right, transparent 0%, black 35%, black 100%);
}
.zv-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; padding: 100px 0 110px; }
.zv-hero .zv-eyebrow { color: #ffb6c3; }
.zv-hero h1 { color: #fff; max-width: 720px; margin-bottom: 24px; }
.zv-hero-lead { max-width: 680px; color: rgba(255,255,255,.82); font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.zv-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0 22px; }
.zv-hero-note { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.72); font-size: .91rem; }
.zv-hero-note span { display: grid; place-items: center; width: 22px; height: 22px; color: var(--zv-navy); background: #fff; border-radius: 50%; font-weight: 900; }
.zv-hero-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.zv-route-card { position: absolute; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); backdrop-filter: blur(18px); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.zv-route-main { width: min(100%, 475px); padding: 38px; border-radius: 30px; transform: rotate(1.5deg); }
.zv-route-main::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(255,255,255,.7), transparent 50%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.zv-route-kicker { color: #ffb6c3; font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.zv-route-main h2 { margin-top: 10px; color: #fff; font-size: clamp(2rem, 3vw, 3rem); }
.zv-route-main p { color: rgba(255,255,255,.76); }
.zv-route-line { display: flex; align-items: center; margin: 32px 0 9px; }
.zv-route-dot { width: 17px; height: 17px; border: 4px solid rgba(255,255,255,.25); border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.08); }
.zv-dot-green { background: #3fd18e; }
.zv-dot-blue { background: #80a9ff; }
.zv-route-track { flex: 1; height: 1px; border-top: 1px dashed rgba(255,255,255,.55); }
.zv-route-plane { display: grid; place-items: center; width: 36px; height: 36px; color: var(--zv-red); background: #fff; border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.zv-route-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,.72); font-size: .82rem; }
.zv-route-small { left: 0; bottom: 20px; width: 285px; display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: 18px; transform: rotate(-3deg); }
.zv-route-small strong { display: block; color: #fff; }
.zv-route-small small { display: block; color: rgba(255,255,255,.68); font-size: .74rem; }
.zv-country-badge { width: 45px; height: 34px; display: grid; grid-template-columns: 1fr 1fr 1fr; overflow: hidden; border-radius: 5px; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.zv-country-badge i:nth-child(1), .zv-country-badge i:nth-child(3) { background: #118957; }
.zv-country-badge i:nth-child(2) { background: #fff; }
.zv-trust-chip { position: absolute; right: 0; top: 26px; width: 96px; height: 96px; display: grid; place-content: center; text-align: center; border-radius: 50%; color: var(--zv-navy); background: #fff; box-shadow: 0 20px 45px rgba(0,0,0,.2); transform: rotate(5deg); }
.zv-trust-chip span { font-size: 2rem; font-weight: 900; line-height: 1; }
.zv-trust-chip small { color: var(--zv-muted); font-weight: 700; }
.zv-hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.zv-hero-orbit-one { width: 640px; height: 640px; right: -200px; top: -250px; }
.zv-hero-orbit-two { width: 420px; height: 420px; left: -210px; bottom: -260px; }

/* Cards + pathways */
.zv-card-grid { display: grid; gap: 22px; }
.zv-card-grid-four { grid-template-columns: repeat(4, 1fr); }
.zv-card-grid-three { grid-template-columns: repeat(3, 1fr); }
.zv-service-card, .zv-info-card {
    position: relative;
    min-height: 290px;
    padding: 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--zv-line);
    border-radius: var(--zv-radius);
    box-shadow: 0 6px 20px rgba(8,38,111,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.zv-service-card:hover, .zv-info-card:hover { transform: translateY(-7px); border-color: rgba(207,18,54,.22); box-shadow: var(--zv-shadow-sm); }
.zv-service-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -66px; top: -65px; border-radius: 50%; background: var(--zv-soft-blue); transition: transform .3s ease, background .3s ease; }
.zv-service-card:hover::after { transform: scale(1.35); background: #ffeaf0; }
.zv-card-number { position: relative; z-index: 2; display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 35px; color: var(--zv-red); background: #fff1f4; border-radius: 50%; font-weight: 900; }
.zv-service-card h3, .zv-info-card h3 { margin-bottom: 13px; }
.zv-service-card p, .zv-info-card p { color: var(--zv-muted); }
.zv-service-card > a { position: absolute; left: 30px; bottom: 26px; color: var(--zv-blue); font-weight: 800; }
.zv-service-card > a:hover { color: var(--zv-red); }
.zv-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.zv-split-copy p { color: var(--zv-muted); font-size: 1.08rem; }
.zv-check-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px; }
.zv-check-list li { position: relative; padding-left: 32px; font-weight: 700; }
.zv-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 22px; height: 22px; color: #fff; background: var(--zv-green); border-radius: 50%; font-size: .75rem; }
.zv-pathways { background: var(--zv-soft); }
.zv-pathway-stack { display: grid; gap: 22px; }
.zv-pathway-card { position: relative; padding: 34px 38px; overflow: hidden; border-radius: 26px; color: #fff; box-shadow: var(--zv-shadow); }
.zv-pathway-card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -65px; top: -90px; border: 34px solid rgba(255,255,255,.08); border-radius: 50%; }
.zv-pathway-card span { display: inline-block; margin-bottom: 13px; color: rgba(255,255,255,.72); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.zv-pathway-card h3 { position: relative; z-index: 2; max-width: 560px; color: #fff; font-size: clamp(1.65rem, 2.8vw, 2.25rem); }
.zv-pathway-card p { position: relative; z-index: 2; max-width: 600px; color: rgba(255,255,255,.76); }
.zv-pathway-card a { position: relative; z-index: 2; color: #fff; font-weight: 800; }
.zv-pathway-card a:hover { color: #fff; opacity: .78; }
.zv-pathway-blue { background: linear-gradient(135deg, var(--zv-blue), #174cb2); }
.zv-pathway-red { background: linear-gradient(135deg, #a50e2b, var(--zv-red)); }

/* Process */
.zv-process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.zv-process-grid::before { content: ""; position: absolute; left: 10%; right: 10%; top: 27px; border-top: 2px dashed #d8deea; }
.zv-step { position: relative; z-index: 2; text-align: center; }
.zv-step-number { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 25px; color: #fff; background: var(--zv-blue); border: 7px solid #fff; border-radius: 50%; box-shadow: 0 0 0 2px var(--zv-line), 0 8px 24px rgba(8,38,111,.15); font-weight: 900; }
.zv-step:nth-child(2) .zv-step-number, .zv-step:nth-child(4) .zv-step-number { background: var(--zv-red); }
.zv-step p { color: var(--zv-muted); font-size: .93rem; }

/* FAQ */
.zv-faq { background: #fff; }
.zv-faq-layout { align-items: start; }
.zv-accordion { display: grid; gap: 12px; }
.zv-accordion details { border: 1px solid var(--zv-line); border-radius: 16px; background: #fff; box-shadow: 0 4px 14px rgba(8,38,111,.03); overflow: hidden; }
.zv-accordion summary { position: relative; padding: 20px 56px 20px 22px; cursor: pointer; color: var(--zv-navy); font-weight: 800; list-style: none; }
.zv-accordion summary::-webkit-details-marker { display: none; }
.zv-accordion summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 27px; height: 27px; color: var(--zv-blue); background: var(--zv-soft-blue); border-radius: 50%; font-size: 1.25rem; }
.zv-accordion details[open] summary::after { content: "–"; color: #fff; background: var(--zv-red); }
.zv-accordion details p { padding: 0 22px 22px; margin: 0; color: var(--zv-muted); }

/* Enquiry */
.zv-enquiry { color: #fff; background: linear-gradient(135deg, #061b4d 0%, #08266f 100%); }
.zv-enquiry-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 72px; align-items: center; }
.zv-enquiry .zv-eyebrow { color: #ffb6c3; }
.zv-enquiry h2 { color: #fff; }
.zv-enquiry-copy > p { color: rgba(255,255,255,.74); font-size: 1.08rem; }
.zv-contact-panel { margin-top: 34px; display: grid; gap: 15px; }
.zv-contact-panel > div { padding: 16px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.06); }
.zv-contact-panel span { display: block; margin-bottom: 3px; color: #ffb6c3; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.zv-contact-panel a, .zv-contact-panel p { color: #fff; margin: 0; }
.zv-form-card { padding: 34px; color: var(--zv-ink); background: #fff; border-radius: 26px; box-shadow: 0 30px 70px rgba(0,0,0,.23); }
.zv-form { display: grid; gap: 18px; }
.zv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.zv-form label { display: grid; gap: 7px; color: var(--zv-navy); font-size: .86rem; font-weight: 800; }
.zv-form input, .zv-form select, .zv-form textarea { width: 100%; padding: 13px 14px; color: var(--zv-ink); background: #fbfcfe; border: 1px solid #d8deea; border-radius: 10px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.zv-form textarea { resize: vertical; }
.zv-form input:focus, .zv-form select:focus, .zv-form textarea:focus { background: #fff; border-color: var(--zv-blue-2); box-shadow: 0 0 0 4px rgba(17,61,150,.11); }
.zv-form .zv-consent { display: flex; align-items: flex-start; gap: 10px; color: var(--zv-muted); font-size: .8rem; font-weight: 600; }
.zv-consent input { flex: 0 0 auto; width: 17px; margin-top: 4px; }
.zv-form button { justify-self: start; border: 0; }
.zv-honeypot { position: absolute !important; left: -9999px !important; }
.zv-form-message { margin-bottom: 18px; padding: 13px 15px; border-radius: 10px; font-weight: 700; }
.zv-form-success { color: #096642; background: #e7f8ef; border: 1px solid #b7e9ce; }
.zv-form-error { color: #9e1630; background: #fff0f3; border: 1px solid #f5c2cc; }

/* CTA */
.zv-cta { padding: 66px 0; color: #fff; background: linear-gradient(100deg, var(--zv-red), #ae0c2b); }
.zv-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.zv-cta h2 { color: #fff; margin-bottom: 8px; }
.zv-cta p { margin: 0; color: rgba(255,255,255,.82); }

/* Inner pages */
.zv-page-hero, .zv-inner-hero { position: relative; padding: 90px 0; overflow: hidden; background: linear-gradient(135deg, #f3f6fc, #e8eefb); }
.zv-page-hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; top: -180px; border: 55px solid rgba(8,38,111,.055); border-radius: 50%; }
.zv-page-hero h1 { position: relative; z-index: 2; max-width: 900px; font-size: clamp(2.5rem, 5vw, 4.5rem); }
.zv-page-content { padding: 80px 0 100px; }
.zv-prose { max-width: 900px; }
.zv-prose > * + * { margin-top: 1.15em; }
.zv-prose h2, .zv-prose h3 { margin-top: 1.4em; }
.zv-prose p, .zv-prose li { color: #4c566a; }
.zv-prose blockquote { margin: 2em 0; padding: 22px 26px; border-left: 4px solid var(--zv-red); background: var(--zv-soft); border-radius: 0 14px 14px 0; }
.zv-inner-hero { padding: 105px 0; color: #fff; }
.zv-inner-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.zv-inner-hero h1 { color: #fff; font-size: clamp(2.7rem, 5.5vw, 5rem); }
.zv-inner-hero p { max-width: 700px; color: rgba(255,255,255,.8); font-size: 1.15rem; }
.zv-inner-hero .zv-eyebrow { color: #ffb6c3; }
.zv-saudi-hero { background: radial-gradient(circle at 80% 20%, rgba(36,184,113,.26), transparent 33%), linear-gradient(135deg, #052c25, #08266f); }
.zv-nigeria-hero { background: radial-gradient(circle at 80% 20%, rgba(35,192,116,.29), transparent 33%), linear-gradient(135deg, #083f2c, #08266f); }
.zv-gateway-visual, .zv-nigeria-visual { min-height: 300px; display: flex; align-items: center; justify-content: center; gap: 0; }
.zv-gateway-point { position: relative; z-index: 2; display: grid; place-items: center; width: 105px; height: 105px; border-radius: 50%; color: #fff; font-size: 1.55rem; font-weight: 900; box-shadow: 0 20px 45px rgba(0,0,0,.22); }
.zv-point-saudi { background: #16895a; border: 7px solid rgba(255,255,255,.18); }
.zv-point-uk { background: var(--zv-red); border: 7px solid rgba(255,255,255,.18); }
.zv-gateway-path { position: relative; width: 180px; border-top: 2px dashed rgba(255,255,255,.55); }
.zv-gateway-path i { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 45px; height: 45px; color: var(--zv-blue); background: #fff; border-radius: 50%; font-style: normal; box-shadow: 0 12px 25px rgba(0,0,0,.2); }
.zv-nigeria-flag { display: grid; grid-template-columns: repeat(3, 1fr); width: 120px; height: 82px; overflow: hidden; border-radius: 9px; box-shadow: 0 20px 45px rgba(0,0,0,.2); }
.zv-nigeria-flag span:nth-child(1), .zv-nigeria-flag span:nth-child(3) { background: #0f8f5d; }
.zv-nigeria-flag span:nth-child(2) { background: #fff; }
.zv-flight-arrow { width: 150px; text-align: center; color: #fff; font-size: 3rem; font-weight: 300; }
.zv-uk-tile { display: grid; place-items: center; width: 120px; height: 82px; color: #fff; background: linear-gradient(135deg, var(--zv-blue), var(--zv-red)); border: 5px solid rgba(255,255,255,.18); border-radius: 9px; box-shadow: 0 20px 45px rgba(0,0,0,.2); font-size: 1.5rem; font-weight: 900; }
.zv-info-card { min-height: 220px; }
.zv-info-card::before { content: ""; display: block; width: 40px; height: 5px; margin-bottom: 25px; border-radius: 99px; background: linear-gradient(90deg, var(--zv-blue), var(--zv-red)); }
.zv-notice-card { padding: 32px; color: #fff; background: var(--zv-blue); border-radius: 22px; box-shadow: var(--zv-shadow); }
.zv-notice-card strong { font-size: 1.25rem; }
.zv-notice-card p { margin: 8px 0 0; color: rgba(255,255,255,.78); }
.zv-white-list { padding: 30px; background: #fff; border-radius: 20px; box-shadow: var(--zv-shadow-sm); }

/* Blog */
.zv-blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 50px; padding: 80px 0 100px; }
.zv-post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; align-content: start; }
.zv-post-card { overflow: hidden; border: 1px solid var(--zv-line); border-radius: 18px; background: #fff; box-shadow: 0 5px 18px rgba(8,38,111,.05); }
.zv-post-card img { display: block; width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.zv-post-card-copy { padding: 25px; }
.zv-post-card h2 { font-size: 1.45rem; }
.zv-post-card h2 a { color: var(--zv-navy); }
.zv-post-card p { color: var(--zv-muted); }
.zv-post-meta { margin-bottom: 8px !important; color: var(--zv-red) !important; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.zv-text-link { font-weight: 800; }
.zv-sidebar .widget { padding: 24px; margin-bottom: 20px; border: 1px solid var(--zv-line); border-radius: 16px; background: var(--zv-soft); }
.zv-sidebar .widget-title { font-size: 1.2rem; }
.zv-sidebar ul { list-style: none; padding: 0; }
.zv-sidebar li + li { margin-top: 9px; }
.zv-featured-image { margin-bottom: 38px; }
.zv-featured-image img { border-radius: 20px; }
.navigation.pagination { grid-column: 1 / -1; }
.nav-links { display: flex; gap: 7px; margin-top: 20px; }
.page-numbers { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--zv-line); border-radius: 8px; }
.page-numbers.current { color: #fff; background: var(--zv-blue); border-color: var(--zv-blue); }
.zv-empty { padding: 140px 0; text-align: center; }

/* Footer */
.zv-footer { color: rgba(255,255,255,.72); background: #03153d; }
.zv-footer-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr 1fr; gap: 50px; padding: 75px 0 50px; }
.zv-footer h2 { color: #fff; font-size: 1rem; letter-spacing: .02em; }
.zv-footer a { color: rgba(255,255,255,.82); }
.zv-footer a:hover { color: #fff; }
.zv-footer ul { list-style: none; margin: 0; padding: 0; }
.zv-footer li + li { margin-top: 7px; }
.zv-footer-brand img { width: 220px; max-height: 80px; object-fit: contain; object-position: left; filter: brightness(0) invert(1); opacity: .96; }
.zv-footer-brand p { max-width: 360px; margin-top: 20px; }
.zv-footer-disclaimer { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); }
.zv-footer-disclaimer p { margin: 0; font-size: .78rem; line-height: 1.6; }
.zv-footer-bottom { border-top: 1px solid rgba(255,255,255,.09); }
.zv-footer-bottom .zv-container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.zv-footer-bottom p { margin: 0; font-size: .78rem; }

/* WordPress alignment helpers */
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption, .gallery-caption { color: var(--zv-muted); font-size: .85rem; }
.sticky { outline: 2px solid var(--zv-soft-blue); }
.bypostauthor { display: block; }

@media (max-width: 1120px) {
    .zv-nav { gap: 12px; }
    .zv-nav li a { padding-inline: 7px; font-size: .86rem; }
    .zv-header-cta { display: none; }
    .zv-card-grid-four { grid-template-columns: repeat(2, 1fr); }
    .zv-hero-grid { gap: 35px; }
    .zv-route-main { width: 420px; }
    .zv-footer-grid { grid-template-columns: 1.2fr .8fr 1fr; }
    .zv-footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
    .admin-bar .zv-header.is-scrolled { top: 46px; }
    .zv-topbar-inner { min-height: 36px; justify-content: center; }
    .zv-topbar-links { display: none; }
    .zv-header-inner { min-height: 78px; }
    .zv-brand img { width: 190px; }
    .zv-menu-toggle { display: grid; grid-template-columns: 24px auto; }
    .zv-menu-toggle span { grid-column: 1; }
    .zv-menu-toggle b { grid-column: 2; grid-row: 1 / 4; align-self: center; }
    .zv-nav {
        position: fixed;
        inset: 0 0 0 auto;
        z-index: 90;
        width: min(88vw, 390px);
        display: block;
        padding: 90px 25px 30px;
        transform: translateX(105%);
        background: #fff;
        box-shadow: -20px 0 50px rgba(8,38,111,.16);
        transition: transform .25s ease;
        overflow-y: auto;
    }
    .zv-nav.is-open { transform: translateX(0); }
    .zv-nav ul { display: block; }
    .zv-nav li a { padding: 14px 10px; font-size: 1rem; border-bottom: 1px solid var(--zv-line); }
    .zv-nav .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 0 15px; opacity: 1; visibility: visible; transform: none; border: 0; box-shadow: none; }
    .zv-menu-toggle { position: relative; z-index: 100; }
    .zv-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .zv-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .zv-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .zv-hero { min-height: auto; }
    .zv-hero-grid, .zv-inner-hero-grid, .zv-enquiry-grid, .zv-split { grid-template-columns: 1fr; }
    .zv-hero-grid { padding: 80px 0 95px; gap: 55px; }
    .zv-hero-copy { text-align: center; }
    .zv-hero-copy .zv-eyebrow { justify-content: center; }
    .zv-hero-lead { margin-inline: auto; }
    .zv-hero-actions { justify-content: center; }
    .zv-hero-note { justify-content: center; }
    .zv-hero-visual { min-height: 440px; }
    .zv-split { gap: 45px; }
    .zv-process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 45px; }
    .zv-process-grid::before { display: none; }
    .zv-enquiry-grid { gap: 45px; }
    .zv-card-grid-three { grid-template-columns: 1fr; }
    .zv-info-card { min-height: auto; }
    .zv-blog-layout { grid-template-columns: 1fr; }
    .zv-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .zv-footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
    .zv-container { width: min(calc(100% - 28px), var(--zv-container)); }
    .zv-section { padding: 72px 0; }
    .zv-topbar { text-align: center; }
    .zv-topbar p { font-size: .72rem; }
    .zv-brand img { width: 166px; }
    .zv-hero-grid { padding: 64px 0 80px; }
    .zv-hero h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
    .zv-hero-actions { display: grid; }
    .zv-hero-actions .zv-btn { width: 100%; }
    .zv-hero-note { align-items: flex-start; font-size: .82rem; }
    .zv-hero-visual { min-height: 390px; }
    .zv-route-main { width: 100%; padding: 28px 24px; }
    .zv-route-main h2 { font-size: 2rem; }
    .zv-route-small { left: 8px; bottom: 8px; width: 250px; padding: 14px; }
    .zv-trust-chip { right: -5px; top: 5px; width: 78px; height: 78px; }
    .zv-trust-chip span { font-size: 1.55rem; }
    .zv-card-grid-four, .zv-process-grid, .zv-post-grid { grid-template-columns: 1fr; }
    .zv-service-card { min-height: 255px; }
    .zv-check-list { grid-template-columns: 1fr; }
    .zv-pathway-card { padding: 28px 24px; }
    .zv-form-card { padding: 24px 18px; }
    .zv-form-row { grid-template-columns: 1fr; }
    .zv-form button { width: 100%; }
    .zv-cta-inner, .zv-footer-bottom .zv-container { display: grid; text-align: center; }
    .zv-cta .zv-btn { width: 100%; }
    .zv-page-hero, .zv-inner-hero { padding: 70px 0; }
    .zv-gateway-visual, .zv-nigeria-visual { min-height: 230px; }
    .zv-gateway-point { width: 78px; height: 78px; font-size: 1.2rem; }
    .zv-gateway-path { width: 92px; }
    .zv-nigeria-flag, .zv-uk-tile { width: 82px; height: 58px; }
    .zv-flight-arrow { width: 70px; font-size: 2rem; }
    .zv-footer-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 55px; }
    .zv-footer-bottom .zv-container { padding: 18px 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.zv-builder-content > .zv-container > :first-child { margin-top: 0; }
.zv-builder-content > .zv-container > :last-child { margin-bottom: 0; }

/* V2 fully editable builder additions */
.zv-card-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.zv-info-card > a { display: inline-flex; margin-top: 10px; font-weight: 800; }
.zv-hero-grid-single { grid-template-columns: minmax(0, 850px); }
.zv-hero-grid-single .zv-hero-copy { max-width: 850px; }
.zv-inner-hero-single { grid-template-columns: minmax(0, 850px); }
.zv-inner-hero-blue { background: radial-gradient(circle at 82% 18%, rgba(207,18,54,.2), transparent 34%), linear-gradient(135deg, #061b4d, #113d96); }
.zv-inner-hero-light { color: var(--zv-ink); background: radial-gradient(circle at 82% 18%, rgba(207,18,54,.08), transparent 34%), linear-gradient(135deg, #f5f7fb, #e9effc); }
.zv-inner-hero-light h1 { color: var(--zv-navy); }
.zv-inner-hero-light p { color: var(--zv-muted); }
.zv-inner-hero-light .zv-eyebrow { color: var(--zv-red); }
.zv-inner-hero-light .zv-btn-primary { color: #fff; }
.zv-dark-section { color: #fff; background: linear-gradient(135deg, var(--zv-navy), var(--zv-blue)); }
.zv-dark-section h2, .zv-dark-section h3 { color: #fff; }
.zv-dark-section .zv-split-copy p { color: rgba(255,255,255,.78); }
.zv-dark-section .zv-eyebrow { color: #ffb6c3; }
.zv-cta-blue { background: linear-gradient(100deg, var(--zv-blue), #174cb2); }
.zv-cta-red { background: linear-gradient(100deg, var(--zv-red), #ae0c2b); }
.zv-cta .zv-eyebrow { margin-bottom: 10px; color: rgba(255,255,255,.78); }
.zv-enquiry-grid-form-only { grid-template-columns: minmax(0, 820px); justify-content: center; }
.zv-content-section .zv-prose { margin-inline: auto; }
.zv-prose-narrow { max-width: 760px; }
.zv-rich-text > :first-child { margin-top: 0; }
.zv-rich-text > :last-child { margin-bottom: 0; }
.zv-rich-text h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.zv-dark-section .zv-rich-text p, .zv-dark-section .zv-rich-text li { color: rgba(255,255,255,.8); }
.zv-builder-article { margin: 0; }
.zv-builder-article > .vc_row { margin-left: 0; margin-right: 0; }

@media (max-width: 980px) {
    .zv-card-grid-two { grid-template-columns: 1fr; }
}


/* ==========================================================================
   Zoom Viza V3 brand refresh
   Updated to the navy / royal-blue / warm-red palette in the current logo.
   ========================================================================== */
body {
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--zv-ink);
    background: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 600;
    letter-spacing: -.018em;
    color: var(--zv-navy);
}
h1 { font-size: clamp(3rem, 6vw, 5.9rem); line-height: .98; }
h2 { font-size: clamp(2.25rem, 4.3vw, 3.8rem); line-height: 1.02; }
h3 { font-size: clamp(1.4rem, 2.15vw, 1.78rem); line-height: 1.1; }

.zv-topbar { background: var(--zv-navy); }
.zv-topbar a:hover { color: #f2c9c7; }
.zv-header { border-bottom-color: rgba(28,31,82,.09); }
.zv-header.is-scrolled { box-shadow: 0 12px 34px rgba(28,31,82,.10); }
.zv-header-inner { min-height: 94px; }
.zv-brand img { width: 250px; max-height: 64px; }
.zv-nav li a { font-weight: 700; color: #303244; }
.zv-nav li.current-menu-item > a, .zv-nav li a:hover { color: var(--zv-red); }

.zv-btn { border-radius: 10px; font-weight: 800; letter-spacing: -.01em; }
.zv-btn-primary { background: var(--zv-red); box-shadow: 0 12px 25px rgba(188,52,48,.20); }
.zv-btn-primary:hover { background: var(--zv-red-dark); box-shadow: 0 16px 32px rgba(165,47,43,.26); }
.zv-btn-light { color: var(--zv-navy); border-color: rgba(28,31,82,.26); background: rgba(255,255,255,.68); }
.zv-btn-light:hover { color: #fff; background: var(--zv-navy); border-color: var(--zv-navy); }

.zv-eyebrow { color: var(--zv-red); font-family: Manrope, sans-serif; letter-spacing: .13em; }
.zv-section { padding: 96px 0; }
.zv-soft-section { background: linear-gradient(135deg, #faf8f4 0%, #f1f3f8 100%); }
.zv-section-heading p, .zv-split-copy > p { color: var(--zv-muted); }

/* Premium light homepage hero. */
.zv-hero {
    min-height: 690px;
    color: var(--zv-ink);
    background:
        radial-gradient(circle at 88% 12%, rgba(188,52,48,.09), transparent 28%),
        radial-gradient(circle at 7% 88%, rgba(37,67,149,.10), transparent 30%),
        linear-gradient(135deg, #fbfaf7 0%, #f4f5f8 58%, #faf4f2 100%);
    border-bottom: 1px solid rgba(28,31,82,.07);
}
.zv-hero::before {
    background-image: linear-gradient(rgba(28,31,82,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(28,31,82,.035) 1px, transparent 1px);
    mask-image: linear-gradient(to right, black 0%, black 60%, transparent 100%);
}
.zv-hero-grid { padding: 96px 0 104px; }
.zv-hero .zv-eyebrow { color: var(--zv-red); }
.zv-hero h1 { color: var(--zv-navy); max-width: 680px; }
.zv-hero-lead { color: #57596a; max-width: 660px; }
.zv-hero-note { color: #6a6c79; }
.zv-hero-note span { color: #fff; background: var(--zv-blue); }
.zv-hero-orbit { border-color: rgba(37,67,149,.12); }
.zv-route-card { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.08); }
.zv-route-main {
    color: #fff;
    background: linear-gradient(145deg, #1c1f52 0%, #254395 100%);
    box-shadow: 0 32px 75px rgba(28,31,82,.24);
}
.zv-route-main h2 { color: #fff; }
.zv-route-main p { color: rgba(255,255,255,.78); }
.zv-route-kicker { color: #f3b2ae; }
.zv-route-small { background: #fff; border-color: rgba(28,31,82,.10); box-shadow: 0 20px 48px rgba(28,31,82,.18); }
.zv-route-small strong { color: var(--zv-navy); }
.zv-route-small small { color: var(--zv-muted); }
.zv-trust-chip { color: var(--zv-navy); background: #fff; box-shadow: 0 16px 38px rgba(28,31,82,.16); }
.zv-route-plane { color: var(--zv-red); }

/* Optional editable hero / section photos. */
.zv-hero-photo,
.zv-inner-hero-photo,
.zv-photo-split-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--zv-shadow);
}
.zv-hero-photo { width: min(100%, 500px); aspect-ratio: 4 / 5; }
.zv-inner-hero-photo { width: min(100%, 470px); aspect-ratio: 4 / 3; }
.zv-photo-split-media { aspect-ratio: 4 / 3; }
.zv-hero-photo img,
.zv-inner-hero-photo img,
.zv-photo-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zv-photo-frame-accent::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 92px;
    height: 7px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--zv-blue), var(--zv-red));
}

/* Route finder inspired by a useful visa-selector pattern, adapted for Zoom Viza. */
.zv-route-finder-section { position: relative; z-index: 8; margin-top: -44px; padding: 0 0 32px; }
.zv-route-finder-card {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 34px;
    align-items: center;
    padding: 30px 34px;
    background: #fff;
    border: 1px solid rgba(28,31,82,.08);
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(28,31,82,.12);
}
.zv-route-finder-copy h2 { margin-bottom: 7px; font-size: clamp(1.8rem, 3.2vw, 2.65rem); }
.zv-route-finder-copy p { margin: 0; color: var(--zv-muted); }
.zv-route-finder-form { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 11px; align-items: end; }
.zv-route-finder-form label { display: grid; gap: 7px; color: var(--zv-navy); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.zv-route-finder-form select { min-height: 52px; width: 100%; padding: 10px 34px 10px 12px; border: 1px solid #dcdde6; border-radius: 9px; color: var(--zv-ink); background: #fbfbfc; }
.zv-route-finder-form select:focus { outline: 0; border-color: var(--zv-blue); box-shadow: 0 0 0 4px rgba(37,67,149,.09); }
.zv-route-finder-form button { min-height: 52px; border: 0; white-space: nowrap; }

/* Refined cards and editorial visual hierarchy. */
.zv-service-card, .zv-info-card { border-color: rgba(28,31,82,.09); box-shadow: 0 8px 24px rgba(28,31,82,.055); }
.zv-service-card:hover, .zv-info-card:hover { box-shadow: 0 18px 42px rgba(28,31,82,.11); }
.zv-service-card-image { margin: -30px -30px 22px; overflow: hidden; border-radius: 18px 18px 0 0; aspect-ratio: 16 / 9; background: var(--zv-soft); }
.zv-service-card-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.zv-service-number { color: var(--zv-red); }
.zv-pathway-blue { background: linear-gradient(135deg, #1c1f52, #254395); }
.zv-pathway-red { background: linear-gradient(135deg, #8e2926, #bc3430); }
.zv-process-grid::before { border-color: #dddde5; }
.zv-step-number { background: var(--zv-blue); }
.zv-step:nth-child(2) .zv-step-number, .zv-step:nth-child(4) .zv-step-number { background: var(--zv-red); }

.zv-photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.zv-photo-split.zv-photo-right .zv-photo-split-media { order: 2; }
.zv-photo-split-copy > p { color: var(--zv-muted); font-size: 1.06rem; }
.zv-photo-placeholder { min-height: 360px; display: grid; place-items: center; padding: 40px; text-align: center; color: #77798a; background: linear-gradient(135deg, #f7f4ef, #eef1f9); border: 1px dashed #c8cad7; }
.zv-photo-placeholder strong { display: block; color: var(--zv-navy); font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; }

.zv-enquiry { background: linear-gradient(135deg, #171a49 0%, #254395 100%); }
.zv-enquiry .zv-eyebrow { color: #f1aaa6; }
.zv-contact-panel span { color: #f1aaa6; }
.zv-cta { background: linear-gradient(100deg, #a52f2b, #bc3430); }
.zv-page-hero, .zv-inner-hero { background: linear-gradient(135deg, #faf8f4, #eef1f8); }
.zv-saudi-hero { background: radial-gradient(circle at 80% 20%, rgba(188,52,48,.18), transparent 33%), linear-gradient(135deg, #1c1f52, #254395); }
.zv-nigeria-hero { background: radial-gradient(circle at 80% 20%, rgba(23,134,93,.24), transparent 33%), linear-gradient(135deg, #153c38, #1c1f52); }
.zv-gateway-point.zv-point-uk { background: var(--zv-red); }
.zv-notice-card { background: var(--zv-navy); }

@media (max-width: 980px) {
    .zv-route-finder-card { grid-template-columns: 1fr; }
    .zv-route-finder-form { grid-template-columns: 1fr 1fr; }
    .zv-route-finder-form button { grid-column: 1 / -1; }
    .zv-photo-split { grid-template-columns: 1fr; gap: 35px; }
    .zv-photo-split.zv-photo-right .zv-photo-split-media { order: 0; }
}
@media (max-width: 640px) {
    .zv-brand img { width: 205px; max-height: 54px; }
    .zv-hero { min-height: auto; }
    .zv-hero-grid { padding: 72px 0 88px; }
    .zv-route-finder-section { margin-top: -28px; }
    .zv-route-finder-card { padding: 24px 20px; }
    .zv-route-finder-form { grid-template-columns: 1fr; }
    .zv-route-finder-form button { grid-column: auto; }
}
.zv-photo-split-no-image { grid-template-columns: minmax(0, 820px); }
.zv-inner-hero-blue { background: radial-gradient(circle at 82% 18%, rgba(188,52,48,.18), transparent 34%), linear-gradient(135deg, #1c1f52, #254395); }
.zv-inner-hero-light { background: radial-gradient(circle at 82% 18%, rgba(188,52,48,.07), transparent 34%), linear-gradient(135deg, #faf8f4, #eef1f8); }
.zv-footer { background: #151843; }
.zv-footer h2 { font-family: Manrope, sans-serif; font-weight: 800; }


/* ==========================================================================
   Zoom Viza V3.1 — lightweight typography refinement
   Matches the elegant, thin feel of the updated Zoom Viza wordmark while
   keeping body copy readable on desktop and mobile.
   ========================================================================== */
body {
    font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    letter-spacing: .002em;
}
p, li, input, select, textarea { font-weight: 300; }
h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: .004em;
}
h1 { line-height: 1.00; }
h2 { line-height: 1.04; }
h3 { line-height: 1.12; }
.zv-nav li a { font-weight: 400; letter-spacing: .015em; }
.zv-btn { font-weight: 500; letter-spacing: .01em; }
.zv-eyebrow,
.zv-route-kicker,
.zv-route-finder-form label,
.zv-contact-panel span,
.zv-form label,
.zv-post-meta { font-weight: 500; }
.zv-route-small strong,
.zv-trust-chip small,
.zv-service-card a,
.zv-info-card a,
.zv-text-link,
.zv-notice-card strong { font-weight: 500; }
.zv-trust-chip span,
.zv-gateway-point,
.zv-uk-tile,
.zv-hero-note span { font-weight: 500; }
.zv-accordion summary { font-weight: 400; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.18rem; }
.zv-form .zv-consent, .zv-form-message { font-weight: 400; }
.zv-footer h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 400; font-size: 1.18rem; letter-spacing: .02em; }
.zv-photo-placeholder strong { font-weight: 400; }
.zv-brand img { width: 270px; max-height: 64px; }
@media (max-width: 640px) {
    .zv-brand img { width: 215px; max-height: 52px; }
}

/* ==========================================================================
   Zoom Viza V3.2 — responsive WPBakery typography controls
   Each Zoom Viza builder element can independently override heading sizes,
   body/introduction size, heading weight/line-height/spacing, card titles and
   button text without editing CSS.
   ========================================================================== */

/* Main section-heading target set. */
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-hero-copy > h1,
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-route-finder-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-desktop"].zv-inner-hero .zv-inner-hero-grid > div:first-child > h1,
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-section-heading > h2,
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-photo-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-desktop"].zv-content-section .zv-prose > h2,
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-enquiry-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-form-card > h2,
.zv-typo-scope[style*="--zv-local-heading-desktop"] .zv-cta-inner h2 {
    font-size: var(--zv-local-heading-desktop) !important;
}

.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-hero-copy > h1,
.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-route-finder-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-weight"].zv-inner-hero .zv-inner-hero-grid > div:first-child > h1,
.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-section-heading > h2,
.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-photo-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-weight"].zv-content-section .zv-prose > h2,
.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-enquiry-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-form-card > h2,
.zv-typo-scope[style*="--zv-local-heading-weight"] .zv-cta-inner h2 {
    font-weight: var(--zv-local-heading-weight) !important;
}

.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-hero-copy > h1,
.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-route-finder-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-line-height"].zv-inner-hero .zv-inner-hero-grid > div:first-child > h1,
.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-section-heading > h2,
.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-photo-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-line-height"].zv-content-section .zv-prose > h2,
.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-enquiry-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-form-card > h2,
.zv-typo-scope[style*="--zv-local-heading-line-height"] .zv-cta-inner h2 {
    line-height: var(--zv-local-heading-line-height) !important;
}

.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-hero-copy > h1,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-route-finder-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"].zv-inner-hero .zv-inner-hero-grid > div:first-child > h1,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-section-heading > h2,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-photo-split-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"].zv-content-section .zv-prose > h2,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-enquiry-copy > h2,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-form-card > h2,
.zv-typo-scope[style*="--zv-local-heading-letter-spacing"] .zv-cta-inner h2 {
    letter-spacing: var(--zv-local-heading-letter-spacing) !important;
}

/* Main paragraph / introduction text. */
.zv-typo-scope[style*="--zv-local-text-size"] .zv-hero-lead,
.zv-typo-scope[style*="--zv-local-text-size"] .zv-route-finder-copy > p,
.zv-typo-scope[style*="--zv-local-text-size"].zv-inner-hero .zv-inner-hero-grid > div:first-child > p,
.zv-typo-scope[style*="--zv-local-text-size"] .zv-section-heading > p,
.zv-typo-scope[style*="--zv-local-text-size"] .zv-split-copy > p,
.zv-typo-scope[style*="--zv-local-text-size"] .zv-photo-split-copy > p,
.zv-typo-scope[style*="--zv-local-text-size"].zv-content-section .zv-rich-text,
.zv-typo-scope[style*="--zv-local-text-size"] .zv-enquiry-copy > p,
.zv-typo-scope[style*="--zv-local-text-size"] .zv-form-card > p,
.zv-typo-scope[style*="--zv-local-text-size"] .zv-cta-inner p {
    font-size: var(--zv-local-text-size) !important;
}

/* Titles inside cards / steps. */
.zv-typo-scope[style*="--zv-local-card-title-size"] .zv-route-main h2,
.zv-typo-scope[style*="--zv-local-card-title-size"] .zv-service-card h3,
.zv-typo-scope[style*="--zv-local-card-title-size"] .zv-pathway-card h3,
.zv-typo-scope[style*="--zv-local-card-title-size"] .zv-step h3,
.zv-typo-scope[style*="--zv-local-card-title-size"] .zv-info-card h3,
.zv-typo-scope[style*="--zv-local-card-title-size"] .zv-notice-card strong,
.zv-typo-scope[style*="--zv-local-card-title-size"] .zv-accordion summary {
    font-size: var(--zv-local-card-title-size) !important;
}

.zv-typo-scope[style*="--zv-local-button-size"] .zv-btn {
    font-size: var(--zv-local-button-size) !important;
}

@media (max-width: 1024px) {
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-hero-copy > h1,
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-route-finder-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-tablet"].zv-inner-hero .zv-inner-hero-grid > div:first-child > h1,
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-section-heading > h2,
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-split-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-photo-split-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-tablet"].zv-content-section .zv-prose > h2,
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-enquiry-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-form-card > h2,
    .zv-typo-scope[style*="--zv-local-heading-tablet"] .zv-cta-inner h2 {
        font-size: var(--zv-local-heading-tablet) !important;
    }
}

@media (max-width: 640px) {
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-hero-copy > h1,
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-route-finder-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-mobile"].zv-inner-hero .zv-inner-hero-grid > div:first-child > h1,
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-section-heading > h2,
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-split-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-photo-split-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-mobile"].zv-content-section .zv-prose > h2,
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-enquiry-copy > h2,
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-form-card > h2,
    .zv-typo-scope[style*="--zv-local-heading-mobile"] .zv-cta-inner h2 {
        font-size: var(--zv-local-heading-mobile) !important;
    }
}

/* ==========================================================================
   Zoom Viza V3.3 — Book Consultation
   ========================================================================== */
.zv-consultation-section {
    background:
        radial-gradient(circle at 90% 8%, rgba(37,67,149,.08), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}
.zv-consultation-heading { max-width: 780px; margin-bottom: 42px; }
.zv-consultation-heading h2 { margin-bottom: 14px; }
.zv-consultation-heading > p { max-width: 720px; color: var(--zv-muted); font-size: 1.08rem; }
.zv-consultation-message { max-width: 820px; margin-bottom: 26px; }
.zv-consultation-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 30px; align-items: start; }
.zv-consultation-card {
    padding: 36px;
    background: #fff;
    border: 1px solid var(--zv-line);
    border-radius: 28px;
    box-shadow: var(--zv-shadow-sm);
}
.zv-consultation-card > h3 { margin-bottom: 8px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.zv-consultation-form-intro { margin-bottom: 26px; color: var(--zv-muted); }
.zv-consultation-form { gap: 20px; }
.zv-consultation-form label,
.zv-choice-fieldset legend { font-weight: 500; letter-spacing: .01em; }
.zv-choice-fieldset { margin: 0; padding: 0; border: 0; }
.zv-choice-fieldset legend { margin-bottom: 10px; color: var(--zv-navy); font-size: .86rem; }
.zv-choice-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.zv-choice-pill { display: inline-flex !important; position: relative; cursor: pointer; }
.zv-choice-pill input { position: absolute; opacity: 0; pointer-events: none; }
.zv-choice-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 16px;
    color: #4a4b5b;
    background: #fff;
    border: 1px solid #dcdbe0;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 500;
    transition: .2s ease;
}
.zv-choice-pill input:checked + span {
    color: #fff;
    background: var(--zv-navy);
    border-color: var(--zv-navy);
    box-shadow: 0 8px 20px rgba(28,31,82,.16);
}
.zv-choice-pill input:focus-visible + span { outline: 3px solid rgba(37,67,149,.22); outline-offset: 2px; }
.zv-help-choice {
    display: flex !important;
    align-items: flex-start;
    gap: 12px !important;
    padding: 16px 17px;
    color: var(--zv-muted) !important;
    background: var(--zv-soft-blue);
    border: 1px solid rgba(37,67,149,.11);
    border-radius: 14px;
    font-size: .83rem !important;
    font-weight: 400 !important;
}
.zv-help-choice input { flex: 0 0 auto; width: 18px; margin-top: 4px; }
.zv-help-choice span { display: grid; gap: 2px; }
.zv-help-choice strong { color: var(--zv-navy); font-weight: 500; }
.zv-consultation-submit { min-width: 190px; }
.zv-consultation-side { position: sticky; top: 126px; display: grid; gap: 20px; }
.zv-consultation-summary,
.zv-consultation-contact-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--zv-line);
    border-radius: 24px;
    box-shadow: var(--zv-shadow-sm);
}
.zv-consultation-summary { overflow: hidden; position: relative; }
.zv-consultation-summary::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -65px;
    top: -65px;
    border: 26px solid rgba(188,52,48,.07);
    border-radius: 50%;
    pointer-events: none;
}
.zv-consultation-summary .zv-eyebrow { margin-bottom: 16px; }
.zv-consultation-summary-empty { position: relative; z-index: 1; color: var(--zv-muted); line-height: 1.6; }
.zv-consultation-summary-list { position: relative; z-index: 1; margin: 0; }
.zv-consultation-summary-list > div { padding: 13px 0; border-bottom: 1px solid var(--zv-line); }
.zv-consultation-summary-list > div:first-child { padding-top: 0; }
.zv-consultation-summary-list dt { margin-bottom: 2px; color: var(--zv-muted); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.zv-consultation-summary-list dd { margin: 0; color: var(--zv-navy); font-size: .96rem; font-weight: 500; }
.zv-consultation-summary-note { position: relative; z-index: 1; margin: 18px 0 0; padding-top: 15px; color: var(--zv-muted); border-top: 1px solid var(--zv-line); font-size: .78rem; }
.zv-consultation-contact-card { background: var(--zv-navy); border-color: var(--zv-navy); }
.zv-consultation-contact-card h3 { color: #fff; font-size: 1.5rem; font-weight: 400; }
.zv-consultation-contact-card p { color: rgba(255,255,255,.7); font-size: .9rem; }
.zv-consultation-contact-card a { display: block; margin-top: 8px; color: #fff; word-break: break-word; }
.zv-consultation-contact-card a:hover { color: #f5b2af; }

/* V3.3 local typography support for the consultation element. */
.zv-consultation-section[style*="--zv-local-heading-desktop"] .zv-consultation-heading > h2 { font-size: var(--zv-local-heading-desktop) !important; }
.zv-consultation-section[style*="--zv-local-heading-weight"] .zv-consultation-heading > h2 { font-weight: var(--zv-local-heading-weight) !important; }
.zv-consultation-section[style*="--zv-local-heading-line-height"] .zv-consultation-heading > h2 { line-height: var(--zv-local-heading-line-height) !important; }
.zv-consultation-section[style*="--zv-local-heading-letter-spacing"] .zv-consultation-heading > h2 { letter-spacing: var(--zv-local-heading-letter-spacing) !important; }
.zv-consultation-section[style*="--zv-local-text-size"] .zv-consultation-heading > p { font-size: var(--zv-local-text-size) !important; }
.zv-consultation-section[style*="--zv-local-card-title-size"] .zv-consultation-card > h3,
.zv-consultation-section[style*="--zv-local-card-title-size"] .zv-consultation-contact-card > h3 { font-size: var(--zv-local-card-title-size) !important; }

@media (max-width: 1024px) {
    .zv-consultation-grid { grid-template-columns: 1fr; }
    .zv-consultation-side { position: static; grid-template-columns: 1fr 1fr; }
    .zv-consultation-section[style*="--zv-local-heading-tablet"] .zv-consultation-heading > h2 { font-size: var(--zv-local-heading-tablet) !important; }
}
@media (max-width: 700px) {
    .zv-consultation-section { padding-top: 72px; }
    .zv-consultation-card { padding: 24px 20px; border-radius: 20px; }
    .zv-consultation-side { grid-template-columns: 1fr; }
    .zv-consultation-summary,
    .zv-consultation-contact-card { padding: 23px 20px; border-radius: 20px; }
    .zv-choice-pills { display: grid; grid-template-columns: 1fr; }
    .zv-choice-pill span { width: 100%; }
}
@media (max-width: 640px) {
    .zv-consultation-section[style*="--zv-local-heading-mobile"] .zv-consultation-heading > h2 { font-size: var(--zv-local-heading-mobile) !important; }
}
