/* ═══════════════════════════════════════
   WaveUp Tours — Styles
   ═══════════════════════════════════════ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand:    #E8C97A;   /* gold — used for prices, stats, value accents */
  --red-sea: #E8C97A;   /* brand red — logo, buttons, CTA */
  --coral:   #E8C97A;   /* coral — hover states, badges */
  --deep:    #0A0A0E;
  --mid:     #111118;
  --surface: #18181F;
  --muted:   rgba(255, 255, 255, 0.35);
  --text:    #F2EDE4;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}

/* ── Noise overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .028;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ── WebGL canvas (Three.js background) ── */
#webgl-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Custom cursor ── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 10px;
  height: 10px;
  background: var(--sand);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, background .25s;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sand);
  border-radius: 50%; transform: translate(-50%, -50%);
  transition: width .4s cubic-bezier(.23, 1, .32, 1), height .4s cubic-bezier(.23, 1, .32, 1);
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: linear-gradient(to bottom, rgba(10, 10, 14, .92) 0%, transparent 100%);
  transition: background .35s ease, padding .35s ease, backdrop-filter .35s ease;
}

nav.scrolled {
  background: rgba(10, 10, 14, 0.96);
  backdrop-filter: blur(16px);
  padding: .85rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .08em;
  color: var(--red-sea);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--red-sea);
  color: #fff;
  border: none;
  padding: .55rem 1.4rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s, background .2s;
  border-radius: 2px;
}

.nav-cta:hover {
  transform: scale(1.04);
  background: #d44444;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 3rem;
  gap: 2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url('../Hurghada_Hotels_R03.webp');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 100% at 5% 50%,
      rgba(10, 10, 14, .95) 0%, rgba(10, 10, 14, .6) 50%, rgba(10, 10, 14, .3) 75%),
    rgba(10, 10, 14, .45);
}

/* Left text */
.hero-text {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-sea);
  margin-bottom: 1.6rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red-sea);
}

/* Word clip-reveal */
.word-wrap {
  display: block;
  overflow: hidden;
  line-height: 1.0;
}

.word {
  display: inline-block;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 1.8rem;
}

h1 em.word {
  font-style: italic;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
  color: var(--red-sea);
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 2.6rem;
  font-weight: 300;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.btn-primary {
  background: var(--red-sea);
  color: #fff;
  padding: .85rem 2.2rem;
  border: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s, box-shadow .2s, background .2s;
  border-radius: 2px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #d44444;
  box-shadow: 0 12px 32px rgba(204, 51, 51, .3);
}

.btn-ghost {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .05em;
  background: none;
  border: none;
  cursor: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-ghost svg {
  transition: transform .2s;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* Stats row */
.stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--sand);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  color: var(--muted);
  margin-top: .3rem;
  letter-spacing: .06em;
}

/* Right: spin-freeze arena */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.spin-arena {
  position: relative;
  width: 480px;
  height: 480px;
}

.ring-dots {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(232, 201, 122, .15);
  animation: ringRotate 25s linear infinite;
}

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

.spin-image-wrap {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  animation: imgSpin 9s cubic-bezier(.4, 0, .2, 1) infinite;
  transform-origin: center center;
  cursor: none;
}

@keyframes imgSpin {
  0% {
    transform: rotate(0deg);
  }

  46% {
    transform: rotate(158deg);
  }

  48% {
    transform: rotate(162deg);
  }

  56% {
    transform: rotate(162deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spin-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imgCounterSpin 9s cubic-bezier(.4, 0, .2, 1) infinite;
  transform-origin: center center;
  filter: contrast(1.05) saturate(1.1);
}

@keyframes imgCounterSpin {
  0% {
    transform: rotate(0deg);
  }

  46% {
    transform: rotate(-158deg);
  }

  48% {
    transform: rotate(-162deg);
  }

  56% {
    transform: rotate(-162deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.spin-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 40%, rgba(10, 10, 14, .6) 100%);
}

/* Orbiting pill */
.orbit-tag {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: orbitTag 12s linear infinite;
  top: 0;
  left: 0;
}

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

.orbit-tag-inner {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid rgba(204, 51, 51, .35);
  padding: .35rem .9rem;
  border-radius: 100px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
  animation: orbitTagCounter 12s linear infinite;
}

@keyframes orbitTagCounter {
  to {
    transform: translateX(-50%) rotate(-360deg);
  }
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(24, 24, 31, .88);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: .75rem 1.1rem;
  font-size: .75rem;
}

.float-card-a {
  bottom: 60px;
  left: -60px;
  animation: floatUpA 3s ease-in-out infinite;
}

.float-card-b {
  top: 80px;
  right: -50px;
  animation: floatUpB 3s ease-in-out infinite;
}

@keyframes floatUpA {

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

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

@keyframes floatUpB {

  0%,
  100% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(0);
  }
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
}

.card-sub {
  color: var(--muted);
  margin-top: .15rem;
}

.card-price {
  color: var(--sand);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Syne', sans-serif;
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, .5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--red-sea);
  padding: .8rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--deep);
  padding: 0 2rem;
}

.marquee-track .dot {
  color: var(--coral);
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.section-tag {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-sea);
  margin-bottom: .6rem;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.view-all {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 2px;
  transition: color .2s;
}

.view-all:hover {
  color: var(--red-sea);
  border-color: var(--red-sea);
}

/* ══════════════════════════════════════════
   TOURS
══════════════════════════════════════════ */
.tours {
  padding: 7rem 3rem;
  background: rgba(17, 17, 24, 0.97);
  position: relative;
  z-index: 1;
}

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

.tour-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
  cursor: none;
}

.tour-card:first-child {
  grid-row: span 2;
  aspect-ratio: unset;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.23, 1, .32, 1), filter .7s;
  filter: saturate(.9) brightness(.85);
}

.tour-card:hover .tour-img {
  transform: scale(1.06);
  filter: saturate(1.1) brightness(.7);
}

.tour-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(10, 10, 14, .9) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform .4s;
}

.tour-card:hover .tour-info {
  transform: translateY(0);
}

.tour-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--muted);
}

.tour-price {
  color: var(--sand);
  font-weight: 700;
  font-size: .95rem;
}

/* ══════════════════════════════════════════
   REVIEW / YOUTUBE SECTION
══════════════════════════════════════════ */
.review {
  padding: 7rem 3rem;
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 14, 0.96);
  text-align: center;
}

.review-inner {
  max-width: 880px;
  margin: 0 auto;
}

.review h2 {
  margin-bottom: 1rem;
}

.review-sub {
  color: var(--muted);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* YouTube facade */
.yt-wrap {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
}

.yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: none;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
}

.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55) saturate(1.1);
  transition: filter .5s;
}

.yt-wrap:hover .yt-thumb img {
  filter: brightness(.4) saturate(1.2);
}

/* Play button */
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-play svg circle {
  transition: fill .3s;
}

.yt-play svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, .5));
}

.yt-wrap:hover .yt-play svg circle {
  fill: rgba(232, 201, 122, 0.28);
}

/* Label overlay */
.yt-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 10, 14, .9) 0%, transparent 100%);
  text-align: left;
}

.yt-channel {
  display: block;
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-sea);
  margin-bottom: .3rem;
}

.yt-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

/* Actual iframe (injected by JS on play click) */
.yt-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .6);
}

.yt-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer note */
.review-note {
  font-size: .8rem;
  color: var(--muted);
}

.review-note a {
  color: var(--red-sea);
  text-decoration: none;
  border-bottom: 1px solid rgba(204, 51, 51, .3);
  transition: color .2s;
}

.review-note a:hover {
  color: #f0d68e;
}

/* ══════════════════════════════════════════
   WHY DIRECT
══════════════════════════════════════════ */
.why {
  padding: 7rem 3rem;
  position: relative;
  z-index: 1;
  background: rgba(10, 10, 14, 0.88);
  overflow: hidden;
}

.why::before {
  content: 'DIRECT';
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22vw;
  color: rgba(232, 201, 122, .025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -.05em;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-left h2 {
  margin-bottom: 1.5rem;
}

.why-left p {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 420px;
  margin-top: 1.2rem;
}

.savings-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.saving-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: var(--surface);
  border-left: 2px solid transparent;
  transition: border-color .2s, background .2s;
}

.saving-row:hover {
  border-left-color: var(--red-sea);
  background: #1e1e27;
}

.saving-label {
  font-size: .85rem;
  color: var(--muted);
}

.saving-they {
  font-size: .85rem;
  color: rgba(224, 92, 58, .7);
  text-decoration: line-through;
}

.saving-us {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--sand);
}

/* ══════════════════════════════════════════
   ROLL-SECTION CARDS (Tours list)
══════════════════════════════════════════ */
.roll-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.roll-section {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  transform: perspective(900px) rotateX(28deg) rotateY(-12deg) scale(.88) translateZ(-80px);
  transition: opacity .9s ease, transform 1s cubic-bezier(.22, .68, 0, 1.15);
}

.roll-section.in-view {
  opacity: 1;
  transform: perspective(900px) rotateX(0) rotateY(0) scale(1) translateZ(0);
}

.rs-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(.58) saturate(1.1);
  transition: filter .65s cubic-bezier(.23, 1, .32, 1), transform .65s cubic-bezier(.23, 1, .32, 1), height .5s cubic-bezier(.23, 1, .32, 1);
}

.rs-featured .rs-img {
  height: 480px;
}

.roll-section.expanded .rs-img {
  height: 440px;
}

.rs-featured.expanded .rs-img {
  height: 620px;
}

/* Richer gradient when card is expanded */
.roll-section.expanded .rs-overlay {
  background: linear-gradient(to top, rgba(10,10,14,.96) 0%, rgba(10,10,14,.65) 55%, transparent 100%);
}

.roll-section.rs-featured.expanded .rs-img {
  height: 600px;
}

.roll-section:hover .rs-img {
  filter: brightness(.4) saturate(1.2);
  transform: scale(1.03);
}

.rs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 14, .85) 0%, rgba(10, 10, 14, .6) 50%, rgba(10, 10, 14, .2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8rem 2.2rem;
}

.rs-featured .rs-overlay {
  padding: 2.8rem 3.2rem;
}

.rs-tag {
  font-size: .63rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red-sea);
  margin-bottom: .45rem;
}

.rs-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.roll-section.expanded .rs-desc {
  max-height: 800px;
  opacity: 1;
  margin-top: 1rem;
}

.rs-toggle {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  backdrop-filter: blur(4px);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1), background 0.3s, border-color 0.3s;
}

.rs-toggle:hover {
  background: rgba(204, 51, 51, 0.35);
  border-color: rgba(204, 51, 51, 0.5);
}

.roll-section.expanded .rs-toggle {
  transform: rotate(180deg);
  background: rgba(204, 51, 51, 0.45);
  border-color: rgba(204, 51, 51, 0.6);
}

.rs-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: .4rem;
  line-height: 1.05;
}

.rs-featured .rs-name {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: .55rem;
}

.rs-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .77rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: .4rem;
}

.rs-price {
  color: var(--sand);
  font-weight: 700;
  font-size: .9rem;
}

.rs-old {
  text-decoration: line-through;
  color: rgba(224, 92, 58, .75);
  font-size: .72rem;
}

.rs-book {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  align-self: flex-start;
  background: var(--red-sea);
  color: #fff;
  padding: .58rem 1.45rem;
  border-radius: 2px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, background .2s;
}

.roll-section:hover .rs-book,
.roll-section.expanded .rs-book {
  opacity: 1;
  transform: translateY(0);
}

.rs-book:hover {
  background: #f0d68e;
}

/* ══════════════════════════════════════════
   MODALS
══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 10, 14, .72);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-panel {
  position: relative;
  width: min(520px, 94vw);
  height: 100vh;
  background: var(--surface);
  padding: 5rem 3rem 3rem;
  overflow-y: auto;
  transform: translateX(48px);
  transition: transform .45s cubic-bezier(.23, 1, .32, 1);
  border-left: 1px solid rgba(255, 255, 255, .06);
}

.modal-overlay.open .modal-panel {
  transform: translateX(0);
}

.modal-close {
  position: absolute;
  top: 1.6rem;
  right: 1.8rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
  cursor: none;
  padding: .4rem;
  transition: color .2s, transform .2s;
}

.modal-close:hover {
  color: var(--text);
  transform: rotate(90deg);
}

/* Modal feature list */
.modal-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 2.5rem;
}

.modal-feature {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, .04);
  border-left: 2px solid rgba(232, 201, 122, .2);
  border-radius: 2px;
}

.modal-feature-icon {
  font-size: 1.3rem;
}

.modal-feature strong {
  display: block;
  font-size: .85rem;
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.modal-feature span {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .1rem;
  display: block;
}

/* Modal stats row (About) */
.modal-stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, .03);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.modal-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--sand);
  line-height: 1;
}

.modal-stat-label {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .25rem;
  letter-spacing: .05em;
}

/* Modal CTA button */
.modal-cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--red-sea);
  color: #fff;
  padding: .8rem 2rem;
  border-radius: 2px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s, background .2s;
}

.modal-cta:hover {
  transform: translateY(-2px);
  background: #f0d68e;
}

/* ══════════════════════════════════════════
   GUIDES
══════════════════════════════════════════ */
.guides {
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 6rem 3rem;
}

.guides-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .guides-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.guide-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.guide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s;
}

.guide-card:hover .guide-img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}

.guide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 14, 0.95), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.guide-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
  font-weight: 800;
}

.guide-info span {
  font-size: 0.85rem;
  color: var(--red-sea);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq {
  position: relative;
  z-index: 1;
  background: var(--mid);
  padding: 6rem 3rem;
}

.faq-list {
  max-width: 800px;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s;
  font-family: inherit;
}

.faq-toggle:hover {
  color: var(--red-sea);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s;
  color: rgba(255, 255, 255, 0.4);
}

.faq-toggle:hover .faq-icon {
  color: var(--red-sea);
}

.faq-toggle[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--red-sea);
}

.faq-content {
  max-height: 0;
  opacity: 0;
  padding: 0 2rem;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s ease, padding 0.3s ease;
}

.faq-toggle[aria-expanded="true"]+.faq-content {
  max-height: 300px;
  opacity: 1;
  padding: 0 2rem 1.5rem;
}

.faq-content p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* ══════════════════════════════════════════
   INSTAGRAM STRIP
══════════════════════════════════════════ */
.instagram {
  position: relative;
  z-index: 1;
  background: var(--mid);
  padding-bottom: 0;
}

.ig-header {
  padding: 5rem 3rem 2.5rem;
}

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

.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: none;
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.23, 1, .32, 1), filter .4s;
  filter: brightness(.85) saturate(.85);
}

.ig-item:hover img {
  transform: scale(1.1);
  filter: brightness(.45) saturate(1.3);
}

.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: .75rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
  background: var(--deep);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--red-sea);
  font-size: 1rem;
  letter-spacing: .08em;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  vertical-align: middle;
  margin-right: .5rem;
  opacity: .8;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--red-sea);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ══════════════════════════════════════════
   GLOBAL TWEAKS & MOBILE
══════════════════════════════════════════ */
.guides-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {

  /* GLOBAL BASICS */
  body {
    font-size: 15px;
  }

  nav {
    padding: 1.2rem;
    background: transparent;
    backdrop-filter: none;
    flex-wrap: wrap;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
  }

  nav.scrolled {
    background: rgba(10, 10, 14, 0.98);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .logo-wrap,
  .nav-cta {
    display: none;
  }

  nav.scrolled .logo-wrap,
  nav.scrolled .nav-cta {
    display: flex;
  }

  .nav-links {
    width: 100%;
    order: 3;
    display: flex;
    padding: 0.5rem 0;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0;
    transition: opacity 0.3s, transform 0.3s;
  }

  nav.scrolled .nav-links {
    display: none;
    /* Keep it focused on logo/CTA when scrolled */
  }

  .nav-links a {
    font-size: 0.85rem;
    /* Larger initially */
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .logo-img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: left;
    overflow: hidden;
  }

  .logo {
    display: flex !important;
  }

  .nav-cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.72rem;
  }

  /* SECTION HEADERS */
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .view-all {
    max-width: 15px;
    text-align: right;
    line-height: 1.3;
    font-size: 0.75rem;
    white-space: normal;
    display: block;
  }

  /* GUIDES */
  .guides {
    padding: 4rem 1.25rem;
  }

  .guides-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .guide-card {
    aspect-ratio: 16/9;
  }

  .guide-info {
    padding: 1.25rem;
  }

  .guide-info h3 {
    font-size: 1.5rem;
  }

  .guide-info span {
    font-size: 0.75rem;
  }

  /* FOOTER */
  footer {
    padding: 3.5rem 1.25rem;
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .footer-right {
    text-align: center;
    gap: 0.8rem;
  }

  /* HERO - THE "MAIN" FIX */
  .hero {
    grid-template-columns: 1fr;
    padding: 6.5rem 1.25rem 2rem;
    min-height: auto;
    text-align: center;
    gap: 0;
    background-position: 75% center;
  }

  .hero::before {
    background: radial-gradient(circle at center, rgba(10, 10, 14, 0.85) 0%, rgba(10, 10, 14, 0.95) 100%);
  }

  h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
  }

  .hero-sub {
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .cta-group {
    justify-content: center;
    transform: scale(0.95);
  }

  .stats {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .hero-visual {
    height: 320px;
    padding: 0;
    margin-top: 1.5rem;
  }

  .spin-arena {
    width: 260px;
    height: 260px;
  }

  .float-card {
    padding: 0.6rem 0.9rem;
    font-size: 0.7rem;
  }

  .float-card-a {
    bottom: 20px;
    left: -10px;
  }

  .float-card-b {
    top: 20px;
    right: -10px;
  }

  /* WHY DIRECT */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .why::before {
    font-size: 35vw;
    opacity: 0.015;
  }

  .why-left p {
    margin-left: auto;
    margin-right: auto;
    font-size: 0.92rem;
  }

  .saving-row {
    padding: 0.9rem 1.2rem;
  }

  .saving-label {
    font-size: 0.8rem;
  }

  /* TOURS CARDS (THE "MAIN") */
  .rs-img {
    height: 240px;
  }

  .rs-featured .rs-img {
    height: 320px;
  }

  .roll-section.expanded .rs-img {
    height: 380px;
  }

  .rs-overlay {
    padding: 1.25rem;
  }

  .rs-name {
    font-size: 1.2rem;
  }

  .rs-tag {
    font-size: 0.58rem;
  }

  .rs-featured .rs-name {
    font-size: 1.5rem;
  }

  .rs-toggle {
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
  }

  .rs-desc {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  /* YOUTUBE */
  .yt-thumb {
    border-radius: 12px;
  }

  .yt-label {
    padding: 1.25rem;
  }

  .yt-title {
    font-size: 0.9rem;
  }

  .yt-play svg {
    width: 60px;
    height: 60px;
  }

  /* FAQ & GUIDES */
  .guides-grid {
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .guide-info {
    padding: 1.25rem;
  }

  .guide-info h3 {
    font-size: 1.4rem;
  }

  .faq-toggle {
    padding: 1.1rem 1.25rem;
    font-size: 0.98rem;
    gap: 0.8rem;
  }

  .faq-content {
    padding: 0 1.25rem;
  }

  .faq-toggle[aria-expanded="true"]+.faq-content {
    padding: 0 1.25rem 1.1rem;
  }

  .faq-content p {
    font-size: 0.88rem;
  }

  /* INSTAGRAM */
  .ig-header h2 {
    font-size: 1.8rem;
  }

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

  /* MODALS */
  .modal-panel {
    width: 100%;
    padding: 4rem 1.25rem 2rem;
  }

  .modal-stats-row {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .modal-stat-num {
    font-size: 1.5rem;
  }

  #tours {
    padding: 16px;
  }

  .view-all {
    display: none;
  }
  .spin-arena{
    width: 360px;
  }
}