<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wtbentertainment.com</title>
<style>
:root {
  --primary-color: #E07A2F;
  --secondary-color: #2D6A4F;
  --accent-color: #F4A261;
  --background-color: #1A1A2E;
  --text-color: #F0E6D3;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Splash Screen ── */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--background-color);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#splash h1 {
  font-size: clamp(1.4rem, 4vw, 2.8rem); font-weight: 300; letter-spacing: 6px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: splashGlow 2s ease-in-out infinite;
}
#splash p {
  margin-top: 12px; font-size: 0.85rem; color: rgba(240,230,211,0.35); letter-spacing: 4px; text-transform: uppercase;
  animation: fadeSlideUp 1s 0.5s both;
}
@keyframes splashGlow {
  0%,100% { filter: drop-shadow(0 0 8px rgba(224,122,47,0.3)); }
  50% { filter: drop-shadow(0 0 25px rgba(244,162,97,0.6)); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(26,26,46,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(224,122,47,0.08);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(26,26,46,0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-brand {
  font-size: 1.1rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-links a {
  color: var(--text-color); text-decoration: none; font-size: 0.72rem; font-weight: 500;
  padding: 8px 12px; border-radius: 6px; transition: all 0.3s ease;
  text-transform: uppercase; letter-spacing: 0.8px; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color); background: rgba(224,122,47,0.08);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 1001;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--text-color); border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 64px; right: -100%; width: 260px; height: calc(100vh - 64px);
    background: rgba(26,26,46,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 6px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(224,122,47,0.08);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.85rem; padding: 12px 16px; }
}

/* ── Sections ── */
section { padding: 100px 24px; max-width: 1200px; margin: 0 auto; position: relative; }
.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-sub {
  font-size: 1.05rem; color: rgba(240,230,211,0.5); margin-bottom: 48px; max-width: 600px;
}

/* ── Reveal ── */
.rv { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }

/* ── About ── */
#about { padding-top: 120px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 40px; }
.about-text p { font-size: 1.02rem; color: rgba(240,230,211,0.7); margin-bottom: 20px; line-height: 1.85; }
.about-img { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid rgba(224,122,47,0.15); }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img:hover img { transform: scale(1.05); }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(224,122,47,0.15); border-radius: 20px; pointer-events: none;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── Services ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; margin-top: 40px; }
.svc-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(224,122,47,0.08);
  border-radius: 20px; padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0); transition: transform 0.4s ease;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-8px); border-color: rgba(224,122,47,0.2);
  box-shadow: 0 20px 60px rgba(224,122,47,0.08);
}
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(224,122,47,0.1), rgba(244,162,97,0.1));
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 1.5rem;
}
.svc-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.svc-card p { color: rgba(240,230,211,0.55); font-size: 0.93rem; line-height: 1.8; }
.svc-img { margin-top: 48px; border-radius: 20px; overflow: hidden; max-height: 400px; border: 1px solid rgba(224,122,47,0.1); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.svc-img:hover img { transform: scale(1.03); }

/* ── Reviews ── */
.rev-track {
  display: flex; gap: 32px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 20px 0 40px; -ms-overflow-style: none; scrollbar-width: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-card {
  min-width: 360px; max-width: 400px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(224,122,47,0.08); border-radius: 20px; padding: 36px;
  scroll-snap-align: start; transition: all 0.4s ease; flex-shrink: 0;
}
.rev-card:hover {
  border-color: rgba(45,106,79,0.3); box-shadow: 0 12px 40px rgba(45,106,79,0.06);
}
.rev-stars { color: #F4A261; font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.rev-text {
  font-size: 0.93rem; color: rgba(240,230,211,0.65); line-height: 1.8;
  margin-bottom: 20px; font-style: italic;
}
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--background-color);
}
.rev-name { font-weight: 600; font-size: 0.93rem; }
.rev-role { font-size: 0.78rem; color: rgba(240,230,211,0.4); }

/* ── Statistics ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 40px; }
.stat-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(224,122,47,0.08);
  border-radius: 20px; padding: 40px 32px; text-align: center;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(224,122,47,0.06); }
.stat-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2;
}
.stat-lbl {
  font-size: 0.85rem; color: rgba(240,230,211,0.4); margin-top: 8px;
  text-transform: uppercase; letter-spacing: 1px;
}
.pbar-wrap { margin-top: 20px; background: rgba(224,122,47,0.06); border-radius: 12px; overflow: hidden; height: 10px; }
.pbar {
  height: 100%; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  width: 0; transition: width 2s cubic-bezier(0.16,1,0.3,1);
}
.chart-box {
  margin-top: 60px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(224,122,47,0.08); border-radius: 20px; padding: 40px;
}
.chart-box h3 { font-size: 1.15rem; margin-bottom: 24px; }
canvas#growthChart { width: 100% !important; height: 300px !important; }

/* ── Legal ── */
.legal p { color: rgba(240,230,211,0.6); margin-bottom: 18px; line-height: 1.85; font-size: 0.93rem; }
.legal b { color: var(--text-color); }

/* ── Forms ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; }
.fg.full { grid-column: 1 / -1; }
.fg label {
  font-size: 0.82rem; font-weight: 600; margin-bottom: 8px;
  color: rgba(240,230,211,0.6); text-transform: uppercase; letter-spacing: 0.5px;
}
.fg input, .fg textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(224,122,47,0.12);
  border-radius: 12px; padding: 14px 18px; color: var(--text-color);
  font-size: 1rem; font-family: inherit; transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.fg input:focus, .fg textarea:focus {
  border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(224,122,47,0.08);
}
.fg textarea { min-height: 140px; resize: vertical; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1); font-family: inherit;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-p {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--background-color);
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(224,122,47,0.3); }
.btn-s { background: transparent; color: var(--secondary-color); border: 1px solid rgba(45,106,79,0.3); }
.btn-s:hover { background: rgba(45,106,79,0.08); border-color: var(--secondary-color); }
.form { max-width: 560px; margin: 0 auto; }
.messages { margin-bottom: 24px; }
.alert { padding: 16px 24px; border-radius: 12px; font-size: 0.93rem; font-weight: 500; animation: fadeSlideUp 0.4s ease; }
.alert-ok { background: rgba(45,106,79,0.1); border: 1px solid rgba(45,106,79,0.25); color: #52B788; }
.alert-err { background: rgba(224,122,47,0.1); border: 1px solid rgba(224,122,47,0.25); color: var(--primary-color); }
.text-center { text-align: center; }
.alert-dismissable { position: relative; }

/* ── Footer ── */
footer {
  text-align: center; padding: 48px 24px;
  border-top: 1px solid rgba(224,122,47,0.06);
  color: rgba(240,230,211,0.3); font-size: 0.85rem;
}

/* ── Keyframes ── */
@keyframes waveScale { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes borderGlow { 0%,100% { border-color: rgba(224,122,47,0.08); } 50% { border-color: rgba(244,162,97,0.3); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.anim-border { animation: borderGlow 4s ease-in-out infinite; }
.anim-pulse { animation: pulse 2s ease-in-out infinite; }
.anim-float { animation: float 3s ease-in-out infinite; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--background-color); }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }
</style>
</head>
<body>

<!-- Splash Screen -->
<div id="splash">
  <h1>Wtbentertainment.com</h1>
  <p>Discover. Explore. Adventure.</p>
</div>

<!-- Navbar -->
<nav class="navbar" id="navbar">
  <div class="nav-inner">
    <div class="nav-brand">Wtbentertainment.com</div>
    <div class="hamburger" id="hamburger" onclick="toggleMenu()">
      <span></span><span></span><span></span>
    </div>
    <ul class="nav-links" id="navLinks">
      <li><a href="#about" onclick="closeMenu()">About</a></li>
      <li><a href="#services" onclick="closeMenu()">Services</a></li>
      <li><a href="#reviews" onclick="closeMenu()">Reviews</a></li>
      <li><a href="#statistics" onclick="closeMenu()">Statistics</a></li>
      <li><a href="#privacy-policy" onclick="closeMenu()">Privacy Policy</a></li>
      <li><a href="#disclaimer" onclick="closeMenu()">Disclaimer</a></li>
      <li><a href="#contact" onclick="closeMenu()">Contact</a></li>
      <li><a href="#unsubscribe" onclick="closeMenu()">Unsubscribe</a></li>
    </ul>
  </div>
</nav>

<!-- About -->
<section id="about">
  <div class="rv">
    <h2 class="sec-title">About Wtbentertainment.com</h2>
    <p class="sec-sub">Your gateway to extraordinary adventures across the globe.</p>
  </div>
  <div class="about-grid">
    <div class="about-text rv rv-d1">
      <p>Wtbentertainment.com curates unforgettable adventure travel experiences for thrill-seekers and nature enthusiasts. From remote mountain treks in Patagonia to deep-sea diving in Raja Ampat, we design journeys that push boundaries while prioritizing safety and sustainability.</p>
      <p>Founded by seasoned explorers who have traversed over 80 countries, our team combines first-hand expedition knowledge with meticulous planning. Every itinerary is crafted to balance adrenaline-fueled activities with immersive cultural encounters, ensuring you return home with stories worth telling.</p>
      <p>Whether you seek a multi-day trek through the Himalayas, a wildlife safari across the Serengeti, or a white-water rafting expedition through Costa Rica's rapids, we handle logistics, permits, local guides, and emergency protocols so you can focus entirely on the experience.</p>
    </div>
    <div class="about-img rv rv-d2">
      <img src="assets/about-mountain.jpg" alt="A panoramic view of rugged mountain peaks at golden hour with a lone hiker standing on a rocky ridge overlooking a vast valley with winding rivers below">
    </div>
  </div>
</section>

<!-- Services -->
<section id="services">
  <div class="rv">
    <h2 class="sec-title">Our Services</h2>
    <p class="sec-sub">Tailored adventure experiences designed for every level of explorer.</p>
  </div>
  <div class="svc-grid">
    <div class="svc-card rv rv-d1">
      <div class="svc-icon">🏔️</div>
      <h3>Mountain Expeditions</h3>
      <p>Guided treks and summit attempts on iconic peaks worldwide. From Kilimanjaro base camp to Everest advanced base camp, our certified mountaineering guides ensure safe, structured ascents with full acclimatization protocols.</p>
    </div>
    <div class="svc-card rv rv-d2">
      <div class="svc-icon">🌊</div>
      <h3>Water Adventures</h3>
      <p>Scuba diving in crystal-clear cenotes, white-water rafting through Class V rapids, and multi-day kayaking expeditions along remote coastlines. All equipment provided with PADI-certified dive masters.</p>
    </div>
    <div class="svc-card rv rv-d3">
      <div class="svc-icon">🦁</div>
      <h3>Wildlife Safaris</h3>
      <p>Immersive wildlife encounters in Africa, South America, and Southeast Asia. Track the Big Five, observe whale migrations, and witness nesting sea turtles with expert naturalist guides.</p>
    </div>
    <div class="svc-card rv rv-d4">
      <div class="svc-icon">🏕️</div>
      <h3>Backpacking & Camping</h3>
      <p>Self-guided and guided backpacking trips through national parks and wilderness areas. We provide route planning, gear recommendations, food resupply strategies, and satellite communication devices.</p>
    </div>
    <div class="svc-card rv rv-d1">
      <div class="svc-icon">🏜️</div>
      <h3>Desert & Arctic Expeditions</h3>
      <p>Extreme environment adventures from Saharan camel treks to Arctic ice-cap crossings. Temperature-regulated gear, polar-rated shelter systems, and survival-trained expedition leaders.</p>
    </div>
    <div class="svc-card rv rv-d2">
      <div class="svc-icon">🎒</div>
      <h3>Custom Group Adventures</h3>
      <p>Bespoke itineraries for corporate retreats, bachelor parties, family reunions, and educational groups. Flexible dates, private guides, and group discounts for parties of eight or more.</p>
    </div>
  </div>
  <div class="svc-img rv">
    <img src="assets/services-kayak.jpg" alt="A group of adventurers kayaking through turquoise waters surrounded by towering limestone cliffs covered in lush tropical vegetation during a bright sunny day">
  </div>
</section>

<!-- Reviews -->
<section id="reviews">
  <div class="rv">
    <h2 class="sec-title">What Our Adventurers Say</h2>
    <p class="sec-sub">Real experiences from real explorers who trusted us with their journeys.</p>
  </div>
  <div class="rev-track" id="revTrack">
    <div class="rev-card rv">
      <div class="rev-stars">★★★★★</div>
      <p class="rev-text">"The Patagonia trek exceeded every expectation. Our guide knew hidden trails that most tourists never see. Watching sunrise from the base of Torres del Paine was life-changing."</p>
      <div class="rev-author">
        <div class="rev-avatar">M</div>
        <div><div class="rev-name">Marcus Reid</div><div class="rev-role">Trekker, Patagonia 2024</div></div>
      </div>
    </div>
    <div class="rev-card rv rv-d1">
      <div class="rev-stars">★★★★★</div>
      <p class="rev-text">"Our family safari in Tanzania was flawless. The guides were incredibly knowledgeable about animal behavior, and the children were engaged the entire time. A truly magical experience."</p>
      <div class="rev-author">
        <div class="rev-avatar">S</div>
        <div><div class="rev-name">Sarah & David Kline</div><div class="rev-role">Family Safari, Tanzania</div></div>
      </div>
    </div>
    <div class="rev-card rv rv-d2">
      <div class="rev-stars">★★★★★</div>
      <p class="rev-text">"Dived with whale sharks in Ningaloo Reef and it was the most humbling experience of my life. The safety protocols were impeccable and the marine biologist guide was phenomenal."</p>
      <div class="rev-author">
        <div class="rev-avatar">J</div>
        <div><div class="rev-name">James Okafor</div><div class="rev-role">Dive Explorer, Australia</div></div>
      </div>
    </div>
    <div class="rev-card rv rv-d3">
      <div class="rev-stars">★★★★★</div>
      <p class="rev-text">"The Moroccan desert trek was otherworldly. Sleeping under the stars in the Sahara, riding camels through the Erg Chebbi dunes — it felt like stepping into a different century."</p>
      <div class="rev-author">
        <div class="rev-avatar">L</div>
        <div><div class="rev-name">Leila Mansouri</div><div class="rev-role">Desert Trek, Morocco</div></div>
      </div>
    </div>
    <div class="rev-card rv rv-d4">
      <div class="rev-stars">★★★★☆</div>
      <p class="rev-text">"Excellent organization and top-notch gear. The only reason for four stars is that the jungle trek was more intense than I expected — but that's more about my fitness than their planning."</p>
      <div class="rev-author">
        <div class="rev-avatar">R</div>
        <div><div class="rev-name">Ryan Patel</div><div class="rev-role">Jungle Trek, Borneo</div></div>
      </div>
    </div>
  </div>
</section>

<!-- Statistics -->
<section id="statistics">
  <div class="rv">
    <h2 class="sec-title">By the Numbers</h2>
    <p class="sec-sub">Our track record speaks for itself — trusted by thousands of adventurers worldwide.</p>
  </div>
  <div class="stats-grid">
    <div class="stat-card rv">
      <div class="stat-num" data-target="12400">0</div>
      <div class="stat-lbl">Adventurers Served</div>
    </div>
    <div class="stat-card rv rv-d1">
      <div class="stat-num" data-target="86">0</div>
      <div class="stat-lbl">Countries Explored</div>
    </div>
    <div class="stat-card rv rv-d2">
      <div class="stat-num" data-target="340">0</div>
      <div class="stat-lbl">Unique Expeditions</div>
    </div>
    <div class="stat-card rv rv-d3">
      <div class="stat-num" data-target="99">0</div>
      <div class="stat-lbl">Safety Record %</div>
    </div>
  </div>
  <div class="stats-grid" style="margin-top: 32px;">
    <div class="stat-card rv"><div class="stat-lbl" style="margin-bottom: 8px;">Mountain Treks</div><div class="pbar-wrap"><div class="pbar" data-w="92"></div></div></div>
    <div class="stat-card rv rv-d1"><div class="stat-lbl" style="margin-bottom: 8px;">Water Adventures</div><div class="pbar-wrap"><div class="pbar" data-w="87"></div></div></div>
    <div class="stat-card rv rv-d2"><div class="stat-lbl" style="margin-bottom: 8px;">Wildlife Safaris</div><div class="pbar-wrap"><div class="pbar" data-w="95"></div></div></div>
    <div class="stat-card rv rv-d3"><div class="stat-lbl" style="margin-bottom: 8px;">Desert Expeditions</div><div class="pbar-wrap"><div class="pbar" data-w="78"></div></div></div>
  </div>
  <div class="chart-box rv">
    <h3>Expedition Bookings Growth (2025)</h3>
    <canvas id="growthChart"></canvas>
  </div>
</section>

<!-- Privacy Policy -->
<section id="privacy-policy">
  <div class="rv">
    <h2 class="sec-title">Privacy Policy</h2>
  </div>
  <div class="legal rv">

<p>This Privacy Policy explains our policy regarding the privacy of information supplied by users or collected by us from users of this web site or from other third parties. Because we want to build users' trust and confidence in our privacy practices, we want to disclose them to you.</p>

<p><b>Changes in this Privacy Statement</b></p>
<p>If we decide to change our privacy policy, we will post those changes to this privacy statement, the home page, and other places we deem appropriate so that you are aware of what information we collect, how we use it, and under what circumstances, if any, we disclose it. 
We reserve the right to modify this privacy statement at any time, so please review it frequently.  If we make material changes to this policy, we will notify you here, by email, or by means of a notice on our home page.</p>

<p><b>Registration Newsletter/ Frequency of Mailings</b></p>
<p>By registering to our newsletter, you are agreeing to receive our newsletters on a daily basis. <b>Wtbentertainment.com</b> has the right to change frequency of delivery of its newsletters without notice.</p>

<p><b>Collection and Use of information</b></p>
<p>We respect your right to privacy. <b>Wtbentertainment.com</b> received your information from your submission to us or through one of our affiliates. Wtbentertainment.com is the owner of the information that you provided in any registration process. Your email address and any other identifying information that you give us will not be revealed to any third party, including any of the direct marketers who may use us to pass offers to you.</p>

<p>We use the information that you provided primarily to send you our newsletters. Moreover, the information subscribers give us is sometimes used to send prizes, verify legal age, and to send third-party mailings based on the interests that each individual subscriber has opted-in for. We may also collect and report to third parties (such as affiliates, content and service providers, and advertisers) aggregated information from our web site. For example, we may aggregate and report to third parties that X people purchased a particular product during a month, or that Y% of visitors to this web site are between the ages 25-34.</p>

<p>From time to time, we may provide you the opportunity to participate in contests or surveys on our site.  If you participate, we will request certain personally identifiable information from you. Participation in these surveys or contests is completely voluntary and you, therefore, have a choice whether or not to disclose this information.  The requested information typically includes contact information (such as name and shipping address), and demographic information (such as zip code).</p>

<p>As is true of most web sites, we also gather certain information automatically and store it in log files.  This information includes internet protocol (IP) addresses, browser type, internet service provider (ISP), referring/exit pages, operating system, date/time stamp, and click stream data. We use this information, which does not identify individual users, to analyze trends, to administer the site, to track users' movements around the site and to gather demographic information about our user base as a whole. We do link this automatically-collected data to personally identifiable information like IP addresses and email addresses. However, this is solely for internal uses and used to verify appropriate registration methods.</p>

<p>Finally, <b>Wtbentertainment.com</b> may disclose subscriber information in response to subpoenas, court orders, and other legal processes.</p>

<p><b>Children</b></p>
<p>We are committed to the safety of children and do not intend to collect personally identifiable information from children under age 18. If you are under age 18, please ask your parent for permission before sending any information to our site or anyone else online. Have your parent contact us as indicated below in order to provide us with prior written consent. We will not intentionally use personal information from or send marketing communications to children under age 13 without prior parental consent.</p>

<p><b>Cookies</b></p>
<p>A cookie is a small text file that is stored on a user's computer for record-keeping purposes. We do not use cookies on this site. This privacy statement covers the use of cookies by this site only and does not cover the use of cookies by any advertisers.</p>

<p><b>Aggregate Information (non-personally identifiable)</b></p>
<p>We maintain the right to share aggregated demographic information about our subscriber base with our partners and advertisers.  This information does not identify individual subscribers.  We do not link aggregate user data with personally identifiable information.</p>

<p><b>Third-Party Links</b></p>
<p>For your convenience, our newsletter contains links to third-party web sites that are not owned or controlled by us. We are not responsible for the privacy practices of these other web sites. We encourage you to note when you follow links in our newsletters and to read the privacy statements of these other web sites. We encourage you to be aware when you leave our newsletter and to read the privacy statements of each and every web site that collects personally identifiable information. This Privacy Policy applies solely to information collected by Wtbentertainment.com</p>

<p><b>Security</b></p>
<p>We use certain efforts to secure our web site. We will periodically review our security policies and implement changes from time to time. However, we cannot and do not guarantee complete security, as it does not exist on the Internet. If you have any questions about security on our web site, you can send an email</p>

<p><b>Business Transitions</b></p>
<p>In the event <b>Wtbentertainment.com</b> goes through a business transition, such as a merger, acquisition by another company, or sale of all or a portion of its assets, your personally identifiable information will likely be among the assets transferred.  You will be notified via prominent notice on our web site prior to any such change in ownership or control of your personal information.</p>

<p><b>Choice/Opt-out</b></p>
<p>If you no longer wish to receive our newsletter and promotional communications, you may opt-out of receiving them by following the instructions included in each newsletter or communication or by emailing us</p>

<p><b>Acceptance of Terms</b></p>
<p>By subscribing to our newsletter, you agree to the Privacy Policy. If you do not agree to this policy, please do not subscribe to our newsletters. We reserve the right, at our discretion, to change, modify, add, or remove portions of this policy at any time. All Privacy Policy changes will take effect immediately upon their posting on the site. Please check this page periodically for changes.</p>

<p><b>Contact Us</b></p>
<p>If you have any questions or suggestions regarding our privacy policy, please contact us</p>

  </div>
</section>

<!-- Disclaimer -->
<section id="disclaimer">
  <div class="rv">
    <h2 class="sec-title">Disclaimer</h2>
  </div>
  <div class="legal rv">

<p><b>Wtbentertainment.com</b> serves as an informational service only. The inclusion of a link on this web site does not imply Wtbentertainment.com endorsement of the linked site nor does Wtbentertainment.com accept any responsibility for the content, or the use, of such site.</p>

<p> <b>Wtbentertainment.com</b> is not responsible for the offers or goods supplied by vendors. <b>Wtbentertainment.com</b> has no control over the legality of any coupons or other offers made by vendors, the ability of any of the vendors to complete the sales or transactions in accordance with the offers, or the quality of the goods offered by the vendors. In the event you have a dispute with a vendor in any way relating to this site or the use 
of information from this site, you agree to waive and release <b>Wtbentertainment.com</b> from any and all claims, demands, actions, damages (actual and consequential), losses, costs and expenses of every kind and nature, known and unknown, disclosed and undisclosed relating to that dispute.</p>

<p>It is your responsibility to verify independently that any merchant you are doing business with is legitimate and reputable. Before participating in any specific offers and/or promotions, please analyze the details and conditions of the offer including the fine print. Any access to or use of this site shall be deemed your agreement to and approval of all the above terms and conditions.</p>

<p><b>Wtbentertainment.com</b> and the <b>Wtbentertainment.com</b> service, and all materials and information contained on it, and any services or products provided through it are provided "AS IS" without warranties of any kind, express or implied, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTY OF MERCHANTABILITY, fitness for a particular purpose, expectation of privacy (unless discussed on our Privacy Policy) or non-infringement. any warranty for information.</p>

<p><b>Wtbentertainment.com</b> is not responsible for any damages, including without limitation, any special, indirect, incidental or consequential damages, that may arise from any use of, inability to use, or reliance on the site and/or the materials contained on the site whether the materials contained on the site are provided by the <b>Wtbentertainment.com</b>, or a third party.</p>

<p>The above disclaimer of liability applies to any damages or injury caused by any error, omission, deletion, defect, interruption, failure of performance, delay in operation or transmission, computer virus, communication line failure, theft or destruction or unauthorized access to, alteration of, or use of record, whether for breach of contract, negligence, tortious behavior, or under any other cause of action.</p>

<p>Information on this web site may contain technical inaccuracies or typographical errors. <b>Wtbentertainment.com</b> may make updates, improvements and/or changes in the products and/or information described at any time without notice. <b>Wtbentertainment.com</b> does not guarantee the accuracy or completeness of the information contained in this site. This site contains links to sites which are not maintained by <b>Wtbentertainment.com</b> . 
We are not responsible and have no control over the content of those sites nor do we guarantee the content of such sites. All products, services, and deals mentioned by this site are provided by third parties and are subject to change without notice and are subject to restrictions, limitations, availability, conditions, and qualifications.</p>

  </div>
</section>

<!-- Contact -->
<section id="contact">
  <div class="rv">
    <h2 class="sec-title">Contact Us</h2>
    <p class="sec-sub">Ready to plan your next adventure? Get in touch with our expedition specialists.</p>
  </div>
  <form class="form" id="contactForm" method="POST" action="">
    <div class="form-grid">
      <div class="fg rv"><label for="c-name">Name</label><input type="text" id="c-name" name="name" placeholder="Your full name" required></div>
      <div class="fg rv rv-d1"><label for="c-email">Email</label><input type="email" id="c-email" name="email" placeholder="your@email.com" required></div>
      <div class="fg full rv rv-d2"><label for="c-msg">Message</label><textarea id="c-msg" name="message" placeholder="Tell us about your dream adventure..." required></textarea></div>
      <div class="fg full rv rv-d3"><button type="submit" class="btn btn-p">Send Inquiry</button></div>
    </div>
  </form>
</section>

<!-- Unsubscribe -->
<section id="unsubscribe">
  <div class="rv">
    <h2 class="sec-title">Unsubscribe</h2>
    <p class="sec-sub">Enter your email to stop receiving our newsletter and expedition updates.</p>
  </div>
  <form class="form" id="unsubscribe-form" method="POST" action="">
    <div class="messages">
          </div>
    <div class="fg rv">
      <label for="u-email">Email Address</label>
      <input type="email" id="u-email" name="email" placeholder="your@email.com" required value="">
    </div>
    <div class="fg rv rv-d1" style="margin-top: 20px;">
      <button type="submit" class="btn btn-s">Unsubscribe</button>
    </div>
  </form>
</section>

<!-- Footer -->
<footer>
  &copy; 2026 Wtbentertainment.com All Rights Reserved.
</footer>

<script>
/* ── Splash Screen ── */
(function() {
  var hash = window.location.hash;
  var path = window.location.pathname;
  if (hash === '#unsubscribe' || path.indexOf('unsubscribe') !== -1) {
    var splash = document.getElementById('splash');
    if (splash) splash.style.display = 'none';
  } else {
    setTimeout(function() {
      var splash = document.getElementById('splash');
      if (splash) splash.classList.add('hidden');
    }, 2000);
  }
})();

/* ── Navbar Scroll ── */
var navbar = document.getElementById('navbar');
window.addEventListener('scroll', function() {
  navbar.classList.toggle('scrolled', window.scrollY > 50);
});

/* ── Mobile Menu ── */
function toggleMenu() {
  document.getElementById('navLinks').classList.toggle('open');
  document.getElementById('hamburger').classList.toggle('open');
}
function closeMenu() {
  document.getElementById('navLinks').classList.remove('open');
  document.getElementById('hamburger').classList.remove('open');
}

/* ── Active Nav Highlight ── */
var sections = document.querySelectorAll('section[id]');
var navLinks = document.querySelectorAll('.nav-links a');
function highlightNav() {
  var scrollY = window.scrollY + 100;
  sections.forEach(function(sec) {
    var top = sec.offsetTop;
    var height = sec.offsetHeight;
    var id = sec.getAttribute('id');
    if (scrollY >= top && scrollY < top + height) {
      navLinks.forEach(function(link) {
        link.classList.remove('active');
        if (link.getAttribute('href') === '#' + id) link.classList.add('active');
      });
    }
  });
}
window.addEventListener('scroll', highlightNav);
highlightNav();

/* ── Reveal on Scroll ── */
var revealObserver = new IntersectionObserver(function(entries) {
  entries.forEach(function(entry) {
    if (entry.isIntersecting) entry.target.classList.add('vis');
  });
}, { threshold: 0.1, rootMargin: '0px 0px -40px 0px' });
document.querySelectorAll('.rv').forEach(function(el) { revealObserver.observe(el); });

/* ── Count-Up Animation ── */
function animateCounter(el) {
  var target = parseFloat(el.getAttribute('data-target'));
  var isFloat = target % 1 !== 0;
  var duration = 2000;
  var startTime = null;
  function step(timestamp) {
    if (!startTime) startTime = timestamp;
    var progress = Math.min((timestamp - startTime) / duration, 1);
    var eased = 1 - Math.pow(1 - progress, 3);
    var current = eased * target;
    if (isFloat) {
      el.textContent = current.toFixed(1);
    } else {
      var intVal = Math.floor(current);
      el.textContent = intVal > 999 ? intVal.toLocaleString() : intVal;
    }
    if (progress < 1) requestAnimationFrame(step);
  }
  requestAnimationFrame(step);
}

/* ── Progress Bar Animation ── */
var pbarObserver = new IntersectionObserver(function(entries) {
  entries.forEach(function(entry) {
    if (entry.isIntersecting) {
      var bars = entry.target.querySelectorAll('.pbar');
      bars.forEach(function(bar, i) {
        setTimeout(function() {
          bar.style.width = bar.getAttribute('data-w') + '%';
        }, i * 200);
      });
      pbarObserver.unobserve(entry.target);
    }
  });
}, { threshold: 0.3 });
document.querySelectorAll('.stats-grid').forEach(function(el) { pbarObserver.observe(el); });

/* ── Stat Counter Animation ── */
var statObserver = new IntersectionObserver(function(entries) {
  entries.forEach(function(entry) {
    if (entry.isIntersecting) {
      var counters = entry.target.querySelectorAll('.stat-num[data-target]');
      counters.forEach(function(counter, i) {
        setTimeout(function() { animateCounter(counter); }, i * 200);
      });
      statObserver.unobserve(entry.target);
    }
  });
}, { threshold: 0.3 });
document.querySelectorAll('.stats-grid').forEach(function(el) { statObserver.observe(el); });

/* ── Canvas Chart ── */
function drawChart() {
  var canvas = document.getElementById('growthChart');
  if (!canvas) return;
  var ctx = canvas.getContext('2d');
  var dpr = window.devicePixelRatio || 1;
  var rect = canvas.getBoundingClientRect();
  canvas.width = rect.width * dpr;
  canvas.height = 300 * dpr;
  ctx.scale(dpr, dpr);
  canvas.style.height = '300px';
  var w = rect.width, h = 300;
  var pad = { t: 30, r: 30, b: 40, l: 60 };
  var data = [180, 320, 510, 780, 1050, 1420, 1680, 2100, 2450, 2800, 3100, 3400];
  var labels = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
  var max = Math.max.apply(null, data) * 1.15;
  var cW = w - pad.l - pad.r, cH = h - pad.t - pad.b;
  ctx.strokeStyle = 'rgba(224,122,47,0.06)';
  ctx.lineWidth = 1;
  for (var i = 0; i <= 5; i++) {
    var y = pad.t + (cH / 5) * i;
    ctx.beginPath(); ctx.moveTo(pad.l, y); ctx.lineTo(w - pad.r, y); ctx.stroke();
    var val = Math.round(max - (max / 5) * i);
    ctx.fillStyle = 'rgba(240,230,211,0.3)';
    ctx.font = '12px system-ui';
    ctx.textAlign = 'right';
    ctx.fillText(val >= 1000 ? (val / 1000).toFixed(1) + 'k' : val, pad.l - 10, y + 4);
  }
  ctx.fillStyle = 'rgba(240,230,211,0.4)';
  ctx.font = '12px system-ui';
  ctx.textAlign = 'center';
  labels.forEach(function(l, idx) {
    ctx.fillText(l, pad.l + (cW / (data.length - 1)) * idx, h - 10);
  });
  var gradient = ctx.createLinearGradient(0, pad.t, 0, h - pad.b);
  gradient.addColorStop(0, 'rgba(224,122,47,0.2)');
  gradient.addColorStop(1, 'rgba(45,106,79,0.02)');
  ctx.beginPath();
  data.forEach(function(val, idx) {
    var x = pad.l + (cW / (data.length - 1)) * idx;
    var y = pad.t + cH - (val / max) * cH;
    if (idx === 0) ctx.moveTo(x, y);
    else ctx.lineTo(x, y);
  });
  ctx.lineTo(pad.l + cW, pad.t + cH);
  ctx.lineTo(pad.l, pad.t + cH);
  ctx.closePath();
  ctx.fillStyle = gradient;
  ctx.fill();
  ctx.beginPath();
  data.forEach(function(val, idx) {
    var x = pad.l + (cW / (data.length - 1)) * idx;
    var y = pad.t + cH - (val / max) * cH;
    if (idx === 0) ctx.moveTo(x, y);
    else ctx.lineTo(x, y);
  });
  ctx.strokeStyle = '#E07A2F';
  ctx.lineWidth = 3;
  ctx.lineJoin = 'round';
  ctx.lineCap = 'round';
  ctx.stroke();
  data.forEach(function(val, idx) {
    var x = pad.l + (cW / (data.length - 1)) * idx;
    var y = pad.t + cH - (val / max) * cH;
    ctx.beginPath();
    ctx.arc(x, y, 5, 0, Math.PI * 2);
    ctx.fillStyle = '#F4A261';
    ctx.fill();
    ctx.strokeStyle = '#1A1A2E';
    ctx.lineWidth = 2;
    ctx.stroke();
  });
}
var chartObserver = new IntersectionObserver(function(entries) {
  entries.forEach(function(entry) {
    if (entry.isIntersecting) {
      drawChart();
      chartObserver.unobserve(entry.target);
    }
  });
}, { threshold: 0.3 });
var chartEl = document.getElementById('growthChart');
if (chartEl) chartObserver.observe(chartEl);
window.addEventListener('resize', drawChart);

/* ── Contact Form Validation ── */
var contactForm = document.getElementById('contactForm');
if (contactForm) {
  contactForm.addEventListener('submit', function(e) {
    var name = document.getElementById('c-name').value.trim();
    var email = document.getElementById('c-email').value.trim();
    var msg = document.getElementById('c-msg').value.trim();
    var valid = true;
    if (!name) valid = false;
    if (!email || !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(email)) valid = false;
    if (!msg) valid = false;
    if (!valid) {
      e.preventDefault();
      alert('Please fill in all fields with valid information.');
    }
  });
}

/* ── URL Scroll to Section ── */
window.addEventListener('load', function() {
  var section = window.location.pathname.replace('/', '');
  if (section) {
    var el = document.getElementById(section);
    if (el) el.scrollIntoView({ behavior: 'smooth' });
  }
});
</script>
</body>
</html>
