:root {
  --navy: #0a1628;
  --deep: #0d2040;
  --ocean: #1a3a5c;
  --teal: #1e6b8a;
  --aqua: #2eb8c0;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #fafcff;
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--aqua);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(46,184,192,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.4s, height 0.4s, border-color 0.4s;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 18px; height: 18px; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.8rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}
nav.scrolled {
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(20px);
  padding: 1.2rem 5vw;
  border-bottom: 1px solid var(--glass-border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--white);
  display: flex; align-items: center; gap: 0.7rem;
}
.nav-logo .anchor { color: var(--aqua); font-size: 1.2rem; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--aqua);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--aqua);
  color: var(--aqua);
  padding: 0.6rem 1.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--aqua); color: var(--navy); }

/* LANG TOGGLE */
.lang-toggle {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: rgba(255,255,255,0.7);
  padding: 0.35rem 0.8rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  cursor: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  white-space: nowrap;
}
.lang-toggle:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  background: rgba(46,184,192,0.06);
}

/* NAV RIGHT GROUP */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 0; }
.hamburger span { display: block; width: 28px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30,107,138,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(46,184,192,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0a1628 0%, #0d2040 40%, #0f2a4a 70%, #0a1628 100%);
}
/* Animated waves */
.waves-hero {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; overflow: hidden;
}
.wave {
  position: absolute; bottom: 0;
  width: 200%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,60 C200,100 400,20 600,60 C800,100 1000,20 1200,60 L1200,120 L0,120 Z' fill='%230d2040' opacity='0.6'/%3E%3C/svg%3E") repeat-x bottom;
  background-size: 50% 100%;
}
.wave-1 { animation: wave-anim 12s linear infinite; opacity: 0.5; }
.wave-2 { animation: wave-anim 18s linear infinite reverse; opacity: 0.3; bottom: 10px; }
.wave-3 { animation: wave-anim 8s linear infinite; opacity: 0.2; bottom: 20px; }
@keyframes wave-anim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Particles */
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--aqua);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s infinite;
}
@keyframes float-particle {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.4; }
  100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5vw;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 1s 0.3s forwards;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--aqua);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 1s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 1s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s 0.9s forwards;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: var(--navy);
  border: none;
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(46,184,192,0.3);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.hero-scroll {
  position: absolute; bottom: 3rem; right: 5vw;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0;
  animation: fade-up 1s 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--aqua), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* STATS BAR */
.stats-bar {
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  padding: 2rem 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid var(--glass-border);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--aqua);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
  display: block;
}

/* SECTION BASE */
section { padding: 8rem 5vw; }
.section-tag {
  font-size: 0.68rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--aqua);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.2rem;
}
.section-tag::before { content: ''; width: 30px; height: 1px; background: var(--aqua); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-desc {
  font-size: 0.95rem; font-weight: 200;
  line-height: 1.9; color: rgba(255,255,255,0.6);
  max-width: 600px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* ======= FLOTTE ======= */
.fleet-section { background: var(--deep); }
.fleet-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 2rem; }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.fleet-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: none;
  background: var(--ocean);
}
.fleet-card:first-child { grid-row: span 2; aspect-ratio: auto; }
.fleet-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  filter: brightness(0.7);
}
.fleet-card:hover .fleet-card-img { transform: scale(1.08); filter: brightness(0.85); }
.fleet-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.fleet-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.fleet-card-cat {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--aqua); margin-bottom: 0.4rem;
}
.fleet-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 0.5rem;
  transform: translateY(10px);
  transition: transform 0.4s;
}
.fleet-card:hover .fleet-card-name { transform: none; }
.fleet-card-specs {
  display: flex; gap: 1.5rem;
  font-size: 0.72rem; font-weight: 200;
  color: rgba(255,255,255,0.6);
  transform: translateY(10px); opacity: 0;
  transition: all 0.4s 0.05s;
}
.fleet-card:hover .fleet-card-specs { transform: none; opacity: 1; }
.fleet-card-specs span { display: flex; align-items: center; gap: 0.4rem; }
.fleet-card-price {
  margin-top: 1rem;
  font-size: 0.8rem; font-weight: 300;
  color: var(--gold-light);
  transform: translateY(10px); opacity: 0;
  transition: all 0.4s 0.1s;
}
.fleet-card:hover .fleet-card-price { transform: none; opacity: 1; }

/* IMG PLACEHOLDER using CSS gradients (no external images) */
.img-boat-1 { background: linear-gradient(135deg, #0d2a44 0%, #1a4a6e 30%, #0f3554 60%, #1e6b8a 100%); }
.img-boat-2 { background: linear-gradient(135deg, #0a1f35 0%, #2eb8c0 80%, #1e6b8a 100%); }
.img-boat-3 { background: linear-gradient(160deg, #112238 0%, #1a3a5c 50%, #2eb8c0 100%); }
.img-boat-4 { background: linear-gradient(135deg, #081525 0%, #0d2a44 40%, #1a4a6e 100%); }
.img-boat-5 { background: linear-gradient(135deg, #0e2840 0%, #1e6b8a 60%, #2eb8c0 100%); }

/* Boat SVG illustrations inside cards */
.boat-svg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.15;
}

/* ======= EXPERIENCE ======= */
.experience-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}
.exp-visual {
  position: relative;
  min-height: 600px;
  background: linear-gradient(160deg, #0d2040 0%, #1a4a6e 50%, #2eb8c0 100%);
  overflow: hidden;
}
.exp-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.compass {
  width: 280px; height: 280px;
  border: 1px solid rgba(46,184,192,0.3);
  border-radius: 50%;
  position: relative;
  animation: rotate-compass 30s linear infinite;
}
.compass::before {
  content: '';
  position: absolute; inset: 20px;
  border: 1px solid rgba(46,184,192,0.15);
  border-radius: 50%;
}
.compass-needle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  width: 2px; height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: bottom center;
}
.compass-point {
  position: absolute; top: 50%; left: 50%;
  font-size: 0.65rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
.cp-n { transform: translate(-50%, -160%); }
.cp-s { transform: translate(-50%, 100%); }
.cp-e { transform: translate(100%, -50%); }
.cp-o { transform: translate(-220%, -50%); }
@keyframes rotate-compass {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.exp-content {
  background: var(--deep);
  padding: 6rem;
  display: flex; flex-direction: column; justify-content: center;
}
.exp-features { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.exp-feature {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}
.exp-feature:last-child { border-bottom: none; padding-bottom: 0; }
.exp-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--aqua);
  font-size: 1rem;
}
.exp-feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  margin-bottom: 0.4rem;
}
.exp-feature-desc {
  font-size: 0.82rem; font-weight: 200;
  line-height: 1.7; color: rgba(255,255,255,0.55);
}

/* ======= HOW IT WORKS ======= */
.process-section { background: var(--navy); text-align: center; }
.process-header { margin-bottom: 5rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(to right, transparent, var(--teal), transparent);
}
.process-step { padding: 0 2rem; }
.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--aqua);
  position: relative;
  background: var(--navy);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: 0.8rem;
}
.step-desc {
  font-size: 0.8rem; font-weight: 200;
  line-height: 1.7; color: rgba(255,255,255,0.5);
}

/* ======= DESTINATIONS ======= */
.destinations-section { background: var(--deep); padding: 8rem 0; }
.destinations-header { padding: 0 5vw; margin-bottom: 4rem; }
.destinations-scroll {
  display: flex; gap: 1.5px;
  overflow-x: auto;
  padding: 0 5vw;
  scrollbar-width: none;
}
.destinations-scroll::-webkit-scrollbar { display: none; }
.dest-card {
  flex-shrink: 0;
  width: 320px; height: 420px;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.dest-bg {
  width: 100%; height: 100%;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.dest-card:hover .dest-bg { transform: scale(1.07); }
.d1 { background: linear-gradient(160deg, #0d2a44, #2eb8c0); }
.d2 { background: linear-gradient(135deg, #081828, #1e6b8a 60%, #2eb8c0); }
.d3 { background: linear-gradient(170deg, #112038, #1a4a6e 50%, #2eb8c0); }
.d4 { background: linear-gradient(145deg, #0a1a2e, #0d2a44 40%, #1e6b8a); }
.d5 { background: linear-gradient(155deg, #091522, #1a3a5c 50%, #2eb8c0); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.dest-flag { font-size: 1.5rem; margin-bottom: 0.5rem; }
.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 0.3rem;
}
.dest-sub { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--aqua); text-transform: uppercase; }
.dest-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(10,22,40,0.8);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  font-size: 0.62rem; letter-spacing: 0.15em;
  padding: 0.3rem 0.7rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ======= TESTIMONIALS ======= */
.testimonials-section { background: var(--navy); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.4s;
}
.testi-card:hover { border-color: var(--teal); transform: translateY(-4px); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; color: var(--aqua);
  line-height: 0.5; margin-bottom: 1.5rem;
  opacity: 0.5;
}
.testi-text {
  font-size: 0.9rem; font-weight: 200;
  line-height: 1.8; color: rgba(255,255,255,0.75);
  font-style: italic;
  margin-bottom: 2rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}
.testi-name { font-size: 0.82rem; font-weight: 400; }
.testi-loc { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 0.1rem; }
.testi-stars { color: var(--gold); font-size: 0.8rem; margin-top: 0.3rem; }

/* ======= CTA SECTION ======= */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0d2040 0%, #1a4a6e 50%, #0f3050 100%);
  text-align: center;
  padding: 10rem 5vw;
}
.cta-bg-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(46,184,192,0.1);
}
.ring-1 { width: 600px; height: 600px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-2 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-3 { width: 1200px; height: 1200px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cta-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--aqua);
  margin-bottom: 1.5rem;
  display: block;
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub {
  font-size: 0.95rem; font-weight: 200;
  color: rgba(255,255,255,0.6);
  margin-bottom: 3rem;
}
.cta-form {
  display: flex; gap: 0; max-width: 520px;
  margin: 0 auto;
}
.cta-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  border-right: none;
  color: var(--white);
  padding: 1rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem; font-weight: 200;
  outline: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.35); }
.cta-form input:focus { border-color: var(--teal); background: rgba(255,255,255,0.12); }
.cta-form button {
  background: var(--aqua);
  color: var(--navy);
  border: none;
  padding: 1rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: none;
  transition: background 0.3s;
}
.cta-form button:hover { background: var(--gold-light); }

/* ======= FOOTER ======= */
footer {
  background: #060f1c;
  border-top: 1px solid var(--glass-border);
  padding: 5rem 5vw 3rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 1.2rem;
}
.footer-brand-desc {
  font-size: 0.82rem; font-weight: 200;
  line-height: 1.8; color: rgba(255,255,255,0.45);
  margin-bottom: 2rem;
}
.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: border-color 0.3s, color 0.3s;
}
.social-link:hover { border-color: var(--aqua); color: var(--aqua); }
.footer-col-title {
  font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  text-decoration: none; color: rgba(255,255,255,0.55);
  font-size: 0.85rem; font-weight: 200;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; gap: 0.8rem; align-items: flex-start;
  margin-bottom: 1rem; color: rgba(255,255,255,0.5);
  font-size: 0.82rem; font-weight: 200; line-height: 1.5;
}
.footer-contact-item span:first-child { color: var(--aqua); flex-shrink: 0; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-weight: 200; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* MOBILE NAV */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.7,0,0.3,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  text-decoration: none; color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--aqua); }

/* MARQUEE */
.marquee-section {
  background: var(--teal);
  padding: 1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 3rem;
}
.marquee-item::after {
  content: '✦';
  color: rgba(255,255,255,0.4);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* RESERVATION SECTION */
.reservation-section {
  background: var(--deep);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.resa-info { padding: 6rem; display: flex; flex-direction: column; justify-content: center; }
.resa-form-wrap { padding: 6rem; background: var(--navy); }
.resa-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-input, .form-select {
  background: transparent;
  border: none; border-bottom: 1px solid var(--glass-border);
  color: var(--white);
  padding: 0.8rem 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem; font-weight: 200;
  outline: none; width: 100%;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-select { background: transparent; }
.form-select option { background: var(--deep); }
.form-input:focus, .form-select:focus { border-color: var(--aqua); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.resa-submit {
  background: linear-gradient(135deg, var(--teal), var(--aqua));
  color: var(--navy);
  border: none;
  padding: 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  cursor: none;
  margin-top: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.resa-submit:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(46,184,192,0.3); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .fleet-card:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .experience-section { grid-template-columns: 1fr; }
  .exp-visual { min-height: 400px; }
  .exp-content { padding: 4rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .reservation-section { grid-template-columns: 1fr; }
  .resa-info, .resa-form-wrap { padding: 4rem 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .lang-toggle { cursor: auto; }
  .hamburger { display: flex; }
  .nav-right { gap: 0.7rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card:first-child { grid-column: 1; aspect-ratio: 16/9; }
  .process-steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .exp-content { padding: 3rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-form { flex-direction: column; }
  .cta-form input { border-right: 1px solid var(--glass-border); border-bottom: none; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
