@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Vazirmatn:wght@300;400;600&display=swap');

:root {
  --sand: #08173f;
  --sand-soft: #08173f;
  --ink: #101b4a;
  --ink-soft: #233a8b;
  --gold: #f3a632;
  --gold-soft: #ffd27a;
  --mist: #c7d4ff;
  --night: #0b1540;
  --cloud: #ffffff;
  --shadow: rgba(11, 21, 64, 0.14);
  --nav-height: 80px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Vazirmatn', sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.7;
  overflow: hidden;
}

html[dir="ltr"] body {
  text-align: left;
}

html[dir="rtl"] body {
  text-align: right;
}

.lux-wrap {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--nav-height);
  height: auto;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 60px;
  border-bottom: 1px solid var(--mist);
}

.logo {
  font-family: 'Marcellus', serif;
  font-size: 26px;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo-mark {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  flex: 1 1 0;
  max-width: 48%;
  margin-left: auto;
  row-gap: 8px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 1.4px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links .lang-switch {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--mist);
  background: #fff;
  font-family: 'Marcellus', serif;
  letter-spacing: 2px;
}

.nav-links .lang-switch:hover {
  color: var(--night);
  border-color: var(--gold);
}

.nav-social {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  max-width: 28%;
}

@media (max-width: 1500px) and (min-width: 1101px) {
  .nav {
    padding: 20px 44px;
  }

  .logo {
    font-size: 24px;
  }

  .nav-links {
    gap: 10px 12px;
  }

  .nav-links a {
    font-size: 12px;
    letter-spacing: 1.1px;
  }
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mist);
  background: #fff;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "copy media";
  height: 100vh;
  height: 100dvh;
  position: relative;
  z-index: 2;
}

html[dir="rtl"] .hero {
  grid-template-areas: "media copy";
}

.hero-media {
  position: relative;
  overflow: hidden;
  grid-area: media;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  width: min(100%, calc(100vh * 9 / 16));
  max-height: 100vh;
  justify-self: center;
  align-self: center;
}

.hero-media .hero-media-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  transform-origin: center;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-copy {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
  background: rgba(8, 23, 63, 0.94);
  color: #eef3ff;
  backdrop-filter: blur(8px);
  grid-area: copy;
}

.hero-copy h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.1;
  margin: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: #aebbe8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--night);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-metrics {
  display: flex;
  gap: 30px;
  margin-top: 8px;
  font-family: 'Marcellus', serif;
}

.hero-metrics span {
  font-size: 20px;
  display: block;
  color: #eef3ff;
}

.hero-metrics small {
  color: #c1cff6;
}

.hero-copy p {
  color: #c1cff6;
}

.hero-card {
  margin-top: 10px;
  background: var(--cloud);
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--mist);
  box-shadow: 0 20px 40px var(--shadow);
  width: 85%;
}

.hero-card h3 {
  color: #14255d;
}

.hero-card p {
  color: #3c4f86;
}

.review-scene {
  background: var(--sand);
  color: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 60px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.review-shell {
  width: min(960px, 100%);
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.review-shell h2 {
  margin: 0;
  font-family: 'Marcellus', serif;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.1;
}

.review-media {
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
}

.review-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--sand);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* About Scene Styles */
.about-scene {
  background: var(--sand);
  color: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 100px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  position: relative;
}

.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Marcellus', serif;
  font-size: 25vw;
  color: var(--mist);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.about-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  position: relative;
  height: 70vh;
}

.about-image-wrap {
  position: relative;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px var(--shadow);
  z-index: 2;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-accent-box {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 4px solid var(--gold);
  border-radius: 40px;
  z-index: 1;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-content h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-description p {
  font-size: clamp(18px, 1.4vw, 24px);
  color: #465178;
  margin: 0;
}

.about-mission {
  margin-top: 12px;
  padding: 40px;
  background: #fff;
  border-radius: 30px;
  border: 1px solid var(--mist);
  box-shadow: 0 20px 40px var(--shadow);
  position: relative;
}

.about-mission::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 60%;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}

.mission-label {
  font-family: 'Marcellus', serif;
  font-size: 14px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.mission-text {
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

/* Base state for animations */
.animate-text {
  opacity: 0;
  transform: translateY(30px);
}

@media (max-width: 1100px) {
  .about-scene {
    padding: 100px 40px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    height: 40vh;
  }

  .about-bg-text {
    font-size: 35vw;
  }
}

/* Services Scene Styles */
.services-scene {
  background: var(--sand);
  color: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 100px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  position: relative;
  perspective: 1200px;
}

.services-container {
  max-width: 1300px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 48px;
  align-items: start;
}

.services-header {
  text-align: right;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-header h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(32px, 4vw, 56px);
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
}

.services-lead {
  margin: 0;
  font-size: 17px;
  color: #465178;
  line-height: 1.6;
  max-width: 32ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  transform-style: preserve-3d;
  align-content: start;
}

.service-item {
  position: relative;
  min-height: 280px;
  /* Consistent card sizing with flexible content */
  border-radius: 24px;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-glass {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  z-index: 1;
}

.service-content {
  position: relative;
  padding: 40px 30px;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  text-align: right;
  transform: translateZ(50px);
  /* Lift content in 3D space */
}

.service-item:hover .service-glass {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(243, 166, 50, 0.24);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--night);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(-8deg);
  background: var(--gold);
  color: #fff;
}

.service-icon i {
  width: 24px;
  height: 24px;
}

.service-item h3 {
  font-family: 'Marcellus', serif;
  font-size: 20px;
  margin: 0;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
}

.service-item p {
  font-size: 15px;
  color: #465178;
  margin: 0;
  line-height: 1.5;
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-header {
    text-align: center;
  }

  .services-lead {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 950px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-scene {
    padding: 80px 24px;
  }

  .service-item {
    height: auto;
    min-height: 220px;
  }
}

/* Why Scene Styles */
.why-scene {
  background: var(--sand);
  color: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 100px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  position: relative;
}

.why-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.why-side {
  position: sticky;
  top: 15vh;
}

.why-side h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  margin-bottom: 34px;
  font-weight: 700;
}

.why-visual {
  width: 100%;
  height: 40vh;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 80px var(--shadow);
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-item {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.why-num {
  font-family: 'Marcellus', serif;
  font-size: 40px;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  padding-top: 5px;
}

.why-info h3 {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  margin: 0 0 12px 0;
  color: var(--ink);
}

.why-info p {
  font-size: 17px;
  color: #465178;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .why-scene {
    padding: 80px 40px;
  }

  .why-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-side {
    position: static;
  }

  .why-visual {
    height: 30vh;
  }
}

.destinations-scene {
  background: var(--sand);
  color: #eef3ff;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  position: relative;
}

.destinations-container {
  height: 100%;
  display: grid;
  align-items: center;
  padding: 90px 60px;
  gap: 12px;
}

.destinations-head {
  display: grid;
  gap: 10px;
  text-align: center;
  justify-items: center;
}

.destinations-title {
  font-family: 'Marcellus', serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
  margin: 0;
  font-weight: 700;
  max-width: 22ch;
  position: relative;
}

.destinations-title::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.destinations-grid {
  margin-top: 10px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.dest-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
  transform: translateZ(0);
  aspect-ratio: 3 / 4;
}

.dest-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dest-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(11, 21, 64, 0) 35%, rgba(11, 21, 64, 0.78) 100%);
  opacity: 1;
  transition: background 0.35s ease, opacity 0.35s ease;
}

.dest-meta {
  transform: translateY(0);
  transition: transform 0.35s ease;
  color: #fff;
}

.dest-meta h3 {
  margin: 0 0 6px;
  font-family: 'Marcellus', serif;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.dest-meta p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.dest-card:hover .dest-overlay,
.dest-card:focus-within .dest-overlay {
  background: linear-gradient(180deg, rgba(11, 21, 64, 0.05) 25%, rgba(11, 21, 64, 0.86) 100%);
}

.dest-card:hover .dest-meta,
.dest-card:focus-within .dest-meta {
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .destinations-container {
    padding: 90px 40px;
  }

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

@media (max-width: 900px) {
  .destinations-container {
    padding: 80px 24px;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .destinations-head {
    text-align: center;
  }
}

.testimonials-scene {
  background: var(--sand);
  color: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.testimonials-title {
  font-family: 'Marcellus', serif;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--ink);
  margin: 0;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.about-scene .eyebrow,
.services-scene .eyebrow,
.why-scene .eyebrow,
.destinations-scene .eyebrow,
.testimonials-scene .eyebrow {
  color: #aebbe8;
}

.about-content h2,
.services-header h2,
.why-side h2,
.destinations-title,
.testimonials-title {
  color: #eef3ff;
}

.about-description p,
.services-lead,
.why-info p {
  color: #c1cff6;
}

.why-info h3 {
  color: #eef3ff;
}

.scene {
  position: absolute;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
}

.scene.is-active {
  pointer-events: auto;
}

.scene-stack {
  position: relative;
  height: 100vh;
  height: 100dvh;
}

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

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

.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  direction: ltr;
  /* Keeping ltr for consistent scroll direction */
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 30px;
  flex-shrink: 0;
  padding: 0 15px;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.testimonial-photo {
  width: 320px;
  height: 440px;
  border-radius: 30px;
  box-shadow: 0 20px 45px var(--shadow);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #ffffff;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-overlay {
  display: none;
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 26px 24px;
  background: linear-gradient(180deg, rgba(11, 21, 64, 0) 0%, rgba(11, 21, 64, 0.78) 100%);
  color: #fff;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-overlay p {
  margin: 0;
  font-family: 'Marcellus', serif;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.testimonial-overlay span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.testimonial-photo:hover,
.testimonial-photo:focus-visible {
  transform: scale(1.02);
}

.testimonial-photo:hover .testimonial-overlay,
.testimonial-photo:focus-visible .testimonial-overlay,
.testimonial-photo:focus-within .testimonial-overlay {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-photo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (hover: none) {
  .testimonial-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1440px) and (max-height: 900px) {
  .services-scene {
    padding: 60px 50px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-item {
    min-height: 210px;
  }

  .service-content {
    padding: 24px 22px;
    gap: 10px;
  }
}



.section {
  padding: 90px 60px;
  opacity: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 32px;
}

.section h2 {
  font-family: 'Marcellus', serif;
  font-size: 38px;
  margin: 0;
}

.about .story-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.story-images {
  display: grid;
  gap: 16px;
}

.image-stack {
  position: relative;
  display: grid;
  gap: 14px;
}

.image-stack img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 220px;
  box-shadow: 0 18px 40px var(--shadow);
}

.image-stack img:last-child {
  transform: translateX(30px);
}

.image-caption {
  font-size: 14px;
  color: #5b638e;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.signature {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--mist);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.05);
}

.service-ribbon {
  overflow: hidden;
  position: relative;
}

.service-track {
  display: flex;
  gap: 18px;
  will-change: transform;
}

.service-card {
  min-width: 240px;
  background: linear-gradient(140deg, #ffffff, #eef3ff);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--mist);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.experience-visual {
  position: relative;
}

.experience-visual img {
  width: 100%;
  border-radius: 22px;
  height: 360px;
  object-fit: cover;
  box-shadow: 0 24px 50px var(--shadow);
}

.experience-overlay {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--mist);
}

.experience-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.experience-points span {
  border: 1px solid var(--mist);
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
}

.destination-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.destination-gallery .destination-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--mist);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.destination-gallery .destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.destination-gallery .destination-card div {
  padding: 16px 18px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

blockquote {
  margin: 0;
  background: var(--night);
  color: #fff;
  padding: 24px;
  border-radius: 24px;
  font-family: 'Marcellus', serif;
  font-size: 18px;
}

.cta {
  padding-bottom: 120px;
}

.cta-card {
  background: var(--night);
  color: #fff;
  border-radius: 30px;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.contact {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-scene {
  background: var(--sand);
  color: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 60px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  position: relative;
}

.cta-container {
  width: min(1100px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  margin: 0;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1.02;
  letter-spacing: 0.2px;
  max-width: 22ch;
}

.cta-actions {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-panel {
  margin-top: 28px;
  width: min(780px, 100%);
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.25), transparent 45%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 24px 60px rgba(10, 18, 49, 0.28);
}

.contact-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-eyebrow {
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-size: 11px;
  color: #f0f5ff;
}

.contact-panel h3 {
  margin: 0;
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 3vw, 34px);
  color: #fff;
}

.contact-note {
  margin: 0;
  color: rgba(233, 241, 255, 0.86);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.contact-grid a {
  text-decoration: none;
  color: #eef3ff;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(11, 21, 64, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-grid a:hover {
  transform: translateY(-2px);
  background: rgba(11, 21, 64, 0.58);
  box-shadow: 0 14px 30px rgba(7, 13, 40, 0.25);
}

.contact-grid a svg {
  width: 16px;
  height: 16px;
}

.contact-address {
  margin: 0;
  color: #d7e2ff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 14, 38, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 10px 16px;
}

.contact-address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cta-button {
  gap: 10px;
  background: var(--night);
  border-color: var(--gold);
  padding: 18px 34px;
  font-size: 14px;
  letter-spacing: 2.4px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.cta-button svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .nav {
    padding: 18px 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .logo {
    position: static;
    transform: none;
  }

  .nav-links,
  .nav-social {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding: 60px 24px;
  }

  .hero-media .hero-media-media {
    min-height: 0;
  }

  .testimonials-stage {
    padding: 0;
  }

  .marquee-set img {
    width: 220px;
    height: 300px;
  }

  .section {
    padding: 60px 24px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-card {
    width: auto;
  }

  .cta-scene {
    padding: 70px 24px;
  }

  .review-scene {
    padding: 70px 24px;
  }

  .review-shell h2 {
    font-size: clamp(30px, 7vw, 44px);
  }

  .cta-container {
    width: min(900px, 100%);
  }

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

/* Small laptop (e.g. 1280x800): reduce vertical density */
@media (max-width: 1366px) and (max-height: 820px) {
  :root {
    --nav-height: 64px;
  }

  .nav {
    padding: 16px 40px;
  }

  .logo {
    font-size: 24px;
  }

  .hero-copy {
    padding: 72px 52px;
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 4.8vw, 62px);
  }

  .hero-metrics span {
    font-size: 18px;
  }

  .hero-card {
    padding: 18px 20px;
  }

  .about-scene,
  .review-scene,
  .services-scene,
  .why-scene,
  .destinations-scene,
  .cta-scene {
    padding: 70px 60px;
  }

  .about-container,
  .why-container {
    gap: 56px;
  }

  .about-visual {
    height: 56vh;
  }

  .about-description p {
    font-size: clamp(16px, 1.2vw, 20px);
  }

  .about-mission {
    padding: 28px;
  }

  .services-container {
    gap: 34px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-item {
    min-height: 220px;
  }

  .service-content {
    padding: 28px 22px;
    gap: 12px;
  }

  .why-list {
    gap: 36px;
  }

  .why-item {
    gap: 26px;
  }

  .why-side {
    top: 12vh;
  }

  .testimonials-container {
    gap: 42px;
  }

  .testimonial-photo {
    width: 300px;
    height: 380px;
  }
}
