/*
Theme Name: Bajo Rental Trip & Tours
Theme URI: https://bajorentaltriptours.com
Author: Bajo Rental Trip & Tours
Author URI: https://bajorentaltriptours.com
Description: Tema premium untuk layanan sewa mobil dan paket wisata di Labuan Bajo, Flores. Desain modern, elegan, dan responsif dengan warna gold dan dark premium.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bajo-rental
Tags: travel, tour, car-rental, tourism, one-page, dark, gold, responsive, indonesia
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A8872D;
  --gold-glow: rgba(201,168,76,.25);
  --dark: #0A0A0F;
  --dark-2: #111118;
  --dark-3: #16161F;
  --dark-4: #1E1E2A;
  --dark-5: #252535;
  --light: #F5F3EE;
  --light-2: #EAE6DC;
  --muted: #9B9BA8;
  --muted-2: #6C6C7A;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: .3s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.3);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.4);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.2);
  --container: 1280px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.gold-text { color: var(--gold); }
.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--light);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.section-desc.light { color: rgba(245,243,238,.7); }
.section-header { margin-bottom: 52px; }
.section-header.light .section-title { color: var(--white); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border: 1.5px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  background: rgba(201,168,76,.06);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.12);
  transform: translateY(-2px);
}
.btn-dark-outline {
  border: 1.5px solid rgba(245,243,238,.15);
  color: var(--light);
  background: transparent;
}
.btn-dark-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-xl { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(10,10,15,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon { color: var(--dark); font-size: 1rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--light);
  line-height: 1;
}
.logo-img-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  text-decoration: none;
}
.site-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity .3s, transform .3s;
}
.site-logo-img:hover {
  opacity: .9;
  transform: scale(1.02);
}
.footer-logo-img {
  height: 50px;
  margin-bottom: 12px;
}
.main-nav { display: flex; gap: 8px; }
.nav-link {
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(245,243,238,.7);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.header-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; align-items: center; gap: 6px; }
.lang-btn {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active { color: var(--gold); }
.lang-sep { color: var(--muted-2); font-size: .75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,10,15,.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  color: var(--light);
  padding: 8px;
}
.mobile-lang-switcher { display: flex; align-items: center; gap: 12px; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--light);
  padding: 10px 24px;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-cta { margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,.85) 0%, rgba(10,10,15,.5) 60%, rgba(10,10,15,.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(245,243,238,.75);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(245,243,238,.7);
  font-size: .85rem;
}
.trust-icon { font-size: 1.1rem; }
.trust-divider {
  width: 1px; height: 20px;
  background: rgba(245,243,238,.2);
  margin: 0 16px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,243,238,.4);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.6); opacity: .4; }
}

/* ============================================================
   BOOKING BAR
   ============================================================ */
.booking-bar-section { padding: 0; background: var(--dark-2); }
.booking-box {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: -40px 0 0;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}
.booking-tabs {
  display: flex;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.booking-tab {
  flex: 1;
  padding: 18px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.booking-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(201,168,76,.05);
}
.booking-tab:hover { color: var(--gold-light); }
.booking-form-content { padding: 28px 32px; }
.booking-form-content.hidden { display: none; }
.booking-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: end;
}
.booking-field { display: flex; flex-direction: column; gap: 8px; }
.booking-field label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking-field select,
.booking-field input {
  background: var(--dark-4);
  border: 1px solid rgba(245,243,238,.1);
  color: var(--light);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: .9rem;
  transition: var(--transition);
  appearance: none;
}
.booking-field select:focus,
.booking-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.booking-field option { background: var(--dark-4); }
.booking-submit { align-self: flex-end; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.section { padding: 96px 0; }

/* ============================================================
   ARMADA
   ============================================================ */
.armada-section { background: var(--dark-2); }
.armada-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.vehicle-card {
  background: var(--dark-3);
  border: 1px solid rgba(245,243,238,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  border-color: rgba(201,168,76,.2);
}
.vehicle-card.featured { border-color: rgba(201,168,76,.25); }
.vehicle-card.luxury { border-color: rgba(201,168,76,.35); }
.vehicle-featured-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(201,168,76,.3);
}
.vehicle-img-wrap { position: relative; overflow: hidden; }
.vehicle-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(10,10,15,.8);
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.vehicle-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s;
}
.vehicle-card:hover .vehicle-img { transform: scale(1.05); }
.vehicle-body { padding: 20px; }
.vehicle-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
}
.vehicle-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.vehicle-specs li {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vehicle-pricing-box {
  background: var(--dark-4);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pricing-item.highlight {
  padding-top: 10px;
  border-top: 1px solid rgba(201,168,76,.15);
}
.pricing-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
}
.pricing-label-dot {
  width: 6px; height: 6px;
  background: var(--muted-2);
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-label-dot.gold { background: var(--gold); }
.pricing-val {
  font-size: .9rem;
  font-weight: 700;
  color: var(--light);
}
.pricing-val.gold { color: var(--gold); }
.pricing-val.na { color: var(--muted-2); font-style: italic; font-size: .8rem; }
.pricing-val small { font-weight: 400; font-size: .75rem; color: var(--muted); }

/* ============================================================
   PAKET TRIP
   ============================================================ */
.paket-section {
  position: relative;
  background: var(--dark);
}
.paket-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.paket-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .12;
}
.paket-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dark) 0%, transparent 30%, transparent 70%, var(--dark) 100%);
}
.paket-section .container { position: relative; z-index: 2; }

/* Explore 6 destinasi card */
.explore-six-card {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 0 60px rgba(201,168,76,.05);
}
.explore-six-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.explore-six-banner-wrap { overflow: hidden; }
.explore-six-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.explore-six-card:hover .explore-six-banner-img { transform: scale(1.04); }
.explore-six-content { padding: 40px; }
.explore-six-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.explore-six-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.explore-six-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.destinations-route {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.dest-route-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dest-route-num {
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.dest-route-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dest-route-name span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--light);
}
.dest-route-name small {
  font-size: .72rem;
  color: var(--muted);
}
.speedboat-facilities {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.facility-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-4);
  border: 1px solid rgba(245,243,238,.08);
  border-radius: 10px;
  padding: 10px 14px;
  flex: 1;
  min-width: 140px;
}
.facility-icon { font-size: 1.3rem; }
.facility-text-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--light);
}
.facility-text-sub {
  font-size: .7rem;
  color: var(--muted);
}
.explore-six-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.explore-six-price { display: flex; flex-direction: column; gap: 4px; }
.from-label { font-size: .75rem; color: var(--muted); }
.price-val { font-size: 1.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.price-val small { font-size: .75rem; font-weight: 400; color: var(--muted); }

/* Tours grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.tour-card {
  background: rgba(22,22,31,.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,243,238,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.tour-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.tour-card.featured { border-color: rgba(201,168,76,.3); }
.tour-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.tour-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tour-card:hover .tour-img-wrap img { transform: scale(1.06); }
.tour-duration-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(8px);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
}
.tour-duration-badge.gold { color: var(--gold); }
.tour-popular-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
}
.tour-body { padding: 22px; }
.tour-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.tour-category.gold { color: var(--gold); }
.tour-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 10px;
}
.tour-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tour-price { display: flex; flex-direction: column; gap: 2px; }
.tour-price .from { font-size: .72rem; color: var(--muted); }
.tour-price .price { font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.tour-price .per { font-size: .72rem; color: var(--muted); }
.paket-cta { text-align: center; margin-top: 16px; }

/* ============================================================
   TENTANG KAMI
   ============================================================ */
.tentang-section { background: var(--dark-2); }
.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.tentang-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tentang-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.tentang-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.badge-label {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(10,10,15,.7);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.tentang-text {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,168,76,.15);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: 1.4rem; }
.stat-label {
  font-size: .75rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   KEUNGGULAN
   ============================================================ */
.keunggulan-section { background: var(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--dark-3);
  border: 1px solid rgba(245,243,238,.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.2);
  box-shadow: var(--shadow-gold);
}
.feature-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon { font-size: 1.4rem; }
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   DESTINASI
   ============================================================ */
.destinasi-section { background: var(--dark-2); }
.destinasi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .5s;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-large { grid-column: span 2; }
.dest-large img { height: 420px; }
.dest-large-right { grid-column: span 2; }
.dest-large-right img { height: 200px; }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: opacity .3s;
}
.dest-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.dest-info p {
  font-size: .75rem;
  color: var(--gold-light);
  margin-top: 2px;
}

/* ============================================================
   TESTIMONI
   ============================================================ */
.testimoni-section { background: var(--dark); }
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.testi-card {
  background: var(--dark-3);
  border: 1px solid rgba(245,243,238,.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .3s, border-color .3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,.2);
}
.testi-card.featured {
  border-color: rgba(201,168,76,.3);
  background: linear-gradient(135deg, var(--dark-3), rgba(201,168,76,.04));
}
.testi-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: .2;
  line-height: 1;
  margin-bottom: -16px;
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,168,76,.3);
}
.testi-name { font-size: .9rem; font-weight: 700; color: var(--light); }
.testi-city { font-size: .78rem; color: var(--muted); }
.testi-verified {
  margin-left: auto;
  font-size: .72rem;
  color: #4CAF50;
  font-weight: 600;
}
.testi-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.trust-stat { text-align: center; padding: 0 36px; }
.trust-score {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.trust-stars { color: var(--gold); font-size: .8rem; margin: 4px 0; }
.trust-label { font-size: .78rem; color: var(--muted); }
.trust-stat-divider {
  width: 1px; height: 48px;
  background: rgba(201,168,76,.15);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,.92) 0%, rgba(10,10,15,.75) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(245,243,238,.7);
  margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--dark-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(245,243,238,.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform .3s, border-color .3s;
  cursor: pointer;
}
.contact-card:hover { transform: translateX(4px); border-color: rgba(201,168,76,.25); }
.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.whatsapp-icon { background: rgba(37,211,102,.15); color: #25D366; }
.email-icon { background: rgba(201,168,76,.12); color: var(--gold); }
.location-icon { background: rgba(100,149,237,.12); color: #6495ED; }
.contact-card-label { font-size: .75rem; color: var(--muted); margin-bottom: 2px; }
.contact-card-value { font-size: .95rem; font-weight: 600; color: var(--light); }
.contact-card-sub { font-size: .78rem; color: var(--muted); }
.contact-card-arrow { margin-left: auto; font-size: 1rem; color: var(--muted); }
.map-placeholder {
  background: var(--dark-3);
  border: 1px solid rgba(245,243,238,.08);
  border-radius: var(--radius);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-overlay-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.map-overlay-text span { color: var(--muted); font-size: .85rem; }
.map-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
  transition: var(--transition);
}
.map-btn:hover { transform: translateY(-2px); }

/* Contact Form */
.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(245,243,238,.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 24px;
}
.form-row { margin-bottom: 16px; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid rgba(245,243,238,.1);
  color: var(--light);
  padding: 13px 15px;
  border-radius: 8px;
  font-size: .9rem;
  transition: var(--transition);
  appearance: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group option { background: var(--dark-4); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-2); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); border-top: 1px solid rgba(201,168,76,.1); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid rgba(245,243,238,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.social-icon:hover { color: var(--gold); border-color: rgba(201,168,76,.25); }
.social-icon.whatsapp-social:hover { color: #25D366; }
.footer-heading {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .85rem;
  color: var(--muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted);
}
.footer-contact-item a { color: var(--muted); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-wa-btn { font-size: .85rem; padding: 10px 22px; }
.footer-bottom {
  border-top: 1px solid rgba(245,243,238,.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.copyright { font-size: .82rem; color: var(--muted-2); }
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--muted-2);
}
.footer-bottom-links a { transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-bottom-links span { opacity: .4; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 700;
  font-size: .88rem;
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tentang-grid { grid-template-columns: 1fr; gap: 40px; }
  .tentang-img-wrap img { height: 360px; }
  .explore-six-inner { grid-template-columns: 1fr; }
  .explore-six-banner-wrap { height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .destinasi-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-large, .dest-large-right { grid-column: span 2; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-right .lang-switcher { display: none; }
  #cta-header { display: none; }

  .hero-headline { font-size: 2.4rem; }
  .hero-trust { gap: 6px; }
  .trust-divider { margin: 0 8px; }

  .booking-form-content { padding: 20px; }
  .booking-fields { grid-template-columns: 1fr; }

  .tentang-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .testimoni-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .testi-trust-bar { gap: 16px; }
  .trust-stat { padding: 12px 20px; }
  .trust-stat-divider { display: none; }

  .destinations-route { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .section { padding: 64px 0; }

  .wa-float-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .armada-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .explore-six-actions { flex-direction: column; align-items: flex-start; }
}
