:root{
  --nav-height: 60px;
}

/* ✅ Placeholders for injected HTML (topbar/navbar/hero) */
#topbar-placeholder,
#navbar-placeholder,
#hero-placeholder{
  display:block;
  min-height:1px;
}

/* ✅ Keep NAV above hero */
header{
  position: sticky;
  top: 0;
  z-index: 50;
}

header nav{
  height: var(--nav-height);
}

/* ✅ Hero behind nav but content stays visible */
.hero{
  margin-top: calc(var(--nav-height) * -1);
  padding-top: var(--nav-height);
}

/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ===== BODY ===== */
body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size:16px;
  line-height:1.6;
  color:#222;
  background:#fff;
}

/* ===== LINKS ===== */
a{
  text-decoration:none;
  color:inherit;
}
a:hover{
  color:#00796b;
}

/* ===== HEADINGS ===== */
h1,h2,h3,h4,h5,h6{
  font-weight:600;
  color:#111;
}

/* ===== CONTAINER (Pro Layout) ===== */
.container{
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

/* ===== SECTIONS ===== */
section{
  padding:60px 0;
}

/* ================= TOP BAR ================= */
.top-bar{
  display:flex;
  background:#00796b;
  color:#fff;
  font-size:14px;
  padding:10px 20px;

  transition:max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  overflow:hidden;
  max-height:120px;
  opacity:1;
}

.top-bar .top-bar-grid{
  display:flex;
  justify-content:space-between;
  align-items:center;
  max-width:790px;
  margin:auto;
}

.top-bar p{
  margin:0;
  flex:1;
  text-align:center;
  padding:0 20px;
  font-family:'Figtree', sans-serif;
}

/* Close button */
.top-bar-close{
  font-size:48px;
  font-weight:bold;
  cursor:pointer;
  color:#fff;
  transition:color 0.3s ease;
  line-height:1;
  position:relative;
  top:-6px;
  left:-20px;
}
.top-bar-close:hover{
  color:#ffcc00;
}

/* Hidden state (use with JS: document.querySelector('.top-bar').classList.add('hidden')) */
.top-bar.hidden{
  max-height:0;
  opacity:0;
  padding:0 20px;
}

/* ================= NAVIGATION ================= */
header nav{
  display:flex;
  position:relative;
  justify-content:flex-end;
  align-items:center;
  gap:28px;
  padding:0 40px;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.2)
  );
  z-index:3;
}

/* Logo */
header .logo a{
  font-size:22px;
  font-weight:700;
  color:#fff;
  white-space:nowrap;
}

/* Menu links */
header nav ul{
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
  height:100%;
  font-family:'Figtree', sans-serif;
}

header nav ul li{
  display:flex;
  align-items:center;
  height:100%;
  padding:0 18px;
  transition:background 0.3s ease;
}
header nav ul li:hover{
  background:#000;
}

header nav ul li a{
  font-size:16px;
  font-weight:500;
  color:#fff;
}
header nav ul li a:hover{
  color:#fff;
}

/* ===== Destinations dropdown ===== */
.nav-dropdown{
  position: relative;
}

.nav-mega{
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  padding: 6px 10px;
  display: none;

  background: rgba(0,0,0,.92);
  border: 1px solid rgba(255,255,255,.12);
  z-index: 999;
}

.nav-item{
  display: block;
  padding: 10px 0;
  color: #fff;
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  background: none;
  transform: translateX(0);
  transition: 
    color .25s ease,
    transform .35s cubic-bezier(.4,0,.2,1);
}

/* TEXT hover only */
.nav-item:hover{
  color: #1fcf2e;
    transform: translateX(8px); /* 👈 move slightly right */
}

/* show dropdown */
.nav-dropdown:hover .nav-mega{
  display: block;
}

/* ================= SEARCH BAR ================= */
.search{
  position:relative;
  display:flex;
  align-items:center;
}

/* Search Icon */
.search-btn{
  background:none;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
  transition:opacity 0.3s ease;
}
.search-btn img{
  width:22px;
  height:22px;
  filter:invert(1);
}
.search-btn:hover img{
  filter:invert(1) drop-shadow(0 0 6px #fff);
}
.search-btn.hidden{
  opacity:0;
  pointer-events:none;
}

/* Search Box */
.search-box{
  width:0;
  height:35px;
  border:none;
  outline:none;
  border-radius:4px;
  padding:0;
  background:transparent;
  color:#000;
  font-size:15px;
  font-family:'Figtree', sans-serif;
  transition:width 0.4s ease, padding 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  position:relative;
  opacity:0;
  pointer-events:none;
  flex-shrink:0;
}
.search-box.active{
  width:500px;
  padding:8px 36px 4px 10px;
  background:#fff;
  opacity:1;
  pointer-events:auto;
}
.search-box::placeholder{
  color:#666;
  opacity:0.8;
  font-size:20px;
}

/* Close Button */
.search-close{
  display:none;
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  border:none;
  background:none;
  cursor:pointer;
  color:#666;
  z-index:4;
  opacity:0;
  transition:opacity 0.3s ease;
}
.search-close.visible{
  display:block;
  opacity:1;
}

/* smooth stage-1: menu fade/slide + logo move */
#navMenu{
  transition:opacity 0.4s ease, transform 0.4s ease;
}
.logo{
  transition:margin-right 0.4s ease, transform 0.4s ease;
}

/* Hide nav menu */
nav.search-active #navMenu{
  opacity:0;
  transform:translateX(-40px);
  pointer-events:none;
}

/* Push logo right next to search */
nav.search-active .logo{
  margin-right:-850px;
  transform:translateX(0);
}

/* ================= HERO section ================= */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  overflow:hidden;
  z-index:0;
}

/* Background video + image */
.hero-video,
.hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

/* Overlay */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.4);
  z-index:1;
}

/* Hero text content */
.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:0 20px;
  margin-left:10%;
  text-align:left;
  color:#fff;
}

/* Title */
.hero-title{
  font-size:56px;
  font-weight:700;
  line-height:1.2;
  color:#fff;
  font-family:'Cal Sans', sans-serif;
}
.hero-title span{
  font-family:'Ephesis', cursive;
  font-size:85px;
  font-weight:400;
  line-height:1.2;
  color:#ffcc00;
  margin-top:10px;
}

/* Subtitle */
.hero-subtitle{
  font-family:'Figtree', sans-serif;
  margin-top:20px;
  font-size:16px;
  font-weight:400;
  line-height:1.4;
  max-width:500px;
  color:#fff;
}

/* ================= SECONDARY NAV ================= */
.secondary-nav{
  background:#fff;
  border-top:1px solid rgba(0,0,0,0.06);
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.secondary-menu{
  font-family:'Figtree', sans-serif;
  display:flex;
  justify-content:center;
  list-style:none;
  margin:0;
  padding:0;
  height:60px;
}

.secondary-menu li{
  display:flex;
  align-items:center;
  padding:0 22px;
  position:relative;
  transition:color 0.3s ease;
}

.secondary-menu a{
  font-size:14px;
  font-weight:600;
  color:#356e4c;
  text-transform:uppercase;
  letter-spacing:1px;
  transition:color 0.3s ease;
}

/* Hover effect */
.secondary-menu li:hover a{
  color:#024320;
}

/* Underline hover effect */
.secondary-menu li::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background:#008a27;
  transition:width 0.3s ease;
}
.secondary-menu li:hover::after{
  width:100%;
}

/* Active tab */
.secondary-menu li.active a{
  color:#000;
}
.secondary-menu li.active::after{
  width:100%;
}

/* ================= HIGHLIGHTS SECTION ================= */
.highlights{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:30px;
  padding:60px 20%;
  text-align:center;
  background:#fff;
  font-family:'Figtree', sans-serif;
}

.highlight-icon img{
  width:80px;
  height:80px;
  margin:0 auto 5px;

  -webkit-user-drag:none;
  user-select:none;
  pointer-events:none;
}

.highlight-title{
  font-size:16px;
  font-weight:700;
  margin:2px 0;
  color:#2d2d2d;
}

.highlight-text{
  font-size:14px;
  color:#555;
  line-height:1.4;
  margin-top:2px;
}

/* ====== EXPERIENCE ====== */
.experience-section{
  background:#fff;
  text-align:center;
  padding:60px 5% 40px;
}

.experience-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
  font-family:'Figtree', sans-serif;
}

.experience-subtitle{
  font-size:18px;
  font-style:italic;
  margin-bottom:30px;
  color:#555;
  font-family:'Figtree', sans-serif;
}

.experience-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(180px, 280px));
  gap:24px;
  justify-content:center;
  margin-bottom:30px;
}

/* Show only 8 cards */
.experience-grid > .place-box:nth-child(n+9){
  display:none;
}

.place-box{
  background:#fff;
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
  position:relative;
  aspect-ratio:1 / 1;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
}

.place-image{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}

.place-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0) 70%);
  z-index:1;
}

.place-name{
  position:absolute;
  bottom:10px;
  left:12px;
  margin:0;
  font-size:15px;
  font-weight:600;
  color:#fff;
  z-index:2;
}

.experience-footer{
  margin-top:20px;
}

.experience-footer-text{
  font-size:30px;
  font-weight:700;
  padding-top:30px;
  padding-bottom:60px;
  color:#00796b;
  font-family:'Figtree', sans-serif;
}

/* ===== WHY BOOK WITH US ===== */
.why-us{
  background:#0b3d2e;
  text-align:center;
  padding:80px 5%;
}

.why-title{
  font-size:36px;
  font-weight:700;
  color:#fff;
  margin-bottom:50px;
  padding:0 0 50px;
  position:relative;
  font-family:'Figtree', sans-serif;
}

.features{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:30px;
}
.feature-box{
  background:#fff;
  border-radius:8px;
  padding:0 0 30px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  flex:1 1 260px;
  max-width:300px;
  height:620px;
  position:relative;
  box-sizing:border-box;
}

/* Circle icon */
.feature-round{
  width:100px;
  height:100px;
  border-radius:50%;
  background:#fff;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
  position:absolute;
  top:-60px;
  left:50%;
  transform:translateX(-50%);
  box-shadow:0 4px 8px rgba(0,0,0,0.2);
}

.feature-round img{
  width:60%;
  height:60%;
  object-fit:contain;
}

.feature-title{
  font-size:18px;
  font-weight:700;
  margin-top:50px;
  margin-bottom:15px;
  color:#111;
  font-family:'Figtree', sans-serif;
}

.feature-image{
  width:100%;
  aspect-ratio:1/1;
  background:#ddd;
  margin-bottom:15px;
}

.feature-text{
  font-size:14px;
  color:#333;
  line-height:1.6;
  margin:0;
  padding:0 12px;
  word-wrap:break-word;
  font-family:'Figtree', sans-serif;
}

/* ===== EXPLORE TRADING JOURNEYS ===== */
.explore-journeys{
  background:linear-gradient(135deg, #006a3d 0%, #00994c 50%, #00c165 100%);
  color:#fff;
  padding:80px 5%;
  display:grid;
  grid-template-columns:38% 1fr;
  column-gap:48px;
  align-items:start;
}

.explore-left{
  align-self:start;
}
.explore-variation{
  display:block;
  font-size:14px;
  letter-spacing:2px;
  font-weight:700;
  opacity:0.8;
  margin-bottom:10px;
  text-transform:uppercase;
  font-family:'Figtree', sans-serif;
}
.explore-title{
  font-size:clamp(44px, 6vw, 80px);
  color:#ffd500;
  line-height:0.95;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  margin:0 0 18px;
  font-family:'Cal Sans', sans-serif;
}
.explore-subtitle{
  display:block;
  font-size:18px;
  line-height:1.4;
  opacity:0.9;
  font-family:'Figtree', sans-serif;
}

.explore-right{
  --gap:40px;
  --card-w:280px;
  --card-h:clamp(420px, 70vh, 560px);

  position:relative;
  width:100%;
  overflow:hidden;
}

.explore-right::before,
.explore-right::after{
  content:"";
  flex:0 0 var(--gap);
}

.explore-right-track{
  display:flex;
  gap:var(--gap);
  width:max-content;
  animation:continuousSlide 40s linear infinite;
}

@keyframes continuousSlide{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(calc(-1 * var(--shift))); }
}

.journey-card{
  flex:0 0 var(--card-w);
  height:var(--card-h);
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.journey-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%);
  pointer-events:none;
}

.card-top{
  position:absolute;
  top:14px;
  right:16px;
  z-index:2;
}
.trip-nights{
  font-size:14px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:#fff;
}

.card-bottom{
  position:absolute;
  left:22px;
  bottom:22px;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  max-width:calc(100% - 44px);
  max-height:45%;
  overflow:hidden;
  word-wrap:break-word;
  text-overflow:ellipsis;
  font-family:'Figtree', sans-serif;
}
.trip-desc{
  margin:0;
  font-size:clamp(14px, 1.4vw, 18px);
  font-weight:800;
  line-height:1.35;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 2px 6px rgba(0,0,0,.35);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.trip-btn{
  border:2px solid #fff;
  background:transparent;
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:10px 16px;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.5px;
}

/* ===== PLAN YOUR TRIP SECTION ===== */
.plan{
  background:#00431f;
  text-align:center;
  min-height:60vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  margin-top:200px;
  margin-bottom:200px;
}

.plan-title{
  font-size:36px;
  font-weight:700;
  margin-bottom:20px;
  color:#ffffff;
  font-family:'Figtree', sans-serif;
}

.plan-title span{
  display:block;
  font-family:'Ephesis', cursive;
  font-size:100px;
  font-weight:400;
  line-height:1.2;
  color:#ffcc00;
  margin-top:10px;
}

.plan-text{
  font-size:18px;
  line-height:1.6;
  color:#ffffff;
  max-width:640px;
  margin:0 auto 40px;
  font-family:'Figtree', sans-serif;
}

.plan-btn{
  display:inline-block;
  background:#3f754c;
  font-family:'Figtree', sans-serif;
  color:#fff;
  font-weight:600;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:1px;
  padding:14px 32px;
  border:none;
  border-radius:4px;
  transition:color 0.3s ease;
}
.plan-btn:hover{
  color:#000000;
}

/* =========================================================
   FOOTER (Full) — Dark Green + Top-Left Curve Only
   + Left bend effect + Title underline loading (screenshot)
   Paste WHOLE block at END of style.css
   ========================================================= */

.site-footer-2026{
  --bg1:#031b13;
  --bg2:#062a1e;
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.65);
  --link:rgba(255,255,255,.82);

  position: relative;
  width: 100%;
  margin: 60px 0 0;

  color: var(--text);
  background:
    radial-gradient(900px 520px at 25% 35%, rgba(0,255,170,.10), transparent 58%),
    linear-gradient(90deg, var(--bg1), var(--bg2));

  overflow: hidden;

  /* ✅ ONLY top-left is curved, others square */
  border-radius: 300px 0 0 0;

  border-top: 1px solid rgba(255,255,255,.08);
}

/* ✅ subtle left bend (not blob) */
.site-footer-2026::before{
  content:"";
  position:absolute;
  top:0;
  left:-190px;
  width:380px;
  height:100%;
  background:
    radial-gradient(closest-side at 70% 28%,
      rgba(0,255,170,.10),
      rgba(0,255,170,.05) 35%,
      transparent 70%);
  border-radius: 0 230px 230px 0;
  opacity: .85;
  pointer-events: none;
}

/* Keep content above the bend */
.footer-inner,
.footer-bottom-2026{
  position: relative;
  z-index: 1;
}

/* ===== MAIN GRID ===== */
.footer-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 56px 22px;

  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.35fr;
  gap: 44px;
  align-items: start;
}

/* ===== Brand ===== */
.f-logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  color:#fff;
}
.f-logo-text{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
}

.f-desc{
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 48ch;
}

/* ===== Links ===== */
.f-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 12px;
}

.site-footer-2026 a{
  color: var(--link);
  text-decoration:none;
  font-size: 14px;
}
.site-footer-2026 a:hover{
  color:#fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== Title + underline bar ===== */
.f-title{
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
  color: #fff;
}

/* underline bar container */
.f-title .u-line{
  display: block;
  width: 56px;                 /* underline length */
  height: 3px;
  background: rgba(255,255,255,.35);
  border-radius: 999px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;            /* ✅ hides dash at start/end */
}

/* moving dash */
.f-title .u-line > span{
  width: 16px;                 /* dash size */
  height: 100%;
  background: #fff;
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: -18px;
  animation: moving 2s linear infinite;
}

/* dash goes from hidden-left -> to end -> hidden */
@keyframes moving{
  0%   { left: -18px; }        /* start hidden */
  100% { left: 100%; }         /* go out at right */
}

/* ===== Contact ===== */
.f-contact p{
  margin: 10px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.f-contact strong{
  color: rgba(255,255,255,.92);
}

/* ===== Social buttons ===== */
.f-social{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.f-social a{
  width: 40px;
  height: 40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;

  font-weight: 800;
  font-size: 12px;
}
.f-social a:hover{
  background: rgba(255,255,255,.10);
  text-decoration:none;
}

/* Accessibility focus */
.site-footer-2026 a:focus-visible{
  outline: 2px solid rgba(255,255,255,.78);
  outline-offset: 3px;
  border-radius: 10px;
}

/* ===== Bottom line ===== */
.footer-bottom-2026{
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: transparent;
}

.footer-bottom-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 56px 18px;

  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;

  color: rgba(255,255,255,.65);
  font-size: 13px;
}
.footer-bottom-inner a{
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
