/* RMJP — Rental Motor Jakarta Pusat
   Vanilla port of the Figma Make (React + Tailwind) design.
   Color scheme: #070D1A / #0A1422 / #0D1829 / #040810 / #0A1220
   Accents: #F4631E (orange) / #FFBE0B (yellow) / #06B6D4 (cyan)
   Fonts: 'Playfair Display' (display) + 'Plus Jakarta Sans' (body)
*/

/* ───────── Reset & Base ───────── */
*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-0: #040810;
  --bg-1: #070D1A;
  --bg-2: #0A1422;
  --bg-3: #0A1220;
  --bg-card: #0D1829;
  --orange: #F4631E;
  --orange-2: #FF7A30;
  --yellow: #FFBE0B;
  --cyan: #06B6D4;
  --green-wa: #25D366;
  --green-wa-dark: #128C7E;
  --text: #EEF2FF;
  --text-2: rgba(238, 242, 255, 0.65);
  --text-3: rgba(238, 242, 255, 0.45);
  --text-4: rgba(238, 242, 255, 0.40);
  --text-5: rgba(238, 242, 255, 0.30);
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.11);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-2: rgba(255, 255, 255, 0.05);
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;
  --radius-full: 9999px;
  --shadow-glow-orange: 0 14px 36px rgba(244, 99, 30, 0.45);
  --shadow-glow-wa: 0 8px 30px rgba(37, 211, 102, 0.45);
  --container: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-1);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(244, 99, 30, 0.45); border-radius: 2px; }

::selection { background: var(--orange); color: #fff; }

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

em { font-style: italic; color: var(--yellow); }

/* ───────── Layout helpers ───────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { position: relative; padding: 80px 0; }
@media (min-width: 1024px) { .section { padding: 112px 0; } }
.text-center { text-align: center; }

/* Section header */
.section-header { margin-bottom: 48px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(244, 99, 30, 0.12);
  border: 1px solid rgba(244, 99, 30, 0.28);
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-desc {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.section-desc-left {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.7;
  max-width: 448px;
  margin: 16px 0 32px;
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.95); }

.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-2)); }
.btn-primary:hover { box-shadow: var(--shadow-glow-orange); }

.btn-nav {
  padding: 8px 20px;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(244, 99, 30, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.btn-lg { padding: 14px 28px; font-size: 14px; }
.btn-sm { padding: 8px 14px; font-size: 12px; }

.btn-wa { width: 100%; padding: 14px 16px; font-size: 14px; box-shadow: var(--shadow-glow-orange); }
.wa-icon { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ───────── Navbar ───────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.frosted {
  background: rgba(7, 13, 26, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  padding: 2px;
}
.logo-svg { width: 16px; height: 14px; }
.logo-text { line-height: 1; }
.logo-name { font-weight: 800; color: #fff; font-size: 15px; letter-spacing: -0.01em; }
.logo-sub { color: rgba(255, 255, 255, 0.4); font-size: 9px; margin-top: 2px; }

/* Main nav */
.main-nav { display: none; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s var(--ease);
}
.main-nav a:hover { color: #fff; }
@media (min-width: 768px) { .main-nav { display: flex; } }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; }
#navWaBtn { display: none; }
@media (min-width: 768px) { #navWaBtn { display: inline-flex; } }

/* Mobile toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translateY(7.5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7.5px); }
@media (min-width: 768px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  background: rgba(7, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 20px;
}
.mobile-menu.open { max-height: 320px; padding: 4px 20px 20px; display: flex; }
.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s var(--ease);
}
.mobile-link:hover { color: #fff; }
.mobile-wa { margin-top: 12px; padding: 12px; text-align: center; width: 100%; }

/* ───────── Wave separator ───────── */
.wave { line-height: 0; }
.wave-top { position: relative; }
.wave-top svg { display: block; width: 100%; height: 70px; }
.wave-top.flip svg { transform: scaleY(-1); }

/* ───────── Hero ───────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  height: 100svh;
}
.hero-bg-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-bg {
  position: absolute;
  inset: -18% 0 -18% 0;
  background: url('assets/illustrations/heroimagenew.png') center 35% / cover no-repeat;
  will-change: transform;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 13, 26, 0.22) 0%, rgba(7, 13, 26, 0.04) 30%, rgba(7, 13, 26, 0.55) 72%, var(--bg-1) 100%);
}
.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 18% 50%, rgba(244, 99, 30, 0.07) 0%, transparent 65%);
}

/* Clouds */
.cloud {
  position: absolute;
  opacity: 0.25;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}
.cloud-1 { top: 96px; left: 6%; }
.cloud-2 { top: 144px; right: 10%; opacity: 0.15; animation-duration: 13s; animation-delay: 4s; }

/* Route dots */
.route-dots { position: absolute; inset: 0; pointer-events: none; }
.route-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.35;
  animation: float 5.5s ease-in-out infinite;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 20px 0;
}
.hero-content::after { content: ''; display: table; clear: both; }

.hero-text { max-width: 100%; }
@media (min-width: 1024px) {
  .hero-content { display: grid; grid-template-columns: 1fr 370px; gap: 32px 56px; align-items: center; }
  .hero-text { max-width: none; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  line-height: 1.04;
  margin: 20px 0;
}
.hero-desc {
  color: var(--text-2);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.stat-num { font-weight: 800; color: #fff; font-size: 20px; line-height: 1; }
.stat-lbl { color: var(--text-4); font-size: 12px; margin-top: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  pointer-events: none;
  animation: float 2.8s ease-in-out infinite;
  z-index: 10;
}
.scroll-indicator span {
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.scroll-svg { width: 16px; height: 26px; }
.scroll-dot { animation: float 1.8s ease-in-out infinite; }

/* ───────── Booking card ───────── */
.hero-booking { display: none; }
@media (min-width: 1024px) { .hero-booking { display: block; } }

.booking-card {
  border-radius: var(--radius-3xl);
  padding: 24px;
  width: 100%;
  background: rgba(10, 18, 33, 0.78);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--line-2);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(244, 99, 30, 0.07);
  position: relative;
}
.booking-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.booking-accent {
  width: 4px;
  height: 24px;
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, var(--orange), var(--yellow));
  flex-shrink: 0;
}
.booking-header h3 { color: #fff; font-weight: 700; font-size: 15px; }
.booking-sub {
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.6;
  padding-left: 14px;
  margin-bottom: 16px;
}

.booking-form { display: flex; flex-direction: column; gap: 12px; }
.form-group { display: block; }
.form-label {
  display: block;
  color: var(--text-3);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-2);
  outline: none;
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-control:focus { border-color: var(--orange); background: rgba(244, 99, 30, 0.08); }
.form-control::placeholder { color: rgba(255, 255, 255, 0.25); }
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23ffffff80' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
select.form-control option { background: var(--bg-card); color: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.booking-foot { text-align: center; color: var(--text-5); font-size: 11px; margin-top: 12px; }

/* Booking success */
.booking-success {
  display: none;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-2xl);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  align-items: center;
  margin-top: 16px;
}
.booking-success.show { display: flex; }
.success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 20px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.booking-success h4 { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.booking-success p { color: var(--text-2); font-size: 12px; }

/* ───────── Explore / Map ───────── */
.explore-section { background: var(--bg-2); }
.map-wrap {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.jakarta-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}
.route-anim {
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 2.8s ease 0.4s, opacity 0.6s ease;
  opacity: 0;
}
.route-anim.in-view { stroke-dashoffset: 0; opacity: 0.85; }
.scooter-on-route { opacity: 0; transition: opacity 0.5s ease 1s; }
.scooter-on-route.in-view { opacity: 1; }

.map-tooltip {
  position: absolute;
  pointer-events: none;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(7, 13, 26, 0.92);
  border: 1px solid rgba(244, 99, 30, 0.4);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 10;
}
.map-tooltip.show { opacity: 1; transform: translateY(0); }
.map-tooltip .tt-desc { display: block; color: var(--text-3); font-weight: 500; font-size: 10px; margin-top: 2px; }

@keyframes pinPulse {
  0% { transform: scale(1); opacity: 0.55; }
  75% { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

/* ───────── Fleet ───────── */
.fleet-section { background: var(--bg-1); padding-top: 96px; }
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }

.fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.fleet-card:hover { transform: scale(1.01); }
.fleet-card-photo {
  position: relative;
  overflow: hidden;
  height: 280px;
  background-color: var(--bg-card);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.fleet-card:hover .fleet-card-photo { transform: scale(1.06); }
.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 26, 0.96) 0%, rgba(7, 13, 26, 0.4) 50%, rgba(7, 13, 26, 0.1) 100%);
}
.fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
}
.fleet-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}
.fleet-info { padding: 20px; background: var(--bg-card); }
.fleet-info-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 8px;
}
.fleet-info-head h3 { color: #fff; font-weight: 800; font-size: 18px; }
.fleet-price-wrap { text-align: right; flex-shrink: 0; }
.fleet-price { display: block; color: var(--orange); font-weight: 800; font-size: 18px; }
.fleet-per { color: var(--text-4); font-size: 12px; }
.fleet-desc { color: var(--text-3); font-size: 12px; line-height: 1.6; margin-bottom: 16px; }
.fleet-specs { display: flex; gap: 12px; margin-bottom: 20px; }
.fleet-spec {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--line);
}
.fleet-spec-val { font-weight: 800; color: #fff; font-size: 14px; }
.fleet-spec-lbl { color: var(--text-4); font-size: 10px; margin-top: 2px; }
.fleet-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 8px 24px rgba(244, 99, 30, 0.35);
  transition: transform 0.2s var(--ease);
}
.fleet-cta:hover { transform: scale(1.02); }
.fleet-foot { margin-top: 32px; text-align: center; }
.fleet-foot p { color: var(--text-5); font-size: 12px; }

/* ───────── Why RMJP ───────── */
.why-section { background: var(--bg-3); overflow: hidden; padding-top: 96px; }
.why-bg-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.1;
  background: url('assets/illustrations/hero_skyline_1784370865623.jpg') center / cover no-repeat;
}
.why-deco-circle {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 384px;
  height: 384px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(244, 99, 30, 0.08) 0%, transparent 70%);
}
.why-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 48px;
  padding-top: 40px;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 48px 64px; align-items: center; } }

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.why-stat {
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-2xl);
  background: var(--glass);
  border: 1px solid var(--line);
}
.why-stat-num { color: #fff; font-weight: 800; font-size: 20px; margin-bottom: 4px; }
.why-stat-lbl { color: var(--text-4); font-size: 11px; line-height: 1.4; }

.why-features {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .why-features { grid-template-columns: 1fr 1fr; } }

.why-feature {
  padding: 16px;
  border-radius: var(--radius-2xl);
  background: var(--glass);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}
.why-feature:hover { transform: scale(1.02); }
.why-feature-icon { font-size: 24px; margin-bottom: 8px; }
.why-feature h4 { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.why-feature p { color: var(--text-3); font-size: 12px; line-height: 1.6; }

/* ───────── Journey ───────── */
.journey-section { background: var(--bg-1); padding-top: 96px; }
.journey-wrap { position: relative; }
.journey-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(244, 99, 30, 0.25) 10%, rgba(244, 99, 30, 0.25) 90%, transparent);
  display: none;
}
@media (min-width: 1024px) { .journey-line { display: block; } }

.journey-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .journey-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .journey-grid { grid-template-columns: repeat(5, 1fr); } }

.journey-step {
  position: relative;
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-3xl);
  background: var(--glass);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}
.journey-step:hover { transform: scale(1.03); }
.journey-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-2xl);
  margin: 0 auto 12px;
  font-size: 24px;
  background: linear-gradient(135deg, rgba(244, 99, 30, 0.2), rgba(255, 190, 11, 0.15));
  border: 1px solid rgba(244, 99, 30, 0.25);
  transition: transform 0.3s var(--ease);
}
.journey-step:hover .journey-step-icon { transform: scale(1.1); }
.journey-step-num { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 6px; }
.journey-step h4 { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.journey-step p { color: var(--text-3); font-size: 12px; line-height: 1.6; }

/* ───────── Destinations ───────── */
.destinations-section { background: var(--bg-2); padding-top: 96px; }
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .destinations-grid { grid-template-columns: repeat(3, 1fr); } }

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  cursor: pointer;
  aspect-ratio: 3/4;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  transition: background 0.5s var(--ease);
  background: linear-gradient(to top, rgba(7, 13, 26, 0.75) 0%, rgba(7, 13, 26, 0.2) 55%, rgba(7, 13, 26, 0.05) 100%);
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(7, 13, 26, 0.95) 0%, rgba(7, 13, 26, 0.2) 55%, rgba(7, 13, 26, 0.05) 100%);
}
.dest-card:hover .dest-card-photo { transform: scale(1.08); }
.dest-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
  z-index: -1;
}
.dest-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}
.dest-tags { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }
.dest-tag {
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}
.dest-name { color: #fff; font-weight: 800; font-size: 18px; line-height: 1.2; }
.dest-sub { color: var(--text-3); font-size: 12px; margin-bottom: 12px; }
.dest-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-3); flex-wrap: wrap; }
.dest-cta {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
  margin-top: 0;
}
.dest-card:hover .dest-cta { max-height: 56px; opacity: 1; margin-top: 12px; }
.dest-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

/* ───────── Testimonials ───────── */
.testimonials-section { background: var(--bg-1); overflow: hidden; padding-top: 96px; }
.testimonials-bg {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background: url('assets/illustrations/hero_skyline_1784370865623.jpg') center / cover no-repeat;
}
.testimonials-grid {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  padding: 20px;
  background: var(--glass);
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  height: 160px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
}
.testimonial-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7, 13, 26, 0.7) 100%);
}
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; font-size: 16px; }
.testimonial-quote {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(244, 99, 30, 0.3), rgba(255, 190, 11, 0.3));
}
.testimonial-name { color: #fff; font-weight: 700; font-size: 14px; }
.testimonial-origin { color: var(--text-4); font-size: 12px; }

.testimonials-badge {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.testimonials-badge > div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--glass-2);
  border: 1px solid var(--line-2);
}
.badge-icon { font-size: 24px; }
.badge-num { color: #fff; font-weight: 800; font-size: 14px; }
.badge-lbl { color: var(--text-4); font-size: 12px; }

/* ───────── CTA ───────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
  padding: 96px 0 144px;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('assets/illustrations/hero_skyline_1784370865623.jpg') center / cover no-repeat;
  transform: scale(1.04);
  filter: brightness(0.3) saturate(1.2);
}
.cta-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(244, 99, 30, 0.1) 0%, transparent 70%);
}
.cta-cloud-1 { top: 40px; left: 10%; opacity: 0.3; }
.cta-cloud-2 { bottom: 64px; right: 12%; opacity: 0.2; animation-delay: 3s; animation-duration: 10s; }
.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 768px;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.04;
  margin: 20px 0 16px;
}
.cta-desc {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 auto 32px;
  max-width: 480px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ───────── Footer ───────── */
.main-footer { position: relative; overflow: hidden; background: var(--bg-0); }
.skyline-wrap { position: relative; width: 100%; overflow: hidden; height: 140px; }
.skyline-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.footer-content { position: relative; z-index: 10; padding: 40px 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-desc { color: var(--text-3); font-size: 12px; line-height: 1.7; max-width: 320px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.social-chip {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-3);
  font-size: 11px;
  font-weight: 500;
  background: var(--glass-2);
  border: 1px solid var(--line-2);
  transition: color 0.2s var(--ease);
}
.social-chip:hover { color: #fff; }

.footer-title { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-3); font-size: 12px; transition: color 0.2s var(--ease); }
.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 12px; color: var(--text-3); }
.footer-contact li { display: flex; gap: 8px; align-items: center; }
.footer-contact a { color: var(--text-3); transition: color 0.2s var(--ease); }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--text-5);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: var(--text-5); transition: color 0.2s var(--ease); }
.footer-bottom-links a:hover { color: rgba(255, 255, 255, 0.6); }

/* ───────── Floating WhatsApp button ───────── */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-wa), var(--green-wa-dark));
  box-shadow: var(--shadow-glow-wa);
  transition: transform 0.2s var(--ease);
}
.floating-wa:hover { transform: scale(1.05); }
.floating-wa:active { transform: scale(0.95); }

/* ───────── Gallery Section ───────── */
.gallery-section { background: var(--bg-3); padding-top: 96px; overflow: hidden; }

/* ───────── Page Header (sub pages) ───────── */
.page-header-section {
  background: var(--bg-1);
  padding-top: 140px;
  padding-bottom: 40px;
  text-align: center;
}
.page-header-section .section-label { margin-bottom: 16px; }
.page-header-section .section-desc { margin-left: auto; margin-right: auto; }

/* ───────── Pricing Page ───────── */
.pricing-section { background: var(--bg-2); padding-top: 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-3xl);
  padding: 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 99, 30, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.pricing-card.featured {
  border-color: rgba(244, 99, 30, 0.5);
  background: linear-gradient(180deg, rgba(244, 99, 30, 0.06), var(--bg-card));
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  white-space: nowrap;
}
.pricing-tier { color: var(--text-3); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-name { color: #fff; font-weight: 800; font-size: 20px; margin: 6px 0 12px; }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.pricing-val { color: var(--orange); font-weight: 800; font-size: 32px; font-family: var(--font-display); }
.pricing-per { color: var(--text-4); font-size: 13px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.pricing-feature { display: flex; align-items: flex-start; gap: 8px; color: var(--text-2); font-size: 13px; }
.pricing-feature::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.pricing-feature.muted::before { content: '×'; color: var(--text-5); }
.pricing-feature.muted { color: var(--text-5); text-decoration: line-through; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  transition: transform 0.2s var(--ease);
}
.pricing-cta:hover { transform: scale(1.02); }
.pricing-cta.outline {
  background: transparent;
  border: 1px solid var(--line-2);
  color: #fff;
}
.pricing-cta.outline:hover { background: rgba(255, 255, 255, 0.06); }

.pricing-table-wrap { overflow-x: auto; margin-top: 48px; }
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-width: 600px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.pricing-table th {
  background: rgba(244, 99, 30, 0.08);
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pricing-table td { color: var(--text-2); }
.pricing-table td:first-child { color: #fff; font-weight: 600; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(255, 255, 255, 0.02); }

/* ───────── FAQ Page ───────── */
.faq-page-section { background: var(--bg-2); padding-top: 0; }
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}
.faq-cat-btn {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--glass);
  border: 1px solid var(--line);
  transition: all 0.2s var(--ease);
}
.faq-cat-btn.active, .faq-cat-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  border-color: transparent;
}
.faq-search {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 32px;
  display: block;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  background: var(--glass);
  border: 1px solid var(--line-2);
  color: #fff;
  font-size: 14px;
  outline: none;
}
.faq-search:focus { border-color: var(--orange); }
.faq-search::placeholder { color: var(--text-5); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.gallery-filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--glass);
  border: 1px solid var(--line);
  transition: all 0.2s var(--ease);
}
.gallery-filter-btn:hover { color: #fff; background: rgba(244, 99, 30, 0.1); border-color: rgba(244, 99, 30, 0.3); }
.gallery-filter-btn.active { background: linear-gradient(135deg, var(--orange), var(--orange-2)); color: #fff; border-color: transparent; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--bg-card);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}
.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 99, 30, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(13, 24, 41, 0.6), rgba(7, 13, 26, 0.9));
  transition: transform 0.5s var(--ease);
}
.gallery-card:hover .gallery-card-img { transform: scale(1.05); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 26, 0.95) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-info { color: #fff; }
.gallery-card-info h4 { font-size: 13px; font-weight: 700; }
.gallery-card-info p { font-size: 11px; color: var(--text-3); margin-top: 2px; }
.gallery-card-cat {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(244, 99, 30, 0.85);
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* ───────── FAQ Section ───────── */
.faq-section { background: var(--bg-1); padding-top: 96px; }
.faq-container {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item:hover { border-color: rgba(244, 99, 30, 0.3); }
.faq-item.active { background: rgba(244, 99, 30, 0.04); border-color: rgba(244, 99, 30, 0.4); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  text-align: left;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
}
.faq-question-icon {
  width: 20px;
  height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.active .faq-question-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 20px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 320px; padding: 0 20px 18px; }

.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  text-align: center;
}
.faq-cta p { color: var(--text-3); font-size: 14px; }
@media (min-width: 640px) {
  .faq-cta { flex-direction: row; justify-content: center; }
}

/* ───────── Footer Map ───────── */
.footer-grid { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; }
}
.footer-map {
  margin-top: 32px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.footer-map iframe { display: block; }

/* ───────── Animations ───────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}
@keyframes floatR {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes driftLeft {
  0% { transform: translateX(0); }
  50% { transform: translateX(-18px); }
  100% { transform: translateX(0); }
}

/* Fade-up (when not in view yet, stays hidden) */
.fade-up { opacity: 0; }
.fade-up.in-view {
  animation: fadeUp 0.85s var(--ease) forwards;
}

/* ───────── Responsive tweaks ───────── */
@media (max-width: 767px) {
  .hero-actions .btn,
  .hero-stats { flex-wrap: wrap; }
  .footer-grid { text-align: left; }
  .floating-wa span,
  .floating-wa { padding: 14px; }
  .floating-wa .wa-icon { width: 20px; height: 20px; }
}

/* Hide floating WA text on small screens */
@media (max-width: 640px) {
  .floating-wa { padding: 14px; }
  .floating-wa::after { content: 'Chat'; font-size: 12px; }
  .floating-wa .wa-icon { width: 18px; height: 18px; }
  #floatingWa { font-size: 0; }
  #floatingWa .wa-icon { font-size: 18px; }
}
