:root {
  --ink: #0a3136;
  --ink-2: #173f43;
  --muted: #607777;
  --muted-2: #7a8d8c;
  --teal-950: #052f34;
  --teal-900: #073b40;
  --teal-800: #07565b;
  --teal-700: #087579;
  --teal-600: #0e9293;
  --teal-500: #18aaa5;
  --teal-100: #dff3ef;
  --teal-50: #f1f9f7;
  --gold-700: #a87924;
  --gold-600: #bd8e36;
  --gold-500: #d3aa55;
  --gold-300: #ead294;
  --gold-100: #fbf3df;
  --paper: #fbfcfb;
  --cream: #f8f5ed;
  --white: #fff;
  --line: #dce8e5;
  --line-dark: rgba(255, 255, 255, .14);
  --green: #1ea76a;
  --red: #d9483c;
  --shadow-sm: 0 8px 24px rgba(5, 47, 52, .08);
  --shadow-md: 0 18px 50px rgba(5, 47, 52, .12);
  --shadow-lg: 0 28px 80px rgba(5, 47, 52, .18);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shell: 1240px;
  --font-body: 'Segoe UI Variable', 'Aptos', 'Segoe UI', Arial, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-body); font-size: 16px; line-height: 1.68; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open, body.menu-layer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
svg.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-kicker, .menu-kicker, .sidebar-kicker, .hero-eyebrow, .footer-cta-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--teal-700); font-size: 12px; font-weight: 800; line-height: 1.2; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker::before, .hero-eyebrow::before { content: ''; width: 26px; height: 2px; border-radius: 2px; background: var(--gold-500); }
.section-kicker.light { color: #bfe8e2; }
.section-kicker.light::before { background: var(--gold-300); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: -.025em; }
h1 { font-size: clamp(48px, 5.25vw, 78px); line-height: .98; }
h2 { font-size: clamp(36px, 3.7vw, 54px); line-height: 1.05; }
h3 { font-size: 20px; line-height: 1.3; }
p { color: var(--muted); }
::selection { background: var(--gold-300); color: var(--teal-950); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; background: var(--white); color: var(--ink); border-radius: 10px; box-shadow: var(--shadow-md); transition: top .2s ease; }
.skip-link:focus { top: 16px; }

/* Utility and header */
.utility-bar { position: relative; z-index: 1010; background: var(--teal-950); color: #d7ebe8; font-size: 12px; }
.utility-inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-note, .utility-links, .utility-links a, .utility-hours { display: flex; align-items: center; gap: 8px; }
.utility-links { gap: 22px; }
.utility-links a { transition: color .2s ease; }
.utility-links a:hover { color: var(--gold-300); }
.utility-links .icon { width: 14px; height: 14px; color: var(--gold-300); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4fd5a1; box-shadow: 0 0 0 4px rgba(79, 213, 161, .12); }
.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, .96); border-bottom: 1px solid rgba(7, 86, 91, .08); backdrop-filter: blur(18px); transition: box-shadow .25s ease, background .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(5, 47, 52, .09); background: rgba(255, 255, 255, .985); }
.header-inner { min-height: 82px; display: grid; grid-template-columns: 205px 1fr auto; align-items: center; gap: 26px; }
.brand { width: 205px; height: 62px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: stretch; justify-content: center; height: 82px; gap: 2px; }
.nav-link { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 82px; padding: 0 13px; border: 0; background: transparent; color: var(--ink-2); font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; transition: color .2s ease; }
.nav-link::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 0; height: 3px; border-radius: 4px 4px 0 0; background: var(--gold-500); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.nav-link:hover, .nav-link.is-active, .nav-item.is-active > .nav-link { color: var(--teal-700); }
.nav-link.is-active::after, .nav-item.is-active > .nav-link::after { transform: scaleX(1); }
.nav-chevron { width: 14px !important; height: 14px !important; transition: transform .2s ease; }
.nav-item.open > button .nav-chevron { transform: rotate(180deg); }
.nav-item { position: static; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { display: flex; align-items: center; gap: 10px; padding: 8px 2px; color: var(--ink); white-space: nowrap; }
.header-phone > .icon { width: 34px; height: 34px; padding: 8px; border: 1px solid var(--line); border-radius: 50%; color: var(--teal-700); }
.header-phone span { display: grid; line-height: 1.15; }
.header-phone small { color: var(--muted-2); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.header-phone b { margin-top: 4px; font-size: 13px; }
.header-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 0 16px; border-radius: 12px; background: var(--teal-700); color: white; font-size: 13px; font-weight: 800; box-shadow: 0 9px 20px rgba(8, 117, 121, .18); transition: transform .2s ease, background .2s ease; }
.header-whatsapp:hover { transform: translateY(-2px); background: var(--teal-800); }
.header-whatsapp .icon { width: 18px; height: 18px; }
.menu-toggle { display: none; }
.nav-backdrop { position: fixed; inset: 118px 0 0; z-index: 990; background: rgba(3, 28, 31, .52); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .2s ease; }
body.menu-layer-open .nav-backdrop { opacity: 1; visibility: visible; }

/* Menus */
.mega-menu, .drop-menu { position: absolute; top: 100%; left: 50%; z-index: 1005; opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-item.open > .mega-menu, .nav-item.open > .drop-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu { width: min(1160px, calc(100vw - 48px)); padding: 28px; border: 1px solid var(--line); border-radius: 0 0 26px 26px; background: white; box-shadow: var(--shadow-lg); }
.mega-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.mega-header h2 { margin: 7px 0 0; font-size: 31px; }
.menu-all, .text-arrow { display: inline-flex; align-items: center; gap: 9px; color: var(--teal-700); font-size: 13px; font-weight: 800; }
.menu-all .icon, .text-arrow .icon { width: 17px; height: 17px; transition: transform .2s ease; }
.menu-all:hover .icon, .text-arrow:hover .icon { transform: translateX(4px); }
.mega-layout { display: grid; grid-template-columns: minmax(0, 2.2fr) minmax(280px, .8fr); gap: 28px; padding-top: 26px; }
.mega-featured { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.mega-featured > a { min-height: 74px; display: grid; grid-template-columns: 40px 1fr 18px; align-items: center; gap: 13px; padding: 12px 14px; border: 1px solid transparent; border-radius: 14px; background: #f8fbfa; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.mega-featured > a:hover { border-color: #cce3df; background: white; transform: translateY(-2px); }
.mega-featured img { width: 40px; height: 28px; object-fit: cover; border-radius: 5px; box-shadow: 0 3px 10px rgba(5, 47, 52, .12); }
.mega-featured span { min-width: 0; display: grid; }
.mega-featured b { font-size: 14px; }
.mega-featured small { overflow: hidden; color: var(--muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.mega-featured > a > .icon { width: 16px; height: 16px; color: var(--teal-700); }
.mega-regions { display: flex; flex-direction: column; gap: 8px; padding: 18px; border-radius: 20px; background: var(--teal-950); color: white; }
.mega-regions .menu-kicker { margin: 2px 4px 7px; color: #acd8d3; }
.mega-regions > a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 11px; border-radius: 10px; transition: background .2s ease; }
.mega-regions > a:hover { background: rgba(255, 255, 255, .08); }
.mega-regions > a span { display: grid; }
.mega-regions small { color: #8db9b5; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.mega-regions b { font-size: 13px; }
.mega-regions > a .icon { width: 15px; height: 15px; color: var(--gold-300); }
.mega-consult { margin-top: auto; padding: 15px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 14px; background: rgba(255, 255, 255, .05); }
.mega-consult > span { display: block; color: #c4dcd9; font-size: 11px; }
.mega-consult a { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; color: var(--gold-300); font-size: 12px; font-weight: 800; }
.drop-menu { width: 440px; padding: 14px; border: 1px solid var(--line); border-radius: 0 0 20px 20px; background: white; box-shadow: var(--shadow-lg); }
.service-drop { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.service-drop > a { display: grid; grid-template-columns: 38px 1fr 15px; align-items: center; gap: 10px; min-height: 68px; padding: 10px; border-radius: 12px; transition: background .2s ease; }
.service-drop > a:hover { background: var(--teal-50); }
.drop-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--gold-100); color: var(--gold-700); }
.drop-icon .icon { width: 20px; height: 20px; }
.service-drop span:not(.drop-icon) { display: grid; }
.service-drop b { font-size: 13px; }
.service-drop small { color: var(--muted); font-size: 10px; line-height: 1.3; }
.service-drop > a > .icon { width: 14px; height: 14px; color: var(--teal-700); }

/* Shared actions */
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.primary-action, .secondary-action { min-height: 58px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border-radius: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.primary-action { padding: 9px 20px 9px 13px; background: var(--gold-500); color: var(--teal-950); box-shadow: 0 12px 28px rgba(195, 149, 57, .22); }
.primary-action > .icon { width: 38px; height: 38px; padding: 9px; border-radius: 10px; background: rgba(255, 255, 255, .32); }
.primary-action span { display: grid; line-height: 1.15; }
.primary-action small { margin-bottom: 4px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.primary-action b { font-size: 13px; }
.secondary-action { padding: 0 20px; border: 1px solid rgba(255, 255, 255, .28); background: rgba(255, 255, 255, .08); color: white; backdrop-filter: blur(10px); }
.secondary-action > .icon { width: 20px; height: 20px; }
.primary-action:hover, .secondary-action:hover { transform: translateY(-3px); }
.primary-action:hover { box-shadow: 0 16px 34px rgba(195, 149, 57, .3); }
.secondary-action:hover { background: rgba(255, 255, 255, .14); }

/* Home hero */
.home-hero { position: relative; overflow: hidden; padding: 64px 0 0; background: radial-gradient(circle at 80% 20%, rgba(31, 177, 170, .16), transparent 32%), linear-gradient(135deg, #052f34 0%, #06474c 54%, #07373c 100%); color: white; }
.home-hero-pattern { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black, transparent 90%); }
.home-hero::before { content: ''; position: absolute; width: 620px; height: 620px; right: -160px; top: -220px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018); }
.home-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .93fr) minmax(470px, 1.07fr); align-items: center; gap: 28px; min-height: 610px; }
.home-hero-copy { padding: 56px 0 86px; }
.hero-eyebrow { color: #bce3de; }
.home-hero h1 { max-width: 720px; margin: 24px 0 24px; color: white; font-size: clamp(58px, 6.3vw, 88px); }
.home-hero h1 em { color: var(--gold-300); font-weight: 400; }
.home-hero-copy > p { max-width: 600px; margin-bottom: 31px; color: #c7ddda; font-size: 18px; line-height: 1.7; }
.hero-proof { display: flex; align-items: center; gap: 0; margin-top: 42px; }
.hero-proof > span { min-width: 132px; display: grid; padding: 0 25px; border-left: 1px solid rgba(255, 255, 255, .15); }
.hero-proof > span:first-child { padding-left: 0; border-left: 0; }
.hero-proof b { color: white; font-size: 19px; }
.hero-proof small { color: #9fc2be; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.home-hero-visual { position: relative; align-self: end; min-height: 590px; display: flex; align-items: flex-end; justify-content: center; }
.home-hero-visual > img { width: min(100%, 730px); height: auto; filter: drop-shadow(0 30px 45px rgba(0, 24, 27, .25)); }
.hero-floating-note { position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 14px; background: rgba(255, 255, 255, .91); color: var(--ink); box-shadow: var(--shadow-md); backdrop-filter: blur(12px); }
.hero-floating-note b, .hero-floating-note small { display: block; }
.hero-floating-note b { font-size: 11px; }
.hero-floating-note small { color: var(--muted); font-size: 9px; }
.hero-note-one { left: 0; top: 130px; }
.hero-note-two { right: 2px; bottom: 105px; }
.hero-note-two .icon { width: 34px; height: 34px; padding: 7px; border-radius: 9px; background: var(--gold-100); color: var(--gold-700); }
.note-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(30, 167, 106, .12); }
.hero-destination-bar { position: relative; z-index: 3; min-height: 82px; display: grid; grid-template-columns: auto repeat(4, 1fr) auto; align-items: stretch; border-radius: 24px 24px 0 0; background: white; color: var(--ink); box-shadow: 0 -10px 35px rgba(0, 31, 35, .12); overflow: hidden; }
.destination-bar-label { display: flex; align-items: center; padding: 0 25px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-destination-bar > a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 18px; border-left: 1px solid var(--line); font-size: 13px; font-weight: 800; transition: background .2s ease; }
.hero-destination-bar > a:hover { background: var(--teal-50); }
.hero-destination-bar img { width: 28px; height: 20px; object-fit: cover; border-radius: 4px; box-shadow: 0 2px 7px rgba(5, 47, 52, .12); }
.hero-destination-bar .icon { width: 15px; height: 15px; color: var(--teal-700); }
.destination-bar-all { background: var(--gold-100); }

/* Section headings */
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 42px; margin-bottom: 42px; }
.section-heading h2 { margin: 10px 0 0; }
.section-heading > p { max-width: 390px; margin: 0 0 5px; font-size: 15px; }
.section-heading.compact { margin-bottom: 34px; }

/* Destination bento */
.destinations-section { background: #fff; }
.destination-bento { display: grid; grid-template-columns: 1.45fr 1fr 1fr; grid-auto-rows: 260px; gap: 16px; }
.destination-card { position: relative; overflow: hidden; display: flex; align-items: flex-end; border-radius: 24px; background-color: var(--teal-800); background-image: linear-gradient(180deg, rgba(2, 25, 28, .05) 25%, rgba(3, 30, 33, .87) 100%), var(--photo, none); background-size: cover; background-position: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); transition: transform .3s ease, box-shadow .3s ease; isolation: isolate; }
.destination-card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 75% 25%, rgba(219, 177, 86, .28), transparent 35%), linear-gradient(135deg, #0e7477, #06383d); }
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destination-card-featured { grid-row: span 2; }
.destination-tag { position: absolute; top: 18px; left: 18px; padding: 7px 10px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--teal-900); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.destination-card-content { width: 100%; display: grid; grid-template-columns: 42px 1fr 26px; align-items: center; gap: 13px; padding: 22px; color: white; }
.destination-card-content > img { width: 42px; height: 29px; object-fit: cover; border-radius: 6px; border: 2px solid rgba(255,255,255,.65); }
.destination-card-content > span { display: grid; }
.destination-card-content small { color: #c6dcd9; font-size: 10px; font-weight: 600; }
.destination-card-content b { font-family: var(--font-display); font-size: 25px; font-weight: 400; }
.destination-card-content .icon { width: 22px; height: 22px; }
.china-card::before { background: radial-gradient(circle at 75% 25%, rgba(217, 72, 60, .5), transparent 37%), linear-gradient(135deg, #7e2c28, #073d42); }
.schengen-card::before { background: radial-gradient(circle at 72% 25%, rgba(236, 196, 83, .38), transparent 35%), linear-gradient(135deg, #18396d, #063d43); }
.usa-card::before { background: radial-gradient(circle at 75% 25%, rgba(171, 37, 48, .37), transparent 35%), linear-gradient(135deg, #263f6b, #073d42); }
.japan-card::before { background: radial-gradient(circle at 74% 24%, rgba(216, 72, 70, .46), transparent 35%), linear-gradient(135deg, #7b2a34, #073d42); }
.korea-card::before { background: radial-gradient(circle at 75% 25%, rgba(69, 95, 179, .42), transparent 35%), linear-gradient(135deg, #28426a, #073d42); }
.vietnam-card::before { background: radial-gradient(circle at 75% 25%, rgba(222, 63, 54, .44), transparent 35%), linear-gradient(135deg, #7d2e28, #073d42); }

/* Visa purpose */
.visa-purpose-section { background: var(--teal-950); color: white; }
.visa-purpose-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.purpose-intro { position: sticky; top: 145px; }
.purpose-intro h2 { margin: 18px 0 22px; color: white; }
.purpose-intro p { max-width: 450px; color: #b1cfcb; }
.text-arrow.light { margin-top: 18px; color: var(--gold-300); }
.purpose-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.purpose-grid > a { min-height: 150px; display: grid; grid-template-columns: 42px 1fr 23px; align-items: center; gap: 15px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: background .2s ease; }
.purpose-grid > a:hover { background: rgba(255,255,255,.055); }
.purpose-grid > a > span { align-self: start; color: var(--gold-300); font-size: 11px; font-weight: 800; }
.purpose-grid > a > div { display: grid; }
.purpose-grid b { font-size: 17px; }
.purpose-grid small { margin-top: 7px; color: #9fc1bd; font-size: 11px; line-height: 1.5; }
.purpose-grid .icon { width: 19px; height: 19px; color: var(--gold-300); }

/* Review */
.review-section { background: var(--cream); }
.review-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 78px; align-items: center; }
.review-visual { position: relative; min-height: 610px; border-radius: 34px; overflow: hidden; background-color: var(--teal-800); background-image: linear-gradient(180deg, transparent 45%, rgba(5, 47, 52, .82)), var(--photo, none); background-size: cover; background-position: center; box-shadow: var(--shadow-md); }
.review-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(27, 165, 161, .22), rgba(5,47,52,.16)); }
.review-visual-card { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(5, 47, 52, .82); color: white; backdrop-filter: blur(15px); }
.review-visual-card span { display: block; color: var(--gold-300); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.review-visual-card b { display: block; max-width: 430px; margin-top: 7px; font-family: var(--font-display); font-size: 24px; font-weight: 400; line-height: 1.25; }
.review-copy h2 { margin: 16px 0 22px; }
.review-copy > p { max-width: 580px; }
.review-points { margin-top: 35px; border-top: 1px solid #cddbd7; }
.review-points > div { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 19px 0; border-bottom: 1px solid #cddbd7; }
.review-points > div > span { color: var(--gold-700); font-size: 11px; font-weight: 800; }
.review-points p { display: grid; margin: 0; }
.review-points b { font-size: 15px; }
.review-points small { margin-top: 4px; color: var(--muted); font-size: 12px; }

/* Business feature */
.business-feature { overflow: hidden; padding: 0; background: linear-gradient(135deg, #0a5e63, #06353a); color: white; }
.business-feature-inner { min-height: 600px; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 30px; }
.business-feature-copy { padding: 80px 0; }
.business-feature-copy h2 { max-width: 650px; margin: 18px 0 22px; color: white; }
.business-feature-copy p { max-width: 580px; color: #b7d6d2; }
.outline-action { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; color: var(--gold-300); font-size: 12px; font-weight: 800; }
.outline-action .icon { width: 17px; height: 17px; }
.business-feature-art { align-self: end; height: 590px; display: flex; align-items: flex-end; justify-content: flex-end; }
.business-feature-art img { width: 100%; max-width: 720px; }

/* Process and regions */
.process-section { background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-grid > div { min-height: 230px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid > div > span { color: var(--gold-700); font-size: 11px; font-weight: 800; }
.process-grid h3 { margin: 54px 0 9px; font-family: var(--font-display); font-size: 28px; font-weight: 400; }
.process-grid p { margin: 0; font-size: 13px; }
.region-section { padding-top: 0; background: white; }
.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.region-grid > a { min-height: 250px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border-radius: 22px; overflow: hidden; background: linear-gradient(145deg, #0c7678, #052f34); color: white; transition: transform .25s ease; }
.region-grid > a:nth-child(2) { background: linear-gradient(145deg, #7b3f31, #063e43); }
.region-grid > a:nth-child(3) { background: linear-gradient(145deg, #3e4e78, #073d42); }
.region-grid > a:nth-child(4) { background: linear-gradient(145deg, #8c6330, #073d42); }
.region-grid > a::before { content: ''; position: absolute; width: 220px; height: 220px; right: -80px; top: -80px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.04), 0 0 0 68px rgba(255,255,255,.025); }
.region-grid > a:hover { transform: translateY(-6px); }
.region-grid > a > span { position: absolute; top: 20px; left: 22px; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; }
.region-grid small { color: #b9d5d1; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.region-grid b { margin-top: 4px; font-family: var(--font-display); font-size: 29px; font-weight: 400; }
.region-grid .icon { position: absolute; right: 22px; bottom: 24px; width: 23px; height: 23px; color: var(--gold-300); }
.home-seo-note { padding: 70px 0; background: var(--teal-50); border-top: 1px solid var(--line); }
.home-seo-note-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.home-seo-note h2 { margin: 14px 0 0; font-size: clamp(31px, 3vw, 42px); }
.home-seo-note p { margin: 0; font-size: 14px; }

/* Country and local heroes */
.country-hero, .local-hero { position: relative; overflow: hidden; color: white; }
.country-hero { padding: 64px 0 28px; background: radial-gradient(circle at 80% 20%, rgba(216,72,60,.17), transparent 30%), linear-gradient(135deg, #052f34, #07565b); }
.country-hero-pattern, .local-hero-pattern { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px); background-size: 52px 52px; }
.country-hero-grid { position: relative; min-height: 600px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 28px; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; color: #a9cbc7; font-size: 11px; font-weight: 600; }
.breadcrumbs a:hover { color: var(--gold-300); }
.country-label { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 18px; color: #bfe0dc; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.country-label img { width: 38px; height: 26px; object-fit: cover; border-radius: 5px; border: 2px solid rgba(255,255,255,.6); }
.country-hero h1, .local-hero h1 { margin: 0 0 22px; color: white; }
.country-hero-copy > p:not(.hero-update), .local-hero-copy > p { max-width: 620px; margin-bottom: 30px; color: #c4dcda; font-size: 17px; }
.hero-update { display: flex; align-items: center; gap: 9px; margin: 24px 0 0; color: #92b9b5; font-size: 10px; }
.hero-update span { width: 7px; height: 7px; border-radius: 50%; background: #56d6a4; box-shadow: 0 0 0 4px rgba(86,214,164,.13); }
.country-hero-art { position: relative; align-self: end; min-height: 600px; display: flex; align-items: flex-end; justify-content: center; }
.country-hero-art > img { width: min(100%, 690px); }
.country-hero-card { position: absolute; right: 4px; bottom: 54px; width: 246px; padding: 18px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(255,255,255,.92); color: var(--ink); box-shadow: var(--shadow-lg); }
.country-hero-card > span { display: block; margin-bottom: 12px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.country-hero-card > div { display: grid; grid-template-columns: 56px 1fr; align-items: center; padding: 8px 0; border-top: 1px solid var(--line); }
.country-hero-card b { color: var(--teal-700); font-size: 13px; }
.country-hero-card small { color: var(--muted); font-size: 10px; }
.country-facts { background: white; border-bottom: 1px solid var(--line); }
.country-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.country-facts-grid > div { min-height: 110px; display: flex; flex-direction: column; justify-content: center; padding: 20px 26px; border-left: 1px solid var(--line); }
.country-facts-grid > div:first-child { border-left: 0; }
.country-facts-grid span { color: var(--gold-700); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.country-facts-grid b { margin: 5px 0 3px; font-size: 14px; }
.country-facts-grid small { color: var(--muted); font-size: 10px; line-height: 1.4; }
.page-anchor-nav { position: sticky; top: 82px; z-index: 70; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.page-anchor-nav .shell { min-height: 52px; display: flex; align-items: center; gap: 25px; overflow-x: auto; scrollbar-width: none; }
.page-anchor-nav .shell::-webkit-scrollbar { display: none; }
.page-anchor-nav span { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.page-anchor-nav a { color: var(--ink-2); font-size: 11px; font-weight: 700; white-space: nowrap; }
.page-anchor-nav a:hover { color: var(--teal-700); }

/* Internal content */
.internal-section { padding-top: 86px; background: var(--paper); }
.internal-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 70px; align-items: start; }
.content-article { min-width: 0; }
.article-intro { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.article-intro h2 { max-width: 850px; margin: 14px 0 18px; }
.content-article .lead { color: var(--ink-2); font-size: 18px; line-height: 1.75; }
.content-article > p { font-size: 15px; }
.content-article p a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 3px; }
.article-section { padding-top: 78px; }
.article-section > h2 { margin: 13px 0 20px; font-size: clamp(34px, 3.4vw, 48px); }
.article-section > p { max-width: 850px; font-size: 15px; }
.expert-note { display: grid; grid-template-columns: 56px 1fr; gap: 18px; margin-top: 36px; padding: 24px; border: 1px solid #e7d7ab; border-radius: 18px; background: var(--gold-100); }
.expert-note-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 14px; background: var(--teal-900); color: var(--gold-300); font-family: var(--font-display); font-size: 20px; }
.expert-note b { font-size: 13px; }
.expert-note p { margin: 5px 0 0; font-size: 13px; }
.visa-category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.visa-category-grid > div { position: relative; min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
.visa-code { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--teal-50); color: var(--teal-700); font-size: 13px; font-weight: 800; }
.visa-category-grid h3 { margin: 35px 0 9px; font-family: var(--font-display); font-size: 26px; font-weight: 400; }
.visa-category-grid p { margin: 0; font-size: 12px; }
.visa-category-grid .category-help { background: var(--teal-950); color: white; }
.category-help > span { color: var(--gold-300); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.category-help h3 { color: white; }
.category-help a { position: absolute; left: 26px; bottom: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-300); font-size: 12px; font-weight: 800; }
.category-help .icon { width: 16px; height: 16px; }
.numbered-process { margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.numbered-process li { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.numbered-process li > span { color: var(--gold-700); font-size: 12px; font-weight: 800; }
.numbered-process h3 { margin: 0 0 6px; font-size: 16px; }
.numbered-process p { margin: 0; font-size: 13px; }
.official-update { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 26px; padding: 20px 22px; border-radius: 16px; background: var(--teal-50); border: 1px solid #cce5e0; }
.official-update > div { display: grid; }
.official-update span { color: var(--teal-700); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.official-update b { margin-top: 4px; font-size: 13px; }
.official-update a { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-700); font-size: 11px; font-weight: 800; white-space: nowrap; }
.official-update .icon { width: 15px; height: 15px; }
.document-tabs { margin-top: 30px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: white; box-shadow: var(--shadow-sm); }
.tab-buttons { display: grid; grid-template-columns: repeat(4, 1fr); padding: 8px; border-bottom: 1px solid var(--line); background: #f5f9f8; }
.tab-buttons button { min-height: 46px; border: 0; border-radius: 11px; background: transparent; color: var(--muted); font-size: 11px; font-weight: 800; cursor: pointer; }
.tab-buttons button[aria-selected="true"] { background: var(--teal-900); color: white; box-shadow: var(--shadow-sm); }
.tab-panel { padding: 26px; }
.document-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.document-list li { position: relative; padding-left: 28px; color: var(--muted); font-size: 13px; }
.document-list li::before { content: ''; position: absolute; left: 0; top: .55em; width: 14px; height: 8px; border-left: 2px solid var(--teal-600); border-bottom: 2px solid var(--teal-600); transform: rotate(-45deg); }
.current-requirement-card { margin-top: 24px; padding: 28px; border-radius: 22px; background: var(--teal-950); color: white; }
.current-requirement-head span { display: block; color: var(--gold-300); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.current-requirement-head b { display: block; margin-top: 6px; font-family: var(--font-display); font-size: 27px; font-weight: 400; }
.current-requirement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.current-requirement-grid h3 { margin-bottom: 8px; color: white; font-size: 14px; }
.current-requirement-grid p { margin: 0; color: #aecdca; font-size: 12px; }
.current-requirement-card > a { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--gold-300); font-size: 11px; font-weight: 800; }
.current-requirement-card > a .icon { width: 15px; height: 15px; }
.mistake-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 30px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.mistake-grid > div { min-height: 220px; padding: 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.mistake-grid span { color: var(--gold-700); font-size: 10px; font-weight: 800; }
.mistake-grid h3 { margin: 42px 0 8px; font-family: var(--font-display); font-size: 22px; font-weight: 400; }
.mistake-grid p { margin: 0; font-size: 11px; }
.consultant-support { display: grid; grid-template-columns: .95fr 1.05fr; gap: 45px; padding: 42px !important; border-radius: 24px; background: linear-gradient(135deg, #075a5f, #052f34); color: white; }
.consultant-support h2 { color: white; }
.consultant-support p { color: #b7d4d0; }
.consultant-support ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: center; margin: 0; padding: 0; list-style: none; }
.consultant-support li { position: relative; padding: 13px 14px 13px 37px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #d6e7e4; font-size: 11px; }
.consultant-support li::before { content: ''; position: absolute; left: 15px; top: 16px; width: 10px; height: 6px; border-left: 2px solid var(--gold-300); border-bottom: 2px solid var(--gold-300); transform: rotate(-45deg); }
.premium-faq { margin-top: 28px; border-top: 1px solid var(--line); }
.premium-faq details { border-bottom: 1px solid var(--line); }
.premium-faq summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; padding: 16px 46px 16px 0; cursor: pointer; list-style: none; color: var(--ink); font-size: 14px; font-weight: 800; }
.premium-faq summary::-webkit-details-marker { display: none; }
.premium-faq summary span { position: absolute; right: 8px; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 50%; }
.premium-faq summary span::before, .premium-faq summary span::after { content: ''; position: absolute; left: 6px; right: 6px; top: 11px; height: 2px; background: var(--teal-700); }
.premium-faq summary span::after { transform: rotate(90deg); transition: transform .2s ease; }
.premium-faq details[open] summary span::after { transform: rotate(0); }
.premium-faq details > div { padding: 0 50px 20px 0; }
.premium-faq details p { margin: 0; font-size: 13px; }
.related-link-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.related-link-grid > a { display: grid; grid-template-columns: 42px 1fr 18px; align-items: center; gap: 13px; min-height: 84px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: white; transition: border-color .2s ease, transform .2s ease; }
.related-link-grid > a:hover { border-color: #9acbc5; transform: translateY(-2px); }
.related-link-grid img { width: 42px; height: 28px; object-fit: cover; border-radius: 5px; }
.related-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--gold-100); color: var(--gold-700); }
.related-link-grid > a > span:not(.related-icon) { display: grid; }
.related-link-grid small { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.related-link-grid b { font-size: 12px; }
.related-link-grid .icon { width: 16px; height: 16px; color: var(--teal-700); }
.legal-notice { margin-top: 56px; padding: 18px 20px; border: 1px solid #ead8aa; border-radius: 14px; background: var(--gold-100); color: #66552e; font-size: 11px; }

/* Sidebar */
.page-sidebar { min-width: 0; }
.sidebar-sticky { position: sticky; top: 160px; display: grid; gap: 16px; }
.sidebar-contact-card, .sidebar-info-card, .sidebar-links-card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-sm); }
.sidebar-contact-card { background: var(--teal-950); color: white; }
.sidebar-contact-card .sidebar-kicker { color: var(--gold-300); }
.sidebar-contact-card h2 { margin: 12px 0 12px; color: white; font-size: 32px; }
.sidebar-contact-card p { color: #aecdca; font-size: 12px; }
.sidebar-call, .sidebar-whatsapp { display: flex; align-items: center; gap: 11px; min-height: 52px; margin-top: 10px; border-radius: 12px; font-weight: 800; }
.sidebar-call { padding: 7px 12px; background: var(--gold-500); color: var(--teal-950); }
.sidebar-call > .icon { width: 29px; height: 29px; padding: 6px; border-radius: 8px; background: rgba(255,255,255,.28); }
.sidebar-call span { display: grid; line-height: 1.15; }
.sidebar-call small { font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.sidebar-call b { font-size: 12px; }
.sidebar-whatsapp { justify-content: center; padding: 0 12px; border: 1px solid rgba(255,255,255,.2); color: white; font-size: 11px; }
.sidebar-whatsapp .icon { width: 18px; height: 18px; }
.sidebar-info-card h2, .sidebar-links-card h2 { margin-bottom: 12px; font-size: 24px; }
.sidebar-info-card p { margin-bottom: 12px; font-size: 12px; }
.sidebar-info-card > span { color: var(--teal-700); font-size: 10px; font-weight: 800; }
.sidebar-links-card a { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 42px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 11px; font-weight: 700; }
.sidebar-links-card a .icon { width: 14px; height: 14px; color: var(--teal-700); }

/* Local/city page */
.local-hero { padding: 62px 0 30px; background: radial-gradient(circle at 76% 20%, rgba(215,175,89,.16), transparent 30%), linear-gradient(135deg, #052f34, #0a6266); }
.local-hero-grid { position: relative; min-height: 540px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: center; }
.local-hero h1 { font-size: clamp(50px, 5.4vw, 76px); }
.local-hero-art { position: relative; align-self: center; }
.local-hero-art > img { width: 100%; }
.local-route-card { position: absolute; right: 24px; bottom: 10px; width: 220px; padding: 16px; border: 1px solid rgba(255,255,255,.22); border-radius: 16px; background: rgba(5,47,52,.9); box-shadow: var(--shadow-md); }
.local-route-card > span { color: var(--gold-300); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.local-route-card ol { display: grid; gap: 5px; margin: 10px 0 0; padding-left: 20px; color: #c6ddda; font-size: 10px; }
.local-hero-address { display: flex; align-items: center; gap: 11px; margin-top: 28px; color: white; }
.local-hero-address > .icon { width: 35px; height: 35px; padding: 8px; border: 1px solid rgba(255,255,255,.17); border-radius: 10px; color: var(--gold-300); }
.local-hero-address > span { display: grid; }
.local-hero-address b { font-size: 12px; }
.local-hero-address small { color: #9fc2be; font-size: 10px; }
.local-trust-strip { background: white; border-bottom: 1px solid var(--line); }
.local-trust-strip .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.local-trust-strip .shell > div { min-height: 100px; display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-left: 1px solid var(--line); }
.local-trust-strip .shell > div:first-child { border-left: 0; }
.local-trust-strip .icon, .trust-mark { width: 38px; height: 38px; display: grid; place-items: center; padding: 8px; border-radius: 10px; background: var(--teal-50); color: var(--teal-700); }
.trust-mark { padding: 0; font-size: 10px; font-weight: 800; }
.local-trust-strip .shell > div > span:last-child { display: grid; }
.local-trust-strip b { font-size: 12px; }
.local-trust-strip small { color: var(--muted); font-size: 9px; }
.local-service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 34px; }
.local-service-grid > div { min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.local-service-grid > div > span { color: var(--gold-700); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.local-service-grid h3 { margin: 42px 0 9px; font-family: var(--font-display); font-size: 25px; font-weight: 400; }
.local-service-grid p { margin: 0; font-size: 12px; }
.city-process { margin-top: 30px; border-top: 1px solid var(--line); }
.city-process > div { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.city-process > div > span { color: var(--gold-700); font-size: 11px; font-weight: 800; }
.city-process h3 { margin: 0 0 6px; font-size: 16px; }
.city-process p { margin: 0; font-size: 12px; }
.document-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.document-columns > div { padding: 22px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.document-columns h3 { margin-bottom: 16px; font-family: var(--font-display); font-size: 23px; font-weight: 400; }
.document-columns .document-list li { font-size: 11px; }
.delhi-alert { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 22px; margin-top: 20px; padding: 22px; border-radius: 18px; background: var(--gold-100); border: 1px solid #ead8a9; }
.alert-label { color: var(--gold-700); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.delhi-alert h3 { margin: 0 0 5px; font-size: 14px; }
.delhi-alert p { margin: 0; font-size: 11px; }
.delhi-alert a { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-700); font-size: 10px; font-weight: 800; white-space: nowrap; }
.delhi-alert .icon { width: 14px; height: 14px; }
.centre-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 16px; margin-top: 28px; }
.centre-address-card, .centre-practical-card { padding: 28px; border-radius: 20px; }
.centre-address-card { background: var(--teal-950); color: white; }
.centre-address-card > span { color: var(--gold-300); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.centre-address-card h3 { margin: 38px 0 10px; color: white; font-family: var(--font-display); font-size: 27px; font-weight: 400; }
.centre-address-card p { color: #b7d3cf; font-size: 12px; }
.centre-address-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--gold-300); font-size: 10px; font-weight: 800; }
.centre-address-card .icon { width: 14px; height: 14px; }
.centre-practical-card { border: 1px solid var(--line); background: white; }
.centre-practical-card h3 { margin-bottom: 18px; font-size: 17px; }
.centre-practical-card ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.centre-practical-card li { position: relative; padding-left: 25px; color: var(--muted); font-size: 11px; }
.centre-practical-card li::before { content: ''; position: absolute; left: 0; top: .5em; width: 12px; height: 7px; border-left: 2px solid var(--teal-600); border-bottom: 2px solid var(--teal-600); transform: rotate(-45deg); }
.local-office-section { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; padding: 36px !important; border-radius: 22px; background: linear-gradient(135deg, #075b60, #052f34); color: white; }
.local-office-copy h2 { margin: 13px 0; color: white; font-size: 37px; }
.local-office-copy p { max-width: 650px; color: #b8d4d0; font-size: 12px; }
.office-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.office-meta span { display: flex; align-items: center; gap: 8px; color: #d5e7e4; font-size: 10px; }
.office-meta .icon { color: var(--gold-300); }
.local-office-actions { display: grid; gap: 10px; min-width: 235px; }
.local-office-actions a { min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 12px; font-size: 11px; font-weight: 800; }
.local-office-actions a:first-child { padding: 7px 12px; background: var(--gold-500); color: var(--teal-950); }
.local-office-actions a:first-child span { display: grid; line-height: 1.2; }
.local-office-actions a:first-child small { font-size: 8px; text-transform: uppercase; }
.local-office-actions a:last-child { border: 1px solid rgba(255,255,255,.2); color: white; }
.local-office-actions .icon { width: 19px; height: 19px; }

/* Footer */
.footer-cta { padding: 62px 0; background: var(--gold-500); color: var(--teal-950); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-cta-kicker { color: var(--teal-800); }
.footer-cta-inner h2 { max-width: 700px; margin: 9px 0 0; font-size: clamp(34px, 3.6vw, 50px); }
.footer-cta-actions { display: flex; align-items: center; gap: 12px; }
.footer-call, .footer-wa { min-height: 58px; display: flex; align-items: center; gap: 11px; border-radius: 13px; font-weight: 800; }
.footer-call { padding: 8px 16px; background: var(--teal-950); color: white; }
.footer-call > .icon { width: 32px; height: 32px; padding: 7px; border-radius: 9px; background: rgba(255,255,255,.1); color: var(--gold-300); }
.footer-call span { display: grid; line-height: 1.15; }
.footer-call small { color: #9fc1bd; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.footer-call b { margin-top: 4px; font-size: 12px; }
.footer-wa { padding: 0 18px; border: 1px solid rgba(5,47,52,.25); color: var(--teal-950); }
.footer-wa .icon { width: 20px; height: 20px; }
.site-footer { background: #042a2e; color: #d7e8e5; }
.footer-main { display: grid; grid-template-columns: 1.55fr repeat(4, .75fr); gap: 54px; padding-top: 74px; padding-bottom: 60px; }
.footer-brand > a { display: inline-block; width: 230px; }
.footer-brand img { width: 100%; height: auto; }
.footer-brand > p { max-width: 350px; margin: 22px 0; color: #96b6b2; font-size: 12px; }
.footer-contact-list { display: grid; gap: 11px; }
.footer-contact-list > a, .footer-contact-list > span { display: flex; align-items: flex-start; gap: 10px; color: #c5dbd8; font-size: 11px; }
.footer-contact-list .icon { width: 16px; height: 16px; margin-top: 1px; color: var(--gold-300); }
.footer-contact-list > span > span { max-width: 280px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column h2 { margin: 5px 0 9px; color: white; font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-column .footer-subhead { margin-top: 20px; }
.footer-column a { width: fit-content; color: #91b4b0; font-size: 11px; transition: color .2s ease; }
.footer-column a:hover { color: var(--gold-300); }
.footer-office-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.footer-office-strip > div { min-height: 86px; display: grid; align-content: center; padding: 16px 25px; border-left: 1px solid var(--line-dark); }
.footer-office-strip > div:first-child { border-left: 0; padding-left: 0; }
.footer-office-strip span { color: #6f9b96; font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-office-strip b { margin-top: 4px; color: #d2e4e1; font-size: 11px; }
.footer-disclaimer { padding: 24px 0; color: #789f9b; font-size: 10px; line-height: 1.6; }
.footer-disclaimer strong { color: #a8c5c1; }
.footer-bottom { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line-dark); color: #719692; font-size: 10px; }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--gold-300); }
.mobile-cta { display: none; }

/* Compatibility for existing internal pages */
.page-hero { position: relative; overflow: hidden; background: var(--teal-950); color: white; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,47,52,.96), rgba(5,47,52,.72)); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-inner { position: relative; min-height: 500px; display: grid; grid-template-columns: 1fr 330px; gap: 60px; align-items: center; padding-block: 70px; }
.page-hero h1 { margin: 15px 0 18px; color: white; font-size: clamp(46px, 5vw, 70px); }
.page-hero p { max-width: 720px; color: #c3d9d6; }
.hero-flag { display: flex; align-items: center; gap: 10px; }
.hero-flag img { width: 38px; height: 26px; object-fit: cover; border-radius: 5px; }
.eyebrow { color: var(--gold-300); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-summary { padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.hero-summary h2 { margin-bottom: 14px; color: white; font-size: 27px; }
.hero-summary ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.hero-summary li { color: #c5dcda; font-size: 11px; }
.page-trustbar { background: white; border-bottom: 1px solid var(--line); }
.page-trustbar .shell { min-height: 70px; display: flex; align-items: center; justify-content: space-around; gap: 20px; }
.page-trustbar span { display: flex; align-items: center; gap: 9px; font-size: 11px; }
.page-trustbar i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-50); color: var(--teal-700); font-style: normal; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 60px; align-items: start; }
.article h2 { margin-top: 55px; font-size: clamp(31px, 3vw, 43px); }
.article h2:first-child { margin-top: 0; }
.article p, .article li { font-size: 13px; }
.article ol { display: grid; gap: 12px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 13px 13px 38px; border: 1px solid var(--line); border-radius: 11px; background: white; }
.check-list li::before { content: ''; position: absolute; left: 15px; top: 17px; width: 10px; height: 6px; border-left: 2px solid var(--teal-600); border-bottom: 2px solid var(--teal-600); transform: rotate(-45deg); }
.info-box, .notice { padding: 23px; border-radius: 16px; }
.info-box { margin: 24px 0; background: var(--teal-50); border: 1px solid #cde5e1; }
.info-box.gold { background: var(--gold-100); border-color: #ead8aa; }
.info-box h3 { margin-bottom: 10px; }
.two-card, .city-local { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.mini-card, .local-card { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.mini-card h3, .local-card h3 { margin-bottom: 7px; }
.link-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.link-card { min-height: 68px; display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: white; font-size: 11px; font-weight: 700; }
.link-card img { width: 35px; height: 24px; object-fit: cover; border-radius: 4px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chips a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--ink-2); font-size: 10px; font-weight: 700; }
.notice { margin-top: 28px; background: var(--gold-100); border: 1px solid #ead8aa; font-size: 11px; }
.sidebar .side-sticky { position: sticky; top: 155px; display: grid; gap: 14px; }
.side-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.side-card h2 { font-size: 25px; }
.side-card p { font-size: 11px; }
.side-card > a:not(.btn) { min-height: 40px; display: flex; align-items: center; border-top: 1px solid var(--line); font-size: 10px; font-weight: 700; }
.cta-pair { display: flex; flex-wrap: wrap; gap: 10px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 11px; font-size: 11px; font-weight: 800; }
.btn-call { background: var(--gold-500); color: var(--teal-950); }
.btn-wa { background: var(--green); color: white; }
.btn-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.25); color: transparent; font-size: 0; }
.btn-icon::before { content: ''; width: 16px; height: 16px; display: block; background: currentColor; }
.btn > span:last-child { display: grid; }
.btn small { font-size: 8px; text-transform: uppercase; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; list-style: none; font-size: 12px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details > div { padding: 0 0 17px; }
.faq-list details p { margin: 0; }

/* Responsive */
@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 180px 1fr auto; gap: 14px; }
  .brand { width: 180px; }
  .nav-link { padding-inline: 9px; font-size: 12px; }
  .header-phone { display: none; }
  .home-hero-grid { grid-template-columns: .95fr 1.05fr; }
  .home-hero h1 { font-size: clamp(52px, 6.5vw, 76px); }
  .hero-floating-note { display: none; }
  .footer-main { gap: 34px; }
  .internal-layout, .content-layout { gap: 46px; }
}

@media (max-width: 1000px) {
  .utility-hours { display: none; }
  .header-inner { grid-template-columns: 185px auto auto; justify-content: space-between; }
  .site-nav { position: fixed; inset: 118px 0 auto; z-index: 1002; display: none; width: 100%; height: calc(100dvh - 118px); overflow-y: auto; overscroll-behavior: contain; padding: 20px 24px 110px; background: white; box-shadow: 0 24px 55px rgba(5,47,52,.16); }
  .site-nav.open { display: block; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 7px; justify-self: end; border: 1px solid var(--line); border-radius: 10px; background: white; min-height: 42px; padding: 0 12px; font-size: 11px; font-weight: 800; cursor: pointer; }
  .menu-toggle .icon { width: 18px; height: 18px; }
  .menu-close-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close-icon { display: inline-flex; }
  .site-nav > .nav-link, .nav-item > .nav-link { width: 100%; min-height: 54px; justify-content: space-between; padding: 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .site-nav > .nav-link::after, .nav-item > .nav-link::after { display: none; }
  .nav-item { position: relative; }
  .mega-menu, .drop-menu { position: static; width: 100%; padding: 0; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-item.open > .mega-menu, .nav-item.open > .drop-menu { display: block; }
  .mega-header { padding: 18px 0; align-items: center; }
  .mega-header h2 { font-size: 24px; }
  .mega-layout { grid-template-columns: 1fr; gap: 14px; padding-top: 10px; }
  .mega-featured { grid-template-columns: 1fr 1fr; }
  .mega-regions { margin-bottom: 18px; }
  .service-drop { grid-template-columns: 1fr 1fr; padding: 10px 0 18px; }
  .header-actions { justify-self: end; }
  .header-whatsapp { min-height: 42px; }
  .nav-backdrop { inset: 118px 0 0; }
  body.menu-layer-open .nav-backdrop { display: none; }
  .home-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-copy { padding: 70px 0 30px; text-align: center; }
  .home-hero h1, .home-hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .home-hero-visual { min-height: 430px; }
  .home-hero-visual > img { max-width: 600px; }
  .hero-destination-bar { grid-template-columns: auto repeat(4, 1fr); }
  .destination-bar-all { display: none !important; }
  .destination-bento { grid-template-columns: 1.3fr 1fr; }
  .destination-card-featured { grid-row: span 2; }
  .destination-bento > .destination-card:nth-child(6) { grid-column: span 2; }
  .visa-purpose-layout, .review-layout, .business-feature-inner, .home-seo-note-inner { grid-template-columns: 1fr; gap: 50px; }
  .purpose-intro { position: static; }
  .review-visual { min-height: 500px; }
  .business-feature-copy { padding-bottom: 0; }
  .business-feature-art { height: 500px; justify-content: center; }
  .process-grid, .region-grid { grid-template-columns: 1fr 1fr; }
  .country-hero-grid, .local-hero-grid { grid-template-columns: 1fr; }
  .country-hero-copy, .local-hero-copy { padding-top: 35px; }
  .country-hero-art { min-height: 470px; }
  .local-hero-art { max-width: 780px; margin: 0 auto; }
  .country-facts-grid, .local-trust-strip .shell { grid-template-columns: 1fr 1fr; }
  .country-facts-grid > div:nth-child(3), .local-trust-strip .shell > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .country-facts-grid > div:nth-child(4), .local-trust-strip .shell > div:nth-child(4) { border-top: 1px solid var(--line); }
  .internal-layout, .content-layout { grid-template-columns: 1fr; }
  .page-sidebar, .sidebar { order: -1; }
  .sidebar-sticky, .sidebar .side-sticky { position: static; grid-template-columns: 1fr 1fr; }
  .sidebar-links-card { display: none; }
  .mistake-grid { grid-template-columns: 1fr 1fr; }
  .document-columns { grid-template-columns: 1fr; }
  .footer-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:nth-child(4), .footer-column:nth-child(5) { padding-top: 15px; border-top: 1px solid var(--line-dark); }
}

@media (max-width: 720px) {
  body { font-size: 15px; padding-bottom: 64px; }
  .shell { width: min(100% - 30px, var(--shell)); }
  .section { padding: 74px 0; }
  .utility-bar { display: none; }
  .site-header { top: 0; }
  .header-inner { min-height: 72px; grid-template-columns: 160px auto; }
  .brand { width: 160px; height: 54px; }
  .header-actions { display: none; }
  .site-nav { inset: 72px 0 auto; height: calc(100dvh - 72px); padding-inline: 18px; }
  .nav-backdrop { inset: 72px 0 0; }
  .mega-featured, .service-drop { grid-template-columns: 1fr; }
  .mega-header { align-items: flex-start; }
  .menu-all { font-size: 10px; }
  .home-hero { padding-top: 0; }
  .home-hero-copy { padding: 58px 0 12px; }
  .home-hero h1 { font-size: clamp(48px, 14vw, 64px); }
  .home-hero-copy > p { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .primary-action, .secondary-action { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; margin-top: 30px; }
  .hero-proof > span { min-width: 0; padding: 0 10px; text-align: center; }
  .hero-proof small { font-size: 8px; }
  .home-hero-visual { min-height: 340px; }
  .home-hero-visual > img { width: 110%; max-width: none; }
  .hero-destination-bar { width: 100%; grid-template-columns: repeat(2, 1fr); border-radius: 18px 18px 0 0; }
  .destination-bar-label { display: none; }
  .hero-destination-bar > a { min-height: 62px; font-size: 11px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 30px; }
  .section-heading > p { margin: 0; }
  .destination-bento { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .destination-card-featured { grid-row: auto; min-height: 330px; }
  .destination-bento > .destination-card:nth-child(6) { grid-column: auto; }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-grid > a { min-height: 120px; }
  .review-layout { gap: 42px; }
  .review-visual { min-height: 420px; }
  .business-feature-inner { min-height: 0; }
  .business-feature-copy { padding: 70px 0 0; }
  .business-feature-art { height: 380px; }
  .process-grid, .region-grid { grid-template-columns: 1fr; }
  .process-grid > div { min-height: 190px; }
  .process-grid h3 { margin-top: 38px; }
  .region-grid > a { min-height: 190px; }
  .home-seo-note-inner { gap: 28px; }
  .country-hero, .local-hero { padding-top: 30px; }
  .country-hero-grid, .local-hero-grid { min-height: 0; }
  .country-hero h1, .local-hero h1 { font-size: clamp(47px, 13vw, 62px); }
  .country-hero-copy > p:not(.hero-update), .local-hero-copy > p { font-size: 15px; }
  .country-hero-art { min-height: 380px; }
  .country-hero-card { right: 0; bottom: 20px; width: 215px; }
  .local-route-card { right: 0; bottom: -5px; }
  .country-facts-grid, .local-trust-strip .shell { grid-template-columns: 1fr; }
  .country-facts-grid > div, .local-trust-strip .shell > div { border-left: 0 !important; border-top: 1px solid var(--line); }
  .country-facts-grid > div:first-child, .local-trust-strip .shell > div:first-child { border-top: 0; }
  .page-anchor-nav { top: 72px; }
  .page-anchor-nav .shell { gap: 20px; }
  .internal-section { padding-top: 60px; }
  .article-section { padding-top: 60px; }
  .visa-category-grid, .local-service-grid, .current-requirement-grid, .mistake-grid, .consultant-support, .related-link-grid, .centre-layout { grid-template-columns: 1fr; }
  .tab-buttons { grid-template-columns: 1fr 1fr; gap: 6px; }
  .consultant-support { padding: 28px !important; }
  .consultant-support ul { grid-template-columns: 1fr; }
  .official-update, .delhi-alert { align-items: flex-start; flex-direction: column; display: flex; }
  .document-columns { grid-template-columns: 1fr; }
  .local-office-section { grid-template-columns: 1fr; padding: 28px !important; }
  .local-office-actions { min-width: 0; }
  .sidebar-sticky, .sidebar .side-sticky { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-summary { display: none; }
  .page-trustbar .shell { align-items: flex-start; flex-direction: column; padding-block: 18px; }
  .check-list, .two-card, .city-local, .link-grid { grid-template-columns: 1fr; }
  .footer-cta { padding: 48px 0; }
  .footer-cta-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .footer-call, .footer-wa { justify-content: center; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > a { width: 210px; }
  .footer-column:nth-child(4), .footer-column:nth-child(5) { padding-top: 0; border-top: 0; }
  .footer-office-strip { grid-template-columns: 1fr; }
  .footer-office-strip > div { border-left: 0; border-top: 1px solid var(--line-dark); padding-left: 0; }
  .footer-office-strip > div:first-child { border-top: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 18px; }
  .mobile-cta { position: fixed; inset: auto 0 0; z-index: 1200; height: 64px; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -8px 25px rgba(5,47,52,.14); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--gold-500); color: var(--teal-950); font-size: 12px; font-weight: 800; }
  .mobile-cta a:last-child { background: var(--green); color: white; }
  .mobile-cta .icon { width: 19px; height: 19px; }
}

@media (max-width: 430px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { grid-template-columns: 145px auto; }
  .brand { width: 145px; }
  .home-hero h1 { font-size: 48px; }
  .hero-proof b { font-size: 15px; }
  .home-hero-visual { min-height: 300px; }
  .country-hero-art { min-height: 330px; }
  .country-hero-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: -40px; }
  .local-route-card { position: relative; right: auto; bottom: auto; width: 100%; margin-top: -12px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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

/* ========================================================================== 
   VISA GLOBUS V10 — typography, navigation, spacing, flags and directory fix
   ========================================================================== */
:root {
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --shell: 1280px;
  --ink: #102f33;
  --ink-2: #25494c;
  --muted: #5a7375;
  --teal-950: #062f33;
  --teal-900: #073d42;
  --teal-800: #07565b;
  --teal-700: #0a777a;
  --teal-50: #f3faf8;
  --gold-500: #d4a84f;
  --line: #d9e6e3;
}

body { font-size: 16px; line-height: 1.72; letter-spacing: -.006em; }
p, li { font-size: 16px; }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -.035em; }
h1 { font-weight: 800; line-height: 1.05; }
h2 { font-weight: 750; line-height: 1.12; }
h3 { font-weight: 750; }
small { line-height: 1.45; }
.section { padding: 84px 0; }
.section-kicker, .menu-kicker, .sidebar-kicker, .hero-eyebrow, .footer-cta-kicker, .eyebrow {
  font-size: 12px; letter-spacing: .115em; font-weight: 800;
}

/* Correct, flat flag treatment. Never crop or wave flags. */
.flag-frame, .footer-flag {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  overflow: hidden; border: 1px solid #cbd9d7; border-radius: 4px; background: #fff;
  box-shadow: 0 2px 8px rgba(5,47,52,.08);
}
.flag-frame { width: 42px; height: 29px; }
.footer-flag { width: 28px; height: 20px; }
.flag-frame img, .footer-flag img,
.hero-flag img, .country-label img, .destination-card-content > img,
.hero-destination-bar img, .link-card img, .mega-popular-grid img {
  width: 100%; height: 100%; object-fit: contain !important; border: 0 !important; border-radius: 0 !important; background: white;
}
.hero-flag img, .country-label img { width: 42px; height: 29px; padding: 0; border: 1px solid #cbd9d7 !important; border-radius: 4px !important; }
.destination-card-content > img { width: 46px; height: 32px; padding: 0; border: 1px solid rgba(255,255,255,.75) !important; border-radius: 5px !important; }
.hero-destination-bar img { width: 30px; height: 21px; border: 1px solid #d2dddb !important; border-radius: 3px !important; }
.link-card img { width: 38px; height: 27px; border: 1px solid #d2dddb !important; border-radius: 4px !important; }

/* Header */
.utility-bar { font-size: 13px; }
.utility-inner { min-height: 38px; }
.utility-note .icon, .utility-links .icon { width: 15px; height: 15px; color: var(--gold-300); }
.site-header { top: 0; }
.header-inner { min-height: 78px; grid-template-columns: 196px minmax(0,1fr) auto; gap: 22px; }
.brand { width: 190px; height: 60px; }
.site-nav { height: 78px; gap: 1px; }
.nav-link { min-height: 78px; padding: 0 14px; font-size: 14px; font-weight: 750; }
.header-actions { gap: 10px; }
.header-call-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--teal-700); background: white; transition: .2s ease; }
.header-call-icon:hover { transform: translateY(-2px); border-color: #b9d7d2; background: var(--teal-50); }
.header-call-icon .icon { width: 20px; height: 20px; }
.header-whatsapp { min-height: 46px; padding: 0 17px; border-radius: 12px; font-size: 14px; }
.nav-backdrop { inset: 116px 0 0; }

/* V10 mega menus */
.destination-mega, .city-mega { width: min(1180px, calc(100vw - 44px)); padding: 28px; border-radius: 0 0 22px 22px; }
.mega-topline { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.mega-topline h2 { margin: 7px 0 0; font-size: 30px; }
.destination-mega-grid { display: grid; grid-template-columns: 1.65fr .9fr; gap: 28px; padding-top: 24px; }
.mega-popular h3, .mega-regions-v10 h3 { margin: 0 0 14px; color: var(--muted); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.mega-popular-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.mega-popular-grid > a { min-height: 68px; display: grid; grid-template-columns: 42px 1fr 17px; align-items: center; gap: 12px; padding: 11px 13px; border: 1px solid #e1eae8; border-radius: 12px; background: #fbfdfc; transition: .2s ease; }
.mega-popular-grid > a:hover { border-color: #bad8d3; background: var(--teal-50); transform: translateY(-2px); }
.mega-popular-grid > a > span:nth-child(2) { display: grid; min-width: 0; }
.mega-popular-grid b { font-size: 14px; }
.mega-popular-grid small { color: var(--muted); font-size: 12px; }
.mega-popular-grid .icon { width: 16px; height: 16px; color: var(--teal-700); }
.mega-regions-v10 { padding: 18px; border-radius: 18px; background: var(--teal-950); color: white; }
.mega-regions-v10 h3 { color: #9fc7c2; }
.mega-regions-v10 > a { display: grid; grid-template-columns: 34px 1fr 17px; align-items: center; gap: 11px; padding: 12px 10px; border-top: 1px solid rgba(255,255,255,.1); }
.mega-regions-v10 > a:first-of-type { border-top: 0; }
.mega-regions-v10 > a > .icon:first-child { width: 28px; height: 28px; padding: 6px; border-radius: 9px; background: rgba(255,255,255,.08); color: var(--gold-300); }
.mega-regions-v10 > a > span { display: grid; }
.mega-regions-v10 b { font-size: 14px; }
.mega-regions-v10 small { margin-top: 2px; color: #9fc1bd; font-size: 12px; }
.mega-regions-v10 > a > .icon:last-child { width: 16px; height: 16px; color: var(--gold-300); }
.mega-footer-row { display: flex; align-items: center; gap: 24px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.mega-footer-row a { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-700); font-size: 13px; font-weight: 750; }
.mega-footer-row .icon { width: 17px; height: 17px; }
.city-menu-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px 12px; padding-top: 22px; }
.city-menu-grid a { min-height: 55px; display: grid; grid-template-columns: 30px 1fr; grid-template-rows: auto auto; column-gap: 10px; align-items: center; padding: 9px 11px; border: 1px solid #e2eae8; border-radius: 11px; background: #fbfdfc; }
.city-menu-grid a > span { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--teal-50); color: var(--teal-700); }
.city-menu-grid .icon { width: 16px; height: 16px; }
.city-menu-grid b { font-size: 14px; line-height: 1.2; }
.city-menu-grid small { color: var(--muted); font-size: 12px; line-height: 1.25; }
.service-drop { width: 540px; gap: 8px; }
.service-drop > a { min-height: 72px; }
.service-drop b { font-size: 14px; }
.service-drop small { font-size: 12px; }
.drop-icon { width: 38px; height: 38px; }

/* Homepage: actual travel photography, tighter spacing */
.home-hero { padding-top: 0; }
.home-hero-grid { min-height: 590px; grid-template-columns: .93fr 1.07fr; }
.home-hero-copy { padding: 72px 0 74px; }
.home-hero h1 { max-width: 680px; margin: 20px 0 22px; font-size: clamp(52px,5.4vw,76px); }
.home-hero-copy > p { font-size: 18px; line-height: 1.65; }
.home-hero-photo { position: relative; min-height: 520px; align-self: stretch; margin: 36px 0 36px; border-radius: 30px; overflow: hidden; box-shadow: 0 28px 70px rgba(0,25,29,.32); }
.home-hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(5,47,52,.02),rgba(5,47,52,.32)); }
.home-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-photo .photo-badge { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 15px; background: rgba(5,47,52,.82); color: white; backdrop-filter: blur(12px); }
.home-hero-photo .photo-badge .icon { width: 25px; height: 25px; color: var(--gold-300); }
.home-hero-photo .photo-badge span { display: grid; }
.home-hero-photo .photo-badge b { font-size: 14px; }
.home-hero-photo .photo-badge small { color: #b9d2cf; font-size: 13px; }
.hero-proof small { font-size: 12px; }
.hero-destination-bar > a { font-size: 14px; }
.destination-bar-label { font-size: 12px; }
.destination-bento { grid-auto-rows: 240px; }
.destination-card-content small { font-size: 12px; }
.destination-card-content b { font-family: var(--font-body); font-size: 24px; font-weight: 800; }
.destination-tag { font-size: 11px; }
.purpose-grid small { font-size: 13px; }
.review-visual { min-height: 500px; }
.review-visual-card span { font-size: 12px; }
.review-visual-card b { font-family: var(--font-body); font-size: 22px; font-weight: 750; }
.review-points small { font-size: 14px; }
.business-feature-inner { min-height: 500px; }
.business-feature-art { height: 500px; }
.process-grid > div { min-height: 205px; }
.process-grid > div > span, .region-grid > a > span { font-size: 12px; }
.process-grid h3 { margin-top: 40px; font-family: var(--font-body); font-weight: 800; }
.process-grid p { font-size: 14px; }
.region-grid small { font-size: 12px; }
.region-grid b { font-family: var(--font-body); font-size: 27px; font-weight: 800; }
.home-seo-note { padding: 56px 0; }
.home-seo-note p { font-size: 15px; }

/* Internal page heroes: remove oversized blank areas */
.page-hero-inner { min-height: 450px; padding-block: 54px; grid-template-columns: minmax(0,1fr) 350px; gap: 50px; }
.page-hero h1 { margin: 14px 0 18px; font-size: clamp(42px,4.8vw,64px); }
.page-hero p { font-size: 17px; line-height: 1.65; }
.hero-summary { padding: 22px; }
.hero-summary h2 { font-family: var(--font-body); font-size: 23px; font-weight: 800; }
.hero-summary li { font-size: 14px; line-height: 1.55; }
.breadcrumbs { font-size: 13px; }
.page-trustbar .shell { min-height: 66px; }
.page-trustbar span { font-size: 14px; }
.page-trustbar i { width: 30px; height: 30px; }
.page-trustbar i .icon { width: 17px; height: 17px; }
.country-hero { padding: 40px 0 18px; }
.country-hero-grid { min-height: 500px; }
.country-hero h1, .local-hero h1 { font-size: clamp(42px,4.8vw,66px); }
.country-hero-copy > p:not(.hero-update), .local-hero-copy > p { font-size: 17px; }
.country-hero-art { min-height: 500px; }
.country-hero-photo, .local-hero-photo { position: relative; min-height: 430px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.country-hero-photo img, .local-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.country-hero-photo::after, .local-hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(5,47,52,.62)); }
.country-label { font-size: 13px; letter-spacing: .08em; }
.hero-update { font-size: 13px; }
.country-facts-grid > div { min-height: 96px; }
.country-facts-grid span { font-size: 11px; }
.country-facts-grid b { font-size: 15px; }
.country-facts-grid small { font-size: 13px; }
.page-anchor-nav span { font-size: 11px; }
.page-anchor-nav a { font-size: 13px; }
.local-trust-strip b { font-size: 14px; }
.local-trust-strip small { font-size: 13px; }
.local-hero-address b { font-size: 14px; }
.local-hero-address small { font-size: 13px; }

/* Content legibility */
.content-layout, .internal-layout { grid-template-columns: minmax(0,1fr) 340px; gap: 54px; }
.article p, .article li, .content-article p, .content-article li { font-size: 16px; line-height: 1.75; }
.article h2 { margin-top: 46px; font-size: clamp(29px,2.8vw,40px); }
.article h3 { font-size: 20px; }
.article .lead, .content-article .lead { font-size: 18px; }
.check-list li { padding: 14px 14px 14px 40px; }
.link-card { min-height: 72px; padding: 14px; font-size: 14px; }
.city-chips { gap: 9px; }
.city-chips a { padding: 10px 13px; font-size: 13px; }
.info-box, .notice { font-size: 15px; }
.notice { line-height: 1.65; }
.side-card { padding: 22px; }
.side-card h2 { font-family: var(--font-body); font-size: 22px; font-weight: 800; }
.side-card p { font-size: 14px; }
.side-card > a:not(.btn) { min-height: 44px; font-size: 13px; }
.btn { min-height: 54px; padding: 9px 15px; font-size: 13px; }
.btn > .icon { width: 30px; height: 30px; padding: 6px; border-radius: 8px; background: rgba(255,255,255,.24); }
.btn small { font-size: 11px; letter-spacing: .04em; }
.faq-list summary { min-height: 66px; font-size: 15px; }
.faq-list details p { font-size: 15px; }
.local-service-grid > div > span { font-size: 11px; }
.local-service-grid p, .city-process p, .current-requirement-grid p, .document-columns .document-list li, .centre-practical-card li { font-size: 14px; }
.related-link-grid small { font-size: 13px; }
.related-link-grid b { font-size: 14px; }
.sidebar-info-card > span { font-size: 11px; }
.sidebar-info-card p, .sidebar-contact-card p { font-size: 14px; }
.sidebar-links-card a, .sidebar-whatsapp { font-size: 13px; }

/* Complete city/country internal-link directories */
.page-directory-section { padding: 66px 0; border-top: 1px solid var(--line); background: #f5faf8; }
.page-directory-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.page-directory-head h2 { margin: 7px 0 0; font-size: clamp(28px,3vw,40px); }
.page-directory-head p { max-width: 500px; margin: 0; font-size: 15px; }
.directory-link-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.directory-link-grid a { min-height: 58px; display: flex; align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid #dce8e5; border-radius: 11px; background: white; font-size: 14px; font-weight: 700; transition: .2s ease; }
.directory-link-grid a:hover { border-color: #b7d7d1; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.directory-link-grid .icon { width: 18px; height: 18px; color: var(--teal-700); }
.directory-link-grid .flag-frame { width: 32px; height: 22px; }
.directory-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.directory-actions a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 14px; border-radius: 10px; background: var(--teal-900); color: white; font-size: 13px; font-weight: 750; }
.directory-actions a.alt { background: white; color: var(--teal-700); border: 1px solid var(--line); }

/* Footer: full link coverage and readable sizes */
.footer-cta { padding: 54px 0; }
.footer-cta-inner { align-items: center; }
.footer-cta-copy h2 { max-width: 720px; margin: 10px 0 8px; font-size: clamp(30px,3.2vw,44px); }
.footer-cta-copy p { margin: 0; color: #c0d7d4; font-size: 15px; }
.footer-call small { font-size: 11px; }
.footer-call b { font-size: 14px; }
.site-footer { padding-top: 0; }
.footer-intro { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 46px; padding: 62px 0 48px; }
.footer-brand > a { width: 230px; }
.footer-brand > p { max-width: 440px; margin: 20px 0 0; color: #a8c7c3; font-size: 14px; line-height: 1.7; }
.footer-contact-card, .footer-quick { padding-left: 30px; border-left: 1px solid var(--line-dark); }
.footer-contact-card h2, .footer-quick h2 { margin: 0 0 18px; color: white; font-family: var(--font-body); font-size: 15px; font-weight: 800; }
.footer-contact-card > a, .footer-contact-card > span { display: flex; align-items: flex-start; gap: 11px; margin-top: 14px; color: #d4e4e2; }
.footer-contact-card .icon { width: 18px; height: 18px; margin-top: 2px; color: var(--gold-300); }
.footer-contact-card span span { display: grid; }
.footer-contact-card b { font-size: 14px; }
.footer-contact-card small { margin-top: 2px; color: #8fb4b0; font-size: 12px; }
.footer-quick > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.footer-quick a { color: #a9c7c3; font-size: 14px; }
.footer-quick a:hover { color: var(--gold-300); }
.footer-directory { padding: 42px 0 48px; border-top: 1px solid var(--line-dark); }
.footer-directory-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.footer-directory-heading span { color: #7fa8a3; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-directory-heading h2 { margin: 6px 0 0; color: white; font-size: 28px; }
.footer-directory-heading > a { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-300); font-size: 13px; font-weight: 750; }
.footer-directory-heading .icon { width: 17px; height: 17px; }
.footer-country-groups { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 28px; }
.footer-country-group h3 { margin: 0 0 13px; color: white; font-size: 14px; letter-spacing: -.01em; }
.footer-country-links { display: grid; gap: 8px; }
.footer-country-links a { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 9px; color: #9fc0bc; font-size: 13px; line-height: 1.35; }
.footer-country-links a:hover { color: var(--gold-300); }
.footer-city-directory { padding: 42px 0 48px; border-top: 1px solid var(--line-dark); }
.footer-directory-heading.compact { margin-bottom: 22px; }
.footer-city-links { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 9px 20px; }
.footer-city-links a { display: flex; align-items: center; gap: 8px; color: #a5c4c0; font-size: 13px; }
.footer-city-links a:hover { color: var(--gold-300); }
.footer-city-links .icon { width: 15px; height: 15px; color: #789f9a; }
.footer-service-row { display: grid; grid-template-columns: 1fr .8fr 1.2fr; gap: 40px; padding: 38px 0; border-top: 1px solid var(--line-dark); }
.footer-service-row h3 { margin: 0 0 13px; color: white; font-size: 14px; }
.footer-service-row nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer-service-row a { color: #9fc0bc; font-size: 13px; }
.footer-service-row p { margin: 0; color: #82aaa5; font-size: 13px; line-height: 1.65; }
.footer-bottom { min-height: 66px; font-size: 12px; }
.mobile-cta a { font-size: 13px; }

/* Reduce inherited inline spacing from generated pages */
.split[style] { margin-top: 46px !important; }
section.section[style*="padding-top:0"] { padding-top: 20px !important; }
.article h2[style], .content-article h2[style] { margin-top: 46px !important; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 180px minmax(0,1fr) auto; }
  .brand { width: 176px; }
  .nav-link { padding-inline: 10px; font-size: 13px; }
  .footer-country-groups { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-city-links { grid-template-columns: repeat(4,minmax(0,1fr)); }
}

@media (max-width: 1040px) {
  .utility-hours { display: none; }
  .header-inner { grid-template-columns: 185px auto auto; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; justify-self: end; min-height: 44px; padding: 0 13px; border: 1px solid var(--line); border-radius: 11px; background: white; font-size: 13px; font-weight: 800; }
  .menu-toggle .icon { width: 19px; height: 19px; }
  .menu-close-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close-icon { display: inline-flex; }
  .site-nav { position: fixed; inset: 116px 0 auto; z-index: 1002; display: none; width: 100%; height: calc(100dvh - 116px); overflow-y: auto; padding: 16px 24px 110px; background: white; box-shadow: 0 24px 55px rgba(5,47,52,.16); }
  .site-nav.open { display: block; }
  .site-nav > .nav-link, .nav-item > .nav-link { width: 100%; min-height: 55px; justify-content: space-between; padding: 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav > .nav-link::after, .nav-item > .nav-link::after { display: none; }
  .nav-item { position: relative; }
  .mega-menu, .drop-menu { position: static; display: none; width: 100%; padding: 0; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-item.open > .mega-menu, .nav-item.open > .drop-menu { display: block; }
  .mega-topline { align-items: flex-start; padding: 18px 0 14px; }
  .mega-topline h2 { font-size: 24px; }
  .destination-mega-grid { grid-template-columns: 1fr; gap: 14px; padding-top: 12px; }
  .mega-regions-v10 { margin-bottom: 10px; }
  .city-menu-grid { grid-template-columns: repeat(3,minmax(0,1fr)); padding-bottom: 18px; }
  .service-drop { width: 100%; grid-template-columns: 1fr 1fr; padding: 10px 0 18px; }
  .header-call-icon { display: none; }
  .header-whatsapp { min-height: 44px; }
  .nav-backdrop { inset: 116px 0 0; }
  .footer-intro { grid-template-columns: 1fr 1fr; }
  .footer-quick { grid-column: 1 / -1; padding-left: 0; padding-top: 28px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .footer-country-groups { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-service-row { grid-template-columns: 1fr 1fr; }
  .footer-service-row > div:last-child { grid-column: 1 / -1; }
  .directory-link-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  p, li { font-size: 16px; }
  .section { padding: 58px 0; }
  .utility-bar { display: none; }
  .header-inner { min-height: 72px; grid-template-columns: 160px auto; }
  .brand { width: 158px; }
  .header-actions { display: none; }
  .site-nav { inset: 72px 0 auto; height: calc(100dvh - 72px); padding-inline: 16px; }
  .nav-backdrop { inset: 72px 0 0; }
  .mega-topline { display: grid; gap: 10px; }
  .menu-all { font-size: 13px; }
  .mega-popular-grid, .service-drop, .city-menu-grid { grid-template-columns: 1fr; }
  .mega-footer-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .home-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .home-hero-copy { padding: 54px 0 26px; text-align: left; }
  .home-hero h1 { margin-inline: 0; font-size: clamp(44px,12vw,58px); }
  .home-hero-copy > p { margin-inline: 0; font-size: 16px; }
  .hero-actions, .hero-proof { justify-content: flex-start; }
  .home-hero-photo { min-height: 340px; margin: 0 0 28px; }
  .home-hero-photo .photo-badge { left: 14px; right: 14px; bottom: 14px; }
  .hero-proof small { font-size: 11px; }
  .hero-destination-bar > a { font-size: 13px; }
  .review-visual { min-height: 390px; }
  .business-feature-inner { min-height: 0; }
  .business-feature-art { height: 360px; }
  .page-hero-inner { min-height: 0; grid-template-columns: 1fr; padding-block: 48px; }
  .page-hero h1 { font-size: clamp(39px,11vw,53px); }
  .page-hero p { font-size: 16px; }
  .hero-summary { display: block; margin-top: 10px; }
  .page-trustbar .shell { flex-direction: column; align-items: stretch; padding: 14px 0; }
  .page-trustbar span { font-size: 14px; }
  .content-layout, .internal-layout { grid-template-columns: 1fr; gap: 34px; }
  .article p, .article li, .content-article p, .content-article li { font-size: 16px; }
  .article h2 { margin-top: 40px; }
  .btn { width: 100%; justify-content: flex-start; }
  .directory-link-grid { grid-template-columns: 1fr 1fr; }
  .page-directory-head { align-items: flex-start; flex-direction: column; }
  .footer-cta { padding: 42px 0; }
  .footer-intro { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .footer-contact-card, .footer-quick { padding-left: 0; padding-top: 24px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .footer-country-groups { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-city-links { grid-template-columns: 1fr 1fr; }
  .footer-service-row { grid-template-columns: 1fr; gap: 28px; }
  .footer-service-row > div:last-child { grid-column: auto; }
  .footer-directory-heading { align-items: flex-start; flex-direction: column; }
  .footer-country-links a, .footer-city-links a, .footer-quick a { font-size: 14px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 18px; }
}

@media (max-width: 460px) {
  .shell { width: calc(100% - 24px); }
  .header-inner { grid-template-columns: 145px auto; }
  .brand { width: 145px; }
  .home-hero h1 { font-size: 43px; }
  .hero-proof { grid-template-columns: 1fr 1fr 1fr; }
  .hero-proof > span { padding-inline: 7px; }
  .directory-link-grid, .footer-country-groups, .footer-city-links { grid-template-columns: 1fr; }
  .footer-quick > div { grid-template-columns: 1fr; }
}

/* City hub directory pages */
.city-hub-intro { background: #fff; }
.city-hub-intro-grid { display: grid; grid-template-columns: minmax(0,1fr) .85fr; gap: 70px; align-items: start; }
.city-hub-intro h2 { margin: 12px 0 18px; font-size: clamp(34px,3.6vw,48px); }
.city-hub-points { display: grid; gap: 12px; }
.city-hub-points > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 14px; background: #fbfdfc; }
.city-hub-points > div > .icon { width: 42px; height: 42px; padding: 10px; border-radius: 12px; background: var(--teal-50); color: var(--teal-700); }
.city-hub-points span { display: grid; }
.city-hub-points b { font-size: 15px; }
.city-hub-points small { margin-top: 4px; color: var(--muted); font-size: 13px; }
.city-full-directory { background: #f5faf8; }
.city-country-group { margin-top: 34px; }
.city-country-group:first-of-type { margin-top: 0; }
.city-country-group h3 { margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-size: 18px; }
.city-country-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
.city-country-grid a { min-height: 58px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid #dce8e5; border-radius: 11px; background: white; font-size: 13px; font-weight: 700; line-height: 1.35; transition: .2s ease; }
.city-country-grid a:hover { border-color: #b6d5cf; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.city-country-grid .flag-frame { width: 38px; height: 26px; }
.city-hub-faq { background: var(--cream); }
.faq-two-column { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-two-column h2 { margin: 12px 0 18px; }
.cities-card-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.cities-card-grid > a { min-height: 88px; display: grid; grid-template-columns: 38px 1fr 18px; align-items: center; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: white; transition: .2s ease; }
.cities-card-grid > a:hover { border-color: #b6d5cf; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cities-card-grid > a > .icon:first-child { width: 36px; height: 36px; padding: 8px; border-radius: 10px; background: var(--teal-50); color: var(--teal-700); }
.cities-card-grid > a > span { display: grid; }
.cities-card-grid b { font-size: 15px; }
.cities-card-grid small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.cities-card-grid > a > .icon:last-child { width: 17px; height: 17px; color: var(--teal-700); }
.cities-explainer { background: var(--teal-50); border-top: 1px solid var(--line); }
.related-city-head { margin-top: 50px; }
.compact-directory { grid-template-columns: repeat(3,minmax(0,1fr)); }
.business-feature-art { overflow: hidden; border-radius: 26px 26px 0 0; align-self: end; }
.business-feature-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

@media (max-width: 1040px) {
  .city-hub-intro-grid, .faq-two-column { grid-template-columns: 1fr; gap: 40px; }
  .city-country-grid, .cities-card-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .compact-directory { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .city-country-grid, .cities-card-grid, .compact-directory { grid-template-columns: 1fr 1fr; }
  .city-country-grid a, .cities-card-grid > a { font-size: 13px; }
  .city-hub-points small { font-size: 13px; }
}
@media (max-width: 460px) {
  .city-country-grid, .cities-card-grid, .compact-directory { grid-template-columns: 1fr; }
}

/* ========================================================================== 
   V10.1 — readability, navigation and complete-directory refinements
   ========================================================================== */
body { color: var(--ink); }
.section { padding: 72px 0; }
.section-compact { padding: 54px 0; }
.section-soft { background: #f5faf8; }
.section-heading { margin-bottom: 34px; }
.section-heading p { font-size: 16px; line-height: 1.65; }
.section-kicker, .menu-kicker, .sidebar-kicker, .hero-eyebrow, .footer-cta-kicker, .eyebrow { font-size: 13px; }

/* Header and menus: larger text, cleaner alignment and controlled dropdowns. */
.utility-bar { font-size: 14px; }
.utility-inner { min-height: 40px; }
.header-inner { min-height: 80px; }
.site-nav { height: 80px; }
.nav-link { min-height: 80px; padding-inline: 13px; font-size: 15px; }
.has-drop { position: relative; }
.has-drop > .drop-menu { left: 50%; }
.destination-mega, .city-mega { top: 100%; width: min(1200px, calc(100vw - 36px)); padding: 26px 28px 24px; }
.mega-topline h2 { font-size: 29px; }
.mega-topline .menu-all { font-size: 14px; }
.mega-popular h3, .mega-regions-v10 h3 { font-size: 13px; }
.mega-popular-grid b, .mega-regions-v10 b, .service-drop b { font-size: 15px; }
.mega-popular-grid small, .mega-regions-v10 small, .service-drop small, .city-menu-grid small { font-size: 13px; }
.mega-footer-row a { font-size: 14px; }
.city-menu-grid { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 9px; }
.city-menu-grid a { min-height: 60px; padding: 10px 12px; }
.city-menu-grid b { font-size: 15px; }
.city-menu-grid .icon { width: 18px; height: 18px; }
.service-drop { width: 560px; }
.service-drop > a { min-height: 76px; }
.drop-icon { width: 42px; height: 42px; }
.drop-icon .icon { width: 21px; height: 21px; }
.header-whatsapp { font-size: 15px; }

/* Consistent flag presentation with natural aspect ratios. */
.flag-frame { width: 46px; height: 32px; padding: 2px; }
.footer-flag { width: 31px; height: 22px; padding: 1px; }
.flag-frame img, .footer-flag img { max-width: 100%; max-height: 100%; width: auto; height: auto; }
.hero-flag img, .country-label img { width: 46px; height: 32px; object-fit: contain !important; background: #fff; }
.hero-destination-bar img { width: 33px; height: 23px; object-fit: contain !important; background: #fff; }
.link-card img { width: 42px; height: 29px; object-fit: contain !important; background: #fff; }

/* Homepage spacing and card readability. */
.home-hero-grid { min-height: 560px; }
.home-hero-copy { padding: 62px 0 64px; }
.home-hero h1 { font-size: clamp(50px,5.1vw,72px); }
.home-hero-photo { min-height: 490px; margin-block: 30px; }
.hero-proof small, .destination-bar-label, .destination-card-content small, .destination-tag,
.purpose-grid small, .review-visual-card span, .process-grid > div > span, .region-grid > a > span,
.country-facts-grid span, .page-anchor-nav span, .local-service-grid > div > span,
.sidebar-info-card > span { font-size: 13px; }
.hero-destination-bar > a { font-size: 15px; }
.destination-card-content b { font-size: 25px; }
.purpose-grid small, .review-points small, .process-grid p, .region-grid small { font-size: 15px; }
.home-seo-note p { font-size: 16px; }

/* Internal pages: no tiny body copy. */
.page-hero-inner { min-height: 520px; padding-block: 64px; }
.page-hero p, .country-hero-copy > p:not(.hero-update), .local-hero-copy > p { font-size: 18px; }
.hero-summary li, .page-trustbar span, .local-trust-strip b, .local-trust-strip small,
.local-hero-address b, .local-hero-address small { font-size: 15px; }
.breadcrumbs { font-size: 14px; }
.hero-update, .country-label { font-size: 14px; }
.country-facts-grid b { font-size: 16px; }
.country-facts-grid small { font-size: 14px; }
.page-anchor-nav a { font-size: 14px; }
.article p, .article li, .content-article p, .content-article li { font-size: 17px; line-height: 1.75; }
.article .lead, .content-article .lead { font-size: 19px; }
.link-card, .city-chips a, .directory-link-grid a { font-size: 15px; }
.info-box, .notice, .faq-list summary, .faq-list details p { font-size: 16px; }
.side-card p, .sidebar-info-card p, .sidebar-contact-card p,
.local-service-grid p, .city-process p, .current-requirement-grid p,
.document-columns .document-list li, .centre-practical-card li { font-size: 15px; }
.side-card > a:not(.btn), .sidebar-links-card a, .sidebar-whatsapp, .related-link-grid b,
.related-link-grid small { font-size: 14px; }
.btn { font-size: 14px; }
.btn small { font-size: 12px; }
.city-country-grid a, .cities-card-grid b { font-size: 15px; }
.city-hub-points small, .cities-card-grid small { font-size: 14px; }

/* Country directory page. */
.directory-hero { position: relative; isolation: isolate; min-height: 500px; display: grid; align-items: end; overflow: hidden; background: var(--teal-950); color: #fff; }
.directory-hero-media { position: absolute; inset: 0; z-index: -2; }
.directory-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.directory-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(2,29,33,.94) 0%,rgba(2,38,42,.78) 52%,rgba(2,34,38,.28) 100%); }
.directory-hero-inner { padding-block: 64px 70px; }
.directory-hero h1 { max-width: 760px; margin: 15px 0 18px; color: #fff; font-size: clamp(46px,5vw,70px); }
.directory-hero p { max-width: 690px; margin: 0; color: #d2e4e1; font-size: 18px; line-height: 1.65; }
.eyebrow-light { color: #f0ca78; }
.breadcrumbs-light, .breadcrumbs-light a { color: #d2e4e1; }
.directory-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.directory-intro-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: end; }
.directory-intro-grid h2 { max-width: 650px; margin: 10px 0 0; font-size: clamp(34px,3.5vw,48px); }
.directory-intro-grid > p { margin: 0; color: var(--ink-2); font-size: 17px; line-height: 1.75; }
.region-jump { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.region-jump a { min-height: 43px; display: inline-flex; align-items: center; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--teal-800); font-size: 14px; font-weight: 750; }
.region-jump a:hover { border-color: #a9cec8; background: var(--teal-50); }
.directory-regions { border-block: 1px solid var(--line); }
.country-region-block { scroll-margin-top: 125px; padding: 52px 0; border-top: 1px solid var(--line); }
.country-region-block:first-child { padding-top: 0; border-top: 0; }
.region-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.region-heading h2 { margin: 6px 0 0; font-size: clamp(29px,3vw,40px); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-700); font-size: 15px; font-weight: 800; }
.text-link .icon { width: 18px; height: 18px; }
.country-directory-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.country-directory-card { min-height: 78px; display: grid; grid-template-columns: 46px minmax(0,1fr) 19px; align-items: center; gap: 13px; padding: 13px 15px; border: 1px solid #d7e5e2; border-radius: 14px; background: #fff; box-shadow: 0 7px 20px rgba(5,47,52,.035); transition: .2s ease; }
.country-directory-card:hover { transform: translateY(-3px); border-color: #a9cec8; box-shadow: 0 13px 30px rgba(5,47,52,.09); }
.country-directory-copy { display: grid; min-width: 0; }
.country-directory-copy strong { font-size: 16px; line-height: 1.25; }
.country-directory-copy small { margin-top: 3px; color: var(--muted); font-size: 13px; }
.card-arrow { display: inline-flex; color: var(--teal-700); }
.card-arrow .icon { width: 18px; height: 18px; }
.schengen-feature-card { min-height: 104px; display: grid; grid-template-columns: 72px minmax(0,1fr) 22px; align-items: center; gap: 18px; padding: 18px 22px; border: 1px solid #bcd8d3; border-radius: 18px; background: linear-gradient(135deg,#fff,#f0faf7); box-shadow: 0 12px 34px rgba(5,47,52,.07); }
.flag-frame-large { width: 72px; height: 50px; }
.schengen-feature-copy { display: grid; }
.schengen-feature-copy strong { font-size: 22px; }
.schengen-feature-copy small { margin-top: 5px; color: var(--muted); font-size: 15px; }
.cta-band-clean { align-items: center; }

/* Footer is a navigation hub, not fine print. */
.footer-brand > p { font-size: 15px; }
.footer-contact-card h2, .footer-quick h2 { font-size: 17px; }
.footer-contact-card b { font-size: 15px; }
.footer-contact-card small { font-size: 13px; }
.footer-quick a { font-size: 15px; }
.footer-directory-heading span { font-size: 13px; }
.footer-directory-heading h2 { font-size: 30px; }
.footer-directory-heading > a { font-size: 14px; }
.footer-country-group h3, .footer-service-row h3 { font-size: 16px; }
.footer-country-links { gap: 10px; }
.footer-country-links a { grid-template-columns: 31px 1fr; font-size: 14px; line-height: 1.45; }
.footer-city-links a, .footer-service-row a { font-size: 14px; }
.footer-service-row p { font-size: 14px; }
.footer-bottom { font-size: 13px; }
.mobile-cta a { font-size: 14px; }

@media (max-width: 1180px) {
  .nav-link { padding-inline: 10px; font-size: 14px; }
  .city-menu-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .country-directory-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 1040px) {
  .site-nav { top: auto; }
  .city-menu-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .has-drop { position: relative; }
  .has-drop > .drop-menu { left: auto; }
  .nav-link { font-size: 16px; }
  .mega-popular-grid b, .mega-regions-v10 b, .service-drop b, .city-menu-grid b { font-size: 15px; }
  .mega-popular-grid small, .mega-regions-v10 small, .service-drop small, .city-menu-grid small { font-size: 14px; }
  .country-directory-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-compact { padding: 44px 0; }
  .directory-hero { min-height: 560px; }
  .directory-hero::after { background: linear-gradient(180deg,rgba(2,29,33,.58),rgba(2,29,33,.94)); }
  .directory-hero-inner { padding-block: 48px 54px; }
  .directory-hero h1 { font-size: clamp(41px,12vw,56px); }
  .directory-hero p { font-size: 17px; }
  .directory-intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .region-heading { align-items: flex-start; flex-direction: column; }
  .country-directory-grid { grid-template-columns: 1fr 1fr; }
  .country-directory-card { min-height: 74px; grid-template-columns: 42px minmax(0,1fr); padding: 12px; }
  .country-directory-card > .card-arrow { display: none; }
  .country-directory-copy strong { font-size: 15px; }
  .country-directory-copy small { font-size: 13px; }
  .flag-frame { width: 42px; height: 29px; }
  .footer-country-links a, .footer-city-links a, .footer-quick a, .footer-service-row a { font-size: 15px; }
  .footer-service-row p { font-size: 15px; }
}
@media (max-width: 460px) {
  .country-directory-grid { grid-template-columns: 1fr; }
  .directory-hero-actions .btn { width: 100%; }
  .schengen-feature-card { grid-template-columns: 58px minmax(0,1fr); padding: 16px; }
  .schengen-feature-card > .card-arrow { display: none; }
  .flag-frame-large { width: 58px; height: 40px; }
}

/* V10.2 — remove oversized empty panels and finalise minimum text sizes. */
.review-visual { min-height: 460px; }
.business-feature-inner { min-height: 470px; }
.process-grid > div { min-height: 180px; padding: 25px; }
.region-grid > a { min-height: 215px; }
.country-hero-grid { min-height: 480px; }
.country-hero-art { min-height: 460px; }
.country-hero-photo, .local-hero-photo { min-height: 410px; }
.local-hero-grid { min-height: 500px; }
.visa-category-grid > div { min-height: 205px; }
.mistake-grid > div { min-height: 190px; }
.tab-buttons button { font-size: 14px; }
.premium-faq summary { font-size: 16px; }
.related-link-grid small { font-size: 14px; }
.related-link-grid b { font-size: 15px; }
.sidebar-links-card a { font-size: 14px; }
.local-office-actions a { font-size: 14px; }
.menu-toggle { font-size: 14px; }
.primary-action small, .secondary-action small, .sidebar-call small, .footer-call small { font-size: 12px; }

@media (max-width: 720px) {
  .review-visual { min-height: 360px; }
  .business-feature-art { height: 320px; }
  .process-grid > div { min-height: 160px; }
  .region-grid > a { min-height: 175px; }
  .country-hero-art, .country-hero-photo, .local-hero-photo { min-height: 330px; }
  .local-hero-grid { min-height: 0; }
}
.brand { height: 54px; }
.brand img { width: 100%; height: auto; max-height: 54px; object-fit: contain; object-position: left center; }
.footer-brand > a { width: 260px; }
.footer-brand img { width: 100%; height: auto; }
@media (max-width: 720px) {
  .brand { height: 46px; }
  .brand img { max-height: 46px; }
  .footer-brand > a { width: 235px; }
}

/* V10.3 — robust menu positioning at every scroll position. */
.nav-backdrop { top: var(--vg-nav-top, 120px); bottom: 0; }
@media (max-width: 1040px) {
  .site-nav {
    inset: var(--vg-nav-top, 120px) 0 0 !important;
    height: auto !important;
    max-height: none;
  }
}
@media (max-width: 720px) {
  .site-nav { inset: var(--vg-nav-top, 72px) 0 0 !important; }
}
@media (max-width: 1040px) {
  /* A filtered ancestor becomes the containing block for fixed children in Chromium. */
  .site-header { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* V10.4 — tablet layouts must collapse before sidebars become too narrow. */
@media (max-width: 900px) {
  .content-layout, .internal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
  .page-sidebar, .sidebar { order: 0; }
  .sidebar-sticky, .sidebar .side-sticky {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .local-office-section { grid-template-columns: minmax(0, 1fr); }
  .local-office-actions {
    min-width: 0;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .sidebar-sticky, .sidebar .side-sticky,
  .local-office-actions { grid-template-columns: 1fr; }
}

/* V10.5 — footer contact details remain clearly separated. */
.footer-contact-card > a > span,
.footer-contact-card > span > span { display: grid; min-width: 0; }
.footer-contact-card b,
.footer-contact-card small { overflow-wrap: anywhere; }


/* ========================================================================== 
   VisaGlobus V11 — typography, navigation, imagery and directory corrections
   ========================================================================== */
:root {
  --shell: 1320px;
  --font-body: "Segoe UI Variable", "Aptos", "Segoe UI", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Segoe UI", Arial, sans-serif;
  --text-base: 17px;
}
html { font-size: 100%; }
body { font-size: var(--text-base); line-height: 1.72; letter-spacing: .002em; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 720; letter-spacing: -.035em; }
h1 { font-size: clamp(48px,5.3vw,78px); line-height: 1.02; }
h2 { font-size: clamp(34px,3.5vw,52px); line-height: 1.08; }
h3 { font-size: 22px; }
p,li { font-size: 17px; }
small { font-size: 13px; }
.section { padding: 86px 0; }
.section-kicker,.menu-kicker,.sidebar-kicker,.hero-eyebrow,.footer-cta-kicker,.eyebrow { font-size: 13px; letter-spacing: .12em; }
.shell { width: min(var(--shell),calc(100% - 56px)); }
svg.icon { width: 1.25em; height: 1.25em; }

/* Header */
.utility-bar { font-size: 13px; }
.utility-inner { min-height: 40px; }
.utility-links { gap: 24px; }
.utility-links .icon,.utility-note .icon { width: 16px; height: 16px; }
.site-header-v11 { border-bottom: 1px solid #dce8e5; }
.site-header-v11 .header-inner { min-height: 88px; grid-template-columns: 220px minmax(0,1fr) auto; gap: 20px; }
.site-header-v11 .brand { width: 220px; height: 64px; }
.site-header-v11 .site-nav { height: 88px; gap: 0; }
.site-header-v11 .nav-link { min-height: 88px; padding: 0 15px; font-size: 15px; font-weight: 720; }
.site-header-v11 .nav-link::after { left: 15px; right: 15px; height: 3px; }
.header-call-icon { width: 46px; height: 46px; display:grid; place-items:center; border:1px solid var(--line); border-radius:13px; color:var(--teal-700); }
.header-call-icon .icon { width:21px; height:21px; }
.site-header-v11 .header-whatsapp { min-height: 46px; padding: 0 17px; font-size: 14px; border-radius: 13px; }

/* Navigation menus */
.destination-mega-v11 { width:min(1240px,calc(100vw - 44px)); padding:30px; border-radius:0 0 26px 26px; }
.mega-topline { display:flex; align-items:flex-end; justify-content:space-between; gap:28px; padding-bottom:23px; border-bottom:1px solid var(--line); }
.mega-topline h2 { margin:7px 0 0; font-size:32px; }
.menu-all { font-size:14px; }
.mega-v11-layout { display:grid; grid-template-columns:1.45fr .78fr .65fr; gap:28px; padding-top:26px; }
.mega-v11-layout h3,.mega-v11-popular>h3,.mega-v11-regions>h3 { margin:0 0 14px; font-size:15px; letter-spacing:.01em; }
.mega-popular-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.mega-popular-grid>a { min-height:76px; display:grid; grid-template-columns:44px 1fr 18px; align-items:center; gap:13px; padding:12px 14px; border:1px solid #e1ebe8; border-radius:15px; background:#fbfdfc; transition:.2s ease; }
.mega-popular-grid>a:hover { border-color:#bcd8d3; background:#fff; transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.mega-popular-grid b { font-size:15px; }
.mega-popular-grid small { color:var(--muted); font-size:13px; }
.flag-frame { width:44px; height:30px; padding:0; border:1px solid #dbe5e3; border-radius:6px; overflow:hidden; background:#fff; }
.flag-frame img,.footer-flag img,.coverage-flag img { width:100%; height:100%; object-fit:cover; }
.mega-v11-regions { display:grid; align-content:start; gap:8px; }
.mega-v11-regions>a { min-height:64px; display:grid; grid-template-columns:38px 1fr 18px; align-items:center; gap:10px; padding:10px 12px; border-radius:13px; background:var(--teal-50); }
.mega-v11-regions>a>.icon:first-child { width:38px; height:38px; padding:9px; border-radius:10px; background:#fff; color:var(--teal-700); }
.mega-v11-regions b { font-size:14px; }
.mega-v11-regions small { color:var(--muted); font-size:12px; }
.mega-v11-help { padding:23px; border-radius:20px; background:linear-gradient(150deg,#063f44,#052f34); color:#fff; }
.mega-v11-help .menu-kicker { color:#b9dcd8; }
.mega-v11-help h3 { margin:17px 0 12px; color:#fff; font-size:25px; line-height:1.15; }
.mega-v11-help p { color:#b4cfcb; font-size:14px; line-height:1.55; }
.mega-v11-help a { display:inline-flex; align-items:center; gap:8px; margin-top:12px; color:var(--gold-300); font-size:14px; font-weight:750; }
.mega-footer-row { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; margin:25px -30px -30px; border-top:1px solid var(--line); background:var(--line); }
.mega-footer-row a { min-height:54px; display:flex; align-items:center; justify-content:center; gap:9px; background:#f8fbfa; font-size:14px; font-weight:720; }
.service-drop { width:520px; padding:16px; gap:9px; }
.service-drop>a { min-height:76px; padding:12px; }
.service-drop b { font-size:15px; }
.service-drop small { font-size:13px; line-height:1.35; }
.city-mega-v11 { width:min(1120px,calc(100vw - 44px)); }
.city-menu-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; padding-top:24px; }
.city-menu-grid>a { min-height:68px; display:grid; grid-template-columns:38px 1fr 18px; align-items:center; gap:11px; padding:10px 12px; border:1px solid var(--line); border-radius:14px; background:#fbfdfc; }
.city-menu-grid b { font-size:15px; }
.city-menu-grid small { color:var(--muted); font-size:12px; }
.city-pin { width:38px; height:38px; display:grid; place-items:center; border-radius:10px; background:var(--gold-100); color:var(--gold-700); }
.city-pin .icon { width:19px; height:19px; }

/* Homepage hero with real photography */
.home-hero-v11 { position:relative; min-height:650px; padding:0; overflow:hidden; background:#05383d; }
.home-hero-image,.home-hero-overlay { position:absolute; inset:0; }
.home-hero-image img { width:100%; height:100%; object-fit:cover; object-position:center 58%; }
.home-hero-overlay { background:linear-gradient(90deg,rgba(3,34,38,.96) 0%,rgba(3,45,49,.88) 42%,rgba(3,37,41,.38) 72%,rgba(3,30,33,.25) 100%); }
.home-hero-v11 .home-hero-grid { position:relative; min-height:650px; grid-template-columns:minmax(0,.8fr) minmax(330px,.45fr); gap:80px; align-items:center; }
.home-hero-v11 .home-hero-copy { padding:92px 0; }
.home-hero-v11 h1 { max-width:800px; margin:22px 0 23px; color:#fff; font-size:clamp(54px,6vw,86px); }
.home-hero-v11 .home-hero-copy>p { max-width:690px; margin-bottom:31px; color:#d2e4e1; font-size:20px; line-height:1.6; }
.home-hero-v11 .hero-proof { margin-top:40px; }
.home-hero-v11 .hero-proof b { font-size:23px; }
.home-hero-v11 .hero-proof small { font-size:12px; }
.hero-feature-card { align-self:end; margin-bottom:58px; padding:28px; border:1px solid rgba(255,255,255,.22); border-radius:24px; background:rgba(255,255,255,.94); color:var(--ink); box-shadow:var(--shadow-lg); backdrop-filter:blur(14px); }
.feature-card-icon { width:50px; height:50px; display:grid; place-items:center; border-radius:14px; background:var(--gold-100); color:var(--gold-700); }
.feature-card-icon .icon { width:25px; height:25px; }
.hero-feature-card>small { display:block; margin-top:20px; color:var(--teal-700); font-size:13px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.hero-feature-card h2 { margin:10px 0 20px; font-size:27px; line-height:1.2; }
.hero-feature-card>a { display:inline-flex; align-items:center; gap:9px; color:var(--teal-700); font-size:15px; font-weight:760; }
.home-destination-section { background:#fff; }
.destination-bento { grid-auto-rows:280px; gap:18px; }
.destination-card { border-radius:26px; background-position:center; }
.destination-card-content small { font-size:13px; }
.destination-card-content b { font-family:var(--font-display); font-size:28px; font-weight:720; }
.destination-tag { font-size:12px; }
.purpose-grid>a { min-height:155px; grid-template-columns:48px 1fr 24px; }
.purpose-icon { width:46px; height:46px; display:grid; place-items:center; border-radius:13px; background:rgba(255,255,255,.08); color:var(--gold-300); }
.purpose-grid b { font-size:18px; }
.purpose-grid small { font-size:14px; }
.review-copy>p { font-size:18px; }
.review-points small { font-size:14px; }
.home-city-section { background:var(--cream); }
.home-city-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.home-city-grid>a { min-height:78px; display:grid; grid-template-columns:44px 1fr 20px; align-items:center; gap:14px; padding:14px 16px; border:1px solid var(--line); border-radius:16px; background:#fff; transition:.2s ease; }
.home-city-grid>a:hover { transform:translateY(-2px); box-shadow:var(--shadow-sm); border-color:#bfd8d4; }
.home-city-grid>a>span:first-child { width:44px; height:44px; display:grid; place-items:center; border-radius:12px; background:var(--teal-50); color:var(--teal-700); }
.home-city-grid b { font-size:16px; }
.home-city-grid small { color:var(--muted); font-size:13px; }
.process-grid>div p { font-size:15px; }

/* Internal pages */
.page-hero-inner { min-height:520px; padding-block:72px; grid-template-columns:minmax(0,1fr) 370px; gap:58px; }
.page-hero-bg::after { background:linear-gradient(90deg,rgba(4,38,42,.96),rgba(4,49,53,.75) 58%,rgba(4,45,49,.45)); }
.page-hero h1 { font-size:clamp(48px,5vw,72px); line-height:1.04; }
.page-hero p { font-size:18px; line-height:1.7; }
.breadcrumbs { font-size:14px; }
.hero-summary { padding:26px; }
.hero-summary h2 { font-size:22px; }
.hero-summary li { font-size:15px; }
.content-layout,.internal-layout { grid-template-columns:minmax(0,1fr) 350px; gap:58px; }
.article p,.article li,.content-article p,.content-article li { font-size:17px; line-height:1.76; }
.article h2,.content-article h2 { margin-top:52px; font-size:clamp(32px,3vw,45px); }
.article h3,.content-article h3 { font-size:22px; }
.info-box,.mini-card,.side-card,.sidebar-contact-card,.sidebar-info-card,.sidebar-links-card { font-size:16px; }
.info-box p,.mini-card p,.side-card p,.sidebar-contact-card p { font-size:16px; }
.check-list li { font-size:17px; }
.faq-list summary { font-size:17px; }
.faq-list p { font-size:16px; }
.cta-pair .btn { font-size:15px; }

/* Country to city links above footer */
.country-city-coverage { padding:74px 0; border-top:1px solid var(--line); background:linear-gradient(180deg,#f7faf9,#eef6f4); }
.country-city-coverage-head { display:grid; grid-template-columns:1.15fr .85fr; align-items:end; gap:60px; margin-bottom:30px; }
.country-city-title-wrap { display:flex; align-items:center; gap:19px; }
.coverage-flag { width:72px; height:48px; flex:0 0 auto; overflow:hidden; border:1px solid #d2dfdc; border-radius:9px; box-shadow:0 8px 22px rgba(5,47,52,.1); }
.country-city-coverage-head h2 { margin:8px 0 0; font-size:clamp(31px,3vw,44px); }
.country-city-coverage-head>p { margin:0; font-size:16px; }
.country-city-coverage-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:11px; }
.country-city-coverage-grid>a { min-height:72px; display:grid; grid-template-columns:38px 1fr 18px; align-items:center; gap:11px; padding:12px 13px; border:1px solid #d7e5e2; border-radius:14px; background:#fff; transition:.2s ease; }
.country-city-coverage-grid>a:hover { transform:translateY(-2px); border-color:#b9d5d0; box-shadow:var(--shadow-sm); }
.coverage-pin { width:38px; height:38px; display:grid; place-items:center; border-radius:10px; background:var(--gold-100); color:var(--gold-700); }
.coverage-pin .icon { width:18px; height:18px; }
.country-city-coverage-grid b { display:block; font-size:15px; line-height:1.3; }
.country-city-coverage-grid small { display:block; margin-top:2px; color:var(--muted); font-size:12px; }
.country-city-coverage-grid>a>.icon { width:17px; height:17px; color:var(--teal-700); }
.country-city-coverage-actions { display:flex; gap:14px; margin-top:24px; }
.country-city-coverage-actions>a { display:inline-flex; align-items:center; gap:8px; color:var(--teal-700); font-size:15px; font-weight:760; }

/* Footer with readable full directories */
.footer-cta { padding:54px 0; background:linear-gradient(120deg,#d8b463,#c99235); }
.footer-cta-copy h2 { font-size:clamp(34px,3.4vw,48px); }
.footer-cta-copy p { color:#27494c; font-size:16px; }
.footer-call,.footer-wa { font-size:15px; }
.footer-call small { font-size:12px; }
.footer-call b { font-size:15px; }
.site-footer-v11 { background:#03292d; }
.site-footer-v11 .footer-intro { grid-template-columns:1.15fr 1fr .9fr; gap:54px; padding:66px 0 50px; }
.site-footer-v11 .footer-brand>a { width:245px; }
.site-footer-v11 .footer-brand>p { font-size:15px; line-height:1.72; }
.footer-social-note { display:flex; align-items:center; gap:9px; margin-top:22px; color:#87aaa6; font-size:13px; }
.footer-social-note .icon { color:var(--gold-300); }
.footer-contact-card h2,.footer-quick h2 { font-size:17px; }
.footer-contact-card b { font-size:15px; }
.footer-contact-card small { font-size:13px; }
.footer-quick a { font-size:15px; }
.footer-directory { padding:48px 0 54px; }
.footer-directory-heading h2 { font-size:31px; }
.footer-directory-heading>div>span { font-size:13px; }
.footer-directory-heading>a { font-size:14px; }
.footer-country-groups { grid-template-columns:repeat(5,1fr); gap:32px; }
.footer-country-group h3 { font-size:16px; }
.footer-country-links { gap:10px; }
.footer-country-links a { grid-template-columns:32px 1fr; gap:10px; font-size:14px; line-height:1.4; }
.footer-flag { width:32px; height:22px; border:1px solid rgba(255,255,255,.16); border-radius:4px; overflow:hidden; }
.footer-city-links { grid-template-columns:repeat(5,1fr); gap:11px 22px; }
.footer-city-links a { font-size:14px; }
.footer-city-links .icon { width:17px; height:17px; }
.footer-service-row h3 { font-size:16px; }
.footer-service-row a,.footer-service-row p { font-size:14px; }
.footer-bottom { min-height:72px; font-size:13px; }

@media (max-width:1240px) {
  .site-header-v11 .header-inner { grid-template-columns:190px minmax(0,1fr) auto; }
  .site-header-v11 .brand { width:190px; }
  .site-header-v11 .nav-link { padding:0 11px; font-size:14px; }
  .mega-v11-layout { grid-template-columns:1.5fr .8fr; }
  .mega-v11-help { display:none; }
  .country-city-coverage-grid { grid-template-columns:repeat(3,1fr); }
  .footer-country-groups { grid-template-columns:repeat(3,1fr); }
  .footer-city-links { grid-template-columns:repeat(4,1fr); }
}
@media (max-width:1040px) {
  .utility-bar { display:none; }
  .site-header-v11 .header-inner { min-height:76px; grid-template-columns:190px auto; }
  .site-header-v11 .brand { width:190px; height:58px; }
  .site-header-v11 .header-actions { display:none; }
  .site-header-v11 .menu-toggle { display:inline-flex; justify-self:end; align-items:center; gap:8px; min-height:46px; padding:0 14px; border:1px solid var(--line); border-radius:12px; background:#fff; font-size:15px; font-weight:750; }
  .site-header-v11 .site-nav { position:fixed; top:var(--vg-nav-top,76px); left:0; right:0; bottom:0; z-index:1100; display:none; height:auto; padding:12px 20px 100px; overflow:auto; background:#fff; }
  .site-header-v11 .site-nav.open { display:block; }
  .site-header-v11 .nav-link { width:100%; min-height:58px; justify-content:space-between; padding:0 3px; border-bottom:1px solid var(--line); font-size:17px; }
  .site-header-v11 .nav-link::after { display:none; }
  .site-header-v11 .mega-menu,.site-header-v11 .drop-menu { position:static; width:100%; padding:0; border:0; border-radius:0; box-shadow:none; opacity:1; visibility:visible; transform:none; display:none; }
  .site-header-v11 .nav-item.open>.mega-menu,.site-header-v11 .nav-item.open>.drop-menu { display:block; }
  .mega-topline { align-items:flex-start; flex-direction:column; padding:20px 0 14px; }
  .mega-topline h2 { font-size:27px; }
  .mega-v11-layout { grid-template-columns:1fr; gap:22px; padding-top:10px; }
  .mega-popular-grid { grid-template-columns:1fr 1fr; }
  .mega-v11-regions { grid-template-columns:1fr 1fr; }
  .mega-footer-row { margin:20px 0 0; grid-template-columns:1fr; }
  .service-drop { grid-template-columns:1fr 1fr; }
  .city-menu-grid { grid-template-columns:1fr 1fr; }
  .home-hero-v11 .home-hero-grid { grid-template-columns:1fr; gap:0; }
  .hero-feature-card { max-width:500px; align-self:auto; margin:0 0 60px; }
  .country-city-coverage-head { grid-template-columns:1fr; gap:20px; }
  .country-city-coverage-grid { grid-template-columns:repeat(2,1fr); }
  .site-footer-v11 .footer-intro { grid-template-columns:1fr 1fr; }
  .footer-quick { grid-column:1/-1; }
  .footer-country-groups { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:720px) {
  .shell { width:min(100% - 32px,var(--shell)); }
  body { font-size:16px; }
  p,li { font-size:16px; }
  .section { padding:62px 0; }
  h1 { font-size:clamp(42px,12vw,58px); }
  h2 { font-size:clamp(31px,9vw,43px); }
  .home-hero-v11 { min-height:0; }
  .home-hero-v11 .home-hero-grid { min-height:0; }
  .home-hero-v11 .home-hero-copy { padding:72px 0 34px; }
  .home-hero-v11 h1 { font-size:clamp(45px,13vw,62px); }
  .home-hero-v11 .home-hero-copy>p { font-size:18px; }
  .hero-actions { align-items:stretch; flex-direction:column; }
  .primary-action,.secondary-action { width:100%; }
  .hero-proof { flex-wrap:wrap; gap:18px 0; }
  .hero-proof>span { min-width:50%; padding:0 18px; }
  .hero-proof>span:nth-child(3) { padding-left:0; border-left:0; }
  .hero-feature-card { margin-bottom:40px; }
  .destination-bento { grid-template-columns:1fr; grid-auto-rows:240px; }
  .destination-card-featured { grid-row:span 1; }
  .visa-purpose-layout,.review-layout { grid-template-columns:1fr; gap:36px; }
  .purpose-intro { position:static; }
  .purpose-grid { grid-template-columns:1fr; }
  .home-city-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .page-hero-inner { min-height:0; grid-template-columns:1fr; padding-block:52px; }
  .page-hero h1 { font-size:clamp(42px,11vw,58px); }
  .page-hero p { font-size:17px; }
  .content-layout,.internal-layout { grid-template-columns:1fr; gap:34px; }
  .country-city-coverage { padding:58px 0; }
  .country-city-title-wrap { align-items:flex-start; }
  .country-city-coverage-grid { grid-template-columns:1fr; }
  .country-city-coverage-actions { flex-direction:column; }
  .site-footer-v11 .footer-intro { grid-template-columns:1fr; gap:30px; }
  .footer-country-groups { grid-template-columns:1fr 1fr; gap:28px 22px; }
  .footer-city-links { grid-template-columns:1fr 1fr; }
  .footer-service-row { grid-template-columns:1fr; }
  .footer-cta-inner,.footer-cta-actions { align-items:stretch; flex-direction:column; }
  .footer-call,.footer-wa { justify-content:center; }
}
@media (max-width:480px) {
  .mega-popular-grid,.mega-v11-regions,.service-drop,.city-menu-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .footer-country-groups,.footer-city-links { grid-template-columns:1fr; }
  .coverage-flag { width:60px; height:40px; }
}

/* V11 final readability pass: remove inherited micro-text from older page modules. */
.header-phone small,
.primary-action small,
.secondary-action small,
.hero-floating-note small,
.destination-bar-label,
.destination-tag,
.destination-card-content small,
.purpose-grid > a > span,
.purpose-grid small,
.review-visual-card span,
.review-points > div > span,
.review-points small,
.process-grid > div > span,
.region-grid > a > span,
.region-grid small,
.breadcrumbs,
.country-label,
.hero-update,
.country-hero-card > span,
.country-hero-card small,
.country-facts-grid span,
.country-facts-grid small,
.page-anchor-nav span,
.page-anchor-nav a,
.category-help > span,
.numbered-process li > span,
.official-update span,
.official-update a,
.tab-buttons button,
.current-requirement-head span,
.current-requirement-card > a,
.mistake-grid span,
.related-link-grid small,
.legal-notice,
.sidebar-call small,
.sidebar-info-card > span,
.local-route-card > span,
.local-route-card ol,
.local-hero-address small,
.trust-mark,
.local-trust-strip small,
.local-service-grid > div > span,
.city-process > div > span,
.alert-label,
.delhi-alert a,
.centre-address-card > span,
.centre-address-card a,
.office-meta span,
.local-office-actions a:first-child small,
.footer-disclaimer,
.notice,
.side-card > a:not(.btn),
.btn small,
.city-chips a,
.page-trustbar span {
  font-size: 13px;
  line-height: 1.45;
}
.sidebar-whatsapp,
.sidebar-links-card a,
.document-columns .document-list li,
.centre-practical-card li,
.local-office-actions a,
.link-card,
.side-card p,
.btn,
.faq-list summary {
  font-size: 15px;
}
.local-service-grid p,
.city-process p,
.centre-address-card p,
.local-office-copy p,
.sidebar-contact-card p,
.sidebar-info-card p,
.current-requirement-grid p,
.visa-category-grid p,
.mistake-grid p,
.consultant-support li {
  font-size: 16px;
  line-height: 1.7;
}
.article-section { padding-top: 58px; }
.article-section + .article-section { padding-top: 58px; }
.page-directory-section { padding: 68px 0; }
.directory-link-grid a { font-size: 15px; }
.directory-link-grid a span:last-child { line-height: 1.35; }

/* ======================================================================
   V13 FINAL HEADER / MENU / LOGO SAFETY PASS
   Prevents desktop dropdowns from leaving the viewport, keeps mobile
   accordions inside the screen, and gives both logo files breathing room.
   ====================================================================== */
html, body { max-width: 100%; overflow-x: clip; }
.site-header-v11, .site-header-v11 .header-inner, .site-header-v11 .site-nav { min-width: 0; }
.site-header-v11 .brand {
  width: 220px;
  height: 64px;
  min-width: 0;
  overflow: visible;
  padding: 4px 0;
}
.site-header-v11 .brand img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}
.site-footer-v11 .footer-brand > a {
  display: block;
  width: 270px;
  max-width: 100%;
  overflow: visible;
  padding: 4px 0;
}
.site-footer-v11 .footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 1041px) {
  .site-header-v11 .header-inner {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr) auto;
    gap: clamp(14px, 1.5vw, 24px);
  }
  .site-header-v11 .site-nav {
    min-width: 0;
    justify-content: center;
  }
  .site-header-v11 .nav-link {
    padding-inline: clamp(8px, .82vw, 13px);
    font-size: 15px;
  }
  .site-header-v11 .mega-menu,
  .site-header-v11 .drop-menu {
    max-width: calc(100vw - 32px);
    max-height: calc(100dvh - var(--vg-nav-top, 128px) - 16px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
  .site-header-v11 .destination-mega,
  .site-header-v11 .city-mega {
    width: min(1240px, calc(100vw - 32px));
  }
  .site-header-v11 .service-drop {
    max-height: calc(100dvh - var(--vg-nav-top, 128px) - 16px);
  }
}

@media (max-width: 1240px) and (min-width: 1041px) {
  .site-header-v11 .brand { width: 190px; height: 58px; }
  .site-header-v11 .header-inner { grid-template-columns: 190px minmax(0, 1fr) auto; gap: 13px; }
  .site-header-v11 .nav-link { padding-inline: 8px; font-size: 14px; }
  .site-header-v11 .header-whatsapp { padding-inline: 13px; }
}

@media (max-width: 1040px) {
  .site-header-v11 .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(0, 190px) auto;
    gap: 18px;
  }
  .site-header-v11 .brand {
    width: min(190px, calc(100vw - 150px));
    height: 58px;
    padding: 4px 0;
  }
  .site-header-v11 .site-nav {
    position: fixed !important;
    inset: var(--vg-nav-top, 76px) 0 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    padding: 12px max(18px, env(safe-area-inset-right)) calc(100px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  }
  .site-header-v11 .mega-menu,
  .site-header-v11 .drop-menu,
  .site-header-v11 .nav-item.open > .mega-menu,
  .site-header-v11 .nav-item.open > .drop-menu {
    position: static !important;
    inset: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding-left: 0;
    padding-right: 0;
    overflow: visible !important;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
  }
  .site-header-v11 .mega-topline,
  .site-header-v11 .mega-v11-layout,
  .site-header-v11 .mega-footer-row,
  .site-header-v11 .city-menu-grid,
  .site-header-v11 .service-drop {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .site-header-v11 .mega-popular-grid > a,
  .site-header-v11 .mega-v11-regions > a,
  .site-header-v11 .city-menu-grid > a,
  .site-header-v11 .service-drop > a {
    min-width: 0;
  }
  .site-header-v11 .mega-popular-grid > a > span:nth-child(2),
  .site-header-v11 .city-menu-grid > a > span:nth-child(2),
  .site-header-v11 .service-drop > a > span:nth-child(2) {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .site-header-v11 .header-inner {
    min-height: 72px;
    grid-template-columns: minmax(0, 176px) auto;
    gap: 12px;
  }
  .site-header-v11 .brand {
    width: min(176px, calc(100vw - 132px));
    height: 54px;
  }
  .site-header-v11 .menu-toggle {
    min-height: 44px;
    padding: 0 12px;
    font-size: 15px;
  }
  .site-header-v11 .site-nav {
    inset: var(--vg-nav-top, 72px) 0 0 !important;
    padding-inline: 16px;
  }
  .site-header-v11 .mega-topline { gap: 8px; }
  .site-header-v11 .mega-topline h2 { font-size: 25px; }
  .site-header-v11 .menu-all { font-size: 14px; }
  .site-footer-v11 .footer-brand > a { width: min(250px, 100%); }
}

@media (max-width: 380px) {
  .site-header-v11 .header-inner { grid-template-columns: minmax(0, 156px) auto; }
  .site-header-v11 .brand { width: min(156px, calc(100vw - 126px)); height: 50px; }
  .site-header-v11 .menu-toggle { padding-inline: 10px; }
}

/* V13 desktop dropdown compaction: keeps the complete destination menu visible
   on common 1280x720 and 1366x768 laptop screens without clipping. */
@media (min-width: 1041px) {
  .site-header-v11 .destination-mega-v11 { padding: 22px; }
  .site-header-v11 .destination-mega-v11 .mega-topline { gap: 22px; padding-bottom: 16px; }
  .site-header-v11 .destination-mega-v11 .mega-topline h2 { margin-top: 5px; font-size: 29px; }
  .site-header-v11 .destination-mega-v11 .mega-v11-layout { gap: 22px; padding-top: 18px; }
  .site-header-v11 .destination-mega-v11 .mega-v11-layout h3,
  .site-header-v11 .destination-mega-v11 .mega-v11-popular > h3,
  .site-header-v11 .destination-mega-v11 .mega-v11-regions > h3 { margin-bottom: 10px; }
  .site-header-v11 .destination-mega-v11 .mega-popular-grid { gap: 8px; }
  .site-header-v11 .destination-mega-v11 .mega-popular-grid > a {
    min-height: 68px;
    padding: 9px 12px;
  }
  .site-header-v11 .destination-mega-v11 .mega-v11-regions { gap: 7px; }
  .site-header-v11 .destination-mega-v11 .mega-v11-regions > a {
    min-height: 56px;
    padding: 8px 10px;
  }
  .site-header-v11 .destination-mega-v11 .mega-v11-regions > a > .icon:first-child {
    width: 34px;
    height: 34px;
    padding: 8px;
  }
  .site-header-v11 .destination-mega-v11 .mega-v11-help { padding: 19px; }
  .site-header-v11 .destination-mega-v11 .mega-v11-help h3 { margin: 13px 0 9px; font-size: 22px; }
  .site-header-v11 .destination-mega-v11 .mega-v11-help p { margin-bottom: 0; line-height: 1.48; }
  .site-header-v11 .destination-mega-v11 .mega-v11-help a { margin-top: 9px; }
  .site-header-v11 .destination-mega-v11 .mega-footer-row {
    margin: 18px -22px -22px;
  }
  .site-header-v11 .destination-mega-v11 .mega-footer-row a { min-height: 48px; }
}

/* ======================================================================
   V13.1 DESKTOP HOVER STABILITY
   Keeps desktop dropdown/mega menus stationary and open while the pointer
   moves between the navigation trigger and the submenu.
   ====================================================================== */
@media (min-width: 1041px) {
  .site-header-v11 .nav-item > .mega-menu,
  .site-header-v11 .nav-item > .drop-menu {
    transform: translate(-50%, 0) !important;
    pointer-events: none;
    transition: opacity .14s ease, visibility 0s linear .14s !important;
  }

  .site-header-v11 .nav-item.open > .mega-menu,
  .site-header-v11 .nav-item.open > .drop-menu,
  .site-header-v11 .nav-item:hover > .mega-menu,
  .site-header-v11 .nav-item:hover > .drop-menu,
  .site-header-v11 .nav-item:focus-within > .mega-menu,
  .site-header-v11 .nav-item:focus-within > .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) !important;
    pointer-events: auto;
    transition-delay: 0s !important;
  }

  /* The Visa Types dropdown is positioned from its own nav item. */
  .site-header-v11 .has-drop > .drop-menu,
  .site-header-v11 .has-drop.open > .drop-menu,
  .site-header-v11 .has-drop:hover > .drop-menu,
  .site-header-v11 .has-drop:focus-within > .drop-menu {
    left: 50%;
  }
}
