@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --navy:      #060F24;
  --deep:      #0B1C3A;
  --blue:      #0047AA;
  --blue-glow: #1565D8;
  --gold:      #E3B23C;
  --gold-lt:   #F5CE6E;
  --white:     #FFFFFF;
  --mist:      rgba(255,255,255,0.07);
  --border:    rgba(255,255,255,0.12);
  --text-dim:  rgba(255,255,255,0.55);

  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-spring:   cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

h1,h2,h3,h4 { font-family:'Syne', sans-serif; }

/* ── Custom Cursor ───────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s linear, width 0.2s var(--ease-spring), height 0.2s var(--ease-spring), opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(227,178,60,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.18s var(--ease-out-expo), width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), border-color 0.3s;
}
body:hover .cursor { opacity:1; }

/* ── Noise Overlay ───────────────────────────────────────── */
body::before {
  content:'';
  position: fixed;
  inset: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9997;
}

/* ── Ambient Orbs ────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,71,170,0.18) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: orbDrift 18s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-80px,60px) scale(1.15); }
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: rgba(6,15,36,0.65);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.4s var(--ease-out-expo), background 0.4s;
}
.navbar.scrolled {
  padding: 12px 8%;
  background: rgba(6,15,36,0.88);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  background: linear-gradient(110deg, var(--white) 30%, var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links li {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-dim);
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.nav-links li::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out-expo);
}
.nav-links li:hover { color: var(--white); }
.nav-links li:hover::after { width: 100%; }

.apply-btn {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-glow) 100%);
  border: none;
  padding: 11px 22px;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  box-shadow: 0 0 0 0 rgba(0,71,170,0);
}
.apply-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.apply-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 28px rgba(0,71,170,0.5); }
.apply-btn:hover::before { opacity: 1; }
.apply-btn span { position: relative; z-index: 1; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 110px 8% 90px;
  min-height: 92vh;
  background: #000;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-left {
  max-width: 400px;
  flex-shrink: 0;
}

.hero-right {
  position: relative;
  flex-shrink: 0;
  width: 420px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  animation: heroFadeRight 1s 0.1s var(--ease-out-expo) both;
}

@keyframes heroFadeRight {
  from { opacity:0; transform: translateX(50px); }
  to   { opacity:1; transform: translateX(0); }
}

.hero-video {
  position: absolute;
  top: 50%;
  left: -40%;
  transform: translate(-50%, -50%);
  width: 490%;
  height: 170%;
  object-fit: cover;
  border-radius: 28px;
  opacity: 0.55;
  z-index: -5;
  pointer-events: none;
  filter: brightness(0.7) saturate(1.2);
}

.floating-card {
  background: rgba(255,255,255,0.06);
  padding: 22px 28px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  min-width: 220px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}

.floating-card::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.floating-card:hover { border-color: rgba(227,178,60,0.4); box-shadow: 0 12px 40px rgba(0,71,170,0.25); }
.floating-card:hover::before { opacity:1; }

.floating-card:nth-child(2) { animation: float 5s 0.0s ease-in-out infinite; }
.floating-card:nth-child(3) { animation: float 5s 0.8s ease-in-out infinite; }
.floating-card:nth-child(4) { animation: float 5s 1.6s ease-in-out infinite; }

@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}
.floating-card:hover { animation-play-state: paused; }


.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(to right, #000 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;        /* ← keeps text above the gradient */
  max-width: 500px;
  flex-shrink: 0;
}

/* Hero gradient backdrop */
.hero::before {
  content:'';
  position: absolute;
  bottom: 0; left: 0;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at 20% 80%, rgba(0,71,170,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.hero-left {
  max-width: 560px;
  animation: heroFadeUp 1s var(--ease-out-expo) both;
}
@keyframes heroFadeUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-left h1 {
  font-size: clamp(42px,5.5vw,64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  z-index: 10;
}

.hero-left span {
  background: linear-gradient(110deg, var(--gold) 20%, var(--gold-lt) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
    z-index: 10;
}
.hero-left span::after {
  content:'';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
    z-index: 10;
}

.hero-left p {
  margin: 24px 0 36px;
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
  max-width: 420px;
  animation: heroFadeUp 1s 0.15s var(--ease-out-expo) both;
    z-index: 10;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeUp 1s 0.28s var(--ease-out-expo) both;
}

button.primary, button.secondary {
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

button.primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-glow) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(0,71,170,0.35);
}
button.primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
button.primary:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 35px rgba(0,71,170,0.55); }
button.primary:hover::after { opacity: 1; }
button.primary span { position:relative; z-index:1; }

button.secondary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--white);
  backdrop-filter: blur(8px);
}
button.secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(227,178,60,0.6);
  box-shadow: 0 8px 30px rgba(227,178,60,0.15);
  color: var(--gold-lt);
}

/* ── Action Cards ─────────────────────────────────────────── */
.actions {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 50px 8%;
  position: relative;
  z-index: 1;
}

.card {
  padding: 32px 24px;
  text-align: center;
  background: var(--mist);
  border-radius: 20px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s, border-color 0.3s;
}
.card::before {
  content:'';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,71,170,0.18) 0%, rgba(227,178,60,0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(0,71,170,0.4); }
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }

/* Staggered entrance */
.card:nth-child(1) { animation: cardUp 0.7s 0.1s var(--ease-out-expo) both; }
.card:nth-child(2) { animation: cardUp 0.7s 0.2s var(--ease-out-expo) both; }
.card:nth-child(3) { animation: cardUp 0.7s 0.3s var(--ease-out-expo) both; }
.card:nth-child(4) { animation: cardUp 0.7s 0.4s var(--ease-out-expo) both; }
@keyframes cardUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── Destinations ─────────────────────────────────────────── */
.destinations {
  padding: 90px 8%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.destinations h2 {
  font-size: clamp(28px,3.5vw,42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}
.destinations h2::after {
  content:'';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  margin-top: 50px;
}

.dest-card {
  padding: 46px 30px;
  background: var(--mist);
  border-radius: 22px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s, border-color 0.3s;
  cursor: pointer;
}
.dest-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(227,178,60,0.1) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.5s;
  transform: scale(0.5);
  transition: opacity 0.5s, transform 0.5s var(--ease-out-expo);
}
.dest-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.dest-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
  transition: color 0.3s;
}
.dest-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 24px 60px rgba(0,0,0,0.5); border-color: rgba(227,178,60,0.35); }
.dest-card:hover::before { opacity:1; transform: scale(1); }
.dest-card:hover h3 { color: var(--gold-lt); }
.dest-card:hover p { color: rgba(255,255,255,0.75); }

/* ── Stats ───────────────────────────────────────────────── */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 90px 8%;
  background: #04091A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content:'';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,71,170,0.07) 50%, transparent 100%);
  pointer-events: none;
}

.stat {
  text-align: center;
  position: relative;
}
.stat::after {
  content:'';
  position: absolute;
  right: -1px; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}
.stat:last-child::after { display:none; }

.stat h2 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold) 30%, var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  transition: transform 0.4s var(--ease-spring);
}
.stat:hover h2 { transform: scale(1.08); }
.stat p {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials {
  padding: 90px 8%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonials h2 {
  font-size: clamp(28px,3.5vw,42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.testimonials h2::after {
  content:'';
  display: block;
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--blue), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}

.testimonial-container {
  display: flex;
  gap: 22px;
  margin-top: 50px;
}

.testimonial {
  background: var(--mist);
  padding: 36px 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  flex: 1;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.4s;
  cursor: default;
}
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -10px; left: 18px;
  font-size: 100px;
  font-family: 'Syne', sans-serif;
  color: rgba(0,71,170,0.15);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s;
}
.testimonial p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.testimonial h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.testimonial:hover { transform: translateY(-8px); border-color: rgba(0,71,170,0.5); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.testimonial:hover::before { color: rgba(0,71,170,0.35); }

/* ── CTA ─────────────────────────────────────────────────── */
.cta {
  padding: 110px 8%;
  text-align: center;
  background: linear-gradient(135deg, #020B1F 0%, #0B1C3A 40%, #040E21 100%);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content:'';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 600px;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(0,71,170,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta h2 {
  font-size: clamp(30px,4vw,48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}
.cta p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 10px;
  position: relative;
}

.form {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.form input {
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  min-width: 180px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
}
.form input::placeholder { color: var(--text-dim); }
.form input:focus {
  border-color: rgba(0,71,170,0.7);
  background: rgba(0,71,170,0.1);
  box-shadow: 0 0 0 3px rgba(0,71,170,0.15), 0 4px 20px rgba(0,71,170,0.1);
}

.form button {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.form button::after {
  content:'';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  opacity: 0;
  transition: opacity 0.3s;
}
.form button:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 30px rgba(227,178,60,0.4); }
.form button:hover::after { opacity:1; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 32px;
  background: #030813;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  position: relative;
}
footer::before {
  content:'';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: rgba(0,71,170,0.4); color: var(--white); }