/* =====================================================
   NEWS IMMIGRATION — MAIN STYLESHEET
   Extracted 1:1 from React/Tailwind source
   ===================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---- Design Tokens ---- */
:root {
  --radius: 0.75rem;

  /* Brand palette — extracted from logo */
  --brand-navy:       #0B2545;
  --brand-navy-2:     #13315C;
  --brand-blue:       #1E5AA8;
  --brand-blue-soft:  #E8F0FB;
  --brand-gold:       #D4A24C;
  --brand-gold-soft:  #F6E9CC;

  /* Surface / page */
  --page:             #ffffff;
  --surface:          #F5F7FB;
  --surface-muted:    #F5F7FB;
  --surface-2:        #ECEFF6;

  /* Ink */
  --ink:              #0B1B33;
  --ink-strong:       #0B2545;
  --muted-foreground: #4A5A75;

  /* Legacy aliases */
  --espresso:         #0B2545;
  --espresso-ink:     #ffffff;
  --accent:           #D4A24C;
  --accent-foreground:#0B2545;

  /* UI tokens */
  --border:           rgba(11,27,69,0.10);
  --hairline:         rgba(11,27,69,0.10);
  --ring:             #1E5AA8;

  /* Shadows */
  --shadow-card:      0 1px 0 rgba(11,27,69,0.04);
  --shadow-lift:      0 18px 40px -22px rgba(11,27,69,0.22);

  /* Typography */
  --font-sans:        'Manrope', ui-sans-serif, system-ui, sans-serif;
  --font-display:     'Manrope', ui-sans-serif, system-ui, sans-serif;

  /* Layout */
  --container-max:    1200px;
  --section-py:       6rem;
  --section-py-sm:    3.5rem;

  /* Gradients */
  --gradient-accent:  linear-gradient(135deg, #D4A24C, #B5852E);
  --journey-route:    #c96a2f;
}

/* ---- Base ---- */
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  background-color: var(--page);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
}

@media (max-width: 768px) {
  body { font-size: 16px; line-height: 1.6; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-strong);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
}

h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; }
h2 { font-size: 45px; }
h3 { font-size: 22px; line-height: 1.3; }
p  { font-size: inherit; }

@media (max-width: 768px) {
  h2 { font-size: 32px; }
  h3 { font-size: 20px; }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

::selection {
  background: rgba(212,162,76,0.3);
  color: var(--ink-strong);
}

input, textarea, select { font-family: inherit; }

/* ---- Layout Primitives ---- */
.container-page,
.container-1200 {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-page,
  .container-1200 { padding-inline: 2rem; }
}

.section-y {
  padding-block: var(--section-py-sm);
}

@media (min-width: 768px) {
  .section-y { padding-block: var(--section-py); }
}

/* ---- Utility: pill eyebrow ---- */
.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--surface-2);
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
}

/* ---- Buttons ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-gold);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff; }
.btn-gold:active { transform: scale(0.98); }

.btn-espresso {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--espresso);
  color: var(--espresso-ink);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-espresso:hover { transform: translateY(-2px); filter: brightness(1.15); color: #fff; }
.btn-espresso:active { transform: scale(0.98); }

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--surface-2);
  color: #000;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-pill:hover { transform: translateY(-2px); background: var(--brand-blue-soft); color: var(--brand-navy); }
.btn-pill:active { transform: scale(0.98); }

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--surface-2);
  color: var(--brand-navy);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-outline-navy:hover { transform: translateY(-2px); background: var(--brand-blue-soft); }

/* ---- Cards ---- */
.card-flat {
  background: var(--surface);
  border-radius: 18px;
}

.card-lift {
  background: var(--surface);
  border-radius: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.hairline {
  border-top: 1px solid var(--hairline);
}

/* ---- Story link underline ---- */
.story-link { position: relative; }
.story-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 100%;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.story-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--hairline);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}
.site-header .logo img { height: 44px; width: auto; object-fit: contain; display: block; }

/* Desktop Nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav a,
.main-nav button.nav-services-btn {
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--brand-navy);
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s;
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.main-nav a:hover,
.main-nav button.nav-services-btn:hover { color: var(--brand-blue); }
.main-nav a.active { color: var(--brand-blue); }

.main-nav a.nav-cta {
  margin-left: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  background: var(--brand-blue-soft);
  color: var(--brand-navy);
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.nav-cta:hover, .main-nav a.nav-cta.active {
  background: var(--brand-blue);
  color: #fff;
}

/* Services dropdown */
.nav-services { position: relative; }
.nav-services-btn .chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}
.nav-services:hover .chevron { transform: rotate(180deg); }

.services-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  padding-top: 12px;
  width: 260px;
  z-index: 200;
}
.nav-services:hover .services-dropdown { display: block; }

.services-dropdown-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px -20px rgba(11,27,69,0.25);
  border: 1px solid var(--hairline);
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.services-dropdown-inner a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--brand-navy);
  transition: background 0.15s;
}
.services-dropdown-inner a:hover { background: var(--brand-blue-soft); }
.services-dropdown-inner .service-icon {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--brand-navy);
  color: #fff;
  flex-shrink: 0;
}
.services-dropdown-inner .service-icon svg { width: 16px; height: 16px; }
.dropdown-footer-link {
  border-top: 1px solid var(--hairline);
  margin-top: 4px;
  padding-top: 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px !important;
  color: var(--brand-blue) !important;
}
.dropdown-footer-link:hover { color: var(--brand-navy) !important; background: none !important; }

/* Mobile menu toggle */
.hamburger-btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  border: none;
  background: none;
  color: var(--brand-navy);
  cursor: pointer;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: var(--surface-2); }

@media (min-width: 1024px) {
  .hamburger-btn { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--hairline);
  background: #fff;
  overflow: hidden;
}
.mobile-menu.open { display: block; }
.mobile-menu .mobile-menu-inner {
  padding: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a,
.mobile-menu button.mobile-services-btn {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--brand-navy);
  transition: background 0.15s;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-sans);
}
.mobile-menu a:hover,
.mobile-menu button.mobile-services-btn:hover { background: var(--surface-2); }
.mobile-menu a.active { background: var(--surface-2); }
.mobile-services-btn {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.mobile-services-btn .chevron { width: 16px; height: 16px; transition: transform 0.2s; }
.mobile-services-btn.open .chevron { transform: rotate(180deg); }

.mobile-services-list {
  display: none;
  padding-left: 12px;
  padding-block: 8px;
  flex-direction: column;
  gap: 4px;
}
.mobile-services-list.open { display: flex; }
.mobile-services-list a {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  padding: 10px 12px !important;
}
.mobile-services-list a svg { width: 16px; height: 16px; color: var(--brand-blue); }

/* ---- Footer ---- */
.site-footer {
  position: relative;
  background: var(--brand-navy);
  color: rgba(255,255,255,0.85);
  overflow: hidden;
}

.footer-inner {
  padding-top: 5rem;
  padding-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    flex-direction: row;
    gap: 8rem;
  }
}

.footer-brand {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .footer-brand { width: 340px; }
}

.footer-brand .logo img { height: 48px; width: auto; object-fit: contain; }

.footer-brand-tagline {
  margin-top: 1.25rem;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.footer-newsletter {
  margin-top: 1.5rem;
  display: flex;
  gap: 8px;
  max-width: 360px;
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus {
  border-color: rgba(212,162,76,0.6);
  box-shadow: 0 0 0 2px rgba(212,162,76,0.2);
}
.footer-newsletter button {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--brand-gold);
  border: none;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: filter 0.2s;
}
.footer-newsletter button:hover { filter: brightness(1.08); }
.footer-newsletter button svg { width: 20px; height: 20px; }

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
  background: var(--brand-gold);
  color: var(--brand-navy);
}
.footer-socials a svg { width: 16px; height: 16px; }

.footer-links-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a,
.footer-col .footer-contact-item a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul li a:hover,
.footer-col .footer-contact-item a:hover { color: var(--brand-gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-gold);
}

.footer-wordmark {
  margin-top: 3rem;
  text-align: center;
  font-weight: 800;
  letter-spacing: -0.045em;
  white-space: nowrap;
  line-height: 0.85;
  font-size: clamp(48px, 11vw, 180px);
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p, .footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--brand-gold); }
.footer-legal-links .dot { color: rgba(255,255,255,0.3); }

/* ---- SECTIONS ---- */

/* Hero section */
.hero-section {
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
}

.hero-title { line-height: 1.05 !important; }

.hero-sub {
  margin-top: 1.5rem;
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 28rem;
  line-height: 1.65;
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Flag orbit container */
.flag-orbit-wrap {
  display: flex;
  justify-content: center;
}

.flag-orbit {
  position: relative;
  width: 380px;
  height: 380px;
  margin: auto;
}

@media (min-width: 768px) {
  .flag-orbit { width: 480px; height: 480px; }
}

.flag-orbit-ring {
  position: absolute;
  inset: 0;
  animation: orbit-rotate 80s linear infinite;
}

.flag-orbit-flag {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.flag-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px -12px rgba(26,15,6,0.25);
  border: 1px solid var(--hairline);
  background: #fff;
  animation: flag-bob 5s ease-in-out infinite;
}
.flag-bubble img { width: 100%; height: 100%; object-fit: cover; }

@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes orbit-counter {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes flag-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Marquee strip */
.marquee-band {
  background: var(--surface);
  padding-block: 1rem;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-foreground);
  white-space: nowrap;
}
.marquee-item img {
  width: 28px; height: 20px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Airplane band */
.airplane-band {
  position: relative;
  min-height: 280px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.airplane-band-text {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  text-align: center;
  padding: 3rem 1.5rem;
}
.airplane-band-plane {
  position: absolute;
  width: min(80vw, 340px);
  opacity: 0.85;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  animation: plane-fly-across 12s ease-in-out infinite alternate;
}
@keyframes plane-fly-across {
  0%   { left: -15%; }
  100% { left: 110%; }
}

/* Section heading */
.section-heading {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-heading.left {
  text-align: left;
  margin-inline: 0;
}
.section-heading .pill { margin-bottom: 1.25rem; }
.section-heading h2 { margin-top: 0; }
.section-heading p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* --- Destination / Flip Cards --- */
.flip-country-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .flip-country-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .flip-country-grid { grid-template-columns: repeat(3, 1fr); }
}

.flip-country-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flip-country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.flip-country-pair {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.flip-country-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flip-country-item img {
  width: 40px; height: 28px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.flip-country-item-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-strong);
  margin: 0;
  letter-spacing: -0.01em;
}
.flip-country-item-info p {
  font-size: 13px;
  color: var(--muted-foreground);
  margin: 2px 0 0;
}
.flip-country-divider {
  height: 1px;
  background: var(--hairline);
}

/* Journey simplified */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .journey-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}

.journey-visual {
  position: relative;
  width: 100%;
  border-radius: 18px;
  background: var(--surface);
  height: 320px;
  overflow: hidden;
  order: 2;
}
@media (min-width: 1024px) {
  .journey-visual {
    height: 100%;
    min-height: 500px;
    order: 1;
  }
}
.journey-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-content { order: 1; }
@media (min-width: 1024px) { .journey-content { order: 2; } }

.journey-bullets {
  list-style: none;
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.journey-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.journey-bullet-icon {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  flex-shrink: 0;
}
.journey-bullet-icon svg { width: 14px; height: 14px; color: var(--ink-strong); }
.journey-bullet span { color: var(--ink-strong); }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  display: block;
  border-radius: 18px;
  background: var(--surface);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--ink);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}
.service-card-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #fff;
}
.service-card-icon svg { width: 24px; height: 24px; stroke-width: 1.8; }
.service-card h3 {
  margin-top: 2rem;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-strong);
}
.service-card p {
  margin-top: 0.75rem;
  font-size: 15px;
  color: var(--muted-foreground);
  line-height: 1.65;
}
.service-card-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-strong);
}
.service-card-footer svg { width: 16px; height: 16px; transition: transform 0.2s; }
.service-card:hover .service-card-footer svg { transform: translateX(4px); }

/* "Didn't find visa type" strip */
.visa-type-strip {
  margin-top: 2rem;
  border-radius: 18px;
  background: var(--surface);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .visa-type-strip {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.visa-type-strip h3 { font-size: 20px; font-weight: 700; margin: 0; }
.visa-type-strip p { margin-top: 8px; font-size: 15px; color: var(--muted-foreground); }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  border-radius: 18px;
  padding: 2rem;
  background: var(--surface);
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card.accent {
  background: linear-gradient(135deg, #e8743c, #c9531e);
  color: #fff;
}
.stat-card-value {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-strong);
}
.stat-card.accent .stat-card-value { color: #fff; }
.stat-card-label {
  margin-top: 0.75rem;
  font-size: 15px;
  font-weight: 600;
}
.stat-card.accent .stat-card-label { color: #fff; }
.stat-card-desc {
  margin-top: 0.5rem;
  font-size: 14px;
  color: var(--muted-foreground);
}
.stat-card.accent .stat-card-desc { color: rgba(255,255,255,0.85); }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
  border-radius: 18px;
  background: var(--surface);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--brand-gold);
}
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-strong);
  flex: 1;
}
@media (min-width: 768px) { .testimonial-quote { font-size: 18px; } }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; color: var(--ink-strong); }
.testimonial-role { font-size: 13px; color: var(--muted-foreground); }

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
  display: block;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-foreground);
}
.blog-card-meta .pill { padding: 4px 12px; font-size: 12px; }
.blog-card h3 {
  margin-top: 1rem;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-strong);
  line-height: 1.3;
}
.blog-card-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-strong);
}
.blog-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.blog-card:hover .blog-card-link svg { transform: translateX(4px); }

/* World Map CTA */
.world-cta-wrap {
  border-radius: 24px;
  background: var(--surface);
  padding: 5rem 2rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .world-cta-wrap { padding: 5rem 4rem 0; }
}
.world-cta-orbits {
  position: relative;
  height: 300px;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .world-cta-orbits { height: 420px; }
}
.world-cta-orbits svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.orbit-airplane {
  transform-origin: 400px 380px;
  animation-name: orbit-airplane;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes orbit-airplane {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Step Cards */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  border-radius: 18px;
  background: var(--surface-muted);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.step-card-num {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.step-card h3 {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
}
.step-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

/* Audience cards (service single) */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.audience-card {
  border-radius: 18px;
  background: var(--surface-muted);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.audience-card:hover { transform: translateY(-4px); }
.audience-card-num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(212,162,76,0.15);
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}
.audience-card h3 { margin-top: 1rem; font-size: 16px; font-weight: 600; }
.audience-card p { margin-top: 8px; font-size: 14px; color: var(--muted-foreground); line-height: 1.65; }

/* Hero section shared */
.page-hero {
  background: rgba(245,247,251,0.4);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .page-hero-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 6rem;
  }
}
.page-hero-img {
  border-radius: 18px;
  box-shadow: 0 20px 60px -20px rgba(11,27,69,0.25);
  width: 100%;
  object-fit: cover;
}

/* FAQ Accordion */
.faq-list {
  background: var(--surface);
  border-radius: 18px;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .faq-list { padding: 1rem 1.5rem; }
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.75rem;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-strong);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--brand-blue); }
.faq-trigger svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--muted-foreground);
}
.faq-item.open .faq-trigger svg { transform: rotate(45deg); color: var(--brand-blue); }

.faq-content {
  display: none;
  padding: 0 0.75rem 1.25rem;
  font-size: 16px;
  color: var(--muted-foreground);
  line-height: 1.7;
}
@media (min-width: 768px) { .faq-content { font-size: 18px; } }
.faq-item.open .faq-content { display: block; }

/* Contact form */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 56rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .contact-info-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-info-card {
  border-radius: 18px;
  background: var(--surface);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-info-card-icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(212,162,76,0.15);
  color: var(--accent);
}
.contact-info-card-icon svg { width: 20px; height: 20px; }
.contact-info-card h3 { margin-top: 1rem; font-size: 16px; font-weight: 600; }
.contact-info-card p { margin-top: 4px; font-size: 14px; color: var(--muted-foreground); line-height: 1.5; }
.contact-info-card a.cta-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  position: relative;
}
.contact-info-card a.cta-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 2px; width: 100%;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.contact-info-card a.cta-link:hover::after { transform: scaleX(1); transform-origin: left; }
.contact-info-card a.cta-link svg { width: 14px; height: 14px; }

.contact-form-wrap {
  max-width: 42rem;
  margin-inline: auto;
  border-radius: 18px;
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }
.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.contact-form-header .form-icon {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--surface-muted);
  color: var(--ink-strong);
  margin-inline: auto;
}
.contact-form-header .form-icon svg { width: 20px; height: 20px; }
.contact-form-header h2 { margin-top: 1rem; font-size: 28px; }
@media (min-width: 768px) { .contact-form-header h2 { font-size: 32px; } }
.contact-form-header p { margin-top: 8px; font-size: 14px; color: var(--muted-foreground); }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-field label svg { width: 16px; height: 16px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  font-size: 14px;
  color: var(--ink);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212,162,76,0.2);
}
.form-field textarea { resize: none; }
.form-error { font-size: 12px; color: #dc2626; margin-top: 2px; }

.form-consent {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  width: 16px; height: 16px;
  cursor: pointer;
  accent-color: var(--brand-gold);
  flex-shrink: 0;
}
.form-consent span { color: var(--muted-foreground); }
.form-consent a { color: var(--accent); text-decoration: underline; }

/* Blog archive & single */
.blog-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blog-archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-archive-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-post-hero {
  position: relative;
  width: 100%;
  height: 44vh;
  min-height: 320px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-post-hero { height: 58vh; }
}
.blog-post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,37,69,0.4), rgba(11,37,69,0.6), rgba(11,37,69,0.9));
}
.blog-post-hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .blog-post-hero-content { padding-bottom: 3.5rem; }
}
.blog-post-hero-content .pill {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  align-self: flex-start;
}
.blog-post-hero-content h1 { color: #fff; max-width: 48rem; margin-top: 1.25rem; }
.blog-post-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-post-meta svg { width: 16px; height: 16px; }
.blog-post-body { max-width: 48rem; margin-inline: auto; }
.blog-post-excerpt {
  margin-top: 2rem;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-strong);
  line-height: 1.65;
}
.blog-post-content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--ink);
}
.blog-post-content p { line-height: 1.75; }
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-blue);
  transition: color 0.2s;
  margin-top: 2rem;
}
.blog-back-link:hover { color: var(--brand-navy); }
.blog-back-link svg { width: 16px; height: 16px; }
.related-posts { margin-top: 5rem; }
.related-posts h2 { text-align: center; margin-bottom: 2.5rem; }

/* Policy pages */
.policy-page {
  max-width: 48rem;
  margin-inline: auto;
  padding-block: 4rem;
}
@media (min-width: 768px) { .policy-page { padding-block: 6rem; } }
.policy-page h1 { font-size: clamp(28px, 4vw, 40px); }
.policy-page .policy-date { margin-top: 8px; font-size: 14px; color: var(--muted-foreground); }
.policy-section { margin-top: 2.5rem; }
.policy-section h2 { font-size: 20px; font-weight: 600; }
.policy-section-content {
  margin-top: 0.75rem;
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.75;
}
.policy-section-content p + p { margin-top: 0.75rem; }
.policy-section-content ul {
  padding-left: 1.25rem;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-section-content strong { color: var(--ink); }
.policy-contact-box {
  margin-top: 12px;
  border-radius: 18px;
  background: var(--surface-muted);
  padding: 1.25rem;
  font-size: 14px;
}
.policy-contact-box p + p { margin-top: 4px; }
.policy-contact-box .name { font-weight: 600; color: var(--ink); }

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-card h3 { font-size: 16px; font-weight: 600; }
.team-card p { font-size: 14px; color: var(--brand-blue); margin-top: 4px; font-weight: 500; }

/* 404 */
.error-404 {
  text-align: center;
  padding-block: 8rem;
}
.error-404 h1 { font-size: clamp(40px, 8vw, 80px); }
.error-404 p { margin-top: 1rem; color: var(--muted-foreground); }
.error-404 .cta { margin-top: 2rem; }

/* Documents list */
.documents-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.documents-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
}
.documents-list li svg {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Travel routes section */
.docs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Text utility */
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-inline: auto; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
