:root {
  --bg: #f5f8ff;
  --surface: #ffffff;
  --surface-soft: #eef5ff;
  --line: rgba(16, 47, 108, 0.1);
  --line-strong: rgba(16, 47, 108, 0.16);
  --text: #102750;
  --muted: #5f708f;
  --primary: #0d3f9b;
  --primary-strong: #082c75;
  --primary-soft: #d8e8ff;
  --accent: #ff8d2a;
  --accent-strong: #d86c0b;
  --accent-soft: #ffe4cc;
  --success: #25d366;
  --shadow: 0 20px 60px rgba(7, 31, 79, 0.12);
  --shadow-soft: 0 16px 36px rgba(7, 31, 79, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --header-offset: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(55, 121, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8ff 38%, #ffffff 100%);
}

body.drawer-open {
  overflow: hidden;
}

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

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

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

input,
select,
textarea {
  appearance: none;
}

:focus-visible {
  outline: 3px solid rgba(13, 63, 155, 0.18);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(16, 47, 108, 0.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  padding: 0.45rem 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 54px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(13, 63, 155, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-strong);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(13, 63, 155, 0.2);
  box-shadow: 0 18px 32px rgba(7, 31, 79, 0.14);
}

.nav-toggle__bars {
  display: inline-grid;
  gap: 0.26rem;
}

.nav-toggle__bars span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.24s ease,
    opacity 0.2s ease;
}

.nav-toggle__label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header.is-drawer-open .nav-toggle__bars span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-drawer-open .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-drawer-open .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-drawer-panel {
  display: contents;
}

.nav-drawer-backdrop {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.42rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--primary-strong);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-pill,
.whatsapp-pill,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1.08rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.contact-pill {
  color: var(--primary-strong);
  background: var(--surface-soft);
}

.whatsapp-pill {
  color: #fff;
  background: linear-gradient(135deg, #28da6b, #17b856);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 40px rgba(13, 63, 155, 0.24);
}

.button-secondary {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(13, 63, 155, 0.14);
}

.contact-pill:hover,
.contact-pill:focus-visible,
.whatsapp-pill:hover,
.whatsapp-pill:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-section {
  padding: 1.5rem 0 3rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.5rem;
  align-items: start;
}

.hero-copy {
  padding: 2rem 0 1.5rem;
}

.eyebrow,
.page-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(13, 63, 155, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-accent {
  background: var(--accent-soft);
  color: #b65903;
}

.hero-copy h1,
.section-heading h2,
.contact-panel h2,
.page-title,
.rich-text h2,
.rich-text h3,
.notfound-panel h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-copy h1,
.page-title {
  line-height: 1.04;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.hero-text,
.section-heading p,
.contact-panel p,
.service-item p,
.destination-content p,
.feature-card p,
.process-card p,
.testimonial-card p,
.footer-brand p,
.form-note,
.footer-links li,
.spotlight-card span,
.faq-card p,
.blog-card p,
.page-description,
.article-meta,
.rich-text p,
.rich-text li,
.aside-card,
.notfound-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 58ch;
  margin: 1rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-points,
.inline-stat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.hero-points li,
.inline-stat-list li {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 63, 155, 0.08);
  box-shadow: 0 10px 24px rgba(7, 31, 79, 0.06);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at 75% 20%, rgba(86, 151, 255, 0.35), transparent 28%),
    linear-gradient(145deg, #eef6ff 0%, #d9e8ff 42%, #f7fbff 100%);
  border: 1px solid rgba(13, 63, 155, 0.08);
  box-shadow: var(--shadow);
  animation: hero-panel-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.flight-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  overflow: hidden;
  pointer-events: none;
}

.plane-flight {
  position: absolute;
  left: 0;
  top: 0;
  width: 208px;
  height: 54px;
  opacity: 0;
  will-change: transform, opacity;
  animation: plane-flight-move var(--flight-duration, 2000ms) linear forwards;
}

.plane-flight__body {
  position: absolute;
  inset: 0;
  transform: scaleX(var(--flight-direction, 1));
  transform-origin: center;
}

.plane-flight__trail {
  position: absolute;
  left: 0;
  right: 44px;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 63, 155, 0), rgba(13, 63, 155, 0.2) 38%, rgba(255, 141, 42, 0.48));
  transform: translateY(-50%);
  animation: plane-trail-pulse var(--flight-duration, 2000ms) ease-out forwards;
}

.plane-flight__icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  color: var(--primary);
  transform: translateY(-50%) rotate(-10deg);
  filter: drop-shadow(0 10px 18px rgba(13, 63, 155, 0.18));
  animation: plane-flight-bob 900ms ease-in-out infinite;
}

.plane-flight__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto auto 4.8rem -10%;
  width: 72%;
  height: 34%;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(13, 63, 155, 0.1), rgba(13, 63, 155, 0.03)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.45), transparent 65%);
  filter: blur(2px);
  animation: shadow-drift 8s ease-in-out infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 11%;
  top: 13%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 16px solid rgba(255, 255, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(13, 63, 155, 0.08);
  animation: ring-pulse 6s ease-in-out infinite;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
}

.visual-orb-large {
  right: -2rem;
  bottom: -2rem;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 197, 146, 0.55), rgba(255, 141, 42, 0.08));
  animation: orb-float-large 10s ease-in-out infinite;
}

.visual-orb-small {
  left: 2rem;
  top: 3rem;
  width: 86px;
  height: 86px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 196, 147, 0.8), rgba(255, 141, 42, 0.08));
  animation: orb-float-small 7s ease-in-out infinite;
}

.visual-card {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(13, 63, 155, 0.08);
  box-shadow: 0 24px 40px rgba(7, 31, 79, 0.14);
  backdrop-filter: blur(10px);
}

.visual-card-route {
  top: -0.41rem;
  left: 1.7rem;
  width: min(290px, calc(100% - 4rem));
  padding: 1.2rem 1.3rem 1.4rem;
  transform-origin: center;
  animation:
    hero-card-in 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.12s both,
    hero-card-float 7s ease-in-out 1.1s infinite;
}

.card-tag,
.blog-tag {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 63, 155, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.visual-card-route strong {
  display: block;
  margin-top: 0.9rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.flight-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  min-height: 56px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at left, transparent 14px, rgba(13, 63, 155, 0.08) 15px, transparent 16px) left center / 30px 100% repeat-x,
    linear-gradient(90deg, rgba(255, 141, 42, 0.2), rgba(13, 63, 155, 0.18));
}

.flight-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: translateX(-140%);
  animation: route-sheen 3.8s linear infinite;
}

.flight-line svg {
  position: relative;
  z-index: 1;
  width: 34px;
  fill: var(--primary);
  animation: plane-bob 2.8s ease-in-out infinite;
}

.passport-stack {
  position: absolute;
  right: 4rem;
  top: 7.2rem;
  width: 225px;
  height: 320px;
  transform-origin: center;
  animation:
    passport-in 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.22s both,
    passport-float 7.2s ease-in-out 1.25s infinite;
}

.passport-back,
.passport-front {
  position: absolute;
  inset: 0;
  border-radius: 26px;
}

.passport-back {
  transform: rotate(-14deg) translate(-28px, -16px);
  background:
    linear-gradient(180deg, rgba(163, 202, 255, 0.95), rgba(102, 156, 246, 0.75)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), transparent);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 32px rgba(13, 63, 155, 0.15);
}

.passport-back::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 68px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.passport-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: rotate(11deg);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10, 30, 78, 0.92), rgba(12, 46, 118, 0.96)),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 45%);
  box-shadow: 0 26px 50px rgba(6, 26, 68, 0.32);
}

.passport-front::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg);
  animation: passport-shine 4.8s linear 1.3s infinite;
}

.passport-front::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.passport-title,
.passport-subtitle {
  position: relative;
  z-index: 1;
  color: #f8d7a3;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.passport-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.passport-subtitle {
  font-size: 0.8rem;
}

.passport-globe {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid #f8d7a3;
}

.passport-globe::before,
.passport-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(248, 215, 163, 0.6);
}

.passport-globe::before {
  transform: scaleX(0.45);
  animation: globe-orbit-x 8s linear infinite;
}

.passport-globe::after {
  transform: scaleY(0.45);
  animation: globe-orbit-y 8s linear infinite;
}

.spotlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.spotlight-card,
.service-item,
.destination-card,
.feature-card,
.process-card,
.testimonial-card,
.contact-form,
.contact-panel,
.faq-card,
.blog-card,
.resource-card,
.content-card,
.aside-card,
.callout-card,
.notfound-panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.spotlight-card {
  padding: 1.3rem 1.35rem;
}

.spotlight-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.section {
  padding: 5.5rem 0;
}

.section-overlap {
  padding-top: 4rem;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(238, 245, 255, 0.72), rgba(255, 255, 255, 0.8)),
    var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.section-heading h2,
.contact-panel h2,
.page-title,
.notfound-panel h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.section-heading p,
.page-description {
  margin: 1rem auto 0;
  max-width: 64ch;
}

.destination-grid,
.feature-grid,
.process-grid,
.testimonial-grid,
.faq-grid,
.blog-grid,
.resource-grid {
  display: grid;
  gap: 1.15rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.service-item,
.feature-card,
.process-card,
.testimonial-card,
.faq-card,
.blog-card {
  padding: 1.45rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: 100%;
}

.service-item h3,
.feature-card h3,
.destination-content h3,
.process-card h3,
.testimonial-card strong,
.faq-card h3,
.blog-card h3,
.resource-card h3,
.site-footer h2,
.rich-text h2,
.rich-text h3,
.aside-card h2,
.aside-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.service-item p,
.feature-card p,
.destination-content p,
.process-card p,
.faq-card p,
.blog-card p {
  margin: 0.45rem 0 0;
}

.service-icon,
.feature-icon,
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 63, 155, 0.12), rgba(255, 255, 255, 0.9));
  color: var(--primary);
}

.service-icon svg,
.feature-icon svg,
.process-icon svg {
  width: 26px;
  fill: currentColor;
}

.destination-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.destination-art,
.blog-card-image,
.resource-image,
.article-cover {
  position: relative;
  overflow: hidden;
  background: #cfe0ff;
}

.destination-art {
  height: 220px;
  z-index: 1;
}

.destination-art img,
.blog-card-image img,
.resource-image img,
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.destination-art::before,
.blog-card-image::before,
.resource-image::before,
.article-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(13, 63, 155, 0.08)),
    linear-gradient(0deg, rgba(7, 31, 79, 0.24), transparent 54%);
}

.destination-card:hover .destination-art img,
.blog-card:hover .blog-card-image img,
.resource-card:hover .resource-image img,
.article-cover:hover img {
  transform: scale(1.07);
}

.destination-art::after,
.blog-card-image::after,
.resource-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7, 31, 79, 0.22));
}

.destination-content {
  position: relative;
  z-index: 3;
  margin-top: -0.25rem;
  padding: 1.95rem 1.5rem 1.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), #ffffff 28%);
}

.flag-badge {
  position: absolute;
  top: -1.55rem;
  left: 1.5rem;
  z-index: 4;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface), #eef5ff);
  border: 1px solid rgba(13, 63, 155, 0.08);
  box-shadow: 0 16px 24px rgba(7, 31, 79, 0.12);
}

.destination-content h3 {
  margin-top: 1.2rem;
  font-size: 1.25rem;
}

.feature-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card h3,
.process-card h3,
.faq-card h3 {
  margin-top: 1rem;
}

.process-card {
  position: relative;
  padding-top: 2rem;
}

.step-number {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #b65903;
  font-weight: 800;
}

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

.faq-card h3 {
  font-size: 1.14rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.blog-card-image {
  height: 220px;
}

.blog-card-content,
.resource-body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.blog-card h3 {
  margin-top: 0.8rem;
  font-size: 1.22rem;
  line-height: 1.35;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.95rem;
  font-weight: 800;
  color: var(--primary);
}

.text-link::after {
  content: "→";
  margin-left: 0.45rem;
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(3px);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 141, 42, 0.16), transparent 70%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 1.8rem;
}

.contact-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 141, 42, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(13, 63, 155, 0.94), rgba(8, 44, 117, 0.98));
  color: #fff;
}

.contact-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #ffd8af;
}

.contact-panel p,
.contact-panel .contact-details span,
.contact-panel .contact-details .contact-value {
  color: rgba(255, 255, 255, 0.82);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-card {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card-link {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-card-link:hover,
.contact-card-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.contact-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.65;
}

.contact-copy {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  min-height: 34px;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-copy:hover,
.contact-copy:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-copy.is-copied {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.36);
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(13, 63, 155, 0.14);
  border-radius: 16px;
  background: #fbfdff;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(13, 63, 155, 0.42);
  box-shadow: 0 0 0 4px rgba(13, 63, 155, 0.08);
  background: #fff;
}

.message-field {
  margin-bottom: 1rem;
}

.button-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}

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

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ffb162);
  color: #fff;
  font-weight: 800;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumb li+li::before {
  content: "/";
  color: rgba(95, 112, 143, 0.65);
}

.page-title {
  max-width: 18ch;
}

.page-description {
  margin: 1rem 0 0;
  max-width: 64ch;
}

.content-section {
  padding: 2rem 0 5.5rem;
}

.page-grid,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.3rem;
  align-items: start;
}

.content-card,
.aside-card,
.callout-card,
.notfound-panel {
  padding: 1.8rem;
}

.sticky-card {
  position: sticky;
  top: calc(var(--header-offset) + 1rem);
}

.aside-card p,
.aside-card li,
.callout-card p {
  color: var(--muted);
  line-height: 1.68;
}

.aside-card h2,
.aside-card h3 {
  margin-bottom: 0.85rem;
}

.aside-card+.aside-card {
  margin-top: 1rem;
}

.compact-list,
.link-list,
.rich-text ul,
.rich-text ol {
  margin: 0;
  padding-left: 1.2rem;
}

.compact-list li+li,
.link-list li+li,
.rich-text li+li {
  margin-top: 0.6rem;
}

.link-list a {
  color: var(--primary);
  font-weight: 700;
}

.rich-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.16;
}

.rich-text h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.24rem;
}

.rich-text p,
.rich-text ul,
.rich-text ol,
.rich-text blockquote {
  margin-top: 0;
  margin-bottom: 1rem;
}

.rich-text blockquote {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 141, 42, 0.08);
  color: var(--text);
}

.article-cover {
  border-radius: var(--radius-lg);
  height: 360px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.1rem 0 1.5rem;
  font-size: 0.94rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(13, 63, 155, 0.08);
  color: var(--primary-strong);
  font-weight: 700;
}

.callout-card {
  background:
    linear-gradient(180deg, rgba(255, 141, 42, 0.08), rgba(255, 141, 42, 0.03)),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 141, 42, 0.22);
}

.cta-banner {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 141, 42, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(13, 63, 155, 0.94), rgba(8, 44, 117, 0.98));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner .button-row {
  margin-top: 0;
}

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

.resource-card {
  overflow: hidden;
}

.resource-image {
  height: 220px;
}

.resource-body h3 {
  font-size: 1.18rem;
  line-height: 1.35;
}

.resource-body p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.notfound-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.notfound-panel h1 {
  max-width: none;
}

.notfound-panel .button-row {
  justify-content: center;
}

.site-footer {
  padding: 3.2rem 0 1.8rem;
  color: #506481;
  background:
    radial-gradient(circle at top right, rgba(255, 141, 42, 0.14), transparent 24%),
    linear-gradient(180deg, #dce9ff 0%, #edf5ff 62%, #f7fbff 100%);
  border-top: 1px solid rgba(13, 63, 155, 0.08);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-brand img {
  width: min(240px, 100%);
  padding: 0.4rem 0.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 34px rgba(13, 63, 155, 0.08);
}

.site-footer h2 {
  font-size: 1rem;
  color: var(--primary-strong);
}

.footer-links {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.footer-links li+li {
  margin-top: 0.65rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(13, 63, 155, 0.12);
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 16px 28px rgba(13, 63, 155, 0.2);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
  filter: brightness(1.04);
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes plane-flight-move {
  0% {
    opacity: 0;
    transform: translate3d(var(--flight-start-x), var(--flight-start-y), 0) scale(1.68);
  }

  10% {
    opacity: 0.98;
    transform: translate3d(var(--flight-entry-x), var(--flight-entry-y), 0) scale(1.54);
  }

  58% {
    opacity: 0.96;
    transform: translate3d(var(--flight-cruise-x), var(--flight-cruise-y), 0) scale(1.02);
  }

  82% {
    opacity: 0.9;
    transform: translate3d(var(--flight-late-x), var(--flight-late-y), 0) scale(0.76);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--flight-exit-x), var(--flight-exit-y), 0) scale(0.4);
  }
}

@keyframes plane-flight-bob {

  0%,
  100% {
    transform: translateY(-50%) rotate(-10deg);
  }

  50% {
    transform: translateY(calc(-50% - 1px)) rotate(-6deg);
  }
}

@keyframes plane-trail-pulse {
  0% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0.52);
  }

  18% {
    opacity: 0.82;
    transform: translateY(-50%) scaleX(1);
  }

  72% {
    opacity: 0.68;
    transform: translateY(-50%) scaleX(1.08);
  }

  100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(1.24);
  }
}

@keyframes shadow-drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(16px, -8px, 0) scale(1.03);
  }
}

@keyframes ring-pulse {

  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

  50% {
    opacity: 0.88;
    transform: scale(1.06);
  }
}

@keyframes orb-float-large {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, -14px, 0);
  }
}

@keyframes orb-float-small {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(10px, 12px, 0);
  }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-card-float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes route-sheen {
  0% {
    transform: translateX(-140%);
  }

  100% {
    transform: translateX(140%);
  }
}

@keyframes plane-bob {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }

  50% {
    transform: translate3d(10px, -2px, 0) rotate(3deg);
  }
}

@keyframes passport-in {
  from {
    opacity: 0;
    transform: translate3d(26px, 18px, 0) rotate(-4deg) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes passport-float {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-6px, -14px, 0) rotate(-2deg);
  }
}

@keyframes passport-shine {

  0%,
  15% {
    transform: translateX(-180%) skewX(-18deg);
  }

  40%,
  100% {
    transform: translateX(320%) skewX(-18deg);
  }
}

@keyframes globe-orbit-x {
  from {
    transform: rotate(0deg) scaleX(0.45);
  }

  to {
    transform: rotate(360deg) scaleX(0.45);
  }
}

@keyframes globe-orbit-y {
  from {
    transform: rotate(0deg) scaleY(0.45);
  }

  to {
    transform: rotate(-360deg) scaleY(0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-visual,
  .hero-visual::before,
  .hero-visual::after,
  .visual-orb-large,
  .visual-orb-small,
  .visual-card-route,
  .flight-line::after,
  .flight-line svg,
  .passport-stack,
  .passport-front::before,
  .passport-globe::before,
  .passport-globe::after,
  .destination-art img,
  .blog-card-image img,
  .resource-image img {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1180px) {

  .destination-grid-wide,
  .footer-layout,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  :root {
    --header-offset: 122px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 0.75rem 1rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero-layout,
  .contact-layout,
  .page-grid,
  .article-layout,
  .spotlight-strip,
  .destination-grid-wide,
  .feature-grid,
  .process-grid,
  .faq-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section {
    padding: 4.8rem 0;
  }

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

@media (max-width: 760px) {
  :root {
    --header-offset: 96px;
  }

  .container {
    width: min(100% - 1.2rem, 1000px);
  }

  .nav-shell {
    position: relative;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 74px;
    padding: 0.5rem 0;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 96;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(10, 27, 71, 0.24);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease;
  }

  .site-header.is-drawer-open .nav-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-drawer-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(360px, calc(100vw - 1.2rem));
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid rgba(13, 63, 155, 0.12);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 255, 0.96) 100%);
    box-shadow: 0 28px 64px rgba(7, 31, 79, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -0.5rem, 0) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 0.22s ease,
      transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.22s ease;
  }

  .site-header.is-drawer-open .nav-drawer-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .site-nav {
    grid-column: auto;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow: visible;
    padding-bottom: 0;
    white-space: normal;
    scrollbar-width: auto;
  }

  .site-nav a {
    padding: 0.88rem 1rem;
    border-radius: 18px;
    color: var(--primary-strong);
    background: rgba(232, 241, 255, 0.78);
    border: 1px solid rgba(13, 63, 155, 0.08);
    box-shadow: 0 12px 24px rgba(7, 31, 79, 0.06);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-actions,
  .hero-actions,
  .footer-bottom,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-actions {
    width: 100%;
    gap: 0.6rem;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(13, 63, 155, 0.08);
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-points,
  .inline-stat-list {
    gap: 0.6rem;
  }

  .contact-pill,
  .whatsapp-pill,
  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .hero-layout,
  .spotlight-strip,
  .destination-grid-wide,
  .feature-grid,
  .process-grid,
  .faq-grid,
  .blog-grid,
  .contact-layout,
  .footer-layout,
  .resource-grid,
  .service-strip,
  .form-row,
  .page-grid,
  .article-layout,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 0.75rem;
  }

  .hero-copy {
    padding: 1rem 0 0;
  }

  .hero-copy h1,
  .page-title {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    max-width: none;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 28px;
  }

  .passport-stack {
    right: 1.5rem;
    top: 7rem;
    width: 175px;
    height: 250px;
  }

  .visual-card-route {
    top: 0.1rem;
    left: 1rem;
    width: calc(100% - 2.4rem);
    padding: 1rem 1rem 1.1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .contact-panel,
  .contact-form,
  .content-card,
  .aside-card,
  .callout-card,
  .notfound-panel {
    padding: 1.4rem;
  }

  .blog-card-image,
  .resource-image,
  .article-cover {
    height: 240px;
  }

  .destination-content,
  .feature-card,
  .process-card,
  .testimonial-card,
  .faq-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .feature-card,
  .process-card,
  .testimonial-card,
  .faq-card,
  .service-item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
    margin-top: 2rem;
  }

  .breadcrumb {
    gap: 0.4rem;
  }
}

@media (max-width: 520px) {
  :root {
    --header-offset: 90px;
  }

  .brand img {
    height: 44px;
  }

  .nav-toggle {
    gap: 0.6rem;
    padding: 0.72rem 0.9rem;
    border-radius: 16px;
  }

  .nav-toggle__label {
    font-size: 0.72rem;
  }

  .nav-drawer-panel {
    width: calc(100vw - 1.2rem);
    max-height: calc(100vh - 92px);
    padding: 0.92rem;
    border-radius: 24px;
  }

  .hero-visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .passport-stack {
    right: 1rem;
    top: 7.8rem;
    width: 138px;
    height: 205px;
  }

  .passport-title {
    font-size: 0.96rem;
  }

  .passport-globe {
    width: 58px;
    height: 58px;
  }

  .passport-subtitle {
    font-size: 0.72rem;
  }

  .service-item,
  .feature-card,
  .process-card,
  .testimonial-card,
  .faq-card,
  .blog-card-content,
  .resource-body {
    padding: 1.05rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-panel h2,
  .page-title,
  .notfound-panel h1 {
    line-height: 1.1;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-heading {
    margin-bottom: 1.6rem;
  }

  .article-cover,
  .blog-card-image,
  .resource-image {
    height: 210px;
  }
}
