*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #F5C842;
  --yellow-deep: #E0A800;
  --yellow-pale: #FEF6D8;
  --dark: #1C1A14;
  --text: #2E2B20;
  --muted: #7A7060;
  --cream: #FFFBF0;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.35s;
}
nav.scrolled {
  background: var(--dark);
  padding: 14px 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 60px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.nav-logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 14px; color: white; line-height: 1.3;
}
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow) !important; color: var(--dark) !important;
  padding: 10px 22px !important; border-radius: 100px !important;
  font-weight: 600 !important; font-size: 13px !important;
  transition: transform 0.2s, background 0.2s !important;
}
.nav-cta:hover { background: var(--yellow-deep) !important; transform: scale(1.04) !important; }

/* ── FLOATING UMBRELLA ── */
.umbrella-float {
  position: fixed; pointer-events: none; z-index: 500;
  opacity: 0; transition: opacity 0.5s;
}
.umbrella-float img { width: 100%; height: 100%; object-fit: contain; }
.umbrella-float.uf-1 { width: 120px; bottom: 140px; left: -20px; transform: rotate(-20deg); animation: floatUmb1 6s ease-in-out infinite; }
.umbrella-float.uf-2 { width: 80px; top: 30%; right: -10px; transform: rotate(15deg); animation: floatUmb2 8s ease-in-out infinite; }
.umbrella-float.show { opacity: 0.18; }
@keyframes floatUmb1 { 0%,100%{transform:rotate(-20deg) translateY(0)} 50%{transform:rotate(-20deg) translateY(-14px)} }
@keyframes floatUmb2 { 0%,100%{transform:rotate(15deg) translateY(0)} 50%{transform:rotate(15deg) translateY(-10px)} }

/* ── BUTTONS ── */
.btn-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--dark);
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(245,200,66,0.4);
}
.btn-yellow:hover { transform: translateY(-2px); background: var(--yellow-deep); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.5); color: white;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 400; text-decoration: none;
  transition: all 0.2s;
}
.btn-white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: white;
  padding: 16px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s;
}
.btn-dark:hover { transform: translateY(-2px); }
.btn-dark-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--dark); color: var(--dark);
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: all 0.2s;
}
.btn-dark-outline:hover { background: var(--dark); color: white; }
.btn-yellow-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--yellow); color: var(--yellow);
  padding: 14px 32px; border-radius: 100px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.btn-yellow-outline:hover { background: var(--yellow); color: var(--dark); }

/* ── TAG LABEL ── */
.tag-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow-pale); color: var(--yellow-deep);
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.tag-label.on-dark { background: rgba(245,200,66,0.15); color: var(--yellow); }

h2.sec-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(34px, 5vw, 52px); font-weight: 700;
  line-height: 1.15; color: var(--dark); margin-bottom: 16px;
}
h2.sec-title em { font-style: italic; color: var(--yellow-deep); }
h2.sec-title.light { color: white; }
h2.sec-title.light em { color: var(--yellow); }
.sec-body { font-size: 16px; line-height: 1.8; color: var(--muted); max-width: 520px; }

/* ── PILL STRIP ── */
.pill-strip {
  background: var(--yellow); padding: 16px 0;
  overflow: hidden; white-space: nowrap;
}
.pill-strip-inner {
  display: inline-flex; gap: 40px; align-items: center;
  animation: stripScroll 22s linear infinite;
}
.pill-strip-item { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }
.pill-strip-dot { width: 6px; height: 6px; background: var(--dark); border-radius: 50%; opacity: 0.35; }
@keyframes stripScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── TOUR CARDS ── */
.tour-card {
  border-radius: 20px; overflow: hidden;
  position: relative; display: block; text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.35s, box-shadow 0.35s;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,0,0,0.18); }
.tour-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s; }
.tour-card:hover .tour-card-img { transform: scale(1.05); }
.tour-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,12,0.95) 0%, rgba(20,18,12,0.3) 50%, transparent 100%); }
.tour-card-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--yellow); color: var(--dark);
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.tour-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 32px; }
.tour-card-title { font-family: 'Nunito', sans-serif; font-size: 26px; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 8px; }
.tour-card-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 16px; }
.tour-card-meta { display: flex; flex-wrap: wrap; gap: 10px; }
.tour-card-pill { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 500; backdrop-filter: blur(4px); }
.tour-card-pill.yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }

/* ── BOOKING SECTION ── */
.booking-section {
  background: var(--yellow-pale);
  border-radius: 24px; padding: 48px;
  text-align: center; margin-top: 48px;
}
.booking-section h3 { font-family: 'Nunito', sans-serif; font-size: 28px; margin-bottom: 12px; color: var(--dark); }
.booking-section p { color: var(--muted); margin-bottom: 28px; font-size: 15px; }
.cal-placeholder {
  background: white; border-radius: 16px;
  padding: 48px 24px; border: 2px dashed var(--yellow);
  color: var(--muted); font-size: 14px; line-height: 1.8;
}
.cal-placeholder strong { display: block; font-size: 18px; color: var(--dark); margin-bottom: 8px; }

/* ── REVIEWS ── */
.review-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover { border-color: rgba(245,200,66,0.3); transform: translateY(-4px); }
.review-stars { font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-family: 'Nunito', sans-serif; font-size: 17px; font-style: italic; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.review-author { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ── WHY POINTS ── */
.why-point { display: flex; gap: 18px; align-items: flex-start; padding: 20px; border-radius: 16px; transition: background 0.2s; }
.why-point:hover { background: var(--yellow-pale); }
.why-point-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.why-point-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 5px; color: var(--dark); }
.why-point-text p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── TOUR PAGE HERO ── */
.tour-hero {
  position: relative; min-height: 70vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.tour-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.tour-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,12,0.95) 0%, rgba(20,18,12,0.3) 60%, rgba(20,18,12,0.2) 100%); }
.tour-hero-content { position: relative; z-index: 2; padding: 60px 48px; max-width: 800px; }
.tour-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--dark); padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
.tour-hero h1 { font-family: 'Nunito', sans-serif; font-size: clamp(40px, 6vw, 68px); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 16px; }
.tour-hero h1 em { font-style: italic; color: var(--yellow); }
.tour-hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 560px; margin-bottom: 32px; }
.tour-meta-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tour-meta-pill { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: white; padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; backdrop-filter: blur(4px); }
.tour-meta-pill.yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); font-weight: 700; }

/* ── STOPS GRID ── */
.stops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }
.stop-card { background: white; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); transition: transform 0.3s; }
.stop-card:hover { transform: translateY(-4px); }
.stop-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.stop-card-name { padding: 12px 16px; font-size: 13px; font-weight: 600; color: var(--dark); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 72px 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 72px; margin-bottom: 16px; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 240px; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); font-weight: 600; margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45) !important; transition: all 0.2s !important; }
.footer-social a:hover { border-color: var(--yellow); color: var(--yellow) !important; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.45); text-decoration: none; transition: transform 0.25s, box-shadow 0.25s; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ── RESPONSIVE ── */
/* ── NAV TOGGLE (hamburger) ── */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 1001; position: relative;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: white;
  margin: 5px 0; border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 28px;
    position: fixed; top: 0; right: -100%; height: 100vh;
    width: min(78vw, 320px); background: var(--dark);
    padding: 100px 40px 40px; transition: right .35s ease; z-index: 1000;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .tour-hero-content { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}


/* ── DECO STICKERS (moon / beach umbrella) ── */
.deco-sticker {
  position: absolute; font-size: 40px; z-index: 3; pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
.deco-moon { top: 18px; right: 18px; transform: rotate(-8deg); font-size: 34px; }
.deco-umbrella { bottom: 90px; right: 16px; transform: rotate(10deg); font-size: 30px; }
.tour-hero .deco-moon { top: 40px; right: 40px; font-size: 56px; }
.tour-hero .deco-umbrella { bottom: 220px; right: 48px; font-size: 46px; }

/* ── COMING SOON TOUR CARDS ── */
.tour-card-soon .tour-card-img { filter: grayscale(0.55) brightness(0.75); }
.tour-card-soon:hover .tour-card-img { transform: none; }
.tour-card-soon { cursor: default; }
.soon-badge { background: rgba(20,18,12,0.85) !important; color: var(--yellow) !important; border: 1px solid rgba(245,200,66,0.4); }

/* ── COMING SOON BANNER (tour pages) ── */
.soon-banner {
  background: var(--dark); color: var(--yellow); text-align: center;
  padding: 12px 24px; font-size: 14px; font-weight: 600; margin-top: 78px;
}
.soon-banner a { color: white; text-decoration: underline; }
@media (max-width: 600px) { .soon-banner { margin-top: 68px; font-size: 13px; } }
