/* ===== ROOT VARIABLES ===== */
:root {
  --jungle: #0B3D3A;
  --lime: #8DC63F;
  --turquoise: #2EC4B6;
  --gold: #F2B705;
  --cream: #FBF6EC;
  --ink: #1A1A1A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Baloo 2', sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--jungle);
}

.nav-logo {
  height: 48px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(251, 246, 234, 0.5);
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.2rem 0.3rem;
  transition: color 0.2s;
}

.lang-btn.active {
  color: var(--gold);
}

.lang-divider {
  color: rgba(251, 246, 234, 0.3);
}

.btn-nav {
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(180deg, rgba(11, 61, 58, 0.88) 0%, rgba(11, 61, 58, 0.94) 100%),
    url('../assets/images/background_header.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  text-align: center;
  padding: 5rem 1.5rem 6rem;
}

.hero-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 75%);
  margin-bottom: 1rem;
}

.hero-logo {
  width: 260px;
  filter: drop-shadow(0 0 35px rgba(242, 183, 5, 0.45));
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: var(--gold);
}

.tagline {
  max-width: 500px;
  margin: 1rem auto 1.5rem;
  font-size: 1.1rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

.stars {
  color: var(--gold);
}

.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.section-dark {
  background: var(--jungle);
  color: var(--cream);
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  color: var(--turquoise);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== MEET IGGY ===== */
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.meet-quote {
  font-size: 1.1rem;
  line-height: 1.7;
  padding-left: 1.2rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.meet-author {
  display: block;
  font-family: 'Space Mono', monospace;
  color: var(--turquoise);
  font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  gap: 1.5rem;
}

.trust-item {
  background: var(--jungle);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.trust-number {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem;
  color: var(--gold);
}

.trust-label {
  font-size: 0.85rem;
}

/* ===== SERVICES ===== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.service-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--turquoise);
  border-radius: 16px;
  padding: 1.8rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  border-color: var(--gold);
}

.service-card h3 {
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== OUR FLEET ===== */
.fleet-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.amenities-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.amenities-list li {
  position: relative;
  padding-left: 1.3rem;
  font-weight: 500;
  font-size: 1rem;
}

.amenities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ===== SLIDESHOWS (Meet Iggy, Fleet, Nature Videos/Photos, Customers) ===== */
.slideshow-label {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.slideshow {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.slideshow:last-of-type {
  margin-bottom: 0;
}

.slideshow-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.slide-item {
  flex: 0 0 82%;
  max-width: 82%;
  background: var(--ink);
  border-radius: 16px;
}

.slide-item img,
.slide-item video {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 16px;
  display: block;
  background: var(--ink);
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--ink);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.slide-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.slide-arrow.prev {
  left: 0.5rem;
}

.slide-arrow.next {
  right: 0.5rem;
}

/* Nature videos: portrait sizing since the clips are vertical */
#natureVideosSlideshow .slide-item {
  flex: 0 0 38%;
  max-width: 38%;
}

#natureVideosSlideshow .slide-item video {
  height: 560px;
  object-fit: contain;
}

/* ===== DESTINATIONS ===== */
.route {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  padding: 2rem 0;
}

.route::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--turquoise) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.route-stop {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
}

.dot {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border: 3px solid var(--jungle);
  border-radius: 50%;
  margin: 0 auto 0.6rem;
}

.route-note {
  text-align: center;
  max-width: 500px;
  margin: 2rem auto 0;
  font-style: italic;
  color: var(--turquoise);
  font-size: 0.95rem;
}

/* ===== REVIEWS / CAROUSEL ===== */
.review-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 700px;
  margin: 2rem auto 1rem;
}

.review-track {
  position: relative;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
}

.review-slide {
  display: none;
  background: var(--cream);
  color: var(--ink);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.review-slide.active {
  display: block;
}

.review-slide p {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 1rem 0;
}

.review-author {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--turquoise);
}

.carousel-arrow {
  background: var(--gold);
  border: none;
  color: var(--ink);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.carousel-arrow:hover {
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s;
}

.dot-indicator.active {
  background: var(--gold);
}

.btn-secondary {
  display: block;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--gold);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--ink);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== BOOKING FORM ===== */
.booking-form {
  display: grid;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.booking-form input {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--turquoise);
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--jungle);
  color: var(--cream);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { flex-direction: column; gap: 1rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .two-col { grid-template-columns: 1fr; }
  .meet-grid { grid-template-columns: 1fr; }
  .fleet-wrapper { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .route::before { display: none; }
  .slide-item { flex: 0 0 88%; max-width: 88%; }
  .slide-item img, .slide-item video { height: 280px; }

  #natureVideosSlideshow .slide-item {
    flex: 0 0 75%;
    max-width: 75%;
  }
  #natureVideosSlideshow .slide-item video {
    height: 480px;
  }
}