:root {
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Segoe UI", Arial, Helvetica, sans-serif;
  --ink: #124750;
  --muted: #4c6d76;
  --panel: #ffffff;
  --soft: #d9dfef;
  --hero: #c4cdea;
  --teal: #124750;
  --teal-dark: #0b3540;
  --accent: #28006d;
  --blue: #3153c5;
  --gold: #d99a2b;
  --line: #cdd4e7;
  --shadow: 0 18px 48px rgba(28, 49, 98, 0.14);
  --max: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  background: var(--hero);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 200px;
  padding: 28px clamp(30px, 3.8vw, 76px);
  background:
    linear-gradient(180deg, rgba(196, 205, 234, 0) 68%, var(--hero) 100%),
    linear-gradient(90deg, #f1eeee 0%, #c8cfe5 37%, #3154c8 100%);
  border-bottom: 0;
  backdrop-filter: none;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -54px;
  left: 0;
  height: 54px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(196, 205, 234, 0.92), var(--hero) 82%),
    linear-gradient(90deg, rgba(241, 238, 238, 0.42) 0%, rgba(200, 207, 229, 0.36) 37%, rgba(49, 84, 200, 0.26) 100%);
}

.brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 158px;
  height: 136px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(38px, 4.8vw, 82px);
  margin-left: clamp(120px, 12vw, 220px);
  padding-top: 28px;
}

.site-nav a {
  min-height: auto;
  padding: 0;
  color: #063f47;
  font-size: clamp(17px, 1.28vw, 23px);
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-radius: 0;
}

.site-nav a:hover,
.site-nav a.active {
  color: #071f4e;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: start;
  isolation: auto;
  overflow: visible;
  padding: clamp(36px, 6vh, 80px) 0 0;
  background: var(--hero);
}

.hero::after {
  content: none;
}

.hero-media {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 5.6vw, 96px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 0 clamp(30px, 3.5vw, 68px) clamp(60px, 8vh, 110px);
  color: var(--ink);
}

.hero-content,
.page-shell {
  opacity: 1;
  transform: translateY(0);
}

#app.page-enter .hero-content {
  animation: pageFadeUp 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

#app.page-enter .page-shell {
  animation: pageFadeUp 760ms cubic-bezier(0.22, 1, 0.36, 1) 90ms both;
}

@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 55px);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--ink);
}

.hero p:not(.kicker) {
  max-width: 860px;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: var(--muted);
  font-size: clamp(12px, 1.75vw, 21px);
  font-weight: 500;
  line-height: 1.4;
}

.hero-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background: #dbe4f4;
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: clamp(330px, 31vw, 520px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: var(--hero-position, center center);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #ffffff;
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.ghost {
  color: var(--teal-dark);
  border-color: rgba(18, 71, 80, 0.42);
  background: rgba(255, 255, 255, 0.24);
}

.page-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.feature-band article {
  min-height: 154px;
  padding: 24px;
  background: #ffffff;
}

.feature-band h2,
.service-card h2,
.destination-card h2,
.price-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.1;
}

.feature-band p,
.service-card p,
.destination-card p,
.price-card p,
.content-section p,
.split-section p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin-top: clamp(46px, 7vw, 92px);
}

.split-section h2,
.content-section h2,
.contact-panel h2 {
  max-width: 780px;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.image-panel {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-stats span {
  display: grid;
  min-height: 96px;
  align-content: center;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: #ffffff;
  border-radius: 8px;
}

.mini-stats strong {
  display: block;
  color: var(--teal-dark);
  font-size: 27px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(42px, 7vw, 86px);
}

.destination-card,
.service-card,
.price-card {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.services-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.65fr);
  gap: 18px;
  align-items: stretch;
}

.service-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(18, 71, 80, 0.94), rgba(40, 0, 109, 0.72)),
    url("assets/hero-services-ai.jpg") center / cover;
  box-shadow: var(--shadow);
}

.service-feature h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.service-feature p:not(.section-label) {
  margin: 0 0 26px;
  color: #d8f0ee;
}

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

.services-panel .service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 14px;
  min-height: 168px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 71, 80, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.78));
  box-shadow: 0 10px 28px rgba(23, 32, 39, 0.06);
}

.services-panel .service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(49, 83, 197, 0.08);
}

.services-panel .service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 71, 80, 0.24);
  box-shadow: 0 16px 34px rgba(23, 32, 39, 0.1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), var(--blue));
}

.services-panel .service-card h2 {
  margin: 0 0 8px;
  font-size: 19px;
}

.services-panel .service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.services-panel .service-card a {
  position: relative;
  z-index: 1;
  grid-column: 2;
  align-self: end;
  width: fit-content;
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.4fr);
  gap: 18px;
  margin-top: clamp(42px, 7vw, 86px);
}

.why-feature {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  color: #ffffff;
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(18, 71, 80, 0.94), rgba(49, 83, 197, 0.55)),
    url("assets/hero-about-ai.jpg") center / cover;
  box-shadow: var(--shadow);
}

.why-feature h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.02;
}

.why-feature p:not(.section-label) {
  margin: 0 0 26px;
  color: #d8f0ee;
}

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

.why-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 148px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(18, 71, 80, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.78));
  box-shadow: 0 10px 28px rgba(23, 32, 39, 0.06);
}

.why-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(18, 71, 80, 0.08);
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 71, 80, 0.24);
  box-shadow: 0 16px 34px rgba(23, 32, 39, 0.1);
}

.why-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), var(--blue));
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.15;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.destination-card {
  display: grid;
  grid-template-rows: 168px auto auto auto;
  gap: 12px;
  padding: 0 0 22px;
  overflow: hidden;
}

.destination-card h2,
.destination-card p,
.destination-card a {
  margin-right: 20px;
  margin-left: 20px;
}

.destination-card a,
.service-card a {
  align-self: end;
  color: var(--teal-dark);
  font-weight: 800;
}

.card-image {
  min-height: 168px;
  background:
    linear-gradient(20deg, rgba(18, 71, 80, 0.35), rgba(49, 83, 197, 0.14)),
    var(--card-image, url("assets/hero-travel.jpg")) var(--card-position, center) / cover;
}

.content-section,
.form-section,
.contact-panel {
  margin-top: clamp(42px, 7vw, 86px);
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(23, 32, 39, 0.08);
}

.content-section.narrow {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.content-section p + p {
  margin-top: 14px;
}

.about-overview-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.62fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 64px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 241, 255, 0.9)),
    var(--panel);
  box-shadow: 0 14px 42px rgba(23, 32, 39, 0.08);
}

.about-overview-copy {
  align-self: center;
  min-width: 0;
}

.about-overview-copy h2 {
  max-width: 760px;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.02;
}

.about-overview-copy p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.about-overview-copy p + p {
  margin-top: 12px;
}

.about-overview-image {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-overview-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-goals {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 1.08fr) repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.about-goals > div {
  display: grid;
  align-content: center;
  padding: 18px;
  color: #ffffff;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--teal), var(--blue));
}

.about-goals .section-label {
  color: rgba(255, 255, 255, 0.82);
}

.about-goals h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.05;
}

.about-goals .goal-card {
  min-height: 132px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
}

.about-goals .goal-card h3 {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.15;
}

.about-goals .goal-card p {
  font-size: 13px;
}

.story-panel,
.vision-mission-panel {
  margin-top: clamp(42px, 7vw, 86px);
}

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 241, 255, 0.92)),
    var(--panel);
  box-shadow: 0 14px 42px rgba(23, 32, 39, 0.08);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.story-copy h2,
.vision-card h2,
.mission-card h2 {
  max-width: 820px;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.story-copy p:not(.section-label),
.vision-card p,
.mission-list p {
  margin: 0;
  color: var(--muted);
}

.story-image,
.vision-card figure {
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image img,
.vision-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.goal-card-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.goal-card {
  min-height: 156px;
  padding: 18px;
  border: 1px solid rgba(18, 71, 80, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.goal-card h3,
.mission-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.goal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.vision-mission-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
}

.vision-card,
.mission-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(23, 32, 39, 0.08);
}

.vision-card {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
}

.vision-card figure {
  min-height: 260px;
}

.vision-card img {
  min-height: 260px;
}

.mission-card {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(231, 238, 255, 0.78)),
    #ffffff;
}

.mission-list {
  display: grid;
  gap: 14px;
}

.mission-list article {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 13px;
  align-items: start;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.mission-list span {
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(18, 71, 80, 0.1);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.timeline article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  font-weight: 900;
  border-radius: 50%;
  background: var(--teal);
}

.timeline h3,
.check-grid h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.timeline p,
.check-grid p {
  margin: 0;
  color: var(--muted);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.check-grid article {
  min-height: 150px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--soft);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
}

.two-column article {
  min-width: 0;
}

.two-column h2 {
  font-size: clamp(28px, 3.2vw, 42px);
}

.text-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.text-list.compact {
  margin-bottom: 0;
}

.text-list li {
  padding-left: 26px;
  color: var(--muted);
  background: linear-gradient(var(--teal), var(--teal)) left 0.72em / 10px 10px no-repeat;
}

.package-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.package-list {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.package-list h3 {
  margin: 0 0 16px;
  font-size: 21px;
}

.package-list div,
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.package-list span,
.chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  border: 1px solid rgba(18, 71, 80, 0.18);
  border-radius: 999px;
  background: #ffffff;
}

.chip-list {
  margin-top: 28px;
}

.visa-country-gallery {
  overflow: hidden;
}

.visa-gallery-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.visa-gallery-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  margin-top: 30px;
}

.visa-country-feature {
  display: grid;
  grid-template-rows: minmax(270px, 0.9fr) auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal-dark);
  box-shadow: var(--shadow);
}

.visa-country-photo {
  min-height: 270px;
  background:
    linear-gradient(22deg, rgba(18, 71, 80, 0.2), rgba(49, 83, 197, 0.12)),
    var(--visa-image) var(--visa-position, center) / cover;
  transition: transform 420ms ease, opacity 260ms ease;
}

.visa-country-feature.is-changing .visa-country-photo {
  opacity: 0.86;
  transform: scale(1.025);
}

.visa-country-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(18, 71, 80, 0.98), rgba(40, 0, 109, 0.78));
}

.visa-country-copy .section-label {
  color: rgba(255, 255, 255, 0.76);
}

.visa-country-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1;
}

.visa-country-copy strong {
  width: fit-content;
  padding: 7px 10px;
  color: #ffffff;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.visa-country-copy p {
  margin: 0;
  color: #d8f0ee;
}

.visa-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.visa-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: #123940;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: #ffffff;
}

.visa-country-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.visa-country-card {
  display: grid;
  grid-template-rows: 118px auto;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--teal-dark);
  text-align: left;
  border: 1px solid rgba(18, 71, 80, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(23, 32, 39, 0.06);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.visa-country-card-image {
  min-height: 118px;
  background:
    linear-gradient(20deg, rgba(18, 71, 80, 0.24), rgba(49, 83, 197, 0.1)),
    var(--visa-thumb) var(--visa-thumb-position, center) / cover;
  transition: transform 260ms ease;
}

.visa-country-card > span:last-child {
  display: block;
  padding: 12px 13px;
  font-size: 14px;
  font-weight: 900;
}

.visa-country-card:hover,
.visa-country-card:focus-visible {
  border-color: rgba(18, 71, 80, 0.34);
  box-shadow: 0 16px 34px rgba(23, 32, 39, 0.11);
  transform: translateY(-2px);
}

.visa-country-card:hover .visa-country-card-image,
.visa-country-card:focus-visible .visa-country-card-image {
  transform: scale(1.035);
}

.visa-country-card.active {
  color: #ffffff;
  border-color: var(--teal);
  background: linear-gradient(145deg, var(--teal), var(--blue));
  box-shadow: 0 16px 34px rgba(18, 71, 80, 0.2);
}

.destination-explorer {
  overflow: hidden;
}

.destination-explorer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.destination-explorer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: 30px;
}

.destination-picker {
  display: grid;
  gap: 18px;
  align-content: start;
}

.destination-picker-group {
  padding: 22px;
  border: 1px solid rgba(18, 71, 80, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(217, 223, 239, 0.88), rgba(238, 244, 255, 0.64));
}

.destination-picker-group h3 {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 21px;
}

.destination-picker-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.destination-option {
  min-height: 38px;
  padding: 9px 14px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(18, 71, 80, 0.14);
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.destination-option:hover,
.destination-option:focus-visible {
  border-color: rgba(18, 71, 80, 0.38);
  box-shadow: 0 10px 22px rgba(23, 32, 39, 0.08);
  transform: translateY(-2px);
}

.destination-option.active {
  color: #ffffff;
  border-color: var(--teal);
  background: linear-gradient(145deg, var(--teal), var(--blue));
  box-shadow: 0 12px 26px rgba(18, 71, 80, 0.18);
}

.destination-preview {
  display: grid;
  grid-template-rows: minmax(230px, 0.9fr) auto;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal-dark);
  box-shadow: var(--shadow);
}

.destination-preview-image {
  min-height: 230px;
  background:
    linear-gradient(20deg, rgba(18, 71, 80, 0.24), rgba(49, 83, 197, 0.1)),
    var(--preview-image) var(--preview-position, center) / cover;
  transition: transform 420ms ease, opacity 260ms ease;
}

.destination-preview.is-changing .destination-preview-image {
  opacity: 0.82;
  transform: scale(1.025);
}

.destination-preview-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(18, 71, 80, 0.98), rgba(40, 0, 109, 0.78));
}

.destination-preview-copy .section-label {
  color: rgba(255, 255, 255, 0.76);
}

.destination-preview-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.02;
}

.destination-preview-copy p {
  margin: 0;
  color: #d8f0ee;
}

.destination-style {
  width: fit-content;
  padding: 7px 10px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.destination-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: #123940;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  background: #ffffff;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.price-card.featured {
  border-color: rgba(49, 83, 197, 0.7);
  box-shadow: var(--shadow);
}

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

.price-card li {
  padding-left: 22px;
  color: #31414a;
  background: linear-gradient(var(--teal), var(--teal)) left 0.72em / 9px 9px no-repeat;
}

.price-card .button {
  margin-top: auto;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.slot {
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 16px;
  color: var(--ink);
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.slot:hover {
  border-color: var(--teal);
  background: #e7f8f6;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #293942;
  font-weight: 800;
}

.booking-form .full,
.booking-form button {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid #cbd8d6;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
}

.booking-form textarea {
  resize: vertical;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background:
    linear-gradient(120deg, rgba(7, 84, 93, 0.95), rgba(23, 32, 39, 0.94)),
    url("assets/hero-travel.jpg") center / cover;
}

.contact-panel h2,
.contact-panel p {
  color: #ffffff;
}

.route-strip {
  margin-top: clamp(42px, 7vw, 86px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.route-strip h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.route-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.route-strip a {
  padding: 8px 11px;
  color: #33444d;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.route-strip a.active {
  color: #ffffff;
  border-color: var(--teal);
  background: var(--teal);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 54px) 24px;
  color: #dceeed;
  background:
    linear-gradient(140deg, rgba(12, 34, 42, 0.96), rgba(10, 43, 54, 0.92)),
    url("assets/hero-destination-ai.jpg") center / cover;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(196, 205, 234, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(40, 0, 109, 0.16), rgba(49, 83, 197, 0.12));
}

.footer-cta,
.footer-main,
.footer-bottom {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0 0 10px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.footer-cta p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: #c7e2e0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(150px, 0.7fr) minmax(160px, 0.75fr) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(36px, 6vw, 72px) 0;
}

.footer-logo-card {
  display: grid;
  place-items: center;
  width: min(250px, 100%);
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff, #dfe8ff);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.footer-logo-card img {
  width: 210px;
  max-height: 160px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: #c7e2e0;
}

.footer-badges,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.footer-badges span,
.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

.footer-links a,
.footer-contact a {
  display: block;
  width: fit-content;
  margin: 0 0 10px;
  color: #c7e2e0;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-line {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  color: #a9c8c6;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #dceeed;
  font-weight: 800;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .site-header {
    min-height: 190px;
  }

  .site-nav {
    gap: clamp(28px, 3vw, 48px);
    margin-left: clamp(64px, 8vw, 120px);
  }

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

  .hero-content {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.8fr);
    gap: 42px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero-photo img {
    height: clamp(310px, 31vw, 430px);
  }
}

@media (max-width: 980px) {
  .site-header {
    min-height: 176px;
    padding: 24px;
  }

  .site-header::after {
    bottom: -54px;
    height: 54px;
  }

  .brand {
    width: 132px;
    height: 116px;
  }

  .menu-button {
    display: block;
    margin-top: 12px;
    margin-left: auto;
  }

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

  .site-nav a {
    padding: 14px 12px;
    font-size: 17px;
  }

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

  .feature-band,
  .card-grid,
  .pricing-grid,
  .services-panel,
  .why-panel,
  .about-overview-panel,
  .package-columns,
  .two-column,
  .story-panel,
  .vision-mission-panel,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-explorer-head,
  .destination-explorer-grid,
  .visa-gallery-layout {
    grid-template-columns: 1fr;
  }

  .destination-explorer-head,
  .visa-gallery-head {
    flex-direction: column;
  }

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

  .footer-cta,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-overview-panel {
    grid-template-columns: 1fr;
  }

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

  .about-goals > div {
    grid-column: 1 / -1;
  }

  .split-section,
  .hero-content {
    grid-template-columns: 1fr;
  }

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

  .hero-photo {
    max-width: 680px;
    width: min(100%, 680px);
  }

  .hero-photo img {
    height: clamp(280px, 42vw, 360px);
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .page-shell {
    padding-top: 34px;
  }

  .image-panel,
  .image-panel img {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  .services-panel,
  .why-panel,
  .vision-mission-panel {
    grid-template-columns: 1fr;
  }

  .service-feature,
  .why-feature {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 132px;
    padding: 18px 16px;
  }

  .site-header::after {
    bottom: -38px;
    height: 38px;
  }

  .brand {
    width: 96px;
    height: 86px;
  }

  .site-nav {
    top: 108px;
    right: 14px;
    left: 14px;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 28px));
    gap: 24px;
    padding: 0 0 34px;
  }

  .hero h1 {
    font-size: clamp(32px, 10.5vw, 42px);
    line-height: 1;
  }

  .hero p:not(.kicker) {
    max-width: 38ch;
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-photo {
    border-radius: 18px 18px 0 0;
  }

  .hero-photo img {
    height: clamp(230px, 58vw, 320px);
  }

  .page-shell {
    width: min(var(--max), calc(100% - 28px));
    padding: 28px 0 46px;
  }

  .feature-band,
  .card-grid,
  .services-panel,
  .services-panel .service-grid,
  .why-panel,
  .why-card-grid,
  .about-overview-panel,
  .about-goals,
  .pricing-grid,
  .check-grid,
  .calendar-grid,
  .package-columns,
  .two-column,
  .story-panel,
  .vision-mission-panel,
  .goal-card-grid,
  .booking-form,
  .footer-main,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-logo-card {
    width: 220px;
    min-height: 170px;
  }

  .footer-logo-card img {
    width: 180px;
  }

  .story-panel,
  .about-overview-panel,
  .vision-card,
  .mission-card {
    padding: 22px;
  }

  .about-overview-copy h2,
  .story-copy h2,
  .vision-card h2,
  .mission-card h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .about-overview-image,
  .about-overview-image img,
  .story-image,
  .story-image img,
  .vision-card figure,
  .vision-card img {
    min-height: 260px;
  }

  .services-panel .service-card {
    min-height: auto;
  }

  .why-card {
    min-height: auto;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-section,
  .form-section,
  .contact-panel {
    padding: 22px;
  }

  .destination-picker-group {
    padding: 18px;
  }

  .visa-country-feature {
    grid-template-rows: 230px auto;
  }

  .visa-country-photo {
    min-height: 230px;
  }

  .visa-country-copy {
    padding: 20px;
  }

  .destination-preview {
    grid-template-rows: 220px auto;
  }

  .destination-preview-copy {
    padding: 20px;
  }

  .destination-option {
    min-height: 40px;
    padding: 9px 12px;
  }

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

  .visa-country-card {
    grid-template-columns: 132px 1fr;
    grid-template-rows: 1fr;
    min-height: 96px;
  }

  .visa-country-card-image {
    min-height: 96px;
  }

  .visa-country-card > span:last-child {
    align-self: center;
    padding: 14px;
  }

  .timeline article {
    grid-template-columns: 40px 1fr;
  }

  .timeline span {
    width: 40px;
    height: 40px;
  }

  .image-panel,
  .image-panel img {
    min-height: 360px;
  }

  .content-section,
  .form-section,
  .contact-panel,
  .split-section,
  .card-grid,
  .why-panel,
  .vision-mission-panel,
  .route-strip {
    margin-top: 32px;
  }
}

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

  #app.page-enter .hero-content,
  #app.page-enter .page-shell {
    animation: none;
  }

  .destination-option,
  .destination-preview-image,
  .visa-country-card,
  .visa-country-card-image,
  .visa-country-photo {
    transition: none;
  }
}
