:root {
  --ink: #111c28;
  --muted: #586976;
  --paper: #f6f9fb;
  --line: #dce6ec;
  --teal: #07858b;
  --teal-dark: #075f66;
  --gold: #c99839;
  --navy: #111f32;
  --steel: #e9f1f4;
  --white: #ffffff;
  --shadow: 0 22px 64px rgba(17, 31, 50, 0.14);
  --soft-shadow: 0 12px 34px rgba(17, 31, 50, 0.08);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-line: rgba(255, 255, 255, 0.72);
  --glass-edge: rgba(7, 133, 139, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(7, 133, 139, 0.08), transparent 34%),
    linear-gradient(250deg, rgba(201, 152, 57, 0.08), transparent 36%),
    var(--paper);
  line-height: 1.6;
  isolation: isolate;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background:
    repeating-linear-gradient(90deg, rgba(7, 133, 139, 0.075) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(17, 31, 50, 0.055) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
  animation: backgroundGrid 24s linear infinite;
}

body::after {
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.55) 44%, transparent 57%),
    linear-gradient(72deg, transparent 0%, rgba(7, 133, 139, 0.08) 48%, transparent 62%);
  transform: translateX(-24%);
  animation: backgroundSweep 12s ease-in-out infinite;
}

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

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

section[id] {
  scroll-margin-top: 86px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 251, 252, 0.62));
  border-bottom: 1px solid var(--glass-line);
  box-shadow: 0 14px 42px rgba(17, 31, 50, 0.09);
  backdrop-filter: blur(22px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 44px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(17, 31, 50, 0.1));
}

.brand-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--navy) 70%, var(--gold));
  box-shadow: 0 10px 24px rgba(7, 133, 139, 0.22);
  font-size: 1.35rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand-script {
  color: var(--navy);
  font-family: "Dancing Script", cursive;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(7, 133, 139, 0.12);
}

.site-nav .nav-cta {
  color: var(--white);
  background: var(--teal);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--teal-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: center;
  min-height: min(790px, 100vh);
  padding: 100px clamp(18px, 5vw, 72px) 160px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(12, 28, 44, 0.96) 0%, rgba(17, 31, 50, 0.82) 34%, rgba(242, 248, 250, 0.94) 64%, rgba(232, 246, 244, 0.88) 100%),
    radial-gradient(circle at 74% 22%, rgba(201, 152, 57, 0.3), transparent 23%),
    radial-gradient(circle at 35% 84%, rgba(7, 133, 139, 0.28), transparent 28%),
    repeating-linear-gradient(90deg, rgba(7, 133, 139, 0.08) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(17, 31, 50, 0.055) 0 1px, transparent 1px 88px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.78) 47%, transparent 56%),
    linear-gradient(180deg, rgba(7, 133, 139, 0.08), transparent 32%);
  transform: translateX(-48%);
  animation: heroSweep 9s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(246, 249, 251, 0.94) 0%, rgba(246, 249, 251, 0) 34%);
}

.hero-animation {
  position: absolute;
  inset: 70px 0 0;
  overflow: hidden;
  pointer-events: none;
}

.world-board {
  position: absolute;
  top: 50%;
  right: clamp(24px, 7vw, 96px);
  width: min(47vw, 610px);
  min-width: 430px;
  aspect-ratio: 1.12;
  transform: translateY(-52%);
  animation: boardEnter 900ms ease both;
}

.world-board::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px dashed rgba(7, 133, 139, 0.16);
  border-radius: 999px;
  transform: rotate(-8deg);
  animation: orbitTrace 18s linear infinite;
}

.world-board::after {
  content: "";
  position: absolute;
  inset: 23% 7%;
  border-top: 1px solid rgba(201, 152, 57, 0.26);
  transform: rotate(12deg);
  animation: routeGlow 4.6s ease-in-out infinite;
}

.globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(8, 124, 127, 0.34);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(8, 124, 127, 0.14) 49%, rgba(8, 124, 127, 0.14) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(201, 152, 57, 0.18) 49%, rgba(201, 152, 57, 0.18) 51%, transparent 52%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(232, 246, 244, 0.56));
  box-shadow: 0 28px 80px rgba(17, 31, 50, 0.18), inset 0 0 42px rgba(7, 133, 139, 0.09);
  animation: globePulse 5s ease-in-out infinite;
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(8, 124, 127, 0.22);
  border-radius: 50%;
}

.globe::before {
  transform: scaleX(0.48);
}

.globe::after {
  transform: scaleY(0.48);
}

.globe-ring {
  position: absolute;
  inset: -11%;
  border: 1px solid rgba(8, 124, 127, 0.22);
  border-radius: 50%;
  animation: rotateRing 13s linear infinite;
}

.ring-two {
  inset: 5%;
  border-color: rgba(201, 152, 57, 0.3);
  animation-duration: 9s;
  animation-direction: reverse;
}

.ring-three {
  inset: 22%;
  border-color: rgba(23, 38, 58, 0.18);
  animation-duration: 16s;
}

.globe-axis {
  position: absolute;
  top: 50%;
  left: 9%;
  width: 82%;
  height: 2px;
  background: rgba(23, 38, 58, 0.18);
  transform: rotate(-18deg);
}

.route {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(8, 124, 127, 0.58), transparent);
  transform-origin: center;
  animation: routeFlow 3.8s ease-in-out infinite;
}

.route-one {
  top: 28%;
  right: 4%;
  width: 43%;
  transform: rotate(-18deg);
}

.route-two {
  top: 54%;
  right: 15%;
  width: 38%;
  transform: rotate(13deg);
  animation-delay: 0.8s;
}

.route-three {
  top: 71%;
  right: 7%;
  width: 48%;
  transform: rotate(-7deg);
  animation-delay: 1.5s;
}

.job-card,
.country-pill {
  position: absolute;
  border: 1px solid rgba(221, 229, 234, 0.94);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 251, 0.86));
  box-shadow: 0 18px 42px rgba(17, 31, 50, 0.13);
  backdrop-filter: blur(10px);
}

.job-card {
  width: min(240px, 46%);
  padding: 16px 18px;
  animation: cardFloat 5s ease-in-out infinite;
}

.job-card strong,
.job-card span {
  display: block;
}

.job-card strong {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.job-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.job-card-one {
  top: 6%;
  left: 8%;
}

.job-card-two {
  top: 38%;
  right: 0;
  animation-delay: 0.9s;
}

.job-card-three {
  bottom: 7%;
  left: 14%;
  animation-delay: 1.7s;
}

.country-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
  animation: pillDrift 7s ease-in-out infinite;
}

.pill-one {
  top: 18%;
  right: 13%;
}

.pill-two {
  bottom: 25%;
  right: 18%;
  animation-delay: 1.2s;
}

.pill-three {
  bottom: 23%;
  left: 0;
  animation-delay: 2.1s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  align-self: center;
  margin: 0;
  padding: 18px 0 0;
  animation: fadeUp 700ms ease both;
}

.hero-content .eyebrow {
  color: #9ee4df;
  margin-bottom: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--white);
  line-height: 1;
  text-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
}

.hero-script {
  margin-bottom: 18px;
  color: #67d3ff;
  font-family: "Dancing Script", cursive;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 0.96;
  text-transform: none;
}

.hero-overseas {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(3.1rem, 6vw, 6.3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 62%);
  transform: translateX(-125%);
  transition: transform 520ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(125%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 14px 30px rgba(7, 133, 139, 0.24);
}

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

.button.secondary {
  color: var(--white);
  border-color: var(--glass-line);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 28px rgba(17, 31, 50, 0.08);
  backdrop-filter: blur(14px) saturate(130%);
}

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 560px;
  animation: fadeUp 800ms 120ms ease both;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 80px rgba(4, 17, 31, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(136%);
}

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

.hero-photo::after,
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 44%, rgba(5, 15, 26, 0.68));
}

.hero-photo-main {
  inset: 3% 8% auto auto;
  width: 74%;
  height: 68%;
}

.hero-photo-main div,
.hero-photo-small strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--white);
}

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

.hero-photo-main strong,
.hero-photo-small strong {
  font-size: 1rem;
  line-height: 1.2;
}

.hero-photo-main span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.hero-photo-small {
  width: 38%;
  height: 36%;
}

.hero-photo-maldives {
  bottom: 8%;
  left: 0;
  transform: rotate(-3deg);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-photo-gulf {
  right: 0;
  bottom: 0;
  transform: rotate(3deg);
  animation: cardFloat 6s 1s ease-in-out infinite;
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  left: clamp(18px, 5vw, 64px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  animation: fadeUp 800ms 160ms ease both;
}

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

@keyframes backgroundGrid {
  to {
    background-position: 96px 0, 0 96px;
  }
}

@keyframes backgroundSweep {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-24%);
  }

  50% {
    opacity: 0.86;
    transform: translateX(18%);
  }
}

@keyframes heroSweep {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-48%);
  }

  50% {
    opacity: 0.82;
    transform: translateX(34%);
  }
}

@keyframes boardEnter {
  from {
    opacity: 0;
    transform: translateY(-48%) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(-52%) scale(1);
  }
}

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

@keyframes routeGlow {
  0%,
  100% {
    opacity: 0.22;
    transform: rotate(12deg) scaleX(0.72);
  }

  50% {
    opacity: 0.72;
    transform: rotate(12deg) scaleX(1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes authBackgroundShift {
  0%,
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  50% {
    background-position: 42px 0, -36px 0, 92px 0, 0 92px, 0 0;
  }
}

@keyframes videoSlide {
  0% {
    opacity: 0;
    transform: scale(1.1) translateX(2%);
  }

  5%,
  24% {
    opacity: 1;
  }

  29%,
  100% {
    opacity: 0;
    transform: scale(1.02) translateX(-2%);
  }
}

@keyframes videoRoute {
  0%,
  100% {
    opacity: 0.2;
    clip-path: inset(0 100% 0 0);
  }

  50% {
    opacity: 0.92;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes playPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes videoProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes globePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes routeFlow {
  0%,
  100% {
    opacity: 0.22;
    clip-path: inset(0 82% 0 0);
  }

  50% {
    opacity: 0.78;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pillDrift {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }
}

.service-card:nth-child(2),
.position-card:nth-child(2),
.timeline li:nth-child(2) {
  animation-delay: 80ms;
}

.service-card:nth-child(3),
.position-card:nth-child(3),
.timeline li:nth-child(3) {
  animation-delay: 160ms;
}

.service-card:nth-child(4),
.position-card:nth-child(4),
.timeline li:nth-child(4) {
  animation-delay: 240ms;
}

.position-card:nth-child(5) {
  animation-delay: 320ms;
}

.position-card:nth-child(6) {
  animation-delay: 400ms;
}

.position-card:nth-child(7) {
  animation-delay: 480ms;
}

.position-card:nth-child(8) {
  animation-delay: 560ms;
}

.hero-strip div {
  min-height: 112px;
  padding: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.76), rgba(246, 251, 252, 0.48));
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  margin-bottom: 6px;
  color: var(--navy);
}

.hero-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.band {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(246, 251, 252, 0.46));
  border-block: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px) saturate(125%);
}

.intro {
  padding: clamp(58px, 8vw, 96px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro-grid p:last-child,
.process-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.services,
.split {
  padding: clamp(62px, 8vw, 106px) 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.wide-heading {
  max-width: 900px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(246, 251, 252, 0.48));
  box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(132%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  animation: fadeUp 650ms ease both;
}

.service-card > *,
.position-card > *,
.timeline li > *,
.contact-form > *,
.auth-form > * {
  position: relative;
  z-index: 1;
}

.service-card::before,
.position-card::before,
.timeline li::before,
.contact-form::before,
.auth-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(315deg, rgba(7, 133, 139, 0.1), transparent 42%);
  opacity: 0.82;
  mask-image: linear-gradient(#000, transparent 72%);
}

.service-card:hover,
.position-card:hover,
.timeline li:hover {
  border-color: rgba(7, 133, 139, 0.34);
  box-shadow: 0 26px 64px rgba(17, 31, 50, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-5px);
}

.card-index {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 800;
}

.service-card p,
.timeline p,
.site-footer p {
  color: var(--muted);
}

.destinations {
  padding: clamp(64px, 8vw, 112px) 0;
  background:
    linear-gradient(135deg, rgba(17, 31, 50, 0.96), rgba(7, 95, 102, 0.88)),
    radial-gradient(circle at 12% 18%, rgba(201, 152, 57, 0.3), transparent 28%);
  color: var(--white);
  overflow: hidden;
}

.destinations .eyebrow {
  color: #f2cb7f;
}

.destinations h2 {
  color: var(--white);
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(290px, auto);
  gap: 18px;
}

.destination-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px) saturate(132%);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.destination-card:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transform: translateY(-6px);
}

.destination-large {
  grid-row: span 2;
}

.destination-wide {
  grid-column: span 2;
}

.destination-card img {
  position: absolute;
  inset: 0;
  transition: transform 500ms ease;
}

.destination-card:hover img {
  transform: scale(1.055);
}

.destination-content {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.destination-content span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffe0a0;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.destination-content h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.destination-content p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.motion-showcase {
  position: relative;
  padding: clamp(68px, 8vw, 116px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(7, 133, 139, 0.18), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(201, 152, 57, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(246, 249, 251, 0.96), rgba(236, 246, 247, 0.9));
}

.motion-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(7, 133, 139, 0.065) 0 1px, transparent 1px 86px),
    repeating-linear-gradient(0deg, rgba(17, 31, 50, 0.045) 0 1px, transparent 1px 86px);
  animation: backgroundGrid 22s linear infinite;
}

.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.showcase-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.04rem;
}

.showcase-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.showcase-stats span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.video-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 22px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(246, 251, 252, 0.34));
  box-shadow: 0 34px 90px rgba(17, 31, 50, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(138%);
}

.video-stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy);
  isolation: isolate;
}

.video-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  animation: videoSlide 16s ease-in-out infinite;
}

.video-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 15, 26, 0.76), rgba(5, 15, 26, 0.18) 52%, rgba(5, 15, 26, 0.62)),
    linear-gradient(0deg, rgba(5, 15, 26, 0.78), transparent 52%);
}

.slide-two {
  animation-delay: 4s;
}

.slide-three {
  animation-delay: 8s;
}

.slide-four {
  animation-delay: 12s;
}

.video-routes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.video-routes span {
  position: absolute;
  left: 14%;
  width: 72%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(244, 211, 143, 0.88), transparent);
  box-shadow: 0 0 18px rgba(244, 211, 143, 0.36);
  animation: videoRoute 3.6s ease-in-out infinite;
}

.video-routes span:nth-child(1) {
  top: 32%;
  transform: rotate(-11deg);
}

.video-routes span:nth-child(2) {
  top: 52%;
  transform: rotate(8deg);
  animation-delay: 0.7s;
}

.video-routes span:nth-child(3) {
  top: 70%;
  transform: rotate(-4deg);
  animation-delay: 1.4s;
}

.play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px) saturate(150%);
  animation: playPulse 2.6s ease-in-out infinite;
}

.play-badge span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid var(--white);
}

.video-caption {
  position: absolute;
  right: 22px;
  bottom: 30px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.video-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.video-progress {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 3;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.video-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #f4d38f);
  transform-origin: left;
  animation: videoProgress 16s linear infinite;
}

.positions,
.sectors {
  padding: clamp(58px, 7vw, 90px) 0;
}

.position-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.position-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(246, 251, 252, 0.48));
  box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(132%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  animation: fadeUp 650ms ease both;
}

.position-card h3 {
  color: var(--navy);
}

.position-card p {
  color: var(--muted);
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-list span,
.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(8, 124, 127, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--teal-dark);
  background: rgba(8, 124, 127, 0.07);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 110px;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(246, 251, 252, 0.48));
  box-shadow: var(--soft-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(132%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.timeline span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.contact {
  padding: clamp(62px, 8vw, 106px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(246, 251, 252, 0.5));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(138%);
}

.auth-page {
  min-height: calc(100vh - 94px);
  padding: 128px 0 72px;
  background:
    linear-gradient(125deg, rgba(7, 133, 139, 0.13), transparent 34%),
    linear-gradient(245deg, rgba(201, 152, 57, 0.12), transparent 38%),
    repeating-linear-gradient(90deg, rgba(7, 133, 139, 0.06) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(17, 31, 50, 0.045) 0 1px, transparent 1px 92px),
    var(--paper);
  animation: authBackgroundShift 18s ease-in-out infinite;
}

.auth-shell {
  display: grid;
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.register-shell {
  align-items: start;
}

.auth-copy h1 {
  max-width: 560px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  animation: fadeUp 650ms ease both;
}

.auth-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
  animation: fadeUp 650ms 80ms ease both;
}

.auth-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  animation: fadeUp 650ms 160ms ease both;
}

.auth-badges span,
.auth-badges a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(8, 124, 127, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.portal-preview {
  padding: clamp(62px, 8vw, 106px) 0;
}

.portal-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.portal-feature-card,
.portal-form,
.portal-side-panel,
.job-board-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(246, 251, 252, 0.48));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(136%);
}

.portal-feature-card {
  min-height: 300px;
  padding: clamp(22px, 4vw, 34px);
}

.portal-feature-card p {
  color: var(--muted);
}

.dark-button {
  color: var(--navy);
  border-color: rgba(7, 133, 139, 0.18);
  background: rgba(255, 255, 255, 0.68);
}

.portal-page {
  padding: 118px 0 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(7, 133, 139, 0.16), transparent 26%),
    radial-gradient(circle at 84% 34%, rgba(201, 152, 57, 0.14), transparent 24%),
    var(--paper);
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(34px, 6vw, 76px) 0 clamp(28px, 5vw, 58px);
}

.portal-hero h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

.portal-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.portal-summary-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(17, 31, 50, 0.95), rgba(7, 95, 102, 0.86));
  color: var(--white);
  box-shadow: var(--shadow);
}

.portal-summary-card strong {
  font-size: 1.2rem;
}

.portal-summary-card span {
  color: rgba(255, 255, 255, 0.78);
}

.portal-layout,
.employer-dashboard {
  display: grid;
  gap: 22px;
  align-items: start;
  padding-bottom: clamp(64px, 8vw, 112px);
}

.portal-layout {
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr);
}

.employer-dashboard {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.portal-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.form-section-title {
  padding-top: 8px;
}

.form-section-title h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

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

.document-grid label {
  min-height: 120px;
  justify-content: space-between;
  border: 1px dashed rgba(7, 133, 139, 0.28);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.54);
}

input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

.portal-side-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.portal-side-panel p,
.application-preview {
  color: var(--muted);
}

.application-preview {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.preview-item,
.job-card-row {
  border: 1px solid rgba(7, 133, 139, 0.14);
  border-radius: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.preview-item strong,
.job-card-row strong {
  display: block;
  color: var(--navy);
}

.preview-item span,
.job-card-row span {
  color: var(--muted);
}

.job-board-panel {
  padding: clamp(20px, 4vw, 30px);
}

.job-board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.job-board-header h2 {
  margin-bottom: 0;
}

.job-summary-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.job-summary-row span {
  border: 1px solid rgba(7, 133, 139, 0.16);
  border-radius: 10px;
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.job-summary-row strong {
  color: var(--teal-dark);
  font-size: 1.4rem;
}

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

.job-card-row {
  display: grid;
  gap: 12px;
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: rgba(7, 133, 139, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-button {
  border: 1px solid rgba(7, 133, 139, 0.18);
  border-radius: 7px;
  padding: 8px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mini-button.danger {
  color: #9f2c2c;
  border-color: rgba(159, 44, 44, 0.2);
}

.auth-form {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(246, 251, 252, 0.5));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(140%);
  animation: fadeUp 700ms 120ms ease both;
}

.auth-form h2 {
  margin-bottom: 4px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.check-row {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.auth-switch {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.auth-switch a {
  color: var(--teal-dark);
  font-weight: 800;
}

label {
  display: grid;
  gap: 7px;
  color: #344653;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(207, 217, 223, 0.78);
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 124, 127, 0.16);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: var(--navy);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  flex: 0 0 auto;
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 72px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-media {
    min-height: 520px;
  }

  .destination-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destination-large,
  .destination-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

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

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

  .intro-grid,
  .split,
  .contact-grid,
  .showcase-grid,
  .portal-preview-grid,
  .portal-hero,
  .portal-layout,
  .employer-dashboard,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .portal-side-panel {
    position: static;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100% - 36px, 1160px);
    margin: -28px auto 26px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .brand-icon {
    width: 42px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--glass-line);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 252, 0.94));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(24px) saturate(145%);
  }

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

  .site-nav a {
    width: 100%;
  }

  .site-nav .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .auth-page {
    padding-top: 112px;
  }

  .form-pair {
    grid-template-columns: 1fr;
  }

  .document-grid,
  .job-summary-row {
    grid-template-columns: 1fr;
  }

  .job-board-header,
  .job-card-top {
    flex-direction: column;
  }

  .auth-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .hero {
    min-height: auto;
    padding: 104px 16px 46px;
    background:
      linear-gradient(140deg, rgba(12, 28, 44, 0.98) 0%, rgba(17, 31, 50, 0.88) 48%, rgba(7, 95, 102, 0.75) 100%),
      radial-gradient(circle at 82% 22%, rgba(201, 152, 57, 0.24), transparent 31%);
  }

  .hero-animation {
    opacity: 0.34;
  }

  .world-board {
    top: 52%;
    right: -258px;
    min-width: 480px;
    transform: translateY(-50%) scale(0.92);
    animation: none;
  }

  .job-card,
  .country-pill {
    display: none;
  }

  .hero-content {
    width: 100%;
    margin-inline: auto;
    padding-top: 0;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.6rem);
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 4rem);
    line-height: 1.04;
  }

  .hero-script {
    margin-bottom: 12px;
    font-size: clamp(3.7rem, 17vw, 5.8rem);
    line-height: 1;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-photo-main {
    inset: 0 0 auto auto;
    width: 100%;
    height: 60%;
  }

  .hero-photo-small {
    width: 48%;
    height: 34%;
  }

  .hero-photo-maldives {
    bottom: 3%;
    left: 0;
  }

  .hero-photo-gulf {
    right: 0;
    bottom: 9%;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 340px;
  }

  .video-stage {
    min-height: 360px;
  }

  .video-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .play-badge {
    width: 68px;
    height: 68px;
  }

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

  .position-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .position-card {
    min-height: 0;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .button {
    width: 100%;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }
}

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