/*  Placeholders for injected HTML */
#hero-placeholder,
#experience-section-placeholder,
#packages-section-placeholder,
#why-choose-us-section-placeholder,
#create-trip-section-placeholder{
  display:block;
  min-height:1px;
}

/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ===== BODY ===== */
body{
  font-family:'Figtree', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size:16px;
  line-height:1.6;
  color:#222;
  background:#fff;
  overflow-y:auto;
}

body:not(.page-home) p{
  font-family:'Futura LT', sans-serif;
}

html{
  overflow-y:auto;
}

/* ===== 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;
}

/* ================= HERO section ================= */
.hero{
  position:relative;
  height:86vh;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  overflow:hidden;
  z-index:0;
}

@media (min-width: 992px){
  body.page-home .hero{
    height:calc(100vh - var(--home-fold-offset, 120px));
    min-height:520px;
  }
}

/* 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:'Frutiger', 'Frutiger Linotype', sans-serif;
}

.hero-title span{
  font-family:'Furniture', sans-serif;
  font-size:85px;
  font-weight:400;
  line-height:1.2;
  color:#ffcc00;
  margin-top:10px;
  white-space:nowrap;
}

@media (min-width: 992px){
  .hero-title span{
    font-weight:400;
    font-size:70px;
    color:#ffcc00;
    margin-top:10px;
  }
}

/* Subtitle */
.hero-subtitle{
  font-family:'Futura LT', sans-serif;
  margin-top:12px;
  font-size:16px;
  font-weight:400;
  line-height:1.2;
  max-width:390px;
  color:#fff;
}

/* ================= HOME INTRO ZONE ================= */
#hero-intro-zone{
  position:relative;
  background:transparent;
}

body.page-home #hero-placeholder{
  position:relative;
  z-index:6;
}

body.page-home #highlights-placeholder{
  position:relative;
  z-index:2;
  margin-top:0;
  padding-bottom:0;
}

body.page-home .secondary-nav{
  background:#fff;
  border-top:1px solid rgba(0,0,0,0.06);
  border-bottom:1px solid rgba(0,0,0,0.06);
  backdrop-filter:none;
}

body.page-home .secondary-menu a{
  color:#06634D;
}

body.page-home .secondary-menu li:hover a,
body.page-home .secondary-menu li.active a{
  color:#024320;
}

body.page-home .secondary-menu li::after{
  background:#008a27;
}

body.page-home .highlights{
  background:#fff;
  padding:36px 10% 28px;
  gap:24px;
}

body.page-home .highlights .highlight{
  padding:20px 18px;
  background:#fff;
  border:0;
  backdrop-filter:none;
}

body.page-home .highlight-title{
  color:#2d2d2d;
}

body.page-home .highlight-text{
  color:#555;
}

.mobile-scroll-hint{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  width:100%;
  min-height:72px;
  position:fixed;
  left:0;
  right:0;
  bottom:88px;
  pointer-events:none;
  opacity:1;
  transition:opacity .35s ease;
  z-index:65;
}

.mobile-scroll-hint.is-hidden{
  opacity:0;
  visibility:hidden;
}

.mobile-scroll-hint .hint-mouse{
  position:relative;
  width:28px;
  height:46px;
  border:2px solid rgba(255,255,255,.88);
  border-radius:18px;
  background:rgba(0,0,0,.08);
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.mobile-scroll-hint .hint-wheel{
  position:absolute;
  left:50%;
  top:9px;
  width:4px;
  height:9px;
  border-radius:999px;
  background:#fff;
  transform:translateX(-50%);
  animation:mouseWheelDrop 1.5s ease-in-out infinite;
}

@keyframes mouseWheelDrop{
  0%{ transform:translateX(-50%) translateY(0); opacity:0; }
  20%{ opacity:1; }
  65%{ transform:translateX(-50%) translateY(10px); opacity:1; }
  100%{ transform:translateX(-50%) translateY(14px); opacity:0; }
}


/* ================= 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:'Futura LT', 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;
  user-select:none;
}

.secondary-menu a{
  font-size:18px;
  font-weight:500;
  color:#06634D;
  text-transform:uppercase;
  letter-spacing:1px;
  transition:color 0.3s ease;
  user-select:none;
  -webkit-user-drag:none;
}

.secondary-menu li::selection,
.secondary-menu a::selection{
  background:transparent;
  color:inherit;
}

/* 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%;
}

@media (min-width: 992px){
  .secondary-nav{
    position:relative;
    overflow:hidden;
    display:flex;
    justify-content:center;
    width:min(100%, 960px);
    margin:0 auto;
  }

  .secondary-menu{
    justify-content:flex-start;
    width:max-content;
    min-width:100%;
    height:56px;
    overflow-x:auto;
    overflow-y:hidden;
    scrollbar-width:none;
    padding:0 18px;
    gap:0;
  }

  .secondary-menu::-webkit-scrollbar{
    display:none;
  }

  .secondary-menu li{
    flex:0 0 auto;
    padding:0 18px;
  }

  .secondary-menu a{
    font-size:22px;
    letter-spacing:.55px;
    white-space:nowrap;
    color:#06634D;
  }
}

/* ================= 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:'Arumdalu', sans-serif;
}

.highlight-icon img{
  width:88px;
  height:88px;
  margin:0 auto 5px;

  -webkit-user-drag:none;
  user-select:none;
  pointer-events:none;
}

.highlight-title{
  font-size:24px;
  font-weight:500;
  margin:2px 0;
  color:#2d2d2d;
  font-family:'Futura LT', sans-serif;
}

.highlight-text{
  font-size:16px;
  color:#555;
  line-height:1.4;
  margin-top:2px;
  font-family:'Futura LT', sans-serif;
}

/* ====== EXPERIENCE ====== */
.experience-section{
  text-align:center;
  padding:60px 5% 40px;
  background:#fff;
  font-family:'Futura LT', sans-serif;
}

.experience-title{
  font-size:38px;
  font-weight:700;
  margin-bottom:10px;
  color:#111;
  font-family:'Futura LT', sans-serif;
}

.experience-subtitle{
  font-size:22px;
  font-style:italic;
  margin-bottom:30px;
  color:#555;
  font-family:'Futura LT', 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:1px solid rgba(255,255,255,.08);
  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 img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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;
  font-family:'Figtree', sans-serif;
}

.experience-footer{
  margin-top:20px;
}

.experience-footer-text{
  font-size:60px;
  font-weight:500;
  padding-top:30px;
  padding-bottom:60px;
  color:#111;
  font-family:'Futura LT', sans-serif;
}

/* ===== Shared Section Background (Explore + Why + Plan) ===== */
.explore-journeys,
.why-us,
.plan{
  position: relative;
  background: transparent;
}

.explore-journeys > *,
.why-us > *,
.plan > *{
  position: relative;
  z-index: 1;
}

/* ===== WHY BOOK WITH US ===== */
.why-us{
  text-align:center;
  padding:80px 5%;
  margin-top: -1px;
}

.why-title{
  font-size:62px;
  font-weight:500;
  color:#fff;
  margin-bottom:50px;
  padding:0 0 50px;
  position:relative;
  font-family:'Futura LT', sans-serif;
  text-shadow:0 0 18px rgba(200,169,107,.16), 0 0 34px rgba(200,169,107,.10);
}

.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;
  min-height:620px;
  height:auto;
  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:100%;
  height:100%;
  object-fit:contain;
}

.feature-title{
  font-size:20px;
  font-weight:500;
  margin-top:50px;
  margin-bottom:15px;
  color:#111;
  font-family:'Futura LT', sans-serif;
}

.feature-content{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}

.feature-image{
  width:100%;
  aspect-ratio:1/1;
  background:#ddd;
  margin-bottom:15px;
  overflow:hidden;
}

.feature-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.feature-text{
  font-size:15px;
  color:#333;
  line-height:1.6;
  margin:0;
  padding:0 12px;
  word-wrap:break-word;
  font-family:'Futura LT', sans-serif;
}

@media (min-width: 992px){
  .features{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:22px;
    align-items:start;
  }

  .feature-box{
    width:100%;
    max-width:none;
  }
}

@media (min-width: 992px) and (max-width: 1440px){
  .why-us{
    padding:72px 4%;
  }

  .why-title{
    font-size:clamp(42px, 4.5vw, 56px);
    margin-bottom:34px;
    padding-bottom:34px;
  }

  .features{
    gap:16px;
  }

  .feature-box{
    min-height:560px;
    padding-bottom:22px;
  }

  .feature-round{
    width:88px;
    height:88px;
    top:-52px;
  }

  .feature-title{
    font-size:18px;
    margin-top:44px;
    margin-bottom:12px;
    padding:0 10px;
  }

  .feature-image{
    aspect-ratio:1 / .86;
    margin-bottom:12px;
  }

  .feature-text{
    font-size:14px;
    line-height:1.48;
    padding:0 10px;
  }
}

@media (min-width: 992px) and (max-width: 1200px){
  .why-us{
    padding:64px 3.5%;
  }

  .features{
    gap:12px;
  }

  .feature-box{
    min-height:520px;
    padding-bottom:18px;
  }

  .feature-title{
    font-size:17px;
  }

  .feature-text{
    font-size:13px;
    line-height:1.4;
    padding:0 8px;
  }
}

@media (max-width: 991px){
  .features{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .features{
    grid-template-columns:1fr;
  }
}

/* ===== EXPLORE TRADING JOURNEYS ===== */
.explore-journeys{
  color:#fff;
  padding:80px 5%;
  margin-bottom: 0;
  display:grid;
  grid-template-columns:38% 1fr;
  column-gap:48px;
  align-items:start;
}

.explore-left{
  align-self:start;
}
.explore-variation{
  display:block;
  font-size:18px;
  letter-spacing:2px;
  font-weight:700;
  color:#fff;
  opacity:1;
  margin-bottom:10px;
  text-transform:uppercase;
  font-family:'Futura LT', sans-serif;
}
.explore-title{
  font-size:clamp(44px, 6vw, 80px);
  color:#ffcc00;
  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:20px;
  line-height:1.4;
  opacity:0.9;
  font-family:'Futura LT', 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;
}

.journey-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:92px;
  background:linear-gradient(to bottom, rgba(0,0,0,.74) 0%, rgba(0,0,0,.38) 52%, rgba(0,0,0,0) 100%);
  pointer-events:none;
  z-index:1;
}

.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:24px;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  max-width:calc(100% - 44px);
  max-height:48%;
  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.28;
  text-transform:uppercase;
  color:#fff;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.trip-btn{
  border:2px solid #fff;
  background:transparent;
  color:#fff;
  font-weight:700;
  font-size:13px;
  padding:9px 14px;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:.5px;
}

@media (min-width: 992px){
  .explore-journeys{
    min-height:100vh;
    box-sizing:border-box;
    padding:118px 5% 24px;
    grid-template-columns:32% 1fr;
    column-gap:14px;
    align-items:center;
  }

  .explore-right{
    --card-w:260px;
    --card-h:clamp(440px, 70vh, 560px);
  }

  .card-bottom{
    bottom:18px;
    gap:8px;
    max-height:40%;
  }

  .explore-left{
    padding-top:0;
    margin-top:80px;
  }

  .explore-variation{
    font-size:20px;
  }

  .explore-title{
    font-size:clamp(52px, 6.5vw, 92px);
  }

  .explore-subtitle{
    font-size:22px;
  }

  .trip-desc{
    font-size:clamp(13px, 1.15vw, 17px);
  }
}

@media (min-width: 992px) and (max-width: 1440px) and (max-height: 820px){
  .explore-journeys{
    padding:98px 4.5% 20px;
    grid-template-columns:29% 1fr;
    column-gap:18px;
  }

  .explore-left{
    margin-top:92px;
  }

  .explore-variation{
    font-size:16px;
  }

  .explore-title{
    font-size:clamp(40px, 4.6vw, 62px);
    line-height:.95;
  }

  .explore-subtitle{
    font-size:17px;
    line-height:1.25;
    max-width:22ch;
  }

  .explore-right{
    --card-w:250px;
    --card-h:clamp(400px, 62vh, 470px);
  }

  .card-bottom{
    bottom:16px;
    gap:7px;
    max-height:46%;
  }

  .trip-desc{
    font-size:clamp(12px, .98vw, 15px);
    line-height:1.22;
    -webkit-line-clamp:4;
  }

  .trip-btn{
    font-size:12px;
    padding:8px 12px;
  }
}



