/* ============================================================
   BALI HOLIDAY PACKAGE — BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* Selection */
::selection { background: var(--gold); color: var(--dark); }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
.section { padding: 50px 0; }
.section--alt { background: var(--dark2); }
.section--dark3 { background: var(--dark3); }

/* Section labels */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 560px;
}

.divider {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.6em;
  margin: 18px 0 40px;
  opacity: 0.5;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 14px 36px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245,237,214,0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 14px 36px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(245,237,214,0.35);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--trans);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Fade Up for hero */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up    { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.3s; }
.d3 { animation-delay: 0.45s; }
.d4 { animation-delay: 0.6s; }
.d5 { animation-delay: 0.75s; }
.d6 { animation-delay: 0.9s; }

/* WhatsApp Btn */
.whatsapp-btn {
  position: fixed;
  right: 24px; bottom: 90px;
  z-index: 800;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

.whatsapp-tooltip {
  position: absolute;
  right: 62px;
  background: var(--dark3);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 800;
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  display: flex; align-items: center; justify-content: center;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-2px); }

/* Page Hero (inner pages) */
.page-hero {
  min-height: 320px;
  background:
    linear-gradient(160deg, rgba(13,17,23,0.88) 0%, rgba(26,33,52,0.7) 100%),
    url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1600&q=80') center/cover no-repeat;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 130px 24px 70px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--cream); }

/* Responsive */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .container { padding: 0 16px; }
}