/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: hsl(195, 100%, 39%);
  --primary-dark: hsl(195, 100%, 25%);
  --secondary: hsl(190, 80%, 65%);
  --accent: hsl(190, 100%, 85%);
  --gold: hsl(35, 100%, 55%);
  --bg: hsl(205, 85%, 3%);
  --bg2: hsl(205, 80%, 6%);
  --surface: rgba(255, 255, 255, 0.03);
  --surface2: rgba(255, 255, 255, 0.06);
  --text: hsl(210, 100%, 98%);
  --text2: hsl(205, 20%, 65%);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 24px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Outfit', var(--font);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── Utility ─── */
.container { width: min(1200px, 92%); margin: 0 auto; }
.gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,150,199,.15); border: 1px solid rgba(0,150,199,.3); color: var(--secondary); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; }
.tag-light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 800; margin: 16px 0 12px; line-height: 1.15; }
.section-header p { color: var(--text2); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-header .tag { margin-bottom: 4px; }

/* ─── Animate on scroll ─── */
[data-animate] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0s); }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ─── Preloader ─── */
.preloader { position: fixed; inset: 0; background: var(--bg2); z-index: 9999; display: flex; justify-content: center; align-items: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
.preloader.fade-out { opacity: 0; visibility: hidden; }
.sea-circle { position: relative; width: 140px; height: 140px; border-radius: 50%; border: 3px solid rgba(0, 150, 199, 0.4); box-shadow: 0 0 30px rgba(0, 150, 199, 0.3), inset 0 0 25px rgba(0, 150, 199, 0.4); overflow: hidden; display: flex; align-items: center; justify-content: center; background: rgba(5, 20, 32, 0.8); }
.sea-water { position: absolute; bottom: 0; left: -50%; width: 200%; height: 200%; background: linear-gradient(180deg, rgba(72, 202, 228, 0.7) 0%, rgba(0, 150, 199, 0.9) 100%); border-radius: 38%; animation: seaSpin 4s linear infinite, seaRise 3.5s ease-in-out forwards; z-index: 1; }
@keyframes seaSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes seaRise { 0% { bottom: -150%; } 100% { bottom: -15%; } }
.preloader-logo-sea { position: relative; z-index: 2; width: 65px; height: auto; animation: pulseLogoSea 2s infinite alternate; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8)); }
@keyframes pulseLogoSea { 0% { transform: scale(0.9); opacity: 0.8; filter: drop-shadow(0 0 10px var(--secondary)); } 100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 25px var(--secondary)); } }

/* ─── Orbs ─── */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 { width: 600px; height: 600px; top: -200px; left: -150px; background: radial-gradient(circle, rgba(0,150,199,.25), transparent 70%); animation: drift 12s ease-in-out infinite; }
.orb-2 { width: 500px; height: 500px; top: 100px; right: -100px; background: radial-gradient(circle, rgba(72,202,228,.18), transparent 70%); animation: drift 16s ease-in-out infinite reverse; }
.orb-3 { width: 350px; height: 350px; bottom: 0; left: 40%; background: radial-gradient(circle, rgba(0,119,182,.2), transparent 70%); animation: drift 10s ease-in-out infinite 4s; }
@keyframes drift { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-30px) scale(1.05); } }

/* ─── Navbar ─── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; transition: background .3s, backdrop-filter .3s, box-shadow .3s; }
#navbar.scrolled { background: rgba(3,11,16,.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 700; transition: opacity 0.2s; }
.brand:hover { opacity: 0.8; }
.nav-logo { height: 32px; width: auto; }
.brand em { font-style: normal; color: var(--secondary); }
.brand span { font-family: var(--font-display); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text2); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; font-weight: 600; font-size: 14px; padding: 9px 22px; border-radius: 100px; transition: opacity .2s, transform .2s; white-space: nowrap; }
.btn-nav:hover { opacity: .9; transform: scale(1.03); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; flex-direction: column; gap: 0; background: rgba(5,20,32,.97); border-top: 1px solid var(--border); }
.mobile-menu a { padding: 16px 24px; font-size: 15px; color: var(--text2); border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; }

/* ─── Hero ─── */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; position: relative; padding: 120px 6vw 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.wave-lines { position: absolute; bottom: 0; left: 0; right: 0; opacity: .6; }
.wave-lines svg { width: 100%; height: 300px; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(72,202,228,.1); border: 1px solid rgba(72,202,228,.25); color: var(--secondary); font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 100px; margin-bottom: 28px; animation: fadeUp .8s ease both; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--secondary); box-shadow: 0 0 0 0 rgba(72,202,228,.4); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(72,202,228,.4); } 50% { box-shadow: 0 0 0 8px rgba(72,202,228,0); } }
.hero-title { font-family: var(--font-display); font-size: clamp(40px,5.5vw,76px); font-weight: 800; line-height: 1.08; margin-bottom: 22px; animation: fadeUp .9s ease .1s both; }
.hero-sub { font-size: 18px; color: var(--text2); line-height: 1.7; max-width: 500px; margin-bottom: 38px; animation: fadeUp 1s ease .2s both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; animation: fadeUp 1s ease .3s both; }
.btn-store { display: flex; align-items: center; gap: 14px; padding: 12px 22px; border-radius: 14px; font-size: 14px; transition: transform .2s, box-shadow .2s; }
.btn-store svg { width: 26px; height: 26px; flex-shrink: 0; }
.btn-store small { display: block; font-size: 10px; opacity: .75; font-weight: 400; line-height: 1; }
.btn-store strong { display: block; font-size: 16px; font-weight: 700; line-height: 1.2; }
.btn-store:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.btn-apple { background: #fff; color: #111; }
.btn-google { background: var(--surface2); border: 1px solid var(--border); color: var(--text); }
.hero-stats { display: flex; align-items: center; gap: 24px; animation: fadeUp 1s ease .4s both; }
.stat strong { display: block; font-size: 28px; font-weight: 800; color: var(--secondary); }
.stat span { font-size: 13px; color: var(--text2); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── Phone Mockup ─── */
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; animation: fadeUp 1.1s ease .25s both; }
.phone-mockup { position: relative; width: 320px; }
.phone-frame { position: relative; background: #000; border-radius: 50px; padding: 14px; box-shadow: 0 40px 80px rgba(0,0,0,.6), inset 0 0 0 2px #3a3a3c, inset 0 0 0 6px #1c1c1e, inset 0 0 0 8px #000; }
.phone-frame::before { content: ''; position: absolute; left: -3px; top: 110px; width: 3px; height: 26px; background: #3a3a3c; border-radius: 2px 0 0 2px; box-shadow: 0 50px 0 #3a3a3c, 0 105px 0 #3a3a3c; }
.phone-frame::after { content: ''; position: absolute; right: -3px; top: 140px; width: 3px; height: 40px; background: #3a3a3c; border-radius: 0 2px 2px 0; }
.dynamic-island { position: absolute; top: 25px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #000; border-radius: 20px; z-index: 10; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05); }
.dynamic-island::after { content: ''; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; background: #111; border-radius: 50%; box-shadow: inset -1px -1px 2px rgba(255,255,255,0.2); }
.phone-screen { background: #020D14; border-radius: 36px; overflow: hidden; width: 100%; aspect-ratio: 1 / 2.16; position: relative; }
.app-screenshot { width: 100%; height: 100%; display: block; transition: opacity 0.4s ease-in-out; object-fit: cover; }
.phone-glow { position: absolute; inset: -20px; background: radial-gradient(ellipse at center, rgba(0,150,199,.25), transparent 65%); z-index: -1; animation: glow 4s ease-in-out infinite alternate; }
@keyframes glow { from { opacity: .6; } to { opacity: 1; } }
.floating-badge { position: absolute; background: rgba(5,20,32,.9); border: 1px solid var(--border); backdrop-filter: blur(12px); border-radius: 100px; padding: 8px 16px; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.badge-loc { top: 60px; left: -80px; animation: float1 6s ease-in-out infinite; }
.badge-book { bottom: 80px; right: -80px; color: #4ade80; border-color: rgba(74,222,128,.3); animation: float2 6s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
.scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text2); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--text2), transparent); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { 0%,100% { opacity: 1; transform: scaleY(1) translateY(0); } 50% { opacity: .3; transform: scaleY(.7) translateY(8px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Destinations ─── */
.destinations { padding: 120px 0; }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dest-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.dest-img { height: 220px; position: relative; }
.dest-marassi { background: linear-gradient(160deg, #0096C7 0%, #023E8A 100%); }
.dest-hacienda { background: linear-gradient(160deg, #48CAE4 0%, #0077B6 100%); }
.dest-sahel { background: linear-gradient(160deg, #ADE8F4 0%, #48CAE4 100%); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,13,20,.85), transparent); }
.dest-content { padding: 22px; }
.dest-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.dest-content p { color: var(--text2); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.dest-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.dest-tags span { font-size: 11px; font-weight: 600; background: rgba(0,150,199,.12); border: 1px solid rgba(0,150,199,.25); color: var(--secondary); padding: 4px 10px; border-radius: 100px; }

/* ─── Features ─── */
.features { padding: 120px 0; background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: border-color .3s, transform .3s, box-shadow .3s, background .3s; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.feat-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(0,150,199,.5); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,150,199,.15); }
.feat-large { grid-column: span 2; }
.feat-right { grid-column: 2 / span 2; }
.feat-icon { font-size: 32px; margin-bottom: 14px; }
.feat-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { color: var(--text2); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.feat-tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--primary); background: rgba(0,150,199,.1); border: 1px solid rgba(0,150,199,.2); padding: 4px 12px; border-radius: 100px; }

/* ─── How It Works ─── */
.how-it-works { padding: 120px 0; }
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; position: relative; overflow: hidden; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: transform 0.3s ease; }
.step:hover { transform: translateY(-4px); }
.step::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,150,199,.06), transparent); pointer-events: none; }
.step-num { font-family: var(--font-display); font-size: 60px; font-weight: 800; color: rgba(0,150,199,.08); position: absolute; top: 10px; right: 14px; line-height: 1; }
.step-icon { font-size: 40px; margin-bottom: 16px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text2); font-size: 14px; line-height: 1.6; }
.step-arrow { font-size: 28px; color: var(--primary); opacity: .5; }

/* ─── Download ─── */
.download { padding: 120px 0; position: relative; overflow: hidden; }
.download-bg { position: absolute; inset: 0; }
.orb-d1 { width: 700px; height: 700px; top: -200px; left: -200px; background: radial-gradient(circle, rgba(0,150,199,.2), transparent 65%); }
.orb-d2 { width: 500px; height: 500px; bottom: -150px; right: -100px; background: radial-gradient(circle, rgba(72,202,228,.15), transparent 65%); }
.download-inner { display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; position: relative; z-index: 2; }
.download-text h2 { font-family: var(--font-display); font-size: clamp(30px,4vw,52px); font-weight: 800; margin: 16px 0 16px; }
.download-text p { color: var(--text2); font-size: 17px; line-height: 1.7; max-width: 500px; margin-bottom: 36px; }
.store-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.btn-apple-lg { background: #fff; color: #111; border-radius: 16px; padding: 14px 28px; }
.btn-google-lg { background: var(--surface2); border: 1px solid var(--border); color: var(--text); border-radius: 16px; padding: 14px 28px; }
.legal-links { display: flex; gap: 12px; align-items: center; color: var(--text2); font-size: 13px; }
.legal-links a { color: var(--secondary); transition: color .2s; }
.legal-links a:hover { color: var(--text); }
.qr-placeholder { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 28px; text-align: center; min-width: 180px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.qr-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.qr-logo-img { height: 36px; width: auto; opacity: 0.9; }
.qr-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; width: 100px; }
.qr-cell { aspect-ratio: 1; background: var(--primary); border-radius: 2px; }
.qr-empty { background: transparent; }
.qr-placeholder p { font-size: 11px; color: var(--text2); font-weight: 500; }

/* ─── Footer ─── */
.footer { border-top: 1px solid var(--border); padding: 60px 0 36px; }
.footer-top { display: grid; grid-template-columns: auto 1fr; gap: 80px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-logo { height: 36px; width: auto; }
.footer-brand strong { display: block; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.footer-brand p { font-size: 13px; color: var(--text2); }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text2); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 13px; color: var(--text2); }
.footer-tagline { font-style: italic; color: var(--secondary) !important; }

/* ─── Legal Pages ─── */
.legal-hero { padding: 140px 0 60px; text-align: center; }
.legal-hero h1 { font-family: var(--font-display); font-size: clamp(32px,5vw,60px); font-weight: 800; margin-bottom: 12px; }
.legal-hero p { color: var(--text2); font-size: 16px; }
.legal-body { padding: 40px 0 120px; }
.legal-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px 56px; max-width: 860px; margin: 0 auto; }
.legal-card h2 { font-size: 22px; font-weight: 700; color: var(--secondary); margin: 32px 0 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--text2); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.legal-card ul { color: var(--text2); font-size: 15px; line-height: 1.8; padding-left: 22px; margin-bottom: 14px; }
.legal-card ul li { margin-bottom: 6px; }
.legal-card strong { color: var(--text); }
.legal-card a { color: var(--secondary); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 110px; }
  .hero-sub { margin: 0 auto 38px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .badge-loc { left: 0; }
  .badge-book { right: 0; }
  .feat-large, .feat-right { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); }
  .download-inner { grid-template-columns: 1fr; }
  .qr-placeholder { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .dest-grid, .features-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 28px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scroll-hint { display: none; }
}
