/* ================================================================
 * WOLU TOUR — STYLESHEET
 * File: css/style.css
 * ================================================================ */

/* ================================================================
 * CSS VARIABLES
 * ================================================================ */
:root {
  --green-deep:  #0F3D2E;
  --green-mid:   #1F7A63;
  --green-dark:  #0A291E;
  --green-bg:    #0B1F1A;
  --gold:        #C9A96E;
  --gold-dark:   #b0935d;
  --white:       #ffffff;
  --off-white:   #F8F9FA;
  --gray-light:  #f1f3f5;
  --gray-text:   #6B7280;
  --gray-dark:   #374151;
  --font:        'Poppins', sans-serif;
  --r-xl:        1.5rem;
  --r-2xl:       2rem;
  --r-full:      9999px;
  --sh-sm:       0 2px 8px  rgba(15,61,46,.06);
  --sh-md:       0 8px 24px rgba(15,61,46,.10);
  --sh-lg:       0 16px 48px rgba(15,61,46,.16);
  --sh-xl:       0 24px 64px rgba(15,61,46,.20);
  --ease:        all .35s cubic-bezier(.4,0,.2,1);
}

/* ================================================================
 * RESET & BASE
 * ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { font-family: var(--font); color: var(--gray-dark); background: var(--white);
         -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6,p,span,a,button,input,select,textarea { font-family: var(--font); }
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ================================================================
 * SCROLL REVEAL
 * ================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .10s; }
.reveal-delay-2 { transition-delay: .20s; }
.reveal-delay-3 { transition-delay: .30s; }
.reveal-delay-4 { transition-delay: .40s; }

/* ================================================================
 * LAYOUT
 * ================================================================ */
.container   { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 5.5rem 0; }
section      { position: relative; }

/* Section header */
.section-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
}
.section-title.dark  { color: var(--green-deep); }
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.025rem; color: var(--gray-text);
  line-height: 1.7; max-width: 560px; margin-top: .75rem;
}
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: .75rem auto 0; }

/* ================================================================
 * BUTTONS
 * ================================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.875rem;
  background: var(--gold); color: var(--green-deep);
  font-weight: 700; font-size: .925rem; border-radius: var(--r-xl);
  transition: var(--ease); box-shadow: 0 8px 24px rgba(201,169,110,.3);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,110,.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.875rem;
  background: rgba(255,255,255,.08); color: var(--white);
  font-weight: 500; font-size: .925rem; border-radius: var(--r-xl);
  border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px);
  transition: var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.4rem;
  background: var(--green-mid); color: var(--white);
  font-weight: 600; font-size: .875rem; border-radius: var(--r-full);
  border: 1.5px solid rgba(255,255,255,.15); transition: var(--ease);
  white-space: nowrap;
}
.btn-wa:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,169,110,.3); }

/* ================================================================
 * NAVBAR
 * ================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000; transition: var(--ease);
}
.navbar.scrolled {
  background: rgba(10,41,30,.97); backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex; align-items: center; gap: .625rem; z-index: 60;
}
.navbar-logo-img { height: 44px; width: auto; object-fit: contain; }
.navbar-logo span {
  font-size: 1.6rem; font-weight: 700; color: var(--gold); letter-spacing: -.01em;
}
.navbar-nav { display: none; align-items: center; gap: 2.25rem; }
.navbar-nav a {
  font-size: .875rem; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.85); position: relative; transition: color .2s;
}
.navbar-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s;
}
.navbar-nav a:hover { color: var(--gold); }
.navbar-nav a:hover::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: .3rem;
  font-size: .875rem; font-weight: 500; letter-spacing: .02em;
  color: rgba(255,255,255,.85); background: none; border: none; padding: 0;
  cursor: pointer; transition: color .2s; position: relative;
}
.nav-dropdown-toggle::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s;
}
.nav-dropdown-toggle:hover { color: var(--gold); }
.nav-dropdown-toggle:hover::after { width: 100%; }
.nav-dropdown-toggle svg { transition: transform .3s; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(10,41,30,.97); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  padding: .625rem; min-width: 230px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s; z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: .75rem;
  padding: .7rem 1rem; border-radius: 10px;
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.8);
  transition: background .2s, color .2s;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.08); color: var(--gold); }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a .dd-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(255,255,255,.06); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.dd-divider { height: 1px; background: rgba(255,255,255,.08); margin: .375rem 0; }

.navbar-cta { display: none; }
.navbar-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px; color: var(--white); transition: var(--ease); z-index: 60;
}
.navbar-toggle:hover { background: rgba(255,255,255,.15); border-color: var(--gold); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; background: var(--green-dark); z-index: 50;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1.75rem;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  padding: 2rem;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: 1.75rem; font-weight: 700; color: var(--white); transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-wa { font-size: 1rem; padding: .875rem 2rem; margin-top: .5rem; }
.mobile-submenu {
  display: flex; flex-direction: column; align-items: center; gap: .75rem; width: 100%;
}
.mobile-submenu a { font-size: 1.05rem; color: rgba(255,255,255,.65); }
.mobile-submenu a:hover { color: var(--gold); }

@media (min-width: 1024px) {
  .navbar-nav { display: flex; }
  .navbar-cta { display: block; }
  .navbar-toggle { display: none; }
  .navbar-logo-img { height: 44px; }
}

/* ================================================================
 * HERO
 * ================================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--green-deep);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  transform: scale(1.04); transition: transform 8s ease;
}
.hero-bg img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,41,30,.92) 0%, rgba(15,61,46,.75) 50%, rgba(10,41,30,.88) 100%);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, rgba(10,41,30,1), transparent);
}
.hero-content {
  position: relative; z-index: 10; max-width: 1280px;
  margin: 0 auto; padding: 7rem 2rem 4rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-full); color: var(--gold);
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.75rem; backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.75rem); font-weight: 800;
  color: var(--white); line-height: 1.08; letter-spacing: -.02em;
  margin-bottom: 1.25rem; max-width: 700px;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8); font-weight: 300;
  line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-social-proof {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl); backdrop-filter: blur(12px);
  max-width: 400px; margin-bottom: 3rem;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--green-deep); object-fit: cover;
  margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }
.hero-social-proof-text { flex: 1; }
.hero-stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 3px; }
.hero-social-proof-text p { font-size: .78rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* Stats Marquee */
.hero-stats-marquee-wrap {
  position: relative; overflow: hidden; width: 100%; max-width: 820px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.hero-stats-marquee-wrap:hover .hero-stats-track { animation-play-state: paused; }
.hero-stats-track {
  display: flex; gap: .875rem; width: max-content;
  animation: marquee-stats 22s linear infinite;
}
@keyframes marquee-stats {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.stat-card {
  display: flex; align-items: center; gap: .875rem;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); backdrop-filter: blur(12px);
  flex-shrink: 0; white-space: nowrap;
}
.stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(201,169,110,.15); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.stat-card-num { font-size: 1.25rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-card-label { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ================================================================
 * QUICK ACCESS BAR
 * ================================================================ */
.qab-sentinel { height: 0; }
.qab-wrapper {
  position: relative; z-index: 200;
  margin-top: -32px; padding: 0 1.5rem;
  pointer-events: none;
}
.qab-inner {
  max-width: 850px; margin: 0 auto;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(15,61,46,.12), 0 2px 6px rgba(15,61,46,.06);
  border: 1px solid rgba(15,61,46,.07);
  padding: 0 1.25rem; height: 70px;
  display: flex; align-items: center; justify-content: space-around;
  gap: .25rem; pointer-events: all;
  transition: box-shadow .3s, border-radius .3s, background .3s;
}
/* Sticky */
.qab-wrapper.is-sticky {
  position: fixed; top: 80px; left: 0; right: 0;
  margin-top: 0; padding: 6px 1.5rem 0;
  pointer-events: none;
  animation: qabIn .3s cubic-bezier(.4,0,.2,1) both;
}
@keyframes qabIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.qab-wrapper.is-sticky .qab-inner {
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(15,61,46,.16);
  pointer-events: all;
}
.qab-item {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px;
  padding: .4rem .875rem; border-radius: 12px;
  cursor: pointer; text-decoration: none;
  transition: transform .25s, background .2s; flex: 1; min-width: 0;
  position: relative; background: transparent; color: inherit;
}
.qab-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px; height: 2px; border-radius: 1px;
  background: var(--green-mid); transition: transform .25s;
}
.qab-item:hover { transform: translateY(-3px); background: rgba(31,122,99,.06); }
.qab-item:hover::after { transform: translateX(-50%) scaleX(1); }
.qab-item.qab-booking {
  background: var(--green-mid); border-radius: 12px; flex: 1.2;
}
.qab-item.qab-booking:hover { background: var(--green-deep); box-shadow: 0 6px 20px rgba(15,61,46,.25); transform: translateY(-3px); }
.qab-item.qab-booking::after { display: none; }
.qab-item.qab-booking .qab-icon,
.qab-item.qab-booking .qab-label { color: var(--white); }
.qab-icon { font-size: 1.2rem; line-height: 1; display: block; }
.qab-label { font-size: .68rem; font-weight: 600; color: var(--green-deep); letter-spacing: .01em; white-space: nowrap; }
.qab-divider { width: 1px; height: 28px; background: rgba(15,61,46,.1); flex-shrink: 0; }

@media (max-width: 480px) {
  .qab-wrapper { padding: 0 .875rem; margin-top: -28px; }
  .qab-wrapper.is-sticky { padding: 6px .875rem 0; top: 70px; }
  .qab-inner {
    padding: 0 .625rem; height: 62px;
    justify-content: flex-start; overflow-x: auto; overflow-y: visible;
    -ms-overflow-style: none; scrollbar-width: none;
  }
  .qab-inner::-webkit-scrollbar { display: none; }
  .qab-item { min-width: 58px; padding: .35rem .625rem; }
  .qab-divider { display: none; }
  .qab-icon { font-size: 1rem; }
  .qab-label { font-size: .62rem; }
}

/* ================================================================
 * TENTANG KAMI
 * ================================================================ */
.about-section { background: var(--green-bg); padding: 5rem 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img-wrap { position: relative; border-radius: var(--r-2xl); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--gold); color: var(--green-deep);
  padding: .875rem 1.25rem; border-radius: var(--r-xl);
  text-align: center; box-shadow: var(--sh-lg);
}
.about-img-badge strong { display: block; font-size: 1.25rem; font-weight: 800; }
.about-img-badge span  { font-size: .72rem; font-weight: 600; }
.about-text-wrap { color: rgba(255,255,255,.9); }
.about-text-wrap p { font-size: .95rem; line-height: 1.8; color: rgba(255,255,255,.7); margin-bottom: 1rem; }

/* ================================================================
 * LAYANAN — TABS
 * ================================================================ */
.layanan-section { background: var(--off-white); padding: 5.5rem 0; }
.layanan-tab-bar {
  display: flex; flex-wrap: wrap; gap: .625rem;
  justify-content: center; margin-bottom: 2.75rem;
}
.layanan-tab {
  padding: .55rem 1.35rem; border-radius: var(--r-full);
  font-size: .875rem; font-weight: 600;
  border: 1.5px solid rgba(15,61,46,.15);
  color: var(--gray-text); background: var(--white);
  transition: var(--ease); cursor: pointer;
}
.layanan-tab:hover { border-color: var(--green-mid); color: var(--green-mid); }
.layanan-tab.active {
  background: var(--green-deep); color: var(--white);
  border-color: var(--green-deep);
  box-shadow: 0 4px 16px rgba(15,61,46,.2);
}
/* Panel visibility */
.layanan-panel { display: none; }
.layanan-panel.active { display: block; animation: panelFadeIn .35s ease; }
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------------------------------
 * PAKET WISATA cards
 * ---------------------------------------------------------------- */
.pw-grid {
  display: grid;
  /* Desktop: 3 card per baris */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}
/* Tablet: 2 card per baris */
@media (max-width: 1024px) {
  .pw-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Mobile: 1 card per baris */
@media (max-width: 640px) {
  .pw-grid { grid-template-columns: 1fr; }
}
.pw-card {
  background: var(--white); border-radius: var(--r-2xl);
  border: 1px solid rgba(15,61,46,.07); box-shadow: var(--sh-sm);
  overflow: hidden; transition: var(--ease);
  display: flex; flex-direction: column;
  height: 100%;   /* sama tinggi dalam satu baris */
}
.pw-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); border-color: rgba(201,169,110,.2); }
.pw-img-wrap { position: relative; overflow: hidden; height: 220px; }
.pw-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pw-card:hover .pw-img-wrap img { transform: scale(1.05); }
.pw-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,41,30,.7) 0%, transparent 60%);
}
.pw-badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .25rem .75rem; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.pw-img-meta {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; justify-content: space-between; align-items: center;
}
.pw-durasi {
  display: flex; align-items: center; gap: 4px;
  font-size: .75rem; font-weight: 600; color: var(--white);
}
.pw-tipe {
  font-size: .7rem; font-weight: 600;
  background: rgba(201,169,110,.2); border: 1px solid rgba(201,169,110,.4);
  color: var(--gold); padding: .2rem .6rem; border-radius: var(--r-full);
  backdrop-filter: blur(6px);
}
.pw-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.pw-nama { font-size: 1.175rem; font-weight: 700; color: var(--green-deep); margin-bottom: .5rem; }
.pw-jadwal-info {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--gray-text); margin-bottom: 1rem;
}
.pw-highlights { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; flex: 1; }
.pw-highlights li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--gray-dark);
}
.pw-highlights li svg { color: var(--green-mid); flex-shrink: 0; }
.pw-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding-top: 1.25rem; border-top: 1px solid rgba(15,61,46,.07);
}
.pw-harga { display: flex; align-items: baseline; gap: .25rem; flex-wrap: wrap; }
.pw-mulai { font-size: .7rem; color: var(--gray-text); }
.pw-price { font-size: 1.1rem; font-weight: 800; color: var(--green-deep); }
.pw-satuan { font-size: .72rem; color: var(--gray-text); }
.btn-pw-book {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.1rem; background: var(--green-mid); color: var(--white);
  font-weight: 600; font-size: .8rem; border-radius: var(--r-xl);
  transition: var(--ease); white-space: nowrap; flex-shrink: 0;
}
.btn-pw-book:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(15,61,46,.25); }

/* ----------------------------------------------------------------
 * TRAVEL REGULER cards
 * ---------------------------------------------------------------- */
.tr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.tr-card {
  background: var(--white); border-radius: var(--r-2xl);
  border: 1px solid rgba(15,61,46,.08); box-shadow: var(--sh-sm);
  overflow: hidden; transition: var(--ease); display: flex; flex-direction: column;
}
.tr-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(201,169,110,.2); }
.tr-card-top {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  padding: 1.375rem 1.75rem 1.25rem;
  /* Dua baris: rute di atas, harga di bawah */
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.tr-rute-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;       /* rute panjang bisa wrap ke baris berikutnya */
}
.tr-kota  {
  font-size: .975rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.tr-arrow {
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
/* Harga baris kedua — menonjol, selalu tampil penuh */
.tr-harga {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.tr-harga span {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  align-self: flex-end;
  padding-bottom: .1rem;
}
.tr-card-body { padding: 1.25rem 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.tr-info-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; font-size: .86rem;
}
.tr-label {
  display: flex; align-items: center; gap: .35rem;
  color: var(--gray-text); font-weight: 500; flex-shrink: 0;
}
.tr-value { color: var(--gray-dark); font-weight: 600; text-align: right; }
.tr-jadwal-label { font-size: .75rem; font-weight: 700; color: var(--green-deep); margin-top: .25rem; }
.tr-jadwal-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .375rem; }
.tr-chip {
  padding: .25rem .625rem; background: rgba(31,122,99,.08);
  color: var(--green-mid); font-size: .75rem; font-weight: 700;
  border-radius: var(--r-full); border: 1px solid rgba(31,122,99,.15);
}
.btn-tr-book {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin: 1.25rem 1.75rem 1.5rem;
  padding: .75rem 1rem; background: var(--green-mid); color: var(--white);
  font-weight: 600; font-size: .875rem; border-radius: var(--r-xl);
  transition: var(--ease);
}
.btn-tr-book:hover { background: var(--green-deep); box-shadow: 0 6px 18px rgba(15,61,46,.25); }

/* ----------------------------------------------------------------
 * RENTAL MOBIL cards
 * ---------------------------------------------------------------- */
/* ----------------------------------------------------------------
 * RENTAL MOBIL cards
 * Gambar 1:1 (square), card sama tinggi, grid 3-2-1 kolom
 * ---------------------------------------------------------------- */
.rm-grid {
  display: grid;
  /* Desktop: 3 card per baris */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  /* Semua card sama tinggi */
  align-items: stretch;
}
/* Tablet: 2 card per baris */
@media (max-width: 1024px) {
  .rm-grid { grid-template-columns: repeat(2, 1fr); }
}
/* Mobile: 1 card per baris */
@media (max-width: 640px) {
  .rm-grid { grid-template-columns: 1fr; }
}

.rm-card {
  background: var(--white); border-radius: var(--r-2xl);
  border: 1px solid rgba(15,61,46,.07); box-shadow: var(--sh-sm);
  overflow: hidden; transition: var(--ease);
  display: flex; flex-direction: column;
  /* Paksa semua card sama tinggi dalam satu baris */
  height: 100%;
}
.rm-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(201,169,110,.2); }

/* Gambar 1:1 — aspect ratio persegi, tidak gepeng */
.rm-img-wrap {
  position: relative;
  overflow: hidden;
  /* aspect-ratio 1:1 menggantikan height:180px yang tidak konsisten */
  aspect-ratio: 1 / 1;
  width: 100%;
  /* Fallback untuk browser lama */
  flex-shrink: 0;
}
.rm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* tidak gepeng, crop center */
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.rm-card:hover .rm-img-wrap img { transform: scale(1.05); }
.rm-badge-avail {
  position: absolute; top: .875rem; right: .875rem;
  padding: .2rem .7rem; border-radius: var(--r-full);
  font-size: .68rem; font-weight: 700;
  background: rgba(31,122,99,.9); color: var(--white); backdrop-filter: blur(4px);
}
.rm-badge-habis { background: rgba(107,114,128,.9); }
.rm-body {
  padding: 1.375rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  /* flex:1 memaksa body mengisi sisa ruang card → tombol selalu di bawah */
  flex: 1;
}
.rm-nama { font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin-bottom: .5rem; }
.rm-specs {
  display: flex; gap: 1rem; font-size: .8rem;
  color: var(--gray-text); margin-bottom: 1rem;
}
.rm-specs span { display: flex; align-items: center; gap: .35rem; }
.rm-harga-wrap {
  display: flex; align-items: center; gap: 0;
  background: var(--off-white); border-radius: var(--r-xl);
  overflow: hidden; margin-bottom: .875rem;
}
.rm-harga-item {
  flex: 1; padding: .75rem 1rem; text-align: center;
}
.rm-harga-label { display: block; font-size: .68rem; font-weight: 600; color: var(--gray-text); margin-bottom: 2px; }
.rm-harga-val   { font-size: .95rem; font-weight: 800; color: var(--green-deep); }
.rm-harga-divider { width: 1px; background: rgba(15,61,46,.1); align-self: stretch; }
.rm-ket {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--green-mid); font-weight: 500; margin-bottom: 1rem;
}
.rm-ket svg { color: var(--green-mid); }
.btn-rm-book {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1rem; background: var(--green-mid); color: var(--white);
  font-weight: 600; font-size: .875rem; border-radius: var(--r-xl);
  transition: var(--ease); margin-top: auto;
}
.btn-rm-book:hover { background: var(--green-deep); box-shadow: 0 6px 18px rgba(15,61,46,.25); }

/* ----------------------------------------------------------------
 * RESERVASI cards
 * ---------------------------------------------------------------- */
.res-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.res-card {
  background: var(--white); border-radius: var(--r-2xl);
  border: 1px solid rgba(15,61,46,.07); box-shadow: var(--sh-sm);
  padding: 2rem 1.75rem; text-align: center;
  transition: var(--ease); display: flex; flex-direction: column;
  align-items: center;
}
.res-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(201,169,110,.2); }
.res-icon { font-size: 2.5rem; margin-bottom: 1rem; line-height: 1; }
.res-judul { font-size: 1.1rem; font-weight: 700; color: var(--green-deep); margin-bottom: .625rem; }
.res-desc  { font-size: .875rem; color: var(--gray-text); line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
.btn-res {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.25rem; background: rgba(31,122,99,.1);
  color: var(--green-mid); font-weight: 600; font-size: .825rem;
  border-radius: var(--r-xl); border: 1.5px solid rgba(31,122,99,.2);
  transition: var(--ease);
}
.btn-res:hover { background: var(--green-mid); color: var(--white); border-color: var(--green-mid); }

/* ================================================================
 * TESTIMONI — Auto-scroll Marquee
 * ================================================================ */
.testimonial-section { background: var(--white); padding: 5rem 0; overflow: hidden; }
.testimonial-marquee-wrap {
  overflow: hidden; position: relative; margin-top: 2.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.testimonial-marquee-wrap:hover .testimonial-track { animation-play-state: paused; }
.testimonial-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: marquee-testi 40s linear infinite;
}
@keyframes marquee-testi {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial-card {
  background: var(--white); border-radius: var(--r-2xl);
  border: 1px solid rgba(15,61,46,.07); box-shadow: var(--sh-sm);
  padding: 1.75rem; width: calc(100vw - 3rem); max-width: 360px;
  flex-shrink: 0; display: flex; flex-direction: column;
  transition: box-shadow .3s;
}
.testimonial-card:hover { box-shadow: var(--sh-lg); }
.testimonial-stars { display: flex; gap: 2px; color: #FBBC04; margin-bottom: 1rem; }
.review-text { font-size: .9rem; color: var(--gray-text); line-height: 1.75; font-style: italic; font-weight: 500; flex: 1; margin-bottom: 1.25rem; }
.testimonial-author-clean {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding-top: 1rem; border-top: 1px solid rgba(15,61,46,.08);
  margin-top: auto;
}
.testimonial-author-clean h4   { font-weight: 700; color: var(--green-deep); font-size: .9rem; margin-bottom: 2px; }
.testimonial-author-clean > div:first-child span { font-size: .76rem; color: var(--green-mid); font-weight: 500; }
.google-badge-small {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .6rem; background: #f8f8f8;
  border: 1px solid rgba(0,0,0,.08); border-radius: var(--r-full);
  font-size: .68rem; font-weight: 700; color: #5f6368;
  white-space: nowrap; flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,.07);
}
@media (min-width: 768px)  { .testimonial-card { width: 340px; } }
@media (min-width: 1024px) { .testimonial-card { width: 360px; } }

/* ================================================================
 * CTA
 * ================================================================ */
.cta-section {
  padding: 7rem 0; background: var(--green-deep); position: relative; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .15; }
.cta-bg-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,41,30,.95), rgba(31,122,99,.6), rgba(10,41,30,.95));
}
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-badge {
  display: inline-block; padding: .4rem 1rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-full); color: var(--gold);
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.cta-content h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800;
  color: var(--white); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.25rem;
}
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 2.5rem; }
.btn-cta {
  display: inline-flex; align-items: center; gap: .625rem;
  padding: 1.1rem 2.5rem; background: var(--gold); color: var(--green-deep);
  font-weight: 800; font-size: 1rem; border-radius: var(--r-2xl);
  transition: var(--ease); box-shadow: 0 12px 36px rgba(201,169,110,.3);
}
.btn-cta:hover { background: var(--gold-dark); transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 48px rgba(201,169,110,.4); }

/* ================================================================
 * FAQ
 * ================================================================ */
.faq-section { background: var(--off-white); padding: 5.5rem 0; }
.faq-list { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: .875rem; }
.faq-item {
  background: var(--white); border-radius: var(--r-xl);
  border: 1.5px solid rgba(15,61,46,.08); overflow: hidden; transition: var(--ease);
}
.faq-item.open { border-color: var(--green-mid); box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.375rem 1.5rem; cursor: pointer; text-align: left;
  background: none; border: none; gap: 1rem;
}
.faq-q h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); flex: 1; }
.faq-item.open .faq-q h3 { color: var(--green-mid); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  color: var(--green-mid); flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--green-mid); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; color: var(--gray-text); font-size: .925rem; line-height: 1.75; }

/* ================================================================
 * FOOTER
 * ================================================================ */
.footer { background: var(--green-dark); color: var(--white); padding-top: 5rem; position: relative; overflow: hidden; }
.footer-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--green-mid), var(--gold), transparent);
}
.footer-cta-strip {
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  border-radius: var(--r-2xl); padding: 2.25rem 2rem; margin-bottom: 4rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start; border: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) {
  .footer-cta-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-cta-strip h3 { font-size: 1.375rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.footer-cta-strip p  { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-logo-img { width: 68px; height: 68px; object-fit: contain; margin-bottom: .625rem; }
.footer-brand-name { font-size: 1.6rem; font-weight: 800; color: var(--gold); margin-bottom: .625rem; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .625rem; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--ease);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--green-deep); transform: translateY(-2px); }
.footer-col h4 { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; letter-spacing: .04em; }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.5); display: flex;
  align-items: center; gap: .5rem; transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-mid); flex-shrink: 0; }
.footer-contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.footer-contact-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,.06); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.75rem 0; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-bottom p { font-size: .825rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal a:hover { color: var(--gold); }

/* ================================================================
 * WA FLOAT BUTTON
 * ================================================================ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 500;
  display: flex; align-items: center; gap: .75rem;
}
.wa-float-label {
  background: var(--white); color: var(--green-deep);
  font-size: .8rem; font-weight: 700; padding: .5rem 1rem;
  border-radius: var(--r-full); box-shadow: var(--sh-md);
  opacity: 0; transform: translateX(8px);
  transition: var(--ease); pointer-events: none; white-space: nowrap;
}
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  color: var(--white); box-shadow: 0 8px 32px rgba(37,211,102,.35);
  transition: var(--ease);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.45); }
