/* ==============================
   DESIGN SYSTEM & RESET
============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --orange: #FF5F3D;
  --orange-light: #FF8C6B;
  --orange-glow: rgba(255, 95, 61, 0.15);
  --blue: #2563EB;
  --blue-light: #60A5FA;
  --blue-deep: #1E3A8A;
  --blue-glow: rgba(37, 99, 235, 0.12);
  --yellow: #FBBF24;
  --yellow-light: #FDE68A;
  --pink: #F472B6;
  --cream: #FFF8F5;
  --white: #FFFFFF;
  --dark: #0F0F0F;
  --dark-2: #1A1A2E;
  --gray: #94A3B8;
  --gray-light: #F1F5F9;
  --gray-border: #E2E8F0;

  /* Typography */
  --font-head: 'Instrument Serif', serif;
  --font-body: 'Barlow', sans-serif;

  /* Spacing */
  --section-pad: 120px 0;
  --container-max: 1200px;
  --container-pad: 0 24px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==============================
   UTILITIES
============================== */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--orange-glow);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.tag-white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 95, 61, 0.35);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 95, 61, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-border);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Image Placeholders */
.img-placeholder {
  background: linear-gradient(135deg, #f0f0ec 0%, #e8e4df 100%);
  border: 2px dashed #ccc;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #999;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

.img-placeholder i {
  width: 32px;
  height: 32px;
  stroke: #bbb;
}

.img-placeholder.small {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 0;
  font-size: 0.7rem;
  border: 2px dashed #ddd;
  flex-shrink: 0;
}

.img-placeholder.small i {
  width: 20px;
  height: 20px;
}


/* Highlight */
.highlight-orange {
  color: var(--orange);
  position: relative;
}

/* ==============================
   NAVIGATION
============================== */
/* ==============================
   LIQUID GLASS UTILITIES
============================== */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.15) 20%,
      rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0.15) 80%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0.2) 80%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 320px;
  z-index: 1000;
  padding: 8px 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-full);
}

.navbar .nav-links a {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.navbar .logo-text {
  color: var(--white);
  font-family: var(--font-head);
  font-style: italic;
}

.navbar .nav-links li:last-child {
  margin-left: 12px;
}

.navbar .claim-btn {
  background: #ffffff57;

  color: var(--dark);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
  font-family: var(--font-body);
}

.navbar .claim-btn:hover {
  transform: scale(1.05);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--dark);
  background: var(--gray-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

/* ==============================
   HERO SECTION (PINNED SEQUENCE)
============================== */
.hero-pin-wrapper {
  /* GSAP will pin this wrapper */
  width: 100%;
  position: relative;
  background-color: var(--dark-2);
  /* A dramatic dark background for the hero */
}

/* ==============================
   CINEMATIC HERO SECTION
============================== */
.hero-pin-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-cinematic {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  max-width: 900px;
  padding: 0 24px;
}

.hero-liquid-badge {
  padding: 4px 12px 4px 4px;
  /* Fix: Added right padding for the text */
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: "#000000";
  border-radius: 26px;
  padding: 10px;
  color: var(--white);
}

.badge-pill {
  letter-spacing: 0.05em;
}

.cinematic-title {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  /* Increased from 0.85 for readability */
  letter-spacing: -0.02em;
  /* Reduced from -0.04em */
  color: var(--white);
  margin-bottom: 24px;
  text-align: center;
  /* BlurText will control the reveal animation */
}

.cinematic-title-secondary {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  text-align: center;
  opacity: 0;
  z-index: 20;
  /* Ensure this is above cards */
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cinematic-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.4;
  opacity: 0;
  /* Animated in script.js */
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  /* Animated in script.js */
}

.btn-cinematic-primary {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.btn-cinematic-primary:hover {
  transform: scale(1.05);
}

.btn-cinematic-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
}

.play-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.play-circle i {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn-cinematic-secondary:hover .play-circle {
  background: rgba(255, 255, 255, 0.1);
}

/* Partners Bar */
.partners-bar-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 10;
}

.partners-label {
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 8vw, 5rem);
}

.partner {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  /* Slightly muted for elegance */
  letter-spacing: -0.02em;
}

/* Mobile Media Query Overrides */
@media (max-width: 768px) {
  .navbar {
    top: 1rem;
    min-width: 90%;
  }

  .cinematic-title {
    font-size: 3rem;
    letter-spacing: -0.02em;
  }

  .partners-logos {
    gap: 2rem;
  }

  .partner {
    font-size: 1.5rem;
  }
}

.hero-sequence-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-sequence-container.seq-1-content {
  pointer-events: auto;
  z-index: 10;
}

.seq-images-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.fly-img {
  position: absolute;
  width: clamp(200px, 25vw, 320px);
  aspect-ratio: 4/5;
  background: var(--dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(120vh);
  /* Start off-screen bottom */
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fly-img i {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.fly-img span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.fly-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(0.85);
  transition: opacity 0.5s ease;
}

.fly-img:hover .fly-img-bg {
  opacity: 0.9;
  filter: brightness(0.9);
}

/* Individual card starting rotations for visual flair */
.img-1 {
  transform: translateY(120vh) rotate(-10deg);
}

.img-2 {
  transform: translateY(120vh) rotate(5deg);
}

.img-3 {
  transform: translateY(120vh) rotate(-2deg);
}

.img-4 {
  transform: translateY(120vh) rotate(8deg);
}

.img-5 {
  transform: translateY(120vh) rotate(-5deg);
}


/* Ambient Background (Image + Overlay) */
.ambient-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/img6.png');
  /* User will replace this (Desktop) */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Specific background image for mobile devices */
@media (max-width: 768px) {
  .ambient-bg {
    background-image: url('images/img7.png');
    /* User will replace this (Mobile) */
  }
}

.ambient-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark overlay to ensure white text pops */
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(15, 15, 15, 0.4) 100%);
  z-index: 2;
}

/* Base style for centered text sequences */
.seq-1-content,
.seq-3-content {
  position: absolute;
  width: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  will-change: transform, opacity;
}

/* Sequence 1 (Initial Headline) */
.seq-1-content {
  opacity: 1;
  /* Starts visible */
}

.seq-1-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  backdrop-filter: blur(10px);
}

.seq-1-content .badge-icon {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
}

.main-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sub-title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
}

/* Sequence 2 (Flying Images) */
.seq-images-container {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* Common style for the flying images */
.fly-img {
  position: absolute;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: var(--white);
  overflow: hidden;
  /* They start off-screen at the bottom, GSAP will move them */
  transform: translateY(120vh);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* New class for the actual image inside the flying card */
.fly-img-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Optional: slightly darken it so the icon/text pops more */
  filter: brightness(0.85);
}

.fly-img i,
.j-card i {
  /* Share animation for all prominent icons */
  animation: subtleFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
  /* Keep above image */
}

.fly-img i {
  stroke: var(--white);
  /* Changed to white to contrast against photos */
  width: 40px;
  height: 40px;
}

.fly-img span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  /* Changed to white */
  position: relative;
  z-index: 1;
  /* Keep above image */
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Image specific sizing & initial horizontal positioning */
.img-1 {
  width: clamp(200px, 20vw, 320px);
  height: clamp(260px, 25vw, 400px);
  left: 10%;
}

.img-2 {
  width: clamp(240px, 22vw, 360px);
  height: clamp(180px, 18vw, 260px);
  right: 12%;
}

.img-3 {
  width: clamp(180px, 18vw, 280px);
  height: clamp(240px, 24vw, 360px);
  left: 50%;
  margin-left: -140px;
  /* center horizontally */
}

.img-4 {
  width: clamp(220px, 20vw, 300px);
  height: clamp(220px, 20vw, 300px);
  left: 25%;
}

.img-5 {
  width: clamp(260px, 25vw, 400px);
  height: clamp(160px, 15vw, 240px);
  right: 20%;
}

/* Sequence 3 (Second Headline) */
.seq-3-content {
  opacity: 0;
  /* Starts hidden */
  pointer-events: none;
}

.second-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 900px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

/* Scroll indicator */
.seq-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: rgba(255, 255, 255, 0.6);
  animation: bounce 2s infinite;
}

.seq-indicator .scroll-arrow {
  stroke: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(10px) translateX(-50%);
  }
}

/* ==============================
   FEATURES SECTION
============================== */
.features {
  padding: var(--section-pad);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-border);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card[data-feature="itinerary"]::before {
  background: linear-gradient(135deg, rgba(255, 95, 61, 0.04), transparent);
}

.feature-card[data-feature="dating"]::before {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.06), transparent);
}

.feature-card[data-feature="encryption"]::before {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
}

.feature-card[data-feature="moments"]::before {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.06), transparent);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-orange {
  background: rgba(255, 95, 61, 0.1);
}

.icon-pink {
  background: rgba(244, 114, 182, 0.1);
}

.icon-blue {
  background: rgba(37, 99, 235, 0.1);
}

.icon-yellow {
  background: rgba(251, 191, 36, 0.1);
}

.feature-icon {
  width: 28px;
  height: 28px;
}

.icon-orange .feature-icon {
  stroke: var(--orange);
}

.icon-pink .feature-icon {
  stroke: var(--pink);
}

.icon-blue .feature-icon {
  stroke: var(--blue);
}

.icon-yellow .feature-icon {
  stroke: var(--yellow);
}

/* Icon animations */
.feature-card[data-feature="itinerary"] .animated-icon {
  animation: iconFloat 4s ease-in-out infinite;
}

.feature-card[data-feature="dating"] .animated-icon {
  animation: iconPulse 2.5s ease-in-out infinite;
}

.feature-card[data-feature="encryption"] .animated-icon {
  animation: iconShield 4s ease-in-out infinite;
}

.feature-card[data-feature="moments"] .animated-icon {
  animation: iconCamera 5s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

@keyframes iconShield {

  0%,
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }

  25% {
    transform: rotate(-3deg);
  }

  75% {
    transform: rotate(3deg);
  }
}

@keyframes iconCamera {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  30% {
    transform: scale(1.05) rotate(-3deg);
  }

  60% {
    transform: scale(1.05) rotate(3deg);
  }
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s ease;
}

.feature-link:hover {
  gap: 10px;
}

.link-arrow {
  width: 14px;
  height: 14px;
  stroke: var(--orange);
  transition: transform 0.2s ease;
}

.feature-link:hover .link-arrow {
  transform: translateX(3px);
}

/* ==============================
   THE JOURNEY (HORIZONTAL SCROLL)
============================== */
.journey-section {
  background: var(--dark-2);
  color: var(--white);
  overflow: hidden;
}

.journey-pin-container {
  /* GSAP pins this */
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}

/* Backgrounds */
.journey-bgs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jb-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  /* Reduced brightness darkening since we add a gradient panel overlay */
  filter: brightness(0.6);
}

.jb-bg.active {
  opacity: 1;
}

/* Using the generated premium travel images */
.bg-explore {
  background-image: url('images/img8.png');
}

.bg-connect {
  background-image: url('images/img6.png');
}

/* Reusing explore or connect since 3rd generation hit quota limit, using explore to bookend */
.bg-experience {
  background-image: url('images/img9.png');
}

/* Text Panel now sits solidly at the bottom half */
.journey-text-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 45vh;
  /* Strictly bottom 45% */
  /* Take up the bottom chunk of the screen */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 6vw;
  z-index: 10;
  /* Gradient to ensure text readability over any background image */
  background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.7) 40%, transparent 100%);
}

.jt-content {
  position: absolute;
  bottom: 90px;
  left: 6vw;
  width: clamp(300px, 50vw, 700px);
  /* Limit text width so it doesn't span whole screen */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.jt-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.journey-step {
  font-family: var(--font-head);
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 16px;
}

.jt-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.jt-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Progress Indicators at the very bottom */
.journey-progress {
  position: absolute;
  bottom: 30px;
  left: 6vw;
  right: 6vw;
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
}

.jp-item {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.jp-item.active {
  color: var(--white);
}

/* Horizontal Track (Cards) positioned in the top half */
.journey-track-viewport {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 55vh;
  /* Strictly top 55% */
  display: flex;
  align-items: flex-end;
  /* Cards sit at the bottom edge of this 55% area */
  padding-bottom: 20px;
  /* Small gap before text panel */
  overflow: visible;
  z-index: 5;
}

.journey-track {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-left: 6vw;
  /* GSAP will animate this entire track leftwards */
  will-change: transform;
}

.j-card {
  width: clamp(260px, 22vw, 360px);
  height: clamp(280px, 40vh, 480px);
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.j-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.j-card::after {
  display: none;
}

.j-card i {
  display: none;
}

.j-card span {
  display: none;
}
.j-divider {
  width: 10vw;
  flex-shrink: 0;
}

/* ==============================
   WHY LUVROAM SECTION
============================== */
.why-luvroam {
  padding: var(--section-pad);
  background: linear-gradient(160deg, #fff9f7 0%, #f0f7ff 100%);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.why-left .section-title {
  text-align: left;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.why-left .section-subtitle {
  text-align: left;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-suf {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: inline;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 8px;
  font-weight: 500;
}

.why-img-placeholder {
  height: 280px;
  box-shadow: var(--shadow-md);
}
.why-image {
  width: 100%;
  height: 550px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ==============================
   TESTIMONIALS SECTION
============================== */
.testimonials {
  padding: var(--section-pad);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-featured {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 32px rgba(255, 95, 61, 0.12);
  transform: scale(1.02);
}

.testi-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testi-stars i {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
  fill: var(--yellow);
}

.testi-quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.testi-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ==============================
   WAITLIST SECTION
============================== */
.waitlist {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--orange) 0%, #e04a25 100%);
  position: relative;
  overflow: hidden;
}

.waitlist-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.waitlist-bg-shape::before {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.06);
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.waitlist-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.waitlist-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
}

.waitlist-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 400px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.waitlist-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.waitlist-input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.2);
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.app-badge i {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.badge-small {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.app-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

.phone-mockup {
  height: 500px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.phone-mockup i {
  stroke: rgba(255, 255, 255, 0.5);
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--dark-2);
  padding: 64px 0 0;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer .logo-text {
  color: #fff;
}

.footer .logo-placeholder {
  display: flex;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 220px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: rgba(255, 255, 255, 0.6);
}

.social-icon i {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.social-icon:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ==============================
   TOAST NOTIFICATION
============================== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--dark);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast i {
  width: 18px;
  height: 18px;
  stroke: #4ade80;
  flex-shrink: 0;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
    color: var(--white);
  }

  /* Hero Flying Images Mobile Adjustments */
  .img-1 {
    width: clamp(140px, 35vw, 180px);
    height: clamp(180px, 45vw, 240px);
    left: 5%;
  }

  .img-2 {
    width: clamp(160px, 40vw, 200px);
    height: clamp(120px, 30vw, 160px);
    right: 5%;
  }

  .img-3 {
    width: clamp(130px, 30vw, 160px);
    height: clamp(160px, 40vw, 200px);
    left: 45%;
    margin-left: -65px;
  }

  .img-4 {
    width: clamp(150px, 35vw, 180px);
    height: clamp(150px, 35vw, 180px);
    left: 10%;
  }

  .img-5 {
    width: clamp(170px, 42vw, 210px);
    height: clamp(130px, 32vw, 170px);
    right: 8%;
  }

  .hero {
    padding: 100px 0 0;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrap {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step-item,
  .step-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .step-reverse {
    direction: ltr;
  }

  .step-img-placeholder {
    height: 240px;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-left {
    order: 1;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testi-featured {
    transform: none;
  }

  .waitlist-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .waitlist-visual {
    display: none;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.4rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================
   ANIMATION BASE CLASSES
   (used by GSAP to target)
============================== */
.gsap-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.gsap-fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-fade-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ==============================
   ANIMATION KEYFRAMES & EXTRAS
============================== */
@keyframes subtleFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-5px) rotate(2deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Custom Glow Cursor */
.glow-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 95, 61, 0.4) 0%, rgba(255, 95, 61, 0) 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: screen;
  /* Makes it glow nicely over dark backgrounds */
}

/* Make it slightly larger when active/clicking */
body:active .glow-cursor {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle, rgba(255, 95, 61, 0.6) 0%, rgba(255, 95, 61, 0) 70%);
}

/* ==============================
   SCROLL REVEAL CLASSES 
   (driven by IntersectionObserver in script.js)
============================== */
.reveal {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.reveal.reveal-up {
  transform: translateY(36px);
}

.reveal.reveal-left {
  transform: translateX(-40px);
}

.reveal.reveal-right {
  transform: translateX(40px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}