/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Logo-derived palette (sampled from assets/images/logo.png) */
  --red: #5e2a7a;
  --red-dk: #4a2162;
  --navy: #1f1628;
  --navy2: #302440;
  --gold: #d4b82c;
  --gold-hi: #f3df7a;
  --white: #ffffff;
  --off: #f6f4f9;
  --muted: #625a72;
  --rgb-accent: 94, 42, 122;
  --rgb-ink: 31, 22, 40;
  --rgb-gold: 212, 184, 44;
  --border: rgba(255, 255, 255, 0.08);
  --ff-head: "Poppins", sans-serif;
  --ff-body: "Poppins", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  padding-inline: max(0px, env(safe-area-inset-left, 0px)) max(0px, env(safe-area-inset-right, 0px));
}

/* ===== UTILITY ===== */
.container {
  width: min(1180px, calc(100% - clamp(1.25rem, 5vw, 2.5rem)));
  margin-inline: auto;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tabler Icons — assets/icons (stroke SVGs as <img>) */
.icon-t {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  flex-shrink: 0;
}
.icon-t--xs {
  width: 0.95rem;
  height: 0.95rem;
}
.icon-t--sm {
  width: 1.15rem;
  height: 1.15rem;
}
.icon-t--md {
  width: 1.75rem;
  height: 1.75rem;
}
.icon-t--lg {
  width: 2.2rem;
  height: 2.2rem;
}
.icon-t--xl {
  width: 2.5rem;
  height: 2.5rem;
}
.icon-t--on-dark {
  filter: brightness(0) invert(1);
}
.icon-t--on-dark-muted {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.icon-t--footer-social {
  filter: brightness(0) invert(1);
  opacity: 0.55;
}
.footer-socials a:hover .icon-t--footer-social {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(25%) sepia(90%) saturate(2200%) hue-rotate(252deg)
    brightness(0.95) contrast(95%);
}
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition:
    background 0.25s var(--ease),
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 0.75rem 1.8rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(var(--rgb-ink), 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 72px;
  padding-block: 0.35rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  max-width: min(220px, 46vw);
  object-fit: contain;
  display: block;
}
.logo-img--footer {
  height: 52px;
  max-width: min(240px, 85%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.nav-cta:hover {
  background: var(--red-dk);
  color: #fff !important;
}
.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.nav-cta--sticky-mobile {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  display: block;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: clamp(1.5rem, 4vw, 3rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 80% at 80% 50%,
      rgba(var(--rgb-accent), 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(var(--rgb-gold), 0.07) 0%,
      transparent 60%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-plane {
  position: absolute;
  right: -40px;
  top: 20%;
  opacity: 1;
  transform: rotate(-15deg);
  animation: float 8s ease-in-out infinite;
  line-height: 0;
  pointer-events: none;
}
.hero-plane__img {
  width: 9rem;
  height: 9rem;
  display: block;
  opacity: 0.09;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
@keyframes float {
  0%,
  100% {
    transform: rotate(-15deg) translateY(0);
  }
  50% {
    transform: rotate(-15deg) translateY(-20px);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}
.hero-right {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow .line {
  width: 40px;
  height: 2px;
  background: var(--red);
}
.hero-eyebrow span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.85rem, calc(4vw + 1.1rem), 3.8rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(0.95rem, calc(1.2vw + 0.85rem), 1.05rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
.hero-hotline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem clamp(0.85rem, 3vw, 1.2rem);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
  margin-top: 2rem;
  max-width: 100%;
}
.hero-hotline-extra {
  padding-left: min(1.5rem, 4vw);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 520px) {
  .hero-hotline-extra {
    flex: 1 1 100%;
    padding-left: 0;
    border-left: 0;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.hero-hotline .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-hotline .icon img {
  width: 1.35rem;
  height: 1.35rem;
  filter: brightness(0) invert(1);
}
.hero-hotline small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-hotline strong {
  color: #fff;
  font-size: 1.1rem;
}

.hero-dest-carousel {
  width: 100%;
  margin-inline: 0;
  opacity: 0;
  animation: fadeLeft 0.75s var(--ease) 0.45s forwards;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.hero-dest-viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  width: 100%;
}
.hero-dest-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  background: var(--navy2);
}
.hero-dest-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(var(--rgb-ink), 0.82);
  color: #fff;
  line-height: 0;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}
.hero-dest-nav img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  filter: brightness(0) invert(1);
}
.hero-dest-nav:hover {
  background: rgba(var(--rgb-accent), 0.92);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero-dest-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hero-dest-nav--prev {
  left: 10px;
}
.hero-dest-nav--next {
  right: 10px;
}
.hero-dest-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(2.5rem, 0, 0) scale(1.04);
  transform-origin: center center;
  transition:
    opacity 0.55s var(--ease),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.7s;
  z-index: 0;
}
.hero-dest-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.5s var(--ease) 0.06s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
  z-index: 2;
}
.hero-dest-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  transform-origin: center center;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-dest-slide.is-active img {
  transform: scale(1);
  transition: transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.hero-dest-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: clamp(2rem, 6vw, 3rem) clamp(0.85rem, 3vw, 1.25rem) 1.1rem;
  text-align: left;
  background: linear-gradient(
    to top,
    rgba(var(--rgb-ink), 0.96) 0%,
    rgba(var(--rgb-ink), 0.55) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-dest-flag {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.hero-dest-caption strong {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.hero-dest-desc {
  font-size: clamp(0.72rem, 1.5vw + 0.65rem, 0.76rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0;
  max-width: min(42ch, 100%);
}
.hero-dest-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  flex-shrink: 0;
}
.hero-dest-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.28);
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease),
    width 0.25s var(--ease);
}
.hero-dest-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}
.hero-dest-dot.is-active {
  background: var(--red);
  width: 22px;
  border-radius: 4px;
}
.hero-dest-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-dest-slide {
    transform: none;
    transition:
      opacity 0.2s ease,
      visibility 0s linear 0.2s;
  }
  .hero-dest-slide.is-active {
    transform: none;
    transition:
      opacity 0.2s ease,
      visibility 0s;
  }
  .hero-dest-slide img,
  .hero-dest-slide.is-active img {
    transform: none;
    transition: none;
  }
}

@media (min-width: 1025px) {
  .hero-inner {
    min-height: min(720px, calc(100dvh - 72px - 10rem));
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--red);
  padding: 0.8rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ticker-item .icon-t {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== FEATURES STRIP ===== */
.features {
  background: var(--off);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #dde2ea;
}
.feat-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.3s;
}
.feat-card:hover {
  box-shadow: 0 -4px 0 0 var(--red) inset;
}
.feat-icon {
  width: 52px;
  height: 52px;
  background: rgba(var(--rgb-accent), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  transition: background 0.3s;
}
.feat-icon img {
  width: 26px;
  height: 26px;
  transition: filter 0.3s;
}
.feat-card:hover .feat-icon {
  background: var(--red);
}
.feat-card:hover .feat-icon img {
  filter: brightness(0) invert(1);
}
.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.feat-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.about-img-placeholder .big-icon {
  font-size: 5rem;
  opacity: 0.3;
}
.about-img-placeholder p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-align: center;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: #fff;
  padding: 1.5rem 2rem;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
}
.about-badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.5rem;
  line-height: 1;
}
.about-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content .tag {
  display: block;
  margin-bottom: 1rem;
}
.about-content h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.about-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-checks {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-checks li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
}
.about-checks li::before {
  content: "✓";
  color: #fff;
  background: var(--red);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  border-top: 3px solid var(--red);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}
.cta-band p strong {
  color: #fff;
}
.cta-band .phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.cta-band .phone span {
  display: flex;
  align-items: center;
  line-height: 0;
}
.cta-band .phone span img {
  width: 1.35rem;
  height: 1.35rem;
  filter: brightness(0) saturate(100%) invert(77%) sepia(26%) saturate(900%) hue-rotate(355deg);
}

/* ===== SERVICES ===== */
.services {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background: var(--off);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
  padding-inline: clamp(0rem, 1vw, 0.5rem);
}
.section-header .tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}
.section-header p {
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: min(520px, 100%);
  margin-inline: auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition:
    border-color 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-family: var(--ff-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(var(--rgb-accent), 0.06);
  line-height: 1;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-icon {
  margin-bottom: 1.2rem;
  line-height: 0;
}
.service-icon img {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.read-more {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.read-more:hover {
  gap: 0.6rem;
}

/* ===== DESTINATIONS ===== */
.destinations {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.country-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--navy2);
}
.country-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease);
  transform: scale(1);
}
.country-card--uae .country-bg {
  background-image: url("../assets/destinations/uae.jpg");
}
.country-card--canada .country-bg {
  background-image: url("../assets/destinations/canada.jpg");
}
.country-card--japan .country-bg {
  background-image: url("../assets/destinations/japan.jpg");
}
.country-card--europe .country-bg {
  background-image: url("../assets/destinations/europe.jpg");
}
.country-card:hover .country-bg {
  transform: scale(1.06);
}
@media (prefers-reduced-motion: reduce) {
  .country-bg {
    transition: none;
  }
  .country-card:hover .country-bg {
    transform: none;
  }
}
.country-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--navy) 35%,
    rgba(var(--rgb-ink), 0.45) 65%,
    transparent 90%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.country-flag {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.country-card h3 {
  color: #fff;
  font-family: var(--ff-head);
  font-size: 1.3rem;
}
.country-card .tag {
  color: var(--gold);
  margin-top: 0.25rem;
}
.country-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.country-tag-list span {
  font-size: 0.7rem;
  background: rgba(var(--rgb-accent), 0.6);
  color: #fff;
  padding: 0.2rem 0.6rem;
  font-weight: 500;
}

/* ===== TEAM ===== */
.team {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background: var(--navy);
}
.team .section-header h2,
.team .section-header .tag {
  color: #fff;
}
.team .section-header p {
  color: rgba(255, 255, 255, 0.5);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}
.team-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}
.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: linear-gradient(180deg, #e8eef5 0%, #f4f7fb 55%, #ffffff 100%);
  border-bottom: 3px solid var(--red);
  padding: 0;
  overflow: hidden;
}
.team-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  box-sizing: border-box;
}
.team-photo--placeholder {
  background: linear-gradient(
    155deg,
    var(--navy) 0%,
    #1b3555 42%,
    #6b8caf 100%
  );
  border: 2px dashed rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.team-photo--img {
  overflow: hidden;
  background: #e8eef5;
}
.team-photo--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.team-photo-initials {
  font-family: var(--ff-head);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
}
.team-photo-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.team-card-body {
  padding: 1.35rem 1.25rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.team-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
.team-card .role {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.team-card p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
  flex: 1;
}
.team-cred {
  display: inline-block;
  margin-top: 0.85rem;
  align-self: center;
  font-size: 0.68rem;
  background: rgba(var(--rgb-ink), 0.06);
  color: var(--navy);
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(var(--rgb-ink), 0.1);
}

/* ===== WHY US ===== */
.why {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid #e8ecf0;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.why-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(var(--rgb-accent), 0.08);
}
.why-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(var(--rgb-accent), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.why-icon-wrap img {
  width: 22px;
  height: 22px;
  transition: filter 0.3s;
}
.why-item:hover .why-icon-wrap {
  background: var(--red);
}
.why-item:hover .why-icon-wrap img {
  filter: brightness(0) invert(1);
}
.why-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.why-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-box {
  background: var(--navy);
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.stat-box:first-child {
  grid-column: span 2;
  background: var(--red);
}
.stat-box strong {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(2.25rem, calc(8vw + 1rem), 3.5rem);
  line-height: 1;
}
.stat-box span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 0.4rem;
  display: block;
}

/* ===== STEPS ===== */
.steps {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background: var(--off);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-dk));
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  box-shadow:
    0 0 0 8px var(--off),
    0 0 0 10px rgba(var(--rgb-accent), 0.15);
}
.step-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.step-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background: var(--navy);
  overflow: hidden;
}
.testimonials .section-header h2 {
  color: #fff;
}
.testimonials .section-header .tag {
  color: var(--gold);
}
.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.5);
}
.testimonials .section-header h2,
.testimonials .section-header p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}
.testi-bleed {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.testi-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  min-width: 0;
  width: 100%;
  outline: none;
}
.testi-track:focus-visible {
  box-shadow: 0 0 0 2px rgba(var(--rgb-gold), 0.45);
}
.testi-track::-webkit-scrollbar {
  display: none;
}
.testi-card {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  background: rgba(255, 255, 255, 0.05);
  border: solid var(--border);
  border-width: 1px 0;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 6vw, 4rem);
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.testi-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
}
.testi-stars img {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(77%) sepia(26%) saturate(900%) hue-rotate(355deg);
}
.testi-card blockquote {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.testi-author > div:last-of-type {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--rgb-accent), 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-avatar img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.testi-author strong {
  color: #fff;
  display: block;
  font-size: 0.9rem;
  overflow-wrap: break-word;
}
.testi-author span {
  color: var(--gold);
  font-size: 0.75rem;
  display: block;
  overflow-wrap: break-word;
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.2s;
}
.testi-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* ===== NEWS / BLOG ===== */
.news {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background: var(--off);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.news-card {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(var(--rgb-ink), 0.06);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.news-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: var(--navy2);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.news-card-media--canada {
  background-image: url("../assets/destinations/canada.jpg");
}
.news-card-media--uae {
  background-image: url("../assets/destinations/uae.jpg");
}
.news-card-media--japan {
  background-image: url("../assets/destinations/japan.jpg");
}
.news-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--rgb-ink), 0.55) 0%, transparent 55%);
}
.news-card-flag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 2rem;
  line-height: 1;
}
.news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.35rem 1.65rem;
}
.news-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
}
.news-card-meta time {
  color: var(--muted);
  font-weight: 500;
}
.news-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(var(--rgb-accent), 0.08);
  padding: 0.2rem 0.55rem;
}
.news-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}
.news-card:hover h3 {
  color: var(--red);
}
.news-card-body > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.news-card .read-more {
  margin-top: auto;
}

/* ===== BLOG ARTICLE PAGE ===== */
.blog-page {
  padding: calc(72px + clamp(2rem, 5vw, 3.5rem)) 0 clamp(3.5rem, 8vw, 5rem);
  background: var(--off);
  min-height: 60vh;
}
.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
}
.blog-breadcrumb a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}
.blog-breadcrumb a:hover {
  text-decoration: underline;
}
.blog-article {
  max-width: 720px;
  margin-inline: auto;
  background: var(--white);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: 0 4px 32px rgba(var(--rgb-ink), 0.08);
}
.blog-article-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(var(--rgb-ink), 0.08);
}
.blog-article-header .news-cat {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.blog-article-header h1 {
  font-family: var(--ff-head);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.blog-article-header time {
  font-size: 0.85rem;
  color: var(--muted);
}
.blog-article-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.blog-article-content h2 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--navy);
}
.blog-article-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1rem;
}
.blog-article-content ul,
.blog-article-content ol {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.blog-article-content li {
  margin-bottom: 0.4rem;
}
.blog-article-content li::marker {
  color: var(--red);
}
.blog-cta {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}
.blog-cta h2 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.blog-cta p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.blog-cta .btn-primary {
  width: 100%;
  justify-content: center;
}
.blog-related {
  max-width: 720px;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
}
.blog-related h2 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.blog-related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.blog-related-list a {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.blog-related-list a:hover {
  text-decoration: underline;
}

/* ===== CONTACT ===== */
.contact {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}
.contact-info .tag {
  display: block;
  margin-bottom: 1rem;
}
.contact-info h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 1.5rem;
}
.contact-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--rgb-accent), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon img {
  width: 22px;
  height: 22px;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-item a,
.contact-item span {
  color: var(--navy);
  font-size: 0.95rem;
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--red);
}

.contact-form {
  background: var(--off);
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid #dde2ea;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .check {
  line-height: 0;
  margin-bottom: 1rem;
}
.form-success .check img {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-block;
  vertical-align: middle;
}
.form-success h3 {
  color: var(--navy);
  font-family: var(--ff-head);
}
.form-success p {
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ===== FOOTER MAP ===== */
.footer-map {
  background: var(--navy);
  line-height: 0;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 42vw, 440px);
  border: 0;
}
.footer-map-link {
  line-height: 1.4;
  text-align: center;
  padding: 0.75rem 1rem 0;
  margin: 0;
}
.footer-map-link a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-map-link a:hover {
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
}
.footer-main {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.footer-brand .logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand .reg {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--gold);
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--gold);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-socials a img {
  width: 1.1rem;
  height: 1.1rem;
}
.footer-socials a:hover {
  border-color: var(--red);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
}
.footer-bottom .red {
  color: var(--red);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  flex-direction: column;
  padding: max(6rem, calc(4rem + env(safe-area-inset-top, 0px))) max(1.25rem, env(safe-area-inset-right, 0px))
    max(2rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
  gap: 1.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid::before {
    display: none;
  }
  .step-item {
    padding: 2rem 1.25rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: 0;
    align-items: center;
  }
  .hero-right {
    width: 100%;
    max-width: min(560px, 100%);
    margin-inline: auto;
  }
  .hero-dest-carousel {
    flex: 0 1 auto;
    width: 100%;
    max-width: min(560px, 100%);
    margin-inline: auto;
  }
  .hero-dest-viewport {
    flex: none;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 280px;
  }
  .hero-dest-slides {
    position: absolute;
    inset: 0;
  }
}
@media (max-width: 768px) {
  nav {
    padding-top: env(safe-area-inset-top, 0px);
  }
  .nav-links {
    display: none;
  }
  .nav-mobile-actions {
    display: flex;
  }
  .nav-cta--sticky-mobile {
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    padding: 0.45rem 0.95rem;
    white-space: nowrap;
  }
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .hero {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
  }
  html {
    scroll-padding-top: calc(72px + env(safe-area-inset-top, 0px));
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feat-card {
    padding: 2rem 1.35rem;
  }
  .about-inner,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 2rem 1.35rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .about-badge {
    right: 0;
    bottom: 0;
  }
  .why-stat-grid {
    grid-template-columns: 1fr;
  }
  .stat-box:first-child {
    grid-column: span 1;
  }
  .why-item {
    padding: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cta-band .phone {
    flex-wrap: wrap;
    justify-content: center;
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }
}

/* Slightly larger controls on touch devices */
@media (pointer: coarse) {
  .hero-dest-nav {
    width: 48px;
    height: 48px;
  }
  .hero-dest-dots {
    gap: 0.65rem;
  }
  .hero-dest-dot {
    width: 10px;
    height: 10px;
  }
  .hero-dest-dot.is-active {
    width: 26px;
  }
  .testi-nav {
    gap: 0.85rem;
  }
}
