:root {
    --navy-950: #04142f;
    --navy-900: #071b3a;
    --navy-800: #0d2b52;
    --emerald-700: #087a50;
    --emerald-600: #0a9160;
    --emerald-100: #def4e9;
    --gold-600: #c99217;
    --gold-500: #dda91f;
    --gold-100: #fbf0ce;
    --ink: #17223a;
    --muted: #667085;
    --line: #dfe5ec;
    --surface: #f4f7f8;
    --white: #fff;
    --shadow: 0 20px 55px rgba(4, 20, 47, .12);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); 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; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(790px, 100%); text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 10px 16px; background: var(--gold-500); color: var(--navy-950); font-weight: 800; border-radius: 8px; }
.skip-link:focus { top: 16px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; line-height: 1.12; letter-spacing: -.025em; }
h1 { margin-bottom: 24px; font-size: clamp(2.65rem, 6vw, 5.15rem); font-weight: 600; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 600; }
h3 { margin-bottom: 10px; font-size: 1.25rem; }
p { color: var(--muted); }
.lead { max-width: 690px; margin-bottom: 30px; color: #475467; font-size: clamp(1.05rem, 1.8vw, 1.24rem); line-height: 1.7; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--emerald-700); font-size: .76rem; font-weight: 800; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; background: var(--gold-500); content: ""; }
.eyebrow.light { color: #d7f5e7; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid var(--emerald-700); border-radius: 8px; background: var(--emerald-700); box-shadow: 0 8px 22px rgba(8, 122, 80, .2); color: var(--white); font-weight: 800; line-height: 1.2; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #056341; box-shadow: 0 12px 26px rgba(8, 122, 80, .26); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: .88rem; }
.button-gold { border-color: var(--gold-500); background: var(--gold-500); box-shadow: none; color: var(--navy-950); }
.button-gold:hover, .button-gold:focus-visible { background: #efbb31; }
.button.full { width: 100%; }
.text-link { color: var(--navy-900); font-weight: 800; text-decoration: underline; text-decoration-color: var(--gold-500); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link:hover { color: var(--emerald-700); }

.topbar { background: var(--navy-950); color: #dfe9f6; font-size: .82rem; }
.topbar-inner { display: flex; min-height: 37px; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; color: #b9c9df; }
.topbar-actions { display: flex; gap: 22px; }
.topbar-actions a { font-weight: 700; }
.topbar-actions a:last-child { color: #8ce0b7; }
.site-header { position: sticky; z-index: 100; top: 0; border-bottom: 1px solid rgba(4, 20, 47, .08); background: rgba(255, 255, 255, .96); backdrop-filter: blur(14px); }
.nav-wrap { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; width: 225px; line-height: 0; }
.brand img { width: 100%; height: 74px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 29px; }
.primary-nav > a:not(.button), .nav-dropdown-toggle { position: relative; padding: 29px 0; border: 0; background: transparent; color: #23324d; cursor: pointer; font-size: .92rem; font-weight: 750; }
.primary-nav > a:not(.button)::after, .nav-dropdown-toggle::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 2px; transform: scaleX(0); background: var(--gold-500); content: ""; transition: transform .2s; }
.primary-nav > a:hover::after, .primary-nav > a.active::after, .nav-dropdown-toggle:hover::after, .nav-dropdown-toggle.active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.mega-menu { position: fixed; z-index: 120; top: 119px; left: 50vw; display: grid; width: min(1180px, calc(100vw - 24px)); max-height: calc(100vh - 131px); grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(190px, 1.2fr); gap: 6px; padding: 22px; transform: translate(-50%, 8px); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; border: 1px solid var(--line); border-top: 3px solid var(--gold-500); border-radius: 0 0 16px 16px; visibility: hidden; opacity: 0; background: var(--white); box-shadow: var(--shadow); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-dropdown.open .mega-menu { transform: translate(-50%, 0); visibility: visible; opacity: 1; }
.mega-menu > div { display: flex; flex-direction: column; gap: 5px; }
.mega-menu a { padding: 7px 9px; border-radius: 7px; color: #344054; font-size: .88rem; font-weight: 650; }
.mega-menu a:hover { background: var(--surface); color: var(--emerald-700); }
.menu-label { margin: 3px 9px 6px; color: var(--emerald-700); font-size: .69rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.mega-menu .mega-rail { justify-content: center; padding: 22px; border-radius: 12px; background: var(--navy-900); }
.mega-rail .menu-label { margin-left: 0; color: var(--gold-500); }
.mega-rail strong { color: var(--white); font-family: Georgia, serif; font-size: 1.18rem; line-height: 1.25; }
.mega-rail p { margin: 4px 0 10px; color: #b9c9df; font-size: .78rem; line-height: 1.5; }
.mega-menu .mega-rail a { padding-left: 0; }
.mega-menu .mega-rail .mega-all { color: #89e2b7; }
.mega-menu .mega-rail .mega-whatsapp { margin-top: 7px; padding: 9px 12px; background: var(--gold-500); color: var(--navy-950); text-align: center; }
.menu-toggle { display: none; width: 45px; height: 45px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.menu-toggle span:not(.sr-only) { width: 21px; height: 2px; background: var(--navy-900); transition: transform .2s, opacity .2s; }

.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #fff 0%, #f4f8f5 55%, #edf4f0 100%); }
.hero::before { position: absolute; inset: auto auto -280px -280px; width: 560px; height: 560px; border: 1px solid rgba(201, 146, 23, .16); border-radius: 50%; content: ""; }
.hero-grid { display: grid; min-height: 675px; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding-block: 76px 90px; }
.hero-copy h1 { max-width: 690px; }
.hero-copy h1 em { color: var(--emerald-700); font-weight: inherit; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.center-actions { justify-content: center; }
.hero-trust { display: flex; gap: 20px 26px; margin-top: 38px; flex-wrap: wrap; color: #475467; font-size: .83rem; font-weight: 650; }
.hero-trust b { color: var(--emerald-700); }
.hero-visual { position: relative; min-height: 480px; }
.globe-mark { position: absolute; top: 46px; left: 70px; display: grid; width: 345px; height: 345px; place-items: center; border: 1px solid rgba(8, 122, 80, .22); border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), rgba(222,244,233,.9)); color: rgba(7,27,58,.08); font-family: Georgia, serif; font-size: 8rem; font-weight: 800; }
.globe-mark::before, .globe-mark::after { position: absolute; border: 1px solid rgba(8,122,80,.2); border-radius: 50%; content: ""; }
.globe-mark::before { inset: 35px 100px; }
.globe-mark::after { inset: 100px 35px; }
.orbit { position: absolute; z-index: 0; border: 1px dashed rgba(201, 146, 23, .5); border-radius: 50%; }
.orbit-one { inset: 5px 25px 45px 15px; transform: rotate(-20deg); }
.orbit-two { inset: 75px -10px 10px 72px; transform: rotate(35deg); }
.visa-card { position: absolute; z-index: 2; right: 28px; bottom: 40px; width: 315px; min-height: 205px; padding: 26px; transform: rotate(-4deg); border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: linear-gradient(145deg, var(--navy-900), #0d3766); box-shadow: 0 30px 65px rgba(4,20,47,.28); color: var(--white); }
.visa-card-top, .visa-card-bottom { display: flex; align-items: center; justify-content: space-between; font-size: .58rem; font-weight: 800; letter-spacing: .11em; }
.visa-card-top b { color: var(--gold-500); font-size: 1.4rem; }
.visa-card .micro-label { display: block; margin-top: 20px; color: #91a6c1; font-size: .55rem; letter-spacing: .15em; }
.visa-card > strong { display: block; margin-top: 2px; color: #fff; font-family: Georgia, serif; font-size: 1.7rem; letter-spacing: .04em; }
.visa-lines { display: flex; gap: 6px; margin: 12px 0 20px; }
.visa-lines i { width: 8px; height: 26px; background: var(--gold-500); }
.visa-lines i:nth-child(2) { width: 90px; background: rgba(255,255,255,.3); }
.visa-lines i:nth-child(3) { width: 42px; background: var(--emerald-600); }
.visa-card-bottom { color: #aebfd4; font-size: .49rem; }
.destination-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid rgba(4,20,47,.07); border-radius: 100px; background: rgba(255,255,255,.94); box-shadow: 0 10px 28px rgba(4,20,47,.12); font-size: .8rem; font-weight: 800; }
.chip-one { top: 52px; right: 15px; }
.chip-two { top: 205px; left: -8px; }
.chip-three { right: 12px; bottom: 20px; }
.hero-photo-stage { min-height: 530px; }
.hero-photo-stage::before { position: absolute; inset: 14px 0 0 45px; border: 1px solid rgba(201,146,23,.35); border-radius: 49% 49% 28px 28px; content: ""; }
.hero-photo-wrap { position: absolute; inset: 35px 25px 20px 70px; overflow: hidden; border-radius: 48% 48% 24px 24px; box-shadow: 0 30px 70px rgba(4,20,47,.22); }
.hero-photo-wrap::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(4,20,47,.28)); content: ""; }
.hero-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-support-card { position: absolute; z-index: 4; bottom: 2px; left: 10px; display: flex; width: 310px; align-items: center; gap: 14px; padding: 16px; border-radius: 12px; background: var(--white); box-shadow: 0 16px 35px rgba(4,20,47,.18); }
.hero-support-card > span { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--gold-500); font-family: Georgia, serif; font-weight: 800; }
.hero-support-card strong, .hero-support-card small { display: block; }
.hero-support-card strong { color: var(--navy-900); font-family: Georgia, serif; font-size: .96rem; }
.hero-support-card small { margin-top: 2px; color: var(--muted); font-size: .68rem; line-height: 1.35; }

.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-strip-grid > div { display: flex; min-height: 100px; justify-content: center; flex-direction: column; padding: 20px 30px; border-right: 1px solid var(--line); }
.trust-strip-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-strip strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 1.08rem; }
.trust-strip span { color: var(--muted); font-size: .75rem; }

.section { padding-block: 105px; }
.section-tint { background: var(--surface); }
.section-heading { max-width: 710px; margin-bottom: 45px; }
.section-heading p { margin-bottom: 0; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.split-heading { display: grid; max-width: none; grid-template-columns: 1fr .75fr; align-items: end; gap: 80px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading .text-link { display: inline-block; margin-top: 13px; }
.destination-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.destination-card { display: grid; min-height: 92px; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); transition: transform .2s, border-color .2s, box-shadow .2s; }
.destination-card:hover { transform: translateY(-3px); border-color: rgba(8,122,80,.4); box-shadow: 0 12px 30px rgba(4,20,47,.08); }
.destination-card .flag { display: grid; width: 48px; height: 38px; place-items: center; overflow: hidden; border: 1px solid rgba(4,20,47,.1); border-radius: 7px; background: var(--surface); box-shadow: 0 3px 9px rgba(4,20,47,.08); }
.destination-card .flag img { width: 100%; height: 100%; object-fit: cover; }
.destination-card strong, .destination-card small { display: block; }
.destination-card strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 1.05rem; }
.destination-card small { margin-top: 3px; color: var(--muted); font-size: .71rem; }
.destination-card > b { color: var(--emerald-700); }
.destination-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px; margin-bottom: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.destination-search { position: relative; width: min(320px, 100%); }
.destination-search input { width: 100%; min-height: 45px; padding: 10px 42px 10px 14px; border: 1px solid var(--line); border-radius: 8px; outline: none; background: var(--surface); }
.destination-search input:focus { border-color: var(--emerald-700); box-shadow: 0 0 0 3px rgba(8,122,80,.1); }
.destination-search b { position: absolute; top: 9px; right: 14px; color: var(--emerald-700); }
.destination-filters { display: flex; gap: 7px; flex-wrap: wrap; }
.destination-filters button { padding: 8px 12px; border: 1px solid var(--line); border-radius: 100px; background: var(--white); color: #475467; cursor: pointer; font-size: .72rem; font-weight: 800; }
.destination-filters button:hover, .destination-filters button.active { border-color: var(--emerald-700); background: var(--emerald-700); color: var(--white); }
.destination-count { margin: 8px 0 18px; font-size: .76rem; }
.destination-card[hidden] { display: none; }
.confidence-section { padding-top: 35px; }
.confidence-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 85px; }
.confidence-photo { position: relative; min-height: 520px; }
.confidence-photo::before { position: absolute; inset: 28px -18px -18px 40px; border-radius: 22px; background: var(--gold-100); content: ""; }
.confidence-photo img { position: relative; width: 100%; height: 520px; border-radius: 22px; object-fit: cover; box-shadow: var(--shadow); }
.confidence-badge { position: absolute; right: -28px; bottom: 35px; display: flex; min-width: 170px; flex-direction: column; padding: 18px 22px; border-left: 4px solid var(--gold-500); border-radius: 8px; background: var(--navy-900); box-shadow: var(--shadow); }
.confidence-badge b { color: var(--white); font-family: Georgia, serif; font-size: 1.4rem; }
.confidence-badge span { color: #b9c9df; font-size: .7rem; }
.confidence-copy > p { font-size: 1.02rem; }
.confidence-points { margin: 30px 0; }
.confidence-points > div { display: flex; gap: 16px; padding: 17px 0; border-top: 1px solid var(--line); }
.confidence-points > div:last-child { border-bottom: 1px solid var(--line); }
.confidence-points span { color: var(--gold-600); font-size: .68rem; font-weight: 900; }
.confidence-points p { margin: 0; font-size: .79rem; }
.confidence-points strong { display: block; margin-bottom: 2px; color: var(--navy-900); font-size: .9rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); box-shadow: 0 12px 35px rgba(4,20,47,.06); }
.process-grid article { position: relative; min-height: 250px; padding: 35px 28px; background: var(--white); }
.process-grid article > span { color: var(--gold-600); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.process-grid article:not(:last-child)::after { position: absolute; z-index: 2; top: 63px; right: -8px; width: 15px; height: 15px; transform: rotate(45deg); border-top: 1px solid var(--line); border-right: 1px solid var(--line); background: var(--white); content: ""; }
.process-icon { display: grid; width: 48px; height: 48px; margin: 24px 0 21px; place-items: center; border-radius: 50%; background: var(--emerald-100); color: var(--emerald-700); font-size: 1.2rem; font-weight: 800; }
.process-grid h3 { font-size: 1.2rem; }
.process-grid p { margin-bottom: 0; font-size: .86rem; line-height: 1.55; }
.process-grid.compact article { min-height: 190px; }
.why-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 90px; }
.why-panel { position: relative; display: flex; min-height: 535px; align-items: flex-end; overflow: hidden; padding: 40px; border-radius: 24px; background: linear-gradient(150deg, var(--navy-900), #123c6c); box-shadow: var(--shadow); }
.why-panel::before { position: absolute; top: -70px; right: -80px; width: 360px; height: 360px; border: 1px solid rgba(221,169,31,.35); border-radius: 50%; content: ""; }
.why-panel::after { position: absolute; top: 60px; right: 50px; width: 165px; height: 165px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; }
.why-panel .stamp { position: absolute; top: 105px; left: 55px; color: rgba(255,255,255,.08); font-family: Georgia, serif; font-size: 8rem; font-weight: 900; }
.why-panel > div { position: relative; z-index: 1; max-width: 330px; padding: 24px; border-left: 3px solid var(--gold-500); background: rgba(4,20,47,.45); backdrop-filter: blur(5px); }
.why-panel strong { color: var(--white); font-family: Georgia, serif; font-size: 1.25rem; }
.why-panel p { margin: 7px 0 0; color: #b9c9df; font-size: .84rem; }
.why-copy > p { font-size: 1.03rem; }
.feature-list { display: grid; margin-top: 34px; grid-template-columns: 1fr 1fr; gap: 25px 28px; }
.feature-list > div { display: flex; gap: 13px; }
.feature-list b { color: var(--gold-600); font-size: .68rem; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { color: var(--navy-900); font-size: .91rem; }
.feature-list small { margin-top: 4px; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.feature-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 14px 35px rgba(4,20,47,.08); transition: transform .25s, box-shadow .25s; }
.feature-service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px rgba(4,20,47,.13); }
.feature-image { position: relative; display: block; overflow: hidden; aspect-ratio: 1.28 / 1; }
.feature-image::after { position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(4,20,47,.74)); content: ""; }
.feature-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.feature-service-card:hover .feature-image > img { transform: scale(1.045); }
.feature-image span { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; display: flex; align-items: center; gap: 8px; color: var(--white); font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.feature-image span img, .destination-chip img { overflow: hidden; border-radius: 3px; box-shadow: 0 2px 7px rgba(4,20,47,.22); }
.feature-body { padding: 25px; }
.feature-body h3 { font-size: 1.42rem; }
.feature-body ul { padding: 0; margin: 0 0 20px; list-style: none; }
.feature-body li { padding: 5px 0; color: var(--muted); font-size: .78rem; }
.feature-body li::before { margin-right: 8px; color: var(--emerald-700); content: "✓"; }
.feature-body .text-link { font-size: .8rem; }
.dark-section { position: relative; overflow: hidden; background: var(--navy-900); }
.dark-section::after { position: absolute; right: -160px; bottom: -220px; width: 520px; height: 520px; border: 1px solid rgba(221,169,31,.16); border-radius: 50%; content: ""; }
.section-heading.light h2, .cta-band h2 { color: var(--white); }
.purpose-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.purpose-grid article { padding: 28px 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.045); }
.purpose-grid article > span { display: grid; width: 44px; height: 44px; margin-bottom: 35px; place-items: center; border-radius: 50%; background: rgba(10,145,96,.23); color: #8ce0b7; font-size: 1.15rem; }
.purpose-grid h3 { color: var(--white); font-size: 1.08rem; }
.purpose-grid p { margin-bottom: 0; color: #aebfd4; font-size: .78rem; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; color: var(--navy-900); cursor: pointer; font-weight: 800; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--emerald-700); font-size: 1.3rem; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { padding: 0 45px 23px 0; margin: 0; }

.page-hero { position: relative; overflow: hidden; padding: 95px 0 145px; background: linear-gradient(125deg, #f7faf9, #edf5f1); text-align: left; }
.page-hero::after { position: absolute; top: -180px; right: -100px; width: 500px; height: 500px; border: 1px solid rgba(8,122,80,.18); border-radius: 50%; content: ""; }
.page-hero .narrow { position: relative; z-index: 1; margin-inline: auto; }
.page-hero .narrow .lead { margin-inline: auto; }
.page-hero h1 { font-size: clamp(2.6rem, 5.3vw, 4.6rem); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .65fr; align-items: center; gap: 90px; }
.page-hero-grid h1 { max-width: 800px; }
.country-badge { display: flex; min-height: 285px; align-items: center; justify-content: center; flex-direction: column; border: 1px solid rgba(8,122,80,.14); border-radius: 50% 50% 45% 55% / 58% 44% 56% 42%; background: rgba(255,255,255,.85); box-shadow: var(--shadow); text-align: center; }
.country-badge > span { font-size: 4.5rem; }
.country-badge > img { width: 120px; height: 90px; margin-bottom: 8px; object-fit: cover; border-radius: 10px; box-shadow: 0 10px 25px rgba(4,20,47,.14); }
.country-badge strong { margin-top: 5px; color: var(--navy-900); font-family: Georgia, serif; font-size: 1.5rem; }
.country-badge small { color: var(--muted); }
.overlap-section { position: relative; z-index: 2; padding-top: 0; }
.overlap-section > .container { margin-top: -65px; }
.service-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-type-grid article { padding: 32px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: 0 12px 35px rgba(4,20,47,.07); }
.service-type-grid article > span, .value-grid article > b { color: var(--gold-600); font-size: .7rem; letter-spacing: .13em; }
.service-type-grid article h2 { margin-top: 30px; font-size: 1.45rem; }
.service-type-grid article p { font-size: .89rem; }
.service-type-grid ul { padding: 15px 0 0; margin: 15px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-type-grid li { padding: 4px 0; color: #475467; font-size: .8rem; }
.service-type-grid li::before { margin-right: 8px; color: var(--emerald-700); content: "✓"; }
.service-type-grid.three { grid-template-columns: repeat(3, 1fr); }
.content-sidebar { display: grid; grid-template-columns: 1fr 350px; align-items: start; gap: 75px; padding: 58px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.content-main > p { font-size: 1rem; }
.content-main h2:not(:first-of-type) { margin-top: 48px; font-size: 2rem; }
.check-grid { display: grid; margin: 36px 0; grid-template-columns: 1fr 1fr; gap: 18px; }
.check-grid > div { display: flex; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 10px; }
.check-grid b { color: var(--emerald-700); }
.check-grid strong, .check-grid small { display: block; }
.check-grid strong { color: var(--navy-900); font-size: .84rem; }
.check-grid small { margin-top: 3px; color: var(--muted); font-size: .72rem; line-height: 1.4; }
.document-list { display: grid; padding: 0; grid-template-columns: 1fr 1fr; gap: 10px 24px; list-style: none; }
.document-list li { position: relative; padding: 10px 0 10px 26px; border-bottom: 1px solid var(--line); color: #475467; font-size: .88rem; }
.document-list li::before { position: absolute; left: 2px; color: var(--gold-600); content: "◆"; font-size: .55rem; }
.notice { margin-top: 32px; padding: 18px 20px; border-left: 3px solid var(--gold-500); border-radius: 0 8px 8px 0; background: var(--gold-100); color: #5d4a19; font-size: .83rem; }
.support-card { position: sticky; top: 120px; padding: 30px; border-radius: 16px; background: var(--navy-900); color: var(--white); }
.support-icon { display: grid; width: 54px; height: 54px; margin-bottom: 28px; place-items: center; border-radius: 50%; background: rgba(221,169,31,.15); color: var(--gold-500); font-family: Georgia, serif; font-weight: 800; }
.support-card h2 { color: var(--white); font-size: 1.6rem; }
.support-card p { color: #b9c9df; font-size: .88rem; }
.phone-link { display: block; margin-top: 19px; color: #d9e8f5; font-size: .86rem; font-weight: 750; text-align: center; }
.mini-country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mini-country-grid span, .mini-country-grid a { display: flex; align-items: center; gap: 11px; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--navy-900); font-family: Georgia, serif; font-weight: 700; }
.mini-country-grid img { width: 35px; height: 26px; object-fit: cover; border: 1px solid rgba(4,20,47,.1); border-radius: 4px; }
.about-panel { min-height: 430px; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-grid article { min-height: 220px; padding: 28px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.value-grid h3 { margin-top: 55px; }
.value-grid p { margin-bottom: 0; font-size: .82rem; }
.prose { text-align: left; }
.prose p { font-size: 1.05rem; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; padding: 58px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.contact-details > p { margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 15px; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-item > span:first-child { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--emerald-100); color: var(--emerald-700); font-weight: 800; }
.contact-item small, .contact-item strong { display: block; }
.contact-item small { color: var(--muted); font-size: .7rem; }
.contact-item strong { color: var(--navy-900); font-size: .88rem; }
.availability { padding: 18px; margin-top: 25px; border-radius: 10px; background: var(--surface); }
.availability b { color: var(--navy-900); font-size: .78rem; }
.availability p { margin: 4px 0 0; font-size: .74rem; }
.enquiry-form { padding: 38px; border-radius: 15px; background: var(--surface); }
.enquiry-form h2 { font-size: 2rem; }
.enquiry-form > p { font-size: .84rem; }
.enquiry-form label { display: block; margin-bottom: 17px; color: var(--navy-900); font-size: .76rem; font-weight: 800; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #ccd5df; border-radius: 8px; outline: none; background: var(--white); color: var(--ink); font-weight: 500; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--emerald-700); box-shadow: 0 0 0 3px rgba(8,122,80,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .69rem !important; text-align: center; }
.compact-hero { padding-bottom: 95px; }
.compact-hero h1 { margin-bottom: 10px; }
.legal-copy { max-width: 790px; }
.legal-copy h2 { margin-top: 42px; font-size: 1.55rem; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy li { margin-bottom: 7px; color: var(--muted); }
.not-found { display: grid; min-height: 68vh; place-items: center; padding: 90px 0; background: var(--surface); text-align: center; }
.error-code { display: block; color: rgba(8,122,80,.12); font-family: Georgia, serif; font-size: clamp(6rem, 20vw, 13rem); font-weight: 900; line-height: .75; }
.not-found h1 { margin-top: 20px; font-size: clamp(2.5rem, 5vw, 4.5rem); }

.breadcrumb-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.breadcrumb-bar .container { display: flex; min-height: 46px; align-items: center; gap: 9px; overflow: hidden; color: var(--muted); font-size: .72rem; white-space: nowrap; }
.breadcrumb-bar a { overflow: hidden; text-overflow: ellipsis; }
.breadcrumb-bar a[aria-current="page"] { color: var(--navy-900); font-weight: 800; }
.breadcrumb-bar span { color: var(--gold-600); }
.country-premium-hero { position: relative; overflow: hidden; padding: 76px 0 88px; background: linear-gradient(125deg, #f9fbfa 0%, #edf5f1 100%); }
.country-premium-hero::before { position: absolute; top: -300px; left: -250px; width: 650px; height: 650px; border: 1px solid rgba(8,122,80,.13); border-radius: 50%; content: ""; }
.country-premium-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 85px; }
.country-premium-copy h1 { max-width: 710px; font-size: clamp(2.8rem, 5.4vw, 4.75rem); }
.country-kicker { display: flex; align-items: center; gap: 13px; margin-bottom: 22px; color: var(--emerald-700); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.country-kicker img { width: 50px; height: 37px; object-fit: cover; border: 1px solid rgba(4,20,47,.1); border-radius: 6px; box-shadow: 0 5px 14px rgba(4,20,47,.1); }
.country-trust-row { display: flex; gap: 10px 20px; margin-top: 32px; flex-wrap: wrap; color: #475467; font-size: .76rem; font-weight: 750; }
.country-trust-row b { color: var(--emerald-700); }
.country-visual { position: relative; min-height: 525px; }
.country-visual::before { position: absolute; inset: 18px -18px -18px 28px; border: 1px solid rgba(201,146,23,.4); border-radius: 50% 50% 20px 20px; content: ""; }
.country-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 48% 48% 20px 20px; object-fit: cover; box-shadow: var(--shadow); }
.country-visual-card { position: absolute; z-index: 2; right: -20px; bottom: 30px; display: flex; min-width: 210px; align-items: center; gap: 12px; padding: 15px 18px; border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.country-visual-card > img { width: 48px; height: 36px; object-fit: cover; border-radius: 4px; }
.country-visual-card small, .country-visual-card strong { display: block; }
.country-visual-card small { color: var(--muted); font-size: .63rem; }
.country-visual-card strong { color: var(--navy-900); font-family: Georgia, serif; }
.country-facts { border-block: 1px solid var(--line); background: var(--white); }
.country-facts .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.country-facts .container > div { min-height: 90px; padding: 18px 25px; border-right: 1px solid var(--line); }
.country-facts .container > div:first-child { border-left: 1px solid var(--line); }
.country-facts small, .country-facts strong { display: block; }
.country-facts small { color: var(--muted); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.country-facts strong, .country-facts a { margin-top: 5px; color: var(--navy-900); font-family: Georgia, serif; font-size: .95rem; font-weight: 700; }
.premium-content { box-shadow: 0 18px 55px rgba(4,20,47,.08); }
.premium-support { background: linear-gradient(150deg, var(--navy-900), #0b3565); }
.support-meta { display: flex; justify-content: center; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.support-meta span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 100px; color: #adc0d6; font-size: .58rem; }
.city-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.city-link-grid a { display: grid; grid-template-columns: 1fr auto; gap: 3px 12px; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); transition: transform .2s, border-color .2s, box-shadow .2s; }
.city-link-grid a:hover { transform: translateY(-2px); border-color: rgba(8,122,80,.4); box-shadow: 0 10px 24px rgba(4,20,47,.07); }
.city-link-grid span { color: var(--navy-900); font-family: Georgia, serif; font-weight: 700; }
.city-link-grid small { color: var(--muted); font-size: .67rem; }
.city-link-grid b { grid-row: 1 / span 2; grid-column: 2; align-self: center; color: var(--emerald-700); }
.local-hero, .local-country-hero { position: relative; overflow: hidden; padding: 78px 0 88px; background: linear-gradient(120deg, #fff 0%, #edf5f1 100%); }
.local-hero::after, .local-country-hero::after { position: absolute; right: -220px; bottom: -310px; width: 680px; height: 680px; border: 1px solid rgba(201,146,23,.2); border-radius: 50%; content: ""; }
.local-hero-grid, .local-country-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 85px; }
.local-hero h1, .local-country-hero h1 { font-size: clamp(2.75rem, 5.3vw, 4.65rem); }
.local-coverage, .local-seo-note { max-width: 650px; padding: 15px 17px; margin-top: 30px; border-left: 3px solid var(--gold-500); border-radius: 0 8px 8px 0; background: rgba(255,255,255,.78); color: #475467; font-size: .76rem; }
.local-coverage small, .local-coverage strong { display: block; }
.local-coverage small { color: var(--emerald-700); font-size: .62rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.local-coverage strong { color: var(--navy-900); font-size: .8rem; }
.local-hero-photo { position: relative; min-height: 460px; }
.local-hero-photo::before { position: absolute; inset: 25px -18px -18px 25px; border-radius: 18px; background: var(--gold-100); content: ""; }
.local-hero-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 18px; object-fit: cover; box-shadow: var(--shadow); }
.local-hero-photo > div { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 14px 16px; border-left: 3px solid var(--gold-500); border-radius: 5px; background: rgba(4,20,47,.9); }
.local-hero-photo span, .local-hero-photo small { display: block; }
.local-hero-photo span { color: var(--white); font-family: Georgia, serif; font-size: 1.2rem; font-weight: 700; }
.local-hero-photo small { color: #b9c9df; }
.local-trust-strip { border-block: 1px solid var(--line); background: var(--navy-900); }
.local-trust-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.local-trust-strip span { padding: 20px 18px; border-right: 1px solid rgba(255,255,255,.1); color: #d8e4f1; font-size: .74rem; font-weight: 750; }
.local-trust-strip span:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.local-trust-strip b { margin-right: 7px; color: var(--gold-500); }
.local-country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.local-country-grid > a { overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: var(--white); box-shadow: 0 12px 30px rgba(4,20,47,.06); transition: transform .2s, box-shadow .2s; }
.local-country-grid > a:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(4,20,47,.12); }
.local-country-image { position: relative; aspect-ratio: 1.7 / 1; overflow: hidden; }
.local-country-image > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.local-country-grid > a:hover .local-country-image > img { transform: scale(1.04); }
.local-country-image span { position: absolute; bottom: 12px; left: 13px; display: grid; width: 44px; height: 34px; place-items: center; overflow: hidden; border: 2px solid var(--white); border-radius: 5px; box-shadow: 0 5px 13px rgba(4,20,47,.22); }
.local-country-image span img { width: 100%; height: 100%; object-fit: cover; }
.local-country-grid > a > div:last-child { padding: 18px; }
.local-country-grid h3 { margin-bottom: 5px; font-size: 1.12rem; }
.local-country-grid p { margin-bottom: 11px; font-size: .7rem; }
.local-country-grid strong { color: var(--emerald-700); font-size: .72rem; }
.local-panel { min-height: 430px; }
.local-country-visual { position: relative; min-height: 500px; }
.local-country-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 22px; object-fit: cover; box-shadow: var(--shadow); }
.local-country-visual::before { position: absolute; inset: 25px -20px -20px 30px; border-radius: 22px; background: var(--gold-100); content: ""; }
.local-country-visual > div { position: absolute; z-index: 2; right: -15px; bottom: 28px; display: flex; min-width: 240px; align-items: center; gap: 12px; padding: 14px; border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.local-country-visual > div > img { width: 48px; height: 36px; object-fit: cover; border-radius: 4px; }
.local-country-visual small, .local-country-visual strong { display: block; }
.local-country-visual strong { color: var(--navy-900); font-family: Georgia, serif; }
.local-country-visual small { color: var(--muted); font-size: .66rem; }
.compact-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.compact-service-grid > a { display: grid; min-height: 78px; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.compact-service-grid > a:hover, .compact-service-grid > a.active { border-color: rgba(8,122,80,.5); box-shadow: 0 8px 20px rgba(4,20,47,.07); }
.compact-service-grid img { width: 40px; height: 30px; object-fit: cover; border-radius: 4px; }
.compact-service-grid strong, .compact-service-grid small { display: block; }
.compact-service-grid strong { color: var(--navy-900); font-size: .82rem; }
.compact-service-grid small { color: var(--muted); font-size: .65rem; }
.compact-service-grid b { color: var(--emerald-700); }
.city-pill-grid { display: flex; gap: 9px; flex-wrap: wrap; }
.city-pill-grid a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 100px; background: var(--white); color: #475467; font-size: .72rem; font-weight: 800; }
.city-pill-grid a:hover, .city-pill-grid a.active { border-color: var(--emerald-700); background: var(--emerald-700); color: var(--white); }
.city-directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.city-directory-grid > a { display: grid; min-height: 185px; grid-template-columns: auto 1fr auto; align-items: start; gap: 15px; padding: 24px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); box-shadow: 0 12px 30px rgba(4,20,47,.07); }
.city-directory-grid > a:hover { border-color: rgba(8,122,80,.5); transform: translateY(-3px); }
.city-initial { display: grid; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--gold-500); font-family: Georgia, serif; font-size: 1.1rem; font-weight: 800; }
.city-directory-grid strong, .city-directory-grid small { display: block; }
.city-directory-grid strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 1rem; line-height: 1.3; }
.city-directory-grid small { margin-top: 3px; color: var(--emerald-700); font-size: .66rem; font-weight: 800; }
.city-directory-grid p { margin: 10px 0 0; font-size: .7rem; line-height: 1.45; }
.city-directory-grid > a > b { color: var(--emerald-700); }

.cta-band { padding: 70px 0; background: var(--emerald-700); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band h2 { margin-bottom: 9px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { max-width: 670px; margin-bottom: 0; color: #d4f0e2; }
.cta-actions { display: flex; flex: 0 0 auto; align-items: center; flex-direction: column; gap: 12px; }
.light-link { color: var(--white); }
.site-footer { padding: 72px 0 22px; background: var(--navy-950); color: #c6d3e2; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(4, .8fr); gap: 42px; }
.footer-brand img { width: 225px; height: 88px; padding: 8px; border-radius: 6px; background: var(--white); object-fit: contain; }
.footer-brand > p { max-width: 340px; margin-top: 20px; color: #9fb0c5; font-size: .81rem; }
.footer-brand .disclaimer { font-size: .7rem; }
.site-footer h2 { margin-bottom: 20px; color: var(--white); font-family: inherit; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a { display: block; margin: 10px 0; color: #b9c9df; font-size: .8rem; }
.site-footer a:hover { color: var(--gold-500); }
.footer-contact-bar { display: grid; grid-template-columns: .8fr .8fr 1.2fr 1.2fr; align-items: center; gap: 22px; padding-block: 22px; margin-top: 48px; border-block: 1px solid rgba(255,255,255,.09); }
.footer-contact-bar > div { min-width: 0; }
.footer-contact-bar span { display: block; color: var(--gold-500); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-contact-bar a, .footer-contact-bar p { margin: 3px 0 0; color: #c6d3e2; font-size: .78rem; }
.footer-quick { display: flex; justify-content: flex-end; gap: 15px; flex-wrap: wrap; }
.footer-quick a { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; margin-top: 50px; border-top: 1px solid rgba(255,255,255,.09); }
.footer-bottom p { margin: 0; color: #7e92aa; font-size: .7rem; }
.floating-whatsapp { position: fixed; z-index: 90; right: 20px; bottom: 20px; display: flex; min-height: 48px; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 100px; background: #19a967; box-shadow: 0 10px 25px rgba(4,20,47,.22); color: var(--white); font-size: .82rem; font-weight: 800; }

@media (max-width: 1000px) {
    .container { width: min(100% - 32px, 900px); }
    .menu-toggle { display: flex; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .primary-nav { position: fixed; z-index: 100; top: 119px; right: 0; bottom: 0; left: 0; display: none; overflow-y: auto; align-items: stretch; flex-direction: column; gap: 0; padding: 15px 24px 40px; background: var(--white); }
    .primary-nav.open { display: flex; }
    .primary-nav > a:not(.button), .nav-dropdown-toggle { display: block; width: 100%; padding: 15px 3px; border-bottom: 1px solid var(--line); text-align: left; }
    .primary-nav > a:not(.button)::after, .nav-dropdown-toggle::after { display: none; }
    .nav-dropdown-toggle { display: flex; justify-content: space-between; }
    .mega-menu { position: static; display: none; width: auto; max-height: none; grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 0; transform: none; overflow: visible; border: 0; visibility: visible; opacity: 1; box-shadow: none; }
    .nav-dropdown.open .mega-menu { display: grid; }
    .mega-rail { display: none !important; }
    .nav-cta { margin-top: 18px; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 30px; padding-top: 65px; }
    .hero-copy { max-width: 760px; }
    .hero-visual { width: min(570px, 100%); min-height: 450px; margin-inline: auto; }
    .hero-photo-stage { min-height: 520px; }
    .split-heading, .why-grid, .faq-grid, .page-hero-grid, .contact-grid { grid-template-columns: 1fr; }
    .split-heading { align-items: start; gap: 20px; }
    .why-grid, .faq-grid { gap: 50px; }
    .why-panel { width: min(590px, 100%); min-height: 430px; }
    .purpose-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .process-grid article:nth-child(2)::after { display: none; }
    .service-type-grid { grid-template-columns: 1fr 1fr; }
    .content-sidebar { grid-template-columns: 1fr; gap: 45px; }
    .support-card { position: static; }
    .country-badge { width: 310px; min-height: 270px; margin-inline: auto; }
    .value-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { gap: 45px; }
    .confidence-grid { grid-template-columns: 1fr; gap: 65px; }
    .confidence-photo { width: min(680px, 100%); }
    .feature-card-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact-bar { grid-template-columns: 1fr 1fr; }
    .footer-quick { justify-content: flex-start; }
    .country-premium-grid, .local-hero-grid, .local-country-hero-grid { grid-template-columns: 1fr; gap: 58px; }
    .country-premium-copy, .local-hero-grid > div:first-child, .local-country-hero-grid > div:first-child { max-width: 760px; }
    .country-visual, .local-hero-photo, .local-country-visual { width: min(620px, 100%); }
    .country-facts .container { grid-template-columns: 1fr 1fr; }
    .country-facts .container > div { border-bottom: 1px solid var(--line); }
    .city-link-grid, .local-country-grid, .compact-service-grid, .city-directory-grid { grid-template-columns: 1fr 1fr; }
    .local-trust-strip .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
    .container { width: min(100% - 24px, 640px); }
    .topbar p { display: none; }
    .topbar-inner { justify-content: center; }
    .topbar-actions { width: 100%; justify-content: space-between; gap: 8px; }
    .nav-wrap { min-height: 72px; }
    .brand { width: 180px; }
    .brand img { height: 63px; }
    .primary-nav { top: 109px; }
    .mega-menu { grid-template-columns: 1fr; }
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.15rem; }
    .hero-grid { padding-block: 50px 60px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
    .center-actions { align-items: center; }
    .hero-trust { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 28px; }
    .hero-visual { min-height: 370px; transform: scale(.9); transform-origin: center top; }
    .hero-photo-stage { min-height: 430px; transform: none; }
    .hero-photo-stage::before { inset: 12px 0 0 22px; }
    .hero-photo-wrap { inset: 28px 8px 20px 28px; }
    .hero-support-card { bottom: 0; left: 0; width: min(300px, 85%); }
    .globe-mark { left: 28px; width: 290px; height: 290px; }
    .visa-card { right: 0; bottom: 18px; width: 280px; }
    .chip-two { left: 0; }
    .trust-strip-grid { grid-template-columns: 1fr 1fr; }
    .trust-strip-grid > div { min-height: 85px; padding: 16px; border-bottom: 1px solid var(--line); }
    .section { padding-block: 72px; }
    .page-hero { padding: 70px 0 120px; }
    .compact-hero { padding-bottom: 70px; }
    .destination-grid, .service-type-grid, .service-type-grid.three, .check-grid, .document-list, .mini-country-grid, .value-grid { grid-template-columns: 1fr; }
    .feature-card-grid { grid-template-columns: 1fr; }
    .confidence-photo { min-height: 390px; }
    .confidence-photo img { height: 390px; }
    .confidence-badge { right: 8px; bottom: 18px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-grid article { min-height: 205px; }
    .process-grid article::after { display: none; }
    .purpose-grid { grid-template-columns: 1fr 1fr; }
    .feature-list { grid-template-columns: 1fr; }
    .why-panel { min-height: 350px; padding: 25px; }
    .why-panel .stamp { top: 45px; left: 30px; font-size: 6rem; }
    .content-sidebar, .contact-grid { padding: 27px 22px; border-radius: 14px; }
    .overlap-section > .container { margin-top: -45px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .enquiry-form { padding: 25px 18px; }
    .cta-band-inner { align-items: flex-start; flex-direction: column; }
    .cta-actions { align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact-bar { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
    .floating-whatsapp span:last-child { display: none; }
    .floating-whatsapp { width: 50px; height: 50px; justify-content: center; padding: 0; }
    .country-premium-hero, .local-hero, .local-country-hero { padding-block: 58px 70px; }
    .country-visual, .local-country-visual { min-height: 400px; }
    .local-hero-photo { min-height: 365px; }
    .country-visual-card, .local-country-visual > div { right: 8px; bottom: 16px; }
    .country-facts .container, .city-link-grid, .local-country-grid, .compact-service-grid, .city-directory-grid, .local-trust-strip .container { grid-template-columns: 1fr; }
    .country-facts .container > div { min-height: 75px; border-left: 1px solid var(--line); }
    .local-trust-strip span { border-bottom: 1px solid rgba(255,255,255,.1); border-left: 1px solid rgba(255,255,255,.1); }
    .city-directory-grid > a { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* Reference-aligned premium chrome and expanded content v4 */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
html.nav-lock, body.nav-lock { overflow: hidden !important; }
.site-icon { display: inline-block; width: 1.2em; height: 1.2em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.2em; }
.button .site-icon, .text-link .site-icon { width: 1.05rem; height: 1.05rem; margin-right: 7px; }
.text-link .site-icon { margin-right: 0; margin-left: 4px; }
.topbar { position: relative; z-index: 130; background: linear-gradient(90deg, var(--navy-950), var(--navy-800)); }
.topbar p, .topbar-actions a { display: inline-flex; align-items: center; gap: 7px; }
.topbar .site-icon { width: 15px; height: 15px; }
.site-header { z-index: 125; }
.nav-wrap { min-height: 80px; gap: 20px; }
.brand { width: 210px; flex: 0 0 auto; }
.brand img { height: 66px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; flex: 0 0 auto; border-radius: 12px; cursor: pointer; }
.menu-toggle span { display: inline-flex; width: auto !important; height: auto !important; background: transparent !important; }
.menu-toggle .site-icon { width: 25px; height: 25px; }
.menu-close-icon { display: none !important; }
.site-header.menu-open .menu-open-icon { display: none !important; }
.site-header.menu-open .menu-close-icon { display: inline-flex !important; }
.nav-backdrop, .mobile-nav-head { display: none; }
.primary-nav { display: flex; min-width: 0; flex: 1 1 auto; align-items: center; justify-content: flex-end; gap: 14px; }
.nav-list { display: flex; align-items: center; justify-content: flex-end; gap: 0; padding: 0; margin: 0; list-style: none; }
.nav-list > li { position: relative; padding: 0; margin: 0; list-style: none; }
.nav-list > li > a, .nav-parent > a { position: relative; display: inline-flex; min-height: 44px; align-items: center; padding: 0 9px; border-radius: 9px; color: #23324d; font-size: .82rem; font-weight: 780; white-space: nowrap; }
.nav-list > li > a:hover, .nav-parent > a:hover, .nav-list > li > a.active, .nav-dropdown.active > .nav-parent > a { background: var(--surface); color: var(--emerald-700); }
.nav-parent { display: flex; align-items: center; }
.nav-parent > button { display: inline-flex; width: 30px; height: 38px; align-items: center; justify-content: center; padding: 0; margin-left: -7px; border: 0; border-radius: 8px; background: transparent; color: #667085; cursor: pointer; }
.nav-parent > button:hover, .nav-parent > button:focus-visible { background: var(--surface); color: var(--emerald-700); }
.nav-parent > button .site-icon { width: 16px; height: 16px; transition: transform .2s; }
.nav-dropdown.open > .nav-parent > button .site-icon { transform: rotate(180deg); }
.dropdown-panel { position: fixed; z-index: 180; top: var(--nav-panel-top, 117px); left: 50vw; width: min(760px, calc(100vw - 32px)); max-height: var(--nav-panel-height, calc(100vh - 133px)); padding: 22px; transform: translate(-50%, 10px); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; border: 1px solid var(--line); border-top: 3px solid var(--gold-500); border-radius: 0 0 17px 17px; visibility: hidden; opacity: 0; pointer-events: none; background: #fff; box-shadow: var(--shadow); transition: opacity .2s, transform .2s, visibility .2s; }
.nav-dropdown.open > .dropdown-panel { transform: translate(-50%, 0); visibility: visible; opacity: 1; pointer-events: auto; }
.mega-menu { display: grid; width: min(1240px, calc(100vw - 32px)); grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(210px, 1.2fr); gap: 8px; }
.mega-column { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.menu-label { display: block; margin: 3px 9px 7px; color: var(--emerald-700); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.mega-column > a { padding: 7px 9px; border-radius: 7px; color: #344054; font-size: .78rem; font-weight: 680; line-height: 1.25; }
.mega-column > a:hover { background: var(--surface); color: var(--emerald-700); }
.mega-rail { display: flex; justify-content: center; flex-direction: column; padding: 22px; border-radius: 13px; background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); }
.mega-rail .menu-label { margin-left: 0; color: var(--gold-500); }
.mega-rail strong { color: #fff; font-family: Georgia, serif; font-size: 1.18rem; line-height: 1.3; }
.mega-rail p { margin: 8px 0 12px; color: #b9c9df; font-size: .76rem; line-height: 1.5; }
.mega-rail a { display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 800; }
.mega-rail .mega-all { color: #91e4bb; }
.mega-rail .mega-whatsapp { justify-content: center; min-height: 42px; padding: 9px 12px; margin-top: 12px; border-radius: 8px; background: var(--gold-500); color: var(--navy-950); }
.compact-panel { width: min(850px, calc(100vw - 32px)); }
.compact-menu-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
.compact-menu-grid a { display: flex; min-width: 0; align-items: center; gap: 8px; padding: 9px; border-radius: 8px; color: #344054; font-size: .79rem; font-weight: 720; }
.compact-menu-grid a:hover { background: var(--surface); color: var(--emerald-700); }
.compact-menu-grid img { width: 28px; height: 20px; flex: 0 0 auto; object-fit: cover; border-radius: 3px; box-shadow: 0 1px 4px rgba(4,20,47,.14); }
.simple-panel { display: grid; width: min(430px, calc(100vw - 32px)); gap: 7px; }
.simple-panel > a { display: flex; align-items: center; gap: 13px; padding: 12px; border-radius: 10px; }
.simple-panel > a:hover { background: var(--surface); }
.simple-panel > a > .site-icon { width: 24px; height: 24px; color: var(--emerald-700); }
.simple-panel strong, .simple-panel small { display: block; }
.simple-panel strong { color: var(--navy-900); font-size: .85rem; }
.simple-panel small { margin-top: 2px; color: var(--muted); font-size: .68rem; }
.nav-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.nav-actions a { display: inline-flex; align-items: center; gap: 6px; }
.nav-call { color: var(--navy-900); font-size: .78rem; font-weight: 800; }
.nav-call .site-icon { color: var(--gold-600); }
.nav-cta .site-icon { width: 17px; height: 17px; }

.hero-grid { min-height: 690px; grid-template-columns: 1fr 1.03fr; }
.hero-showcase { position: relative; min-width: 0; min-height: 530px; }
.hero-slider { position: absolute; inset: 10px 0 30px 30px; overflow: hidden; border: 8px solid #fff; border-radius: 28px; background: var(--navy-900); box-shadow: 0 28px 65px rgba(4,20,47,.24); }
.hero-slider::after { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 48%, rgba(4,20,47,.5)); pointer-events: none; content: ""; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .65s ease, visibility .65s ease; }
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide > img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide > span { position: absolute; z-index: 4; right: 22px; bottom: 24px; display: grid; min-width: 178px; grid-template-columns: auto 1fr; align-items: center; gap: 2px 10px; padding: 12px 15px; border-radius: 12px; background: rgba(255,255,255,.94); box-shadow: 0 12px 32px rgba(4,20,47,.18); }
.hero-slide > span img { grid-row: 1 / 3; width: 34px; height: 24px; object-fit: cover; border-radius: 4px; }
.hero-slide > span strong, .hero-slide > span small { display: block; }
.hero-slide > span strong { color: var(--navy-900); font-family: Georgia, serif; font-size: .95rem; }
.hero-slide > span small { color: var(--muted); font-size: .65rem; }
.hero-slider-dots { position: absolute; z-index: 6; right: 20px; bottom: 8px; display: flex; gap: 7px; }
.hero-dot { width: 9px; height: 9px; padding: 0; border: 1px solid var(--emerald-700); border-radius: 50%; background: transparent; cursor: pointer; }
.hero-dot.active { background: var(--emerald-700); }
.hero-showcase .hero-support-card { bottom: 0; left: 0; }
.hero-support-card > span .site-icon { width: 25px; height: 25px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .site-icon { width: 17px; height: 17px; color: var(--emerald-700); }
.trust-strip-grid > div { align-items: center; justify-content: flex-start; flex-direction: row; gap: 14px; }
.trust-strip-grid > div > .site-icon { width: 31px; height: 31px; color: var(--emerald-700); }
.trust-strip-grid > div > span { display: block; }
.trust-strip-grid small { display: block; margin-top: 2px; color: var(--muted); font-size: .7rem; }

.destination-photo-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 15px; }
.destination-photo-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 8px 24px rgba(4,20,47,.06); transition: transform .22s, box-shadow .22s, border-color .22s; }
.destination-photo-card:hover { transform: translateY(-5px); border-color: rgba(8,122,80,.38); box-shadow: 0 18px 38px rgba(4,20,47,.12); }
.destination-photo-card > div { position: relative; height: 135px; overflow: hidden; background: var(--surface); }
.destination-photo-card > div > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.destination-photo-card:hover > div > img { transform: scale(1.04); }
.destination-photo-card > div > span { position: absolute; bottom: -1px; left: 14px; display: grid; width: 46px; height: 34px; place-items: center; padding: 3px; border-radius: 7px 7px 0 0; background: #fff; box-shadow: 0 -3px 12px rgba(4,20,47,.12); }
.destination-photo-card > div > span img { width: 38px; height: 27px; object-fit: cover; border-radius: 3px; }
.destination-photo-card > section { padding: 15px; }
.destination-photo-card h3 { overflow: hidden; margin: 0; font-size: 1rem; text-overflow: ellipsis; white-space: nowrap; }
.destination-photo-card p { overflow: hidden; margin: 5px 0 9px; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.destination-photo-card strong { display: inline-flex; align-items: center; gap: 5px; color: var(--emerald-700); font-size: .69rem; }
.destination-photo-card strong .site-icon { width: 13px; height: 13px; }
.catalogue-card { position: relative; min-height: 225px; grid-template-columns: 1fr auto; align-content: end; padding: 0; overflow: hidden; }
.catalogue-card .catalogue-image { grid-column: 1 / -1; width: 100%; height: 130px; overflow: hidden; }
.catalogue-card .catalogue-image > img { width: 100%; height: 100%; object-fit: cover; }
.catalogue-card .flag { position: absolute; top: 106px; left: 16px; z-index: 2; }
.catalogue-card > span:not(.catalogue-image):not(.flag) { padding: 14px 0 14px 16px; }
.catalogue-card > b { padding-right: 16px; }
.catalogue-card > b .site-icon { width: 18px; height: 18px; }
.process-icon .site-icon, .confidence-points .site-icon, .purpose-grid .site-icon { width: 23px; height: 23px; }
.confidence-points > div > span { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); }
.feature-service-card .feature-image { height: 245px; }
.feature-service-card .feature-image > img { height: 100%; object-fit: cover; }
.extension-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.extension-grid > a { position: relative; min-height: 260px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 10px 30px rgba(4,20,47,.06); transition: transform .22s, box-shadow .22s; }
.extension-grid > a:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.extension-grid > a > span { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 24px; border-radius: 14px; background: var(--emerald-100); color: var(--emerald-700); }
.extension-grid > a > span .site-icon { width: 27px; height: 27px; }
.extension-grid h3 { font-size: 1.35rem; }
.extension-grid p { font-size: .83rem; }
.extension-grid strong { display: inline-flex; align-items: center; gap: 5px; color: var(--emerald-700); font-size: .78rem; }
.extension-grid strong .site-icon { width: 14px; height: 14px; }
.feature-list b .site-icon { width: 19px; height: 19px; }
.purpose-grid article > span { display: grid; width: 52px; height: 52px; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: rgba(255,255,255,.08); }

.button-outline-light { border-color: rgba(255,255,255,.3); background: transparent; box-shadow: none; color: #fff; }
.button-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.cta-band { padding: 55px 0; background: linear-gradient(130deg, #071b3a, #0d3766); }
.cta-band-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.05); }
.cta-band-card h2 { margin: 0 0 7px; color: #fff; font-size: clamp(1.8rem, 3vw, 2.65rem); }
.cta-band-card p { margin: 0; color: #b9c9df; }
.cta-band-icon { display: grid; width: 68px; height: 68px; place-items: center; border-radius: 17px; background: var(--gold-500); color: var(--navy-950); }
.cta-band-icon .site-icon { width: 33px; height: 33px; }
.cta-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.site-footer { padding: 70px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; padding-bottom: 48px; }
.footer-brand > a { display: inline-block; }
.footer-brand img { width: 235px; height: auto; padding: 8px 10px; border-radius: 8px; background: #fff; filter: none; }
.footer-brand p { max-width: 510px; margin: 19px 0 0; color: #b9c9df; font-size: .86rem; }
.footer-brand .disclaimer { color: #879bb4; font-size: .73rem; }
.footer-brand-actions { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.footer-brand-actions a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; margin: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; color: #dbe6f3; }
.footer-contact h2 { margin-bottom: 22px; color: #fff; font-size: 1.55rem; }
.footer-contact > a, .footer-contact > p { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; margin: 0; border-bottom: 1px solid rgba(255,255,255,.08); color: #c6d3e2; font-size: .84rem; }
.footer-contact .site-icon { width: 20px; height: 20px; margin-top: 2px; color: var(--gold-500); }
.footer-contact span, .footer-contact small { display: block; }
.footer-contact small { margin-bottom: 2px; color: #8298b3; font-size: .63rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-links { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 38px; padding-block: 43px; border-block: 1px solid rgba(255,255,255,.09); }
.footer-links h3 { margin-bottom: 18px; color: #fff; font-family: inherit; font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { display: block; padding: 5px 0; margin: 0; color: #b9c9df; font-size: .76rem; }
.footer-links a:hover { color: var(--gold-500); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 23px; }
.footer-bottom p { margin: 0; color: #7e92aa; font-size: .7rem; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a { margin: 0; color: #8fa3bb; font-size: .7rem; }

.wa-widget { position: fixed; z-index: 999; right: 22px; bottom: 22px; display: flex; align-items: flex-end; flex-direction: column; gap: 12px; visibility: hidden; opacity: 0; transform: translateY(16px); transition: opacity .3s, transform .3s, visibility .3s; }
.wa-widget.visible { visibility: visible; opacity: 1; transform: none; }
.wa-card { position: relative; display: grid; width: min(350px, calc(100vw - 32px)); grid-template-columns: 44px 1fr; gap: 5px 13px; padding: 19px 19px 17px; transform: translateY(12px) scale(.97); border: 1px solid #d6e8dc; border-radius: 18px; visibility: hidden; opacity: 0; background: #fff; box-shadow: 0 22px 60px rgba(4,32,20,.24); transform-origin: bottom right; transition: opacity .26s, transform .26s, visibility .26s; }
.wa-card.visible { transform: none; visibility: visible; opacity: 1; }
.wa-close { position: absolute; top: 10px; right: 10px; display: grid; width: 30px; height: 30px; place-items: center; padding: 0; border: 0; border-radius: 50%; background: #eef4f0; color: #455a4b; cursor: pointer; }
.wa-close .site-icon { width: 16px; height: 16px; }
.wa-card-icon { grid-row: 1 / 3; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 12px; background: #16a34a; color: #fff; }
.wa-card-icon .site-icon { width: 24px; height: 24px; }
.wa-card-copy strong, .wa-card-copy span { display: block; }
.wa-card-copy strong { padding-right: 25px; color: #102a1b; font-size: .98rem; }
.wa-card-copy span { margin-top: 3px; color: #65756a; font-size: .76rem; line-height: 1.45; }
.wa-card-button { grid-column: 1 / -1; display: flex; min-height: 45px; align-items: center; justify-content: center; gap: 8px; margin-top: 11px; border-radius: 10px; background: #16a34a; color: #fff; font-size: .82rem; font-weight: 850; }
.wa-card-button:hover { background: #11833c; }
.floating-whatsapp { position: static; display: flex; width: auto; min-width: 58px; height: 58px; align-items: center; justify-content: center; gap: 8px; padding: 0 17px; border-radius: 100px; background: #16a34a; color: #fff; box-shadow: 0 12px 30px rgba(4,32,20,.26); font-size: .78rem; font-weight: 850; }
.floating-whatsapp .site-icon { width: 29px; height: 29px; }

.service-hub-hero, .special-hero { position: relative; overflow: hidden; padding: 78px 0 90px; background: linear-gradient(130deg, #fff, #eef6f1); }
.service-hub-hero::before, .special-hero::before { position: absolute; top: -170px; right: -120px; width: 500px; height: 500px; border: 1px solid rgba(201,146,23,.2); border-radius: 50%; content: ""; }
.service-hub-grid, .special-hero-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 75px; }
.service-hub-image, .package-hero-image { position: relative; min-height: 500px; }
.service-hub-image > img, .package-hero-image > img { width: 100%; height: 500px; object-fit: cover; border-radius: 28px 28px 90px 28px; box-shadow: var(--shadow); }
.service-hub-image > div, .package-hero-image > div { position: absolute; right: -10px; bottom: 28px; display: grid; min-width: 220px; grid-template-columns: auto 1fr; align-items: center; gap: 2px 12px; padding: 18px; border-left: 4px solid var(--gold-500); border-radius: 12px; background: var(--navy-900); box-shadow: var(--shadow); }
.service-hub-image > div > span, .package-hero-image > div > span { grid-row: 1 / 3; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.09); color: var(--gold-500); }
.service-hub-image strong, .package-hero-image strong { color: #fff; font-family: Georgia, serif; }
.service-hub-image small, .package-hero-image small { color: #aebfd4; font-size: .67rem; }
.africa-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.special-hero-grid { grid-template-columns: 1fr .8fr; }
.ticket-visual { padding: 28px; transform: rotate(2deg); border: 1px solid rgba(4,20,47,.1); border-radius: 20px; background: #fff; box-shadow: 0 28px 65px rgba(4,20,47,.18); }
.ticket-visual-head { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1px 12px; padding-bottom: 20px; border-bottom: 1px dashed #cfd8e3; }
.ticket-visual-head > span { grid-row: 1 / 3; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 12px; background: var(--navy-900); color: var(--gold-500); }
.ticket-visual-head strong, .ticket-visual-head small { display: block; }
.ticket-visual-head strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 1.25rem; }
.ticket-visual-head small { color: var(--muted); font-size: .7rem; }
.ticket-route { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 32px 0; text-align: center; }
.ticket-route > span { color: var(--navy-900); font-family: Georgia, serif; font-size: 2.4rem; font-weight: 700; }
.ticket-route small { display: block; color: var(--muted); font-family: inherit; font-size: .63rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ticket-route > b { color: var(--emerald-700); }
.ticket-route > b .site-icon { width: 30px; height: 30px; }
.ticket-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; border-radius: 10px; background: var(--surface); }
.ticket-meta span { color: var(--navy-900); font-size: .78rem; font-weight: 800; }
.ticket-meta small { display: block; color: var(--muted); font-size: .61rem; text-transform: uppercase; }
.ticket-visual > p { margin: 15px 0 0; color: #7a8698; font-size: .68rem; text-align: center; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.comparison-grid article { min-height: 230px; padding: 28px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.comparison-grid article > span { display: grid; width: 49px; height: 49px; place-items: center; margin-bottom: 22px; border-radius: 13px; background: var(--emerald-100); color: var(--emerald-700); }
.comparison-grid article > span .site-icon { width: 25px; height: 25px; }
.source-guide-link { padding-top: 20px; margin-top: 25px; border-top: 1px solid var(--line); font-size: .83rem; }
.source-guide-link a { display: inline-flex; align-items: center; gap: 5px; color: var(--emerald-700); font-weight: 800; }
.source-guide-link .site-icon { width: 14px; height: 14px; }
.package-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.package-grid article { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 10px 28px rgba(4,20,47,.06); transition: transform .22s, box-shadow .22s; }
.package-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.package-grid article > img { width: 100%; height: 185px; object-fit: cover; }
.package-grid article > div { padding: 20px; }
.package-chip { display: inline-block; padding: 5px 8px; margin-bottom: 12px; border-radius: 100px; background: var(--emerald-100); color: var(--emerald-700); font-size: .63rem; font-weight: 850; text-transform: uppercase; }
.package-grid h3 { font-size: 1.2rem; }
.package-grid p { min-height: 72px; font-size: .78rem; }
.guide-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.guide-principles { align-items: center; }
.related-destinations { padding-top: 0; }

@media (min-width: 1181px) {
    .nav-dropdown:not(.open) > .dropdown-panel { transform: translate(-50%, -10px); visibility: hidden; opacity: 0; pointer-events: none; }
}

@media (max-width: 1180px) {
    .menu-toggle { display: inline-flex; margin-left: auto; }
    .nav-backdrop { position: fixed; z-index: 140; inset: 0; display: block; padding: 0; border: 0; visibility: hidden; opacity: 0; pointer-events: none; background: rgba(4,16,33,.58); transition: opacity .25s, visibility .25s; }
    .site-header.menu-open .nav-backdrop { visibility: visible; opacity: 1; pointer-events: auto; }
    .primary-nav { position: fixed; z-index: 150; top: 0 !important; right: 0; bottom: auto; left: auto; display: block; width: min(430px, 100vw); max-width: 100vw; height: 100vh; height: 100dvh; max-height: none !important; padding: 0 20px 28px; transform: translate3d(105%,0,0); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; visibility: hidden; opacity: 1; pointer-events: none; background: #fff; box-shadow: -20px 0 55px rgba(4,20,47,.23); transition: transform .27s ease, visibility 0s linear .27s; }
    .primary-nav.open { display: block; transform: translate3d(0,0,0); visibility: visible; pointer-events: auto; transition-delay: 0s; }
    #site-header .menu-toggle[aria-expanded="true"] .menu-close-icon { transform: none !important; opacity: 1 !important; }
    .mobile-nav-head { position: sticky; z-index: 3; top: 0; display: flex; min-height: 78px; align-items: center; justify-content: space-between; margin: 0 -20px 8px; padding: 9px 20px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); }
    .mobile-nav-head img { width: 170px; height: 55px; object-fit: contain; object-position: left center; }
    .drawer-close { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
    .drawer-close .site-icon { width: 23px; height: 23px; }
    .nav-list { display: block; }
    .nav-list > li { border-bottom: 1px solid #e8edf4; }
    .nav-list > li > a, .nav-parent > a { width: 100%; min-height: 54px; padding: 0 7px; border-radius: 0; font-size: .98rem; }
    .nav-parent > a { flex: 1 1 auto; }
    .nav-parent > button { width: 50px; height: 50px; margin: 2px 0; }
    .dropdown-panel, .mega-menu, .compact-panel, .simple-panel { position: static; display: none; width: 100%; max-height: none; grid-template-columns: 1fr; gap: 8px; padding: 8px 6px 16px; transform: none !important; overflow: visible; border: 0; border-radius: 0; visibility: visible; opacity: 1; pointer-events: auto; background: #f7f9fc; box-shadow: none; }
    .nav-dropdown.open > .dropdown-panel { display: grid; }
    .mega-column { margin-top: 10px; }
    .mega-column > a { padding: 9px; font-size: .84rem; }
    .mega-rail { display: none; }
    .compact-menu-grid { grid-template-columns: 1fr; }
    .compact-menu-grid a { font-size: .85rem; }
    .simple-panel > a { background: #fff; }
    .nav-actions { position: sticky; bottom: -28px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8px; padding: 15px 20px 20px; margin: 20px -20px -28px; border-top: 1px solid var(--line); background: #fff; }
    .nav-actions a { min-height: 49px; justify-content: center; border-radius: 9px; }
    .nav-actions .nav-cta { margin-top: 0; }
    .nav-call { border: 1px solid var(--line); }
    .hero-grid, .service-hub-grid, .special-hero-grid { grid-template-columns: 1fr; gap: 45px; }
    .hero-showcase { width: min(690px, 100%); margin-inline: auto; }
    .destination-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .africa-grid, .package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .footer-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cta-band-card { grid-template-columns: auto 1fr; }
    .cta-actions { grid-column: 1 / -1; justify-content: flex-start; }
    .service-hub-image, .package-hero-image { width: min(680px, 100%); }
}

@media (max-width: 800px) {
    .topbar p { display: none; }
    .topbar-inner { justify-content: flex-end; }
    .brand { width: 180px; }
    .brand img { height: 60px; }
    .hero-grid { padding-block: 55px 70px; }
    .hero-showcase { min-height: 430px; }
    .hero-slider { inset: 4px 0 35px 12px; }
    .destination-photo-grid, .africa-grid, .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .extension-grid, .guide-feature-grid, .comparison-grid { grid-template-columns: 1fr; }
    .extension-grid > a { min-height: 220px; }
    .footer-top { grid-template-columns: 1fr; gap: 44px; }
    .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .service-hub-hero, .special-hero { padding: 58px 0 70px; }
    .service-hub-image, .package-hero-image { min-height: 410px; }
    .service-hub-image > img, .package-hero-image > img { height: 410px; }
    .ticket-visual { transform: none; }
}

@media (max-width: 560px) {
    .container { width: calc(100% - 28px); }
    .topbar-actions { width: 100%; justify-content: space-between; }
    .topbar-actions span { font-size: .72rem; }
    .nav-wrap { min-height: 68px; }
    .brand { width: 158px; }
    .brand img { height: 52px; }
    .menu-toggle { width: 43px; height: 43px; }
    .primary-nav { width: 100vw; }
    h1 { font-size: 2.58rem; }
    h2 { font-size: 2rem; }
    .hero-showcase { min-height: 340px; }
    .hero-slider { inset: 0 0 30px 0; border-width: 5px; border-radius: 19px; }
    .hero-slide > span { right: 12px; bottom: 14px; min-width: 150px; padding: 9px 11px; }
    .hero-showcase .hero-support-card { display: none; }
    .hero-slider-dots { right: 50%; transform: translateX(50%); }
    .trust-strip-grid { grid-template-columns: 1fr 1fr; }
    .trust-strip-grid > div { min-height: 100px; padding: 15px; }
    .trust-strip-grid > div > .site-icon { width: 25px; height: 25px; }
    .destination-photo-grid, .africa-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .destination-photo-card > div { height: 105px; }
    .destination-photo-card > section { padding: 12px; }
    .destination-photo-card h3 { font-size: .9rem; }
    .destination-photo-card p { font-size: .61rem; }
    .destination-photo-card strong { font-size: .62rem; }
    .destination-tools { align-items: stretch; flex-direction: column; }
    .catalogue-card { min-height: 215px; }
    .catalogue-card .catalogue-image { height: 120px; }
    .catalogue-card .flag { top: 97px; }
    .cta-band-card { grid-template-columns: 1fr; padding: 25px 21px; }
    .cta-band-icon { width: 56px; height: 56px; }
    .cta-actions { grid-column: auto; display: grid; width: 100%; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .wa-widget { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); }
    .wa-card { width: min(326px, calc(100vw - 28px)); }
    .floating-whatsapp { width: 56px; min-width: 56px; height: 56px; padding: 0; }
    .floating-whatsapp span { display: none; }
    .service-hub-image, .package-hero-image { min-height: 330px; }
    .service-hub-image > img, .package-hero-image > img { height: 330px; border-radius: 20px 20px 60px 20px; }
    .service-hub-image > div, .package-hero-image > div { right: 8px; bottom: 15px; min-width: 205px; }
    .ticket-visual { padding: 20px; }
    .ticket-route { gap: 10px; }
    .ticket-route > span { font-size: 1.8rem; }
    .ticket-meta { grid-template-columns: 1fr; }
    .package-grid { grid-template-columns: 1fr; }
    .package-grid article > img { height: 210px; }
}

/* Materialized-page and navigation reliability refinements v5 */
.dropdown-panel { transition-duration: .14s; }
.full-country-directory { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.local-value-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.local-value-grid article > span { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 18px; border-radius: 13px; background: var(--emerald-100); color: var(--emerald-700); }
.local-value-grid article > span .site-icon { width: 24px; height: 24px; }
.local-value-grid article p { margin-bottom: 0; }

@media (min-width: 1181px) {
    .nav-dropdown:not(.open) > .dropdown-panel { transform: translate(-50%, -10px); visibility: hidden; opacity: 0; pointer-events: none; }
}

@media (max-width: 1180px) {
    .nav-parent > a, .nav-parent > button, .primary-nav a { position: relative; z-index: 2; pointer-events: auto; touch-action: manipulation; }
    .nav-dropdown > .dropdown-panel { display: none !important; }
    .nav-dropdown.open > .dropdown-panel { display: grid !important; }
    .nav-actions { position: static; bottom: auto; margin: 18px -20px -28px; }
    .full-country-directory, .local-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .full-country-directory, .local-value-grid { grid-template-columns: 1fr; }
}

/* Premium internal-page clarity and deterministic navigation v6 */
html { scroll-padding-top: 24px; }
.country-page-nav { position: relative; z-index: 20; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 8px 20px rgba(4,20,47,.04); }
.country-page-nav .container { display: flex; min-height: 58px; align-items: center; gap: 6px; overflow-x: auto; scrollbar-width: thin; }
.country-page-nav span { margin-right: 9px; color: var(--navy-900); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.country-page-nav a { min-height: 36px; display: inline-flex; align-items: center; padding: 0 13px; border: 1px solid transparent; border-radius: 999px; color: #475467; font-size: .75rem; font-weight: 760; white-space: nowrap; }
.country-page-nav a:hover, .country-page-nav a:focus-visible { border-color: #b9dfce; background: var(--emerald-100); color: var(--emerald-700); }
.country-premium-hero, .local-country-hero { background: radial-gradient(circle at 82% 18%, rgba(201,146,23,.14), transparent 30%), linear-gradient(125deg, #fff 0%, #eff7f3 58%, #e8f0f8 100%); }
.country-premium-copy h1, .local-country-hero h1 { max-width: 820px; text-wrap: balance; }
.country-visual, .local-country-visual { isolation: isolate; }
.country-visual::after, .local-country-visual::after { position: absolute; z-index: -1; inset: -14px 20px 20px -14px; border: 1px solid rgba(201,146,23,.3); border-radius: 26px; content: ""; }
.internal-overview { background: linear-gradient(180deg, #f8fbfa 0%, #fff 36%); }
.premium-content { gap: 46px; padding: 46px; border-radius: 24px; box-shadow: 0 24px 60px rgba(4,20,47,.09); }
.premium-content .content-main { min-width: 0; }
.premium-content .content-main > h2 { max-width: 760px; text-wrap: balance; }
.premium-content .content-main > p { max-width: 820px; color: #475467; font-size: 1.02rem; line-height: 1.8; }
.premium-support { position: sticky; top: 24px; border-top: 4px solid var(--gold-500); }
.page-summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 28px 0 34px; }
.page-summary-grid article { min-width: 0; padding: 20px; border: 1px solid #dfe8e4; border-radius: 14px; background: linear-gradient(145deg, #fff, #f5faf7); }
.page-summary-grid small, .page-summary-grid strong { display: block; }
.page-summary-grid small { color: var(--emerald-700); font-size: .63rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.page-summary-grid strong { margin-top: 7px; color: var(--navy-900); font-family: Georgia, serif; font-size: 1rem; line-height: 1.35; }
.page-summary-grid p { margin: 8px 0 0; color: #667085; font-size: .72rem; line-height: 1.55; }
.related-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.related-photo-grid > a { position: relative; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: 0 12px 28px rgba(4,20,47,.07); transition: transform .2s, box-shadow .2s; }
.related-photo-grid > a:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(4,20,47,.13); }
.related-photo-grid > a > img { width: 100%; height: 170px; object-fit: cover; transition: transform .4s; }
.related-photo-grid > a:hover > img { transform: scale(1.04); }
.related-photo-grid > a > span { display: grid; min-height: 80px; grid-template-columns: auto 1fr; align-items: center; gap: 3px 10px; padding: 14px 15px; }
.related-photo-grid > a > span img { grid-row: 1 / 3; width: 32px; height: 24px; object-fit: cover; border-radius: 3px; box-shadow: 0 2px 7px rgba(4,20,47,.14); }
.related-photo-grid b, .related-photo-grid small { display: block; min-width: 0; }
.related-photo-grid b { color: var(--navy-900); font-size: .86rem; }
.related-photo-grid small { overflow: hidden; color: #667085; font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }
.local-related-grid > a > span { min-height: 88px; }
.local-seo-note { box-shadow: 0 8px 24px rgba(4,20,47,.05); }
.city-pill-grid a, .city-link-grid a { transition: border-color .2s, background .2s, transform .2s; }
.city-pill-grid a:hover, .city-link-grid a:hover { transform: translateY(-2px); }

@media (max-width: 1000px) {
    .premium-support { position: static; }
    .page-summary-grid { grid-template-columns: 1fr 1fr; }
    .page-summary-grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
    .country-page-nav .container { min-height: 54px; }
    .country-page-nav span { display: none; }
    .premium-content { padding: 26px 20px; }
    .page-summary-grid, .related-photo-grid { grid-template-columns: 1fr; }
    .page-summary-grid article:last-child { grid-column: auto; }
    .related-photo-grid > a { display: grid; grid-template-columns: 132px minmax(0, 1fr); }
    .related-photo-grid > a > img { height: 100%; min-height: 116px; }
    .related-photo-grid > a > span { min-height: 116px; }
}

@media (max-width: 430px) {
    .country-page-nav a { padding-inline: 10px; }
    .related-photo-grid > a { grid-template-columns: 112px minmax(0, 1fr); }
}
