:root {
  --blue: #004aad;
  --blue-strong: #003986;
  --gold: #fbb03b;
  --gold-soft: #fff4dc;
  --ink: #070b12;
  --muted: #5b6473;
  --line: #e4e8ef;
  --surface: #ffffff;
  --surface-blue: #eef5ff;
  --shadow: 0 24px 70px rgba(0, 33, 78, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfcff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 8px 24px;
  background: rgba(251, 252, 255, 0.88);
  border-bottom: 1px solid rgba(0, 74, 173, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(0, 20, 50, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 82px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #253044;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav > a::after,
.nav-dropdown-trigger::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::before {
  order: 2;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(118px, 1fr));
  gap: 6px;
  min-width: 290px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 33, 78, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(14px);
}

.nav-dropdown-menu-wide {
  min-width: 360px;
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 11px;
  color: #1a2638;
  background: #f6f9ff;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  color: #07101f;
  background: var(--gold);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button.primary {
  color: #06101f;
  background: var(--gold);
  box-shadow: 0 14px 30px rgba(251, 176, 59, 0.32);
}

.button.ghost {
  color: var(--blue);
  background: #ffffff;
  border-color: rgba(0, 74, 173, 0.22);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.section,
.section-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading h2,
.hero h1,
.contact h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading h2,
.contact h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-heading p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.95) 0 10%, transparent 30%),
    radial-gradient(circle at 78% 22%, rgba(251, 176, 59, 0.34) 0 8%, transparent 32%),
    radial-gradient(circle at 58% 72%, rgba(0, 74, 173, 0.38) 0 14%, transparent 42%),
    linear-gradient(135deg, #f9fcff 0%, #e4f3ff 28%, #b8ddff 57%, #f5e0b1 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: 56px;
  max-width: var(--max);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.hero::before {
  position: absolute;
  inset: 0;
  height: 100%;
  content: "";
  background: linear-gradient(102deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.36) 52%, rgba(255, 255, 255, 0.08) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 0 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: -18% -10%;
  content: "";
  background:
    linear-gradient(118deg, transparent 0 24%, rgba(255, 255, 255, 0.42) 32%, transparent 44%),
    linear-gradient(142deg, transparent 0 48%, rgba(0, 74, 173, 0.16) 56%, transparent 72%),
    radial-gradient(ellipse at 84% 8%, rgba(255, 255, 255, 0.7), transparent 36%);
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.25rem, 3.8vw, 4.85rem);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #3e4858;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 74, 173, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 26, 62, 0.08);
}

.hero-stats dt {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.hero-photo {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(520px, 88vw);
  aspect-ratio: 0.92;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit {
  position: absolute;
  inset: 44px 18px;
  border: 1px solid rgba(0, 74, 173, 0.16);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(251, 176, 59, 0.16);
}

.orbit span:nth-child(1) {
  top: 12%;
  left: 18%;
}

.orbit span:nth-child(2) {
  right: 8%;
  top: 46%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(0, 74, 173, 0.12);
}

.orbit span:nth-child(3) {
  bottom: 10%;
  left: 38%;
}

.journey-panel {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 3;
  width: min(310px, 82vw);
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.journey-panel p {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 900;
}

.journey-panel ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #263246;
  font-weight: 750;
}

.journey-panel span {
  display: inline-grid;
  flex: 0 0 34px;
  height: 30px;
  place-items: center;
  color: #07101f;
  background: var(--gold-soft);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-flight {
  min-height: calc(100vh - 58px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 14, 31, 0.88) 0%, rgba(3, 14, 31, 0.62) 42%, rgba(3, 14, 31, 0.14) 100%),
    url("assets/hero-flight-skyline.png") center / cover no-repeat;
}

.hero-flight::before,
.hero-flight::after {
  display: none;
}

.hero-flight .hero-inner {
  grid-template-columns: 1fr;
  min-height: calc(100vh - 58px);
  padding-top: 92px;
  padding-bottom: 110px;
}

.hero-flight .hero-copy {
  max-width: 660px;
}

.hero-flight .eyebrow {
  color: var(--gold);
}

.hero-flight h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(2.7rem, 3.4vw, 4.8rem);
  line-height: 1.02;
}

.hero-flight .hero-lede {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.hero-flight .button.ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

.hero-badges span {
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: -20px auto 0;
  padding: 18px 24px;
  color: #ffffff;
  background: var(--blue);
}

.trust-strip p {
  margin: 0;
  font-weight: 850;
}

.trust-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.trust-strip span {
  padding: 7px 11px;
  color: #07101f;
  background: var(--gold);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: stretch;
}

.about-text {
  color: #3f4858;
  font-size: 1.08rem;
}

.about-text p:first-child {
  margin-top: 0;
}

.process-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.process-rail article,
.service-card,
.testimonial-card,
.blog-card,
.country-card,
.timeline article,
.faq details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(2, 28, 70, 0.07);
}

.process-rail article {
  position: relative;
  min-height: auto;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.process-rail article::after {
  position: absolute;
  right: -54px;
  top: -54px;
  width: 132px;
  height: 132px;
  content: "";
  background: radial-gradient(circle, rgba(0, 74, 173, 0.18), transparent 68%);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.process-rail article:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
  border-left-color: var(--blue);
  box-shadow: 0 22px 54px rgba(0, 74, 173, 0.16);
}

.process-rail article:hover::after {
  opacity: 1;
  transform: scale(1);
}

.process-rail span,
.service-card span,
.blog-card p {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-rail h3,
.service-card h3,
.timeline h3,
.blog-card h3 {
  margin: 6px 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.process-rail p,
.service-card p,
.timeline p,
.blog-card p,
.testimonial-card blockquote {
  color: var(--muted);
}

.process-rail p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.38;
}

.about-photo {
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.countries {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background: #07101f;
}

.countries .section-heading,
.countries .country-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.countries h2,
.countries .section-heading p:last-child {
  color: #ffffff;
}

.countries .eyebrow {
  color: var(--gold);
}

.country-grid,
.service-grid,
.testimonial-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.country-card {
  position: relative;
  min-height: 178px;
  padding: 28px 22px 22px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 21, 43, 0.92) 0%, rgba(7, 29, 61, 0.9) 54%, rgba(7, 29, 61, 0.66) 100%),
    radial-gradient(circle at 100% 100%, rgba(251, 176, 59, 0.18), transparent 42%),
    linear-gradient(135deg, #0d4a91 0%, #082a57 52%, #061325 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  isolation: isolate;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.country-card::after {
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 190px;
  height: 190px;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  border-radius: 50%;
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
  z-index: -1;
}

.country-card:hover::after {
  transform: scale(1.18);
  opacity: 0.7;
}

.country-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 176, 59, 0.62);
  box-shadow: 0 24px 58px rgba(0, 74, 173, 0.28);
  background:
    linear-gradient(90deg, rgba(6, 21, 43, 0.88) 0%, rgba(7, 38, 80, 0.86) 54%, rgba(7, 38, 80, 0.6) 100%),
    radial-gradient(circle at 100% 100%, rgba(251, 176, 59, 0.24), transparent 44%),
    linear-gradient(135deg, #115aa8 0%, #0a376f 50%, #061325 100%);
}

.country-flag {
  position: absolute;
  right: -26px;
  bottom: -18px;
  width: 132px;
  max-width: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.26;
  transform: rotate(-4deg) scale(1);
  transform-origin: center;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: -1;
  filter: saturate(1.16) drop-shadow(0 16px 24px rgba(0, 0, 0, 0.24));
}

.country-card:hover .country-flag {
  opacity: 0.42;
  transform: rotate(0deg) scale(1.05);
}

.country-card strong {
  display: block;
  margin-top: 34px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.country-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.45;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background:
    radial-gradient(circle at 90% 16%, rgba(251, 176, 59, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eaf5ff 52%, #ffffff 100%);
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

.services-content .section-heading {
  margin-bottom: 28px;
}

.services-content .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.service-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card span {
  width: max-content;
  padding: 6px 10px;
  color: #07101f;
  background: var(--gold);
  border-radius: 6px;
}

.service-card a,
.blog-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 74, 173, 0.22);
  box-shadow: 0 22px 54px rgba(0, 74, 173, 0.14);
}

.services-photo {
  position: relative;
  height: 100%;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(6, 19, 37, 0.76) 100%);
  z-index: 1;
}

.services-photo img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.services-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  padding: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.services-photo strong,
.services-photo span {
  display: block;
}

.services-photo strong {
  font-size: 1.15rem;
}

.services-photo span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
}

.visit-visa {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background:
    linear-gradient(90deg, rgba(3, 14, 31, 0.92) 0%, rgba(6, 36, 76, 0.82) 48%, rgba(0, 74, 173, 0.56) 100%),
    url("assets/visit-visa-background.png") center / cover no-repeat;
}

.visit-visa::after {
  position: absolute;
  right: -78px;
  bottom: -96px;
  width: 310px;
  height: 310px;
  content: "";
  background:
    radial-gradient(circle, transparent 48%, rgba(255, 255, 255, 0.16) 49%, rgba(255, 255, 255, 0.16) 50%, transparent 51%),
    radial-gradient(circle, transparent 32%, rgba(251, 176, 59, 0.22) 33%, rgba(251, 176, 59, 0.22) 34%, transparent 35%);
  border-radius: 50%;
  pointer-events: none;
}

.visit-visa-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.visit-visa h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.visit-visa-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.visit-visa .eyebrow {
  color: var(--gold);
}

.visit-visa-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.visit-visa-points span {
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.visit-visa-card {
  padding: 28px;
  color: #10233d;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.visit-visa-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.45rem;
}

.visit-visa-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}

.visit-visa-card li {
  position: relative;
  padding-left: 24px;
  color: #40516b;
}

.visit-visa-card li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(251, 176, 59, 0.18);
}

.apply-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background:
    radial-gradient(circle at 18% 10%, rgba(251, 176, 59, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fff8ea 100%);
}

.apply-heading,
.apply-steps {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.apply-heading {
  margin-bottom: 40px;
  text-align: center;
}

.apply-heading .eyebrow {
  justify-content: center;
}

.apply-heading h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.apply-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.apply-steps::before {
  position: absolute;
  top: 118px;
  right: 8%;
  left: 8%;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 74, 173, 0.12);
}

.apply-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.apply-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(135deg, var(--blue) 0%, #073267 66%, #07192f 100%);
  border: 3px solid rgba(251, 176, 59, 0.7);
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 74, 173, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.apply-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.apply-step span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--blue);
  background: #ffffff;
  border: 7px solid #edf1f6;
  border-top-color: var(--gold);
  border-right-color: var(--blue);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0, 74, 173, 0.12);
  font-size: 1.6rem;
  font-weight: 900;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.apply-step h3 {
  max-width: 150px;
  margin: 0;
  color: #4f5663;
  font-size: 1.25rem;
  line-height: 1.18;
}

.apply-step:hover span {
  transform: translateY(-5px) rotate(8deg);
  box-shadow: 0 22px 42px rgba(0, 74, 173, 0.2);
}

.apply-step:hover .apply-icon {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.26), transparent 32%),
    linear-gradient(135deg, var(--gold) 0%, #f3a21f 44%, var(--blue) 100%);
  box-shadow: 0 24px 44px rgba(0, 74, 173, 0.24);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  margin: 0;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(135deg, #fff8ea 0%, #ffe5ad 54%, #fbb03b 100%);
  border-color: rgba(251, 176, 59, 0.35);
  box-shadow: 0 18px 46px rgba(251, 176, 59, 0.18);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.testimonial-card blockquote {
  margin: 0;
  color: #213047;
  font-size: 1.05rem;
}

.testimonial-card figcaption {
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 74, 173, 0.26);
  box-shadow: 0 24px 58px rgba(251, 176, 59, 0.28);
}

.blogs {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background: var(--surface-blue);
}

.blogs .section-heading,
.blog-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  min-height: 235px;
  padding: 28px;
}

.blog-card h3 {
  font-size: 1.45rem;
}

.blog-card p {
  margin: 0;
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.faq .section-heading {
  position: relative;
  z-index: 1;
}

.faq details {
  padding: 20px 24px;
}

.faq summary {
  cursor: pointer;
  color: #152033;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: start;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.9) 0 10%, transparent 30%),
    radial-gradient(circle at 78% 22%, rgba(251, 176, 59, 0.28) 0 8%, transparent 32%),
    radial-gradient(circle at 58% 72%, rgba(0, 74, 173, 0.36) 0 14%, transparent 42%),
    linear-gradient(135deg, #f9fcff 0%, #e4f3ff 28%, #b8ddff 57%, #f5e0b1 100%);
}

.contact > * {
  position: relative;
  z-index: 1;
}

.contact-copy p {
  color: #28405f;
  font-size: 1.08rem;
}

.contact .eyebrow,
.contact-copy h2 {
  color: #06192f;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 74, 173, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(0, 74, 173, 0.09);
  backdrop-filter: blur(16px);
}

.contact-info-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
}

.contact-info-icon.is-blue {
  color: var(--blue);
  background: rgba(0, 74, 173, 0.08);
}

.contact-info-icon.is-gold {
  color: #d98200;
  background: rgba(251, 176, 59, 0.12);
}

.contact-info-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.contact-info-card h3 {
  margin: 0 0 4px;
  color: #06192f;
  font-size: 1.08rem;
}

.contact-info-card p {
  margin: 0;
  color: #28405f;
  font-size: 0.98rem;
  line-height: 1.48;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(0, 74, 173, 0.18);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #10233d;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8deea;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.12);
}

.blogs::before,
.faq::before,
.contact::before {
  position: absolute;
  right: clamp(28px, 7vw, 120px);
  bottom: clamp(24px, 8vw, 90px);
  width: clamp(86px, 13vw, 170px);
  height: clamp(86px, 13vw, 170px);
  content: "";
  background: linear-gradient(135deg, var(--blue), #092e62);
  clip-path: polygon(4% 45%, 92% 4%, 66% 53%, 92% 96%);
  opacity: 0.1;
  transform: rotate(-14deg);
  pointer-events: none;
  z-index: 0;
}

.blogs::after,
.faq::after,
.contact::after {
  position: absolute;
  right: clamp(-72px, -5vw, -30px);
  bottom: clamp(-92px, -7vw, -48px);
  width: clamp(190px, 24vw, 310px);
  height: clamp(190px, 24vw, 310px);
  content: "";
  background:
    radial-gradient(circle, transparent 48%, rgba(0, 74, 173, 0.12) 49%, rgba(0, 74, 173, 0.12) 50%, transparent 51%),
    radial-gradient(circle, transparent 32%, rgba(251, 176, 59, 0.18) 33%, rgba(251, 176, 59, 0.18) 34%, transparent 35%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.countries,
.services,
.apply-flow {
  position: relative;
}

.countries::before,
.services::before,
.apply-flow::before {
  position: absolute;
  top: clamp(44px, 8vw, 110px);
  right: clamp(20px, 5vw, 76px);
  width: clamp(180px, 28vw, 360px);
  height: clamp(90px, 13vw, 170px);
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 160'%3E%3Cpath d='M12 118C74 24 142 160 214 54c22-31 44-35 74-18' fill='none' stroke='%23004aad' stroke-width='4' stroke-linecap='round' stroke-dasharray='8 11'/%3E%3Ccircle cx='14' cy='118' r='8' fill='%23fbb03b'/%3E%3Ccircle cx='214' cy='54' r='8' fill='%23fbb03b'/%3E%3Ccircle cx='288' cy='36' r='8' fill='%23fbb03b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.countries::before {
  opacity: 0.24;
  filter: brightness(1.6);
}

.countries::after,
.services::after,
.apply-flow::after {
  position: absolute;
  left: clamp(18px, 6vw, 86px);
  bottom: clamp(28px, 7vw, 90px);
  width: 116px;
  height: 76px;
  content: "";
  background-image: radial-gradient(circle, var(--blue) 0 3px, transparent 4px);
  background-size: 18px 18px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}

.countries::after {
  background-image: radial-gradient(circle, #ffffff 0 3px, transparent 4px);
  opacity: 0.1;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 2.05fr);
  gap: 64px;
  align-items: start;
  max-width: none;
  margin: 0;
  padding: 72px max(24px, calc((100vw - var(--max)) / 2 + 24px)) 34px;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 74, 173, 0.24), transparent 28%),
    linear-gradient(135deg, #073e75 0%, #062f5e 46%, #041f3d 100%);
  border-top: 0;
}

.site-footer img {
  width: 128px;
  filter: brightness(0) invert(1) drop-shadow(0 14px 26px rgba(0, 0, 0, 0.24));
}

.site-footer p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  grid-template-columns: 1.2fr 1.12fr 1.5fr;
  gap: 52px;
}

.site-footer nav {
  display: grid;
  gap: 12px;
  align-content: start;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.site-footer h2,
.footer-contact h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.1;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.95rem;
  font-weight: 750;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer nav a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-countries {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 12px;
}

.footer-countries h2 {
  grid-column: 1 / -1;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  color: #07101f;
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-social a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  max-width: 340px;
  margin: 0;
}

.footer-contact-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: rgba(255, 255, 255, 0.56);
}

.footer-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.about-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.95) 0 10%, transparent 30%),
    radial-gradient(circle at 80% 22%, rgba(251, 176, 59, 0.26) 0 8%, transparent 32%),
    linear-gradient(135deg, #f9fcff 0%, #e4f3ff 42%, #fff2d7 100%);
}

.about-page-hero::after {
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 300px;
  height: 300px;
  content: "";
  background:
    radial-gradient(circle, transparent 48%, rgba(0, 74, 173, 0.12) 49%, rgba(0, 74, 173, 0.12) 50%, transparent 51%),
    radial-gradient(circle, transparent 32%, rgba(251, 176, 59, 0.18) 33%, rgba(251, 176, 59, 0.18) 34%, transparent 35%);
  border-radius: 50%;
  pointer-events: none;
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: center;
  max-width: var(--max);
  min-height: 620px;
  margin: 0 auto;
  padding: 88px 24px 96px;
}

.about-page-copy h1 {
  margin: 0;
  color: #07192f;
  font-size: clamp(2.7rem, 4vw, 4.8rem);
  line-height: 1.03;
}

.about-page-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 0;
  color: #334a68;
  font-size: 1.12rem;
}

.about-page-hero-photo {
  height: 500px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story {
  background: #ffffff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 46px;
  align-items: start;
}

.about-story-text {
  color: #3f4858;
  font-size: 1.08rem;
}

.about-story-text p:first-child {
  margin-top: 0;
}

.about-values {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(251, 176, 59, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eaf5ff 56%, #ffffff 100%);
}

.about-values .section-heading,
.about-value-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.about-values::before {
  position: absolute;
  top: 70px;
  right: 6vw;
  width: 320px;
  height: 150px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 160'%3E%3Cpath d='M12 118C74 24 142 160 214 54c22-31 44-35 74-18' fill='none' stroke='%23004aad' stroke-width='4' stroke-linecap='round' stroke-dasharray='8 11'/%3E%3Ccircle cx='14' cy='118' r='8' fill='%23fbb03b'/%3E%3Ccircle cx='214' cy='54' r='8' fill='%23fbb03b'/%3E%3Ccircle cx='288' cy='36' r='8' fill='%23fbb03b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.16;
  pointer-events: none;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card,
.about-process-list article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 74, 173, 0.08);
}

.about-value-card span {
  display: inline-grid;
  width: 42px;
  height: 34px;
  place-items: center;
  color: #07101f;
  background: var(--gold);
  border-radius: 6px;
  font-weight: 900;
}

.about-value-card h3,
.about-process-list h3 {
  margin: 14px 0 8px;
  color: #07192f;
  font-size: 1.22rem;
  line-height: 1.18;
}

.about-value-card p,
.about-process-list p {
  margin: 0;
  color: var(--muted);
}

.about-mission {
  max-width: none;
  background: #07101f;
}

.about-mission-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 18%, rgba(251, 176, 59, 0.2), transparent 30%),
    linear-gradient(135deg, #0b4e98 0%, #073267 54%, #07192f 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 33, 78, 0.18);
}

.about-mission-card .eyebrow,
.about-mission-card h2 {
  color: #ffffff;
}

.about-mission-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.about-mission-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.about-process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-process-list strong {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-cta {
  max-width: none;
  background:
    linear-gradient(90deg, rgba(3, 14, 31, 0.88) 0%, rgba(3, 14, 31, 0.58) 42%, rgba(3, 14, 31, 0.12) 100%),
    url("assets/hero-flight-skyline.png") center / cover no-repeat;
}

.about-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
}

.about-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.about-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
}

.country-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  color: #f5fbff;
  background:
    linear-gradient(90deg, rgba(0, 30, 68, 0.94) 0%, rgba(0, 64, 128, 0.76) 44%, rgba(0, 74, 173, 0.3) 100%),
    radial-gradient(circle at 82% 22%, rgba(255, 180, 49, 0.52), transparent 28%),
    linear-gradient(135deg, #04213d 0%, #004aad 100%);
}

.country-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 88%, rgba(0, 122, 255, 0.36), transparent 30%),
    linear-gradient(120deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%);
  opacity: 0.9;
  z-index: -2;
}

.country-page-hero::after {
  content: "";
  position: absolute;
  right: clamp(-130px, -8vw, -50px);
  bottom: clamp(-120px, -9vw, -54px);
  width: min(620px, 54vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 180, 49, 0.82), rgba(255, 255, 255, 0.1)),
    var(--country-map, url("assets/maps/turkey.svg")) center 44% / 78% auto no-repeat;
  filter: saturate(1.1);
  opacity: 0.2;
  z-index: -1;
}

.turkey-hero {
  --country-map: url("assets/maps/turkey.svg");
}

.malaysia-hero {
  --country-map: url("assets/maps/malaysia.svg");
}

.hungary-hero {
  --country-map: url("assets/maps/hungary.svg");
}

.south-korea-hero {
  --country-map: url("assets/maps/south-korea.svg");
}

.thailand-hero {
  --country-map: url("assets/maps/thailand.svg");
}

.italy-hero {
  --country-map: url("assets/maps/italy.svg");
}

.australia-hero {
  --country-map: url("assets/maps/australia.svg");
}

.uk-hero {
  --country-map: url("assets/maps/uk.svg");
}

.canada-hero {
  --country-map: url("assets/maps/canada.svg");
}

.usa-hero {
  --country-map: url("assets/maps/usa.svg");
}

.country-page-hero-inner {
  width: min(1210px, calc(100% - 52px));
  min-height: 640px;
  margin: 0 auto;
  padding: 124px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 56px;
}

.country-page-copy {
  max-width: 760px;
}

.country-page-copy h1 {
  margin: 0;
  color: #f3f9ff;
  font-size: clamp(2.65rem, 4.1vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.country-page-copy p:not(.eyebrow) {
  color: rgba(245, 251, 255, 0.86);
  max-width: 660px;
  font-size: 1.13rem;
  line-height: 1.78;
}

.country-page-copy .eyebrow {
  color: var(--gold);
}

.country-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(244, 249, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 16, 48, 0.32);
  backdrop-filter: blur(16px);
}

.country-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -22% -30% auto;
  width: 280px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 180, 49, 0.26);
  transform: rotate(-12deg);
}

.country-hero-panel img {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 0 28px;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.country-hero-panel span {
  display: block;
  color: rgba(245, 251, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.country-hero-panel strong {
  position: relative;
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.45;
}

.country-facts {
  position: relative;
  z-index: 2;
  width: min(1210px, calc(100% - 52px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.country-facts article {
  min-height: 130px;
  padding: 26px;
  border: 1px solid rgba(0, 74, 173, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #eef7ff 100%);
  box-shadow: 0 22px 48px rgba(0, 35, 76, 0.12);
}

.country-facts span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 10px;
}

.country-facts strong {
  display: block;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1.15;
}

.country-split,
.requirements-layout {
  width: min(1210px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.country-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.country-benefit-card,
.country-step-grid article,
.requirement-list article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
  box-shadow: 0 18px 44px rgba(0, 35, 76, 0.09);
}

.country-benefit-card {
  min-height: 238px;
  padding: 28px;
}

.country-benefit-card::after,
.country-step-grid article::after {
  content: "";
  position: absolute;
  width: 118px;
  height: 118px;
  right: -48px;
  bottom: -48px;
  border: 18px solid rgba(255, 180, 49, 0.2);
  border-radius: 50%;
}

.country-benefit-card span,
.country-step-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #061021;
  background: linear-gradient(135deg, var(--gold) 0%, #ffd77a 100%);
  font-weight: 950;
}

.country-benefit-card h3,
.country-step-grid h3,
.requirement-list strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.country-benefit-card p,
.country-step-grid p,
.requirement-list p {
  color: var(--muted);
  line-height: 1.7;
}

.country-programs {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: #061021;
  color: #f6fbff;
}

.country-programs .section-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.country-programs .section-heading h2,
.country-programs .section-heading p:last-child {
  color: #f6fbff;
}

.program-pill-grid {
  width: min(1210px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.program-pill-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #eef7ff;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.38), rgba(255, 180, 49, 0.08));
  font-weight: 900;
}

.requirement-list {
  display: grid;
  gap: 16px;
}

.requirement-list article {
  padding: 24px 26px;
  border-left: 5px solid var(--gold);
}

.requirement-list strong {
  display: block;
  margin-bottom: 8px;
}

.country-visa {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background:
    linear-gradient(115deg, rgba(0, 35, 76, 0.92), rgba(0, 74, 173, 0.86)),
    radial-gradient(circle at 80% 20%, rgba(255, 180, 49, 0.38), transparent 30%);
}

.country-visa-card {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 60px rgba(0, 16, 48, 0.28);
  backdrop-filter: blur(16px);
}

.country-visa-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.country-visa-card p:not(.eyebrow),
.country-visa-card li {
  color: rgba(245, 251, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.country-visa-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.country-visa-card li {
  position: relative;
  padding-left: 28px;
}

.country-visa-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(255, 180, 49, 0.12);
}

.country-step-grid {
  width: min(1210px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.country-step-grid article {
  min-height: 255px;
  padding: 28px;
}

.country-faq {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--surface);
}

.country-faq .section-heading,
.country-faq .faq-list {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

.country-faq .section-heading {
  text-align: left;
}

.country-cta {
  max-width: none;
  padding-top: 86px;
  padding-bottom: 86px;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 180, 49, 0.32), transparent 28%),
    linear-gradient(135deg, #004aad 0%, #061f3e 100%);
}

.country-cta-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.country-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.country-cta p {
  max-width: 640px;
  margin: 18px auto 26px;
  color: rgba(245, 251, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.service-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  color: #f6fbff;
  background:
    linear-gradient(90deg, rgba(0, 30, 68, 0.94) 0%, rgba(0, 74, 173, 0.72) 52%, rgba(255, 180, 49, 0.22) 100%),
    radial-gradient(circle at 82% 16%, rgba(255, 180, 49, 0.54), transparent 28%),
    linear-gradient(135deg, #061021 0%, #004aad 100%);
}

.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 46%, rgba(255, 255, 255, 0.08) 47%, transparent 48%),
    radial-gradient(circle at 16% 85%, rgba(119, 188, 255, 0.36), transparent 32%);
  z-index: -2;
}

.service-page-hero::after {
  content: "";
  position: absolute;
  right: clamp(-110px, -8vw, -42px);
  bottom: clamp(-110px, -8vw, -42px);
  width: min(520px, 46vw);
  aspect-ratio: 1;
  border: 34px solid rgba(255, 180, 49, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.service-page-hero-inner {
  width: min(1210px, calc(100% - 52px));
  min-height: 640px;
  margin: 0 auto;
  padding: 124px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.service-page-copy h1 {
  max-width: 800px;
  margin: 0;
  color: #f6fbff;
  font-size: clamp(2.65rem, 4.1vw, 5rem);
  line-height: 0.98;
}

.service-page-copy p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(246, 251, 255, 0.86);
  font-size: 1.13rem;
  line-height: 1.78;
}

.service-page-copy .eyebrow {
  color: var(--gold);
}

.service-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 16, 48, 0.32);
  backdrop-filter: blur(18px);
}

.service-hero-panel span {
  display: block;
  color: rgba(246, 251, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-hero-panel strong {
  display: block;
  margin: 10px 0 26px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.35;
}

.service-hero-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-hero-panel li {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(246, 251, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.service-hero-panel li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.service-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 16, 48, 0.32);
}

.service-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 30, 68, 0.82) 100%);
}

.service-hero-photo figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.service-hero-photo figcaption span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-hero-photo figcaption strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.35;
}

.service-facts {
  position: relative;
  z-index: 2;
  width: min(1210px, calc(100% - 52px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-facts article,
.service-feature-card,
.service-step-grid article {
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
  box-shadow: 0 18px 44px rgba(0, 35, 76, 0.09);
}

.service-facts article {
  min-height: 130px;
  padding: 26px;
}

.service-facts span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 10px;
}

.service-facts strong {
  display: block;
  color: var(--blue);
  font-size: 1.42rem;
  line-height: 1.18;
}

.service-split {
  width: min(1210px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 28px;
}

.service-feature-card::after,
.service-step-grid article::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(255, 180, 49, 0.2);
  border-radius: 50%;
}

.service-feature-card span,
.service-step-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #061021;
  background: linear-gradient(135deg, var(--gold) 0%, #ffd77a 100%);
  font-weight: 950;
}

.service-feature-card h3,
.service-step-grid h3 {
  color: var(--ink);
  font-size: 1.22rem;
}

.service-feature-card p,
.service-step-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.service-included {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #f6fbff;
  background: #061021;
}

.service-included .section-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.service-included .section-heading h2,
.service-included .section-heading p:last-child {
  color: #f6fbff;
}

.service-included-layout {
  width: min(1210px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.service-included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-included-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #eef7ff;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.38), rgba(255, 180, 49, 0.08));
  font-weight: 900;
}

.service-included-photo {
  position: relative;
  overflow: hidden;
  min-height: 386px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 16, 48, 0.28);
}

.service-included-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 30, 68, 0.4), transparent 58%);
  pointer-events: none;
}

.service-included-photo img {
  width: 100%;
  height: 100%;
  min-height: 386px;
  object-fit: cover;
}

.service-step-grid {
  width: min(1210px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-step-grid article {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 28px;
}

.service-faq {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--surface);
}

.service-faq .section-heading,
.service-faq .faq-list {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

.service-cta {
  max-width: none;
  padding-top: 86px;
  padding-bottom: 86px;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 180, 49, 0.32), transparent 28%),
    linear-gradient(135deg, #004aad 0%, #061f3e 100%);
}

.service-cta-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.service-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.service-cta p {
  max-width: 640px;
  margin: 18px auto 26px;
  color: rgba(245, 251, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.reviews-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 600px;
  color: #f6fbff;
  background:
    linear-gradient(90deg, rgba(0, 30, 68, 0.94) 0%, rgba(0, 74, 173, 0.72) 52%, rgba(255, 180, 49, 0.22) 100%),
    radial-gradient(circle at 84% 18%, rgba(255, 180, 49, 0.54), transparent 28%),
    linear-gradient(135deg, #061021 0%, #004aad 100%);
}

.reviews-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 84%, rgba(119, 188, 255, 0.3), transparent 32%),
    linear-gradient(120deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%);
  z-index: -2;
}

.reviews-page-hero::after {
  content: "";
  position: absolute;
  right: clamp(-130px, -8vw, -48px);
  bottom: clamp(-130px, -8vw, -48px);
  width: min(520px, 48vw);
  aspect-ratio: 1;
  border: 36px solid rgba(255, 180, 49, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.reviews-page-hero-inner {
  width: min(1210px, calc(100% - 52px));
  min-height: 600px;
  margin: 0 auto;
  padding: 112px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.reviews-page-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #f6fbff;
  font-size: clamp(2.65rem, 4.1vw, 5rem);
  line-height: 0.98;
}

.reviews-page-copy p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(246, 251, 255, 0.86);
  font-size: 1.13rem;
  line-height: 1.78;
}

.reviews-page-copy .eyebrow {
  color: var(--gold);
}

.reviews-score-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 16, 48, 0.32);
  backdrop-filter: blur(18px);
}

.reviews-score-card > span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-score-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.48rem;
  line-height: 1.35;
}

.review-score-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.review-score-list p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(246, 251, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.review-score-list b {
  color: var(--gold);
  font-size: 1.45rem;
}

.review-highlights {
  position: relative;
  z-index: 2;
  width: min(1210px, calc(100% - 52px));
  margin: -58px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.review-highlights article {
  min-height: 130px;
  padding: 26px;
  border: 1px solid rgba(0, 74, 173, 0.14);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #eef7ff 100%);
  box-shadow: 0 22px 48px rgba(0, 35, 76, 0.12);
}

.review-highlights span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 10px;
}

.review-highlights strong {
  display: block;
  color: var(--blue);
  font-size: 1.38rem;
  line-height: 1.18;
}

.reviews-page-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.reviews-page-section .section-heading,
.reviews-page-grid,
.review-category-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-page-card {
  position: relative;
  overflow: hidden;
  min-height: 295px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(0, 74, 173, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(0, 35, 76, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-page-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.review-page-card blockquote {
  position: relative;
  margin: 16px 0 0;
  color: #334157;
  font-size: 1rem;
  line-height: 1.72;
}

.review-page-card figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  color: var(--blue);
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0b68d8 100%);
  box-shadow: 0 10px 24px rgba(0, 74, 173, 0.2);
  font-weight: 950;
}

.review-page-card figcaption strong {
  display: block;
  color: #17233a;
  font-size: 1rem;
  line-height: 1.25;
}

.review-page-card figcaption small {
  display: block;
  margin-top: 4px;
  color: #788397;
  font-size: 0.88rem;
  font-weight: 800;
}

.review-stars {
  margin-top: 18px;
  color: #fbbc04;
  font-size: 1.2rem;
  letter-spacing: 2px;
  line-height: 1;
}

.review-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 74, 173, 0.18);
  box-shadow: 0 24px 58px rgba(0, 35, 76, 0.13);
}

.review-categories {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #f6fbff;
  background: #061021;
}

.review-categories .section-heading {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.review-categories .section-heading h2 {
  color: #fff;
}

.review-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.review-category-grid article {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.38), rgba(255, 180, 49, 0.08));
}

.review-category-grid article::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 118px;
  height: 118px;
  border: 18px solid rgba(255, 180, 49, 0.16);
  border-radius: 50%;
}

.review-category-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #061021;
  background: linear-gradient(135deg, var(--gold) 0%, #ffd77a 100%);
  font-weight: 950;
}

.review-category-grid h3 {
  color: #fff;
  font-size: 1.22rem;
}

.review-category-grid p {
  color: rgba(246, 251, 255, 0.78);
  line-height: 1.7;
}

.reviews-faq {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--surface);
}

.reviews-faq .section-heading,
.reviews-faq .faq-list {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

.reviews-cta {
  max-width: none;
  padding-top: 86px;
  padding-bottom: 86px;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 180, 49, 0.32), transparent 28%),
    linear-gradient(135deg, #004aad 0%, #061f3e 100%);
}

.reviews-cta-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.reviews-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.reviews-cta p {
  max-width: 640px;
  margin: 18px auto 26px;
  color: rgba(245, 251, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.blogs-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 600px;
  color: #f6fbff;
  background:
    linear-gradient(90deg, rgba(0, 30, 68, 0.94) 0%, rgba(0, 74, 173, 0.74) 50%, rgba(255, 180, 49, 0.22) 100%),
    radial-gradient(circle at 84% 18%, rgba(255, 180, 49, 0.54), transparent 28%),
    linear-gradient(135deg, #061021 0%, #004aad 100%);
}

.blogs-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 84%, rgba(119, 188, 255, 0.3), transparent 32%),
    linear-gradient(120deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 50%);
  z-index: -2;
}

.blogs-page-hero::after {
  content: "";
  position: absolute;
  right: clamp(-130px, -8vw, -48px);
  bottom: clamp(-130px, -8vw, -48px);
  width: min(520px, 48vw);
  aspect-ratio: 1;
  border: 36px solid rgba(255, 180, 49, 0.2);
  border-radius: 50%;
  z-index: -1;
}

.blogs-page-hero-inner {
  width: min(1210px, calc(100% - 52px));
  min-height: 600px;
  margin: 0 auto;
  padding: 112px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.blogs-page-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #f6fbff;
  font-size: clamp(2.65rem, 4.1vw, 5rem);
  line-height: 0.98;
}

.blogs-page-copy p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(246, 251, 255, 0.86);
  font-size: 1.13rem;
  line-height: 1.78;
}

.blogs-page-copy .eyebrow {
  color: var(--gold);
}

.blogs-topic-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 16, 48, 0.32);
  backdrop-filter: blur(18px);
}

.blogs-topic-panel > span {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blogs-topic-panel strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.48rem;
  line-height: 1.35;
}

.blog-topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-topic-tags small,
.blog-category-strip span {
  border-radius: 8px;
  font-weight: 900;
}

.blog-topic-tags small {
  padding: 10px 12px;
  color: rgba(246, 251, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
}

.blog-category-strip {
  position: relative;
  z-index: 2;
  width: min(1210px, calc(100% - 52px));
  margin: -32px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0, 74, 173, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(0, 35, 76, 0.12);
}

.blog-category-strip span {
  padding: 10px 14px;
  color: var(--blue);
  background: #eef7ff;
}

.blogs-page-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.blogs-page-section .section-heading,
.blogs-list-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.blogs-list-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.blog-list-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  border: 1px solid rgba(0, 74, 173, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(0, 35, 76, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(0, 35, 76, 0.14);
}

.blog-list-image {
  min-height: 360px;
  overflow: hidden;
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-list-card:hover .blog-list-image img {
  transform: scale(1.04);
}

.blog-list-content {
  padding: clamp(28px, 4vw, 48px);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-meta span {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef7ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-list-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.08;
}

.blog-list-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 950;
}

.blog-read-link::after {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.blog-read-link:hover::after {
  width: 34px;
}

.blogs-cta {
  max-width: none;
  padding-top: 86px;
  padding-bottom: 86px;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 180, 49, 0.32), transparent 28%),
    linear-gradient(135deg, #004aad 0%, #061f3e 100%);
}

.blogs-cta-inner {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.blogs-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.blogs-cta p {
  max-width: 640px;
  margin: 18px auto 26px;
  color: rgba(245, 251, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
}

.blog-article-hero {
  position: relative;
  overflow: hidden;
  color: #f6fbff;
  background:
    linear-gradient(90deg, rgba(0, 30, 68, 0.94) 0%, rgba(0, 74, 173, 0.74) 52%, rgba(255, 180, 49, 0.2) 100%),
    radial-gradient(circle at 84% 18%, rgba(255, 180, 49, 0.52), transparent 28%),
    linear-gradient(135deg, #061021 0%, #004aad 100%);
}

.blog-article-hero-inner {
  width: min(1210px, calc(100% - 52px));
  min-height: 610px;
  margin: 0 auto;
  padding: 108px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 52px;
}

.blog-article-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.45rem, 3.7vw, 4.7rem);
  line-height: 1;
}

.blog-article-hero p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(246, 251, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.78;
}

.blog-article-hero .eyebrow {
  color: var(--gold);
}

.blog-article-hero figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 16, 48, 0.32);
}

.blog-article-hero img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.article-body {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.article-lede {
  margin: 0 0 38px;
  color: #213047;
  font-size: 1.32rem;
  line-height: 1.72;
  font-weight: 700;
}

.article-body section {
  margin-top: 42px;
}

.article-body h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.article-body p {
  color: #4e5d73;
  font-size: 1.08rem;
  line-height: 1.86;
}

.article-note {
  margin-top: 54px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(0, 74, 173, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 100%, rgba(251, 176, 59, 0.3), transparent 34%),
    linear-gradient(145deg, #eef7ff 0%, #fff 100%);
  box-shadow: 0 22px 56px rgba(0, 35, 76, 0.1);
}

.article-note h2 {
  max-width: 620px;
}

.article-note p {
  max-width: 720px;
}

.contact-page-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #f8fbff;
  background:
    linear-gradient(90deg, rgba(2, 18, 37, 0.9), rgba(0, 74, 173, 0.58)),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16) 0 9%, transparent 35%),
    radial-gradient(circle at 86% 18%, rgba(251, 176, 59, 0.28) 0 10%, transparent 34%),
    linear-gradient(135deg, #06192f 0%, #004aad 58%, #78bdf2 100%);
}

.contact-page-hero::after {
  position: absolute;
  right: clamp(-90px, -4vw, -30px);
  bottom: clamp(-120px, -9vw, -60px);
  width: clamp(280px, 34vw, 520px);
  height: clamp(280px, 34vw, 520px);
  content: "";
  background:
    radial-gradient(circle, transparent 49%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.16) 51%, transparent 52%),
    radial-gradient(circle, transparent 34%, rgba(251, 176, 59, 0.24) 35%, rgba(251, 176, 59, 0.24) 36%, transparent 37%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 60px;
  align-items: center;
  width: min(100% - 48px, var(--max));
  min-height: 620px;
  padding: 126px 0 88px;
  margin: 0 auto;
}

.contact-page-copy {
  max-width: 760px;
}

.contact-page-copy .eyebrow {
  color: var(--gold);
}

.contact-page-copy h1 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(2.7rem, 4.2vw, 5rem);
  line-height: 1.02;
}

.contact-page-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(248, 251, 255, 0.82);
  font-size: 1.16rem;
}

.contact-page-hero .button.ghost {
  color: #f8fbff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-hero-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.contact-hero-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-hero-panel strong {
  display: block;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.18;
}

.contact-hero-panel p {
  margin: 18px 0 0;
  color: rgba(248, 251, 255, 0.76);
}

.contact-page-main {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background:
    radial-gradient(circle at 86% 82%, rgba(251, 176, 59, 0.22) 0 8%, transparent 30%),
    radial-gradient(circle at 14% 28%, rgba(0, 74, 173, 0.18) 0 12%, transparent 38%),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 45%, #d7ecff 100%);
}

.contact-page-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.contact-page-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.contact-page-heading p {
  color: #43556e;
  font-size: 1.08rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(340px, 1.08fr);
  gap: 52px;
  align-items: start;
}

.contact-page-main .contact-info-list {
  margin-top: 0;
}

.contact-page-main .contact-info-card {
  min-height: 126px;
  background: rgba(255, 255, 255, 0.9);
}

.contact-page-form {
  box-shadow: 0 28px 70px rgba(0, 74, 173, 0.13);
}

.contact-location-band {
  padding: 82px 24px;
  color: #f8fbff;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.14) 0 8%, transparent 32%),
    linear-gradient(135deg, #06192f 0%, #004aad 100%);
}

.contact-location-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.contact-location-inner .eyebrow {
  color: var(--gold);
}

.contact-location-inner h2 {
  max-width: 780px;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  line-height: 1.08;
}

.contact-location-inner p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(248, 251, 255, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--blue);
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .nav-dropdown-menu {
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 8px 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown-menu a {
    padding: 8px 10px;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero-inner,
  .about-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .process-rail {
    grid-template-columns: 1fr;
  }

  .about-photo,
  .about-photo img {
    height: 440px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 66px;
  }

  .hero-flight {
    background-position: 58% center;
  }

  .hero-flight .hero-inner {
    min-height: calc(100vh - 58px);
    padding-top: 78px;
    padding-bottom: 92px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apply-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .apply-steps::before {
    display: none;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .visit-visa-inner {
    grid-template-columns: 1fr;
  }

  .about-page-hero-inner,
  .about-story-grid,
  .about-mission-card,
  .country-page-hero-inner,
  .service-page-hero-inner,
  .reviews-page-hero-inner,
  .blogs-page-hero-inner,
  .blog-article-hero-inner,
  .contact-page-hero-inner,
  .contact-page-grid,
  .contact-location-inner,
  .country-split,
  .requirements-layout,
  .service-split {
    grid-template-columns: 1fr;
  }

  .about-value-grid,
  .about-process-list,
  .country-facts,
  .program-pill-grid,
  .country-step-grid,
  .service-facts,
  .service-included-grid,
  .service-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-highlights,
  .reviews-page-grid,
  .review-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-page-hero-inner {
    min-height: auto;
    padding-top: 104px;
  }

  .service-page-hero-inner {
    min-height: auto;
    padding-top: 104px;
  }

  .reviews-page-hero-inner {
    min-height: auto;
    padding-top: 104px;
  }

  .blogs-page-hero-inner {
    min-height: auto;
    padding-top: 104px;
  }

  .blog-article-hero-inner {
    min-height: auto;
    padding-top: 104px;
  }

  .contact-page-hero-inner {
    min-height: auto;
    padding-top: 104px;
  }

  .country-page-copy {
    max-width: 850px;
  }

  .service-page-copy {
    max-width: 850px;
  }

  .reviews-page-copy {
    max-width: 850px;
  }

  .blogs-page-copy {
    max-width: 850px;
  }

  .contact-page-copy {
    max-width: 850px;
  }

  .country-hero-panel {
    max-width: 540px;
  }

  .service-hero-panel,
  .service-hero-photo {
    max-width: 540px;
  }

  .service-included-layout {
    grid-template-columns: 1fr;
  }

  .country-facts {
    margin-top: -34px;
  }

  .service-facts {
    margin-top: -34px;
  }

  .review-highlights {
    margin-top: -34px;
  }

  .services-photo,
  .services-photo img {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 14px;
    padding: 8px 16px;
  }

  .brand {
    width: 74px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .site-nav {
    top: 56px;
    right: 16px;
    left: 16px;
  }

  .section,
  .section-band {
    padding: 70px 18px;
  }

  .hero-inner {
    gap: 34px;
    padding: 58px 18px 74px;
  }

  .hero-flight {
    background-position: 64% center;
  }

  .hero-flight .hero-inner {
    padding: 58px 18px 76px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11.5vw, 3.45rem);
  }

  .hero-flight h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero-flight .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .hero-badges,
  .trust-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
  }

  .hero-visual {
    min-height: 420px;
  }

  .journey-panel {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  .trust-strip {
    display: grid;
    margin-top: 0;
  }

  .trust-strip div {
    justify-content: flex-start;
  }

  .country-grid,
  .service-grid,
  .apply-steps,
  .process-rail,
  .about-value-grid,
  .about-process-list,
  .country-facts,
  .country-benefit-grid,
  .program-pill-grid,
  .country-step-grid,
  .service-facts,
  .service-feature-grid,
  .service-included-grid,
  .service-step-grid,
  .review-highlights,
  .reviews-page-grid,
  .review-category-grid,
  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-card {
    grid-template-columns: 1fr;
  }

  .country-page-hero,
  .service-page-hero,
  .reviews-page-hero,
  .blogs-page-hero,
  .blog-article-hero,
  .contact-page-hero {
    min-height: auto;
  }

  .country-page-hero::after {
    width: 420px;
    opacity: 0.16;
  }

  .service-page-hero::after {
    width: 380px;
    opacity: 0.72;
  }

  .reviews-page-hero::after {
    width: 380px;
    opacity: 0.72;
  }

  .blogs-page-hero::after {
    width: 380px;
    opacity: 0.72;
  }

  .country-page-hero-inner,
  .service-page-hero-inner,
  .reviews-page-hero-inner,
  .blogs-page-hero-inner,
  .blog-article-hero-inner,
  .contact-page-hero-inner {
    width: min(100% - 36px, 1210px);
    padding: 72px 0 84px;
    gap: 34px;
  }

  .country-page-copy h1,
  .service-page-copy h1,
  .reviews-page-copy h1,
  .blogs-page-copy h1,
  .blog-article-hero h1,
  .contact-page-copy h1 {
    font-size: clamp(2.28rem, 11vw, 3.5rem);
  }

  .contact-page-grid {
    gap: 28px;
  }

  .contact-location-inner {
    justify-items: start;
  }

  .blog-article-hero img {
    height: 300px;
  }

  .article-body {
    width: min(100% - 36px, 900px);
    padding: 64px 0;
  }

  .blog-category-strip {
    width: min(100% - 36px, 1210px);
  }

  .blog-list-image,
  .blog-list-image img {
    min-height: 260px;
  }

  .country-hero-panel,
  .service-hero-panel,
  .service-hero-photo figcaption {
    padding: 22px;
  }

  .service-hero-photo,
  .service-hero-photo img {
    min-height: 380px;
  }

  .country-hero-panel strong,
  .service-hero-panel strong,
  .service-hero-photo figcaption strong {
    font-size: 1.12rem;
  }

  .country-facts,
  .service-facts {
    width: min(100% - 36px, 1210px);
    margin-top: -28px;
  }

  .review-highlights {
    width: min(100% - 36px, 1210px);
    margin-top: -28px;
  }

  .country-facts article,
  .service-facts article {
    min-height: auto;
  }

  .review-highlights article {
    min-height: auto;
  }

  .country-visa-card ul {
    grid-template-columns: 1fr;
  }

  .service-included-layout {
    gap: 18px;
  }

  .service-included-photo,
  .service-included-photo img {
    min-height: 290px;
  }

  .about-page-hero-inner {
    min-height: auto;
    padding: 62px 18px 74px;
  }

  .about-page-hero-photo {
    height: 380px;
  }

  .about-mission-card {
    padding: 28px;
  }

  .apply-step {
    grid-template-columns: 62px 72px 1fr;
    justify-items: start;
    text-align: left;
  }

  .apply-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .apply-icon svg {
    width: 32px;
    height: 32px;
  }

  .apply-step span {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
  }

  .apply-step h3 {
    align-self: center;
    max-width: none;
  }

  .service-card,
  .timeline article,
  .blog-card {
    min-height: auto;
  }

  .site-footer {
    align-items: start;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-countries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
