/* ============================================
   Bali Sabil Tours — Global Stylesheet
   Theme: Clean White / Warm Orange
   Font: Plus Jakarta Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #ffffff;
  --bg:          #fffcf5;
  --bg-soft:     #fff8ec;
  --orange:      #D4991A;
  --orange-mid:  #E6B41E;
  --orange-pale: #F5D97A;
  --orange-faint:#FDF4D4;
  --stone:       #e7e0d8;
  --text:        #1c1917;
  --text-mid:    #57534e;
  --text-light:  #a8a29e;
  --border:      #ede8e3;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10);
  --nav-h:       68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange-pale); border-radius: 3px; }

/* ══════════════════════════════
   NAVIGATION
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo-img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  font-style: normal;
}

.nav-logo-text em {
  color: var(--orange);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
}

.nav-links a:hover { color: var(--text); background: var(--orange-faint); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  transition: background 0.18s !important;
  margin-left: 0.5rem;
}

.nav-cta:hover { background: #b8840f !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ══════════════════════════════
   PAGE WRAPPER
══════════════════════════════ */
.page-body { padding-top: var(--nav-h); }

/* ══════════════════════════════
   SECTION UTILITIES
══════════════════════════════ */
.section { padding: 90px 5%; }
.section-sm { padding: 60px 5%; }
.container { max-width: 1160px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.5rem;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212,153,26,0.30);
}

.btn-orange:hover {
  background: #b8840f;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,153,26,0.42);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange-pale);
}

.btn-outline-orange:hover {
  background: var(--orange-faint);
  border-color: var(--orange-mid);
}

.btn-ghost {
  background: var(--bg-soft);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--stone);
  color: var(--text);
}

.btn-wa {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 4px 16px rgba(34,197,94,0.25);
}

.btn-wa:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════
   CHIP / TAG
══════════════════════════════ */
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 30px;
  letter-spacing: 0.03em;
}

.chip-orange { background: var(--orange-faint); color: var(--orange); }
.chip-green  { background: #dcfce7; color: #16a34a; }
.chip-stone  { background: var(--stone); color: var(--text-mid); }

/* ══════════════════════════════
   IMG PLACEHOLDER
══════════════════════════════ */
.img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #fef3e2, #fde8c8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--orange-mid);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.img-placeholder .ph-icon { font-size: 2.4rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--text);
  color: #fff;
  padding: 56px 5% 32px;
}

.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 260px;
  line-height: 1.7;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-logo span { color: var(--orange-mid); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color 0.18s;
}

.footer-col ul li a:hover { color: var(--orange-mid); }

.footer-bottom {
  max-width: 1160px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

/* ══════════════════════════════
   FLOATING WA
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 199;
  width: 54px;
  height: 54px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(34,197,94,0.38);
  transition: transform 0.22s, box-shadow 0.22s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(34,197,94,0.5);
}

.wa-float svg { width: 26px; height: 26px; fill: #fff; }

/* ══════════════════════════════
   DIVIDER
══════════════════════════════ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 5%;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    gap: 0.25rem;
    box-shadow: var(--shadow);
  }
  .hamburger { display: flex; }
  .section { padding: 64px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}