/* ==========================================================================
   SUNSEA KARIMUNJAWA - CHAPTER I: TOUR PACKAGES & EXPEDITIONS ENGINE
   File: css/paket.css (Pure Native Zero-Dependency Stylesheet)
   Dark Ocean Luxury Theme: #030712 | #00f0ff | #eab308 | Glassmorphism
   Matching https://www.sunseakarimunjawa.id/paket
   ========================================================================== */

:root {
  --bg-dark: #030712;
  --bg-deep: #020617;
  --bg-card: rgba(10, 22, 38, 0.65);
  --bg-glass: rgba(15, 23, 42, 0.55);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --color-cyan: #00f0ff;
  --color-cyan-glow: rgba(0, 240, 255, 0.4);
  --color-gold: #eab308;
  --color-gold-glow: rgba(234, 179, 8, 0.4);
  --color-emerald: #10b981;
  --color-emerald-glow: rgba(16, 185, 129, 0.4);
  --color-purple: #c084fc;
  
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  --ease-spring: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  position: relative;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   1. FULLSCREEN BACKGROUND VIDEO & CINEMATIC DEPTH OVERLAY
   -------------------------------------------------------------------------- */
.ocean-bg-container {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#ocean-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: blur(1.5px) brightness(0.85);
  transition: opacity 1s ease;
}

.ocean-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(3, 10, 25, 0.3) 0%, rgba(3, 7, 18, 0.94) 85%);
  pointer-events: none;
}

.ocean-glow-ambient {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 40vh;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(234, 179, 8, 0.05) 50%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   2. GLASSMORPHISM FLOATING NAVIGATION BAR
   -------------------------------------------------------------------------- */
.paket-header {
  position: fixed;
  top: 16px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 16px;
  pointer-events: none;
}

.paket-nav {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 14px 6px 18px;
  border-radius: 9999px;
  background: rgba(10, 20, 38, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(0, 240, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  max-width: 1180px;
  width: 100%;
  transition: all 0.35s var(--ease-spring);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand-logo-frame {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(234, 179, 8, 0.2));
  border: 1px solid rgba(0, 240, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

.nav-brand-logo-frame span {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 14px;
  color: #00f0ff;
}

.nav-brand-title {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #ffffff 40%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 9999px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #00f0ff;
  font-weight: 700;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-audio-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 9999px;
  color: #e2e8f0;
  font-size: 11px;
  font-family: var(--font-sans);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.nav-audio-btn:hover {
  border-color: var(--color-cyan);
  background: rgba(0, 240, 255, 0.1);
  color: var(--color-cyan);
}

.nav-audio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64748b;
  transition: background 0.3s ease;
}

.nav-audio-btn.active .nav-audio-dot {
  background: var(--color-cyan);
  box-shadow: 0 0 8px var(--color-cyan);
}

.nav-cta-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s var(--ease-spring);
}

.nav-cta-btn:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.nav-hamburger {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.ham-bar {
  width: 14px;
  height: 1.5px;
  background: #cbd5e1;
  border-radius: 1px;
  transition: all 0.3s var(--ease-spring);
}

/* --------------------------------------------------------------------------
   3. HERO SECTION (#paket-hero)
   -------------------------------------------------------------------------- */
.paket-section {
  position: relative;
  z-index: 2;
  padding: 80px 6% 60px 6%;
}

#paket-hero {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(90px + env(safe-area-inset-top, 0px));
  position: relative;
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  margin-bottom: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-meta-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 25%, #00f0ff 85%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 30px rgba(0, 240, 255, 0.35));
  margin-bottom: 14px;
  max-width: 900px;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: #cbd5e1;
  max-width: 720px;
  line-height: 1.7;
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-guarantee-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: #e2e8f0;
  backdrop-filter: blur(8px);
}

.guarantee-pill i {
  color: var(--color-gold);
  font-size: 11px;
}

.scroll-down-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  transition: all 0.3s ease;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

.scroll-down-btn:hover {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--color-cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
  transform: translateY(2px);
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.35);
  }
  50% {
    box-shadow: 0 0 28px rgba(0, 240, 255, 0.45);
    border-color: rgba(0, 240, 255, 0.8);
  }
}

/* --------------------------------------------------------------------------
   4. INTERACTIVE CATALOG & 15 PACKAGES GRID (#paket-catalog)
   -------------------------------------------------------------------------- */
#paket-catalog {
  padding-top: 20px;
  padding-bottom: 80px;
  max-width: 1320px;
  margin: 0 auto;
}

.catalog-header-bar {
  text-align: center;
  margin-bottom: 28px;
}

.catalog-chapter {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-cyan);
  display: block;
  margin-bottom: 4px;
}

.catalog-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, #eab308 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Filter Capsule Buttons Bar (Smooth Horizontal Scroll on Mobile, Centered on Desktop) */
.paket-filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 20px auto 32px;
  padding: 6px 12px 14px;
  max-width: 1000px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: grab;
  user-select: none;
}

.paket-filter-bar::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .paket-filter-bar {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.paket-filter-btn {
  flex-shrink: 0;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 18px;
  border-radius: 9999px;
  color: #cbd5e1;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s var(--ease-spring);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.paket-filter-btn:hover {
  border-color: rgba(0, 240, 255, 0.5);
  color: #ffffff;
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-1px);
}

.paket-filter-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(16, 185, 129, 0.2));
  border-color: var(--color-cyan);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* The 15 Packages Responsive Grid */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media (min-width: 1024px) {
  .paket-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Package Glass Card */
.paket-card {
  background: rgba(8, 20, 38, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s var(--ease-spring), border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55);
  position: relative;
}

.paket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 240, 255, 0.22);
}

/* 3D Tropical Travel Voyage Banner (Replaces static photos) */
.paket-travel-banner {
  position: relative;
  width: 100%;
  padding: 20px 18px 16px;
  background: linear-gradient(135deg, rgba(8, 28, 54, 0.9) 0%, rgba(3, 14, 30, 0.95) 100%);
  border-bottom: 1px solid rgba(0, 240, 255, 0.18);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.banner-ambient-glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, rgba(234, 179, 8, 0.08) 60%, transparent 80%);
  filter: blur(35px);
  pointer-events: none;
  animation: oceanGlowPulse 4s ease-in-out infinite;
}

@keyframes oceanGlowPulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.25) translate(-8px, 6px);
    opacity: 1;
  }
}

.banner-top-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.paket-card-badge {
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.paket-card-badge i {
  display: inline-block;
  animation: badgeFloat 2.6s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-2px) rotate(-5deg);
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.6));
  }
}

.badge-express {
  background: rgba(0, 240, 255, 0.22);
  border: 1px solid rgba(0, 240, 255, 0.5);
  color: #38bdf8;
}

.badge-private {
  background: rgba(234, 179, 8, 0.22);
  border: 1px solid rgba(234, 179, 8, 0.5);
  color: #facc15;
}

.badge-hemat {
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #34d399;
}

.paket-card-duration {
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.paket-card-duration i {
  display: inline-block;
  color: var(--color-cyan);
  animation: clockTickBreath 3.2s ease-in-out infinite;
}

@keyframes clockTickBreath {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--color-cyan));
  }
}

/* Central Route Flow (Animated Voyage HUD) */
.banner-route-flow {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.paket-card:hover .banner-route-flow {
  background: rgba(0, 240, 255, 0.06);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.route-node {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  min-width: 0;
  flex: 1;
}

.route-node span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.route-node:last-child {
  justify-content: flex-end;
}

.route-node i.fa-location-dot {
  font-size: 11px;
  flex-shrink: 0;
  color: var(--color-cyan);
  animation: pinPulseBounce 2.2s ease-in-out infinite;
}

@keyframes pinPulseBounce {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 2px rgba(0, 240, 255, 0.5));
  }
  50% {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.9));
  }
}

.route-node i.fa-umbrella-beach {
  font-size: 11px;
  flex-shrink: 0;
  color: var(--color-gold);
  animation: umbrellaBreezeSway 3s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes umbrellaBreezeSway {
  0%, 100% {
    transform: rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(234, 179, 8, 0.5));
  }
  30% {
    transform: rotate(-6deg) scale(1.08);
    filter: drop-shadow(0 0 7px rgba(234, 179, 8, 0.85));
  }
  70% {
    transform: rotate(6deg) scale(1.08);
    filter: drop-shadow(0 0 7px rgba(234, 179, 8, 0.85));
  }
}

/* Animated Route Divider & Cruiser */
.route-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 22px;
  flex-shrink: 0;
}

.route-track {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.route-track-pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 240, 255, 0.95) 50%, transparent 100%);
  animation: trackLaserGlide 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes trackLaserGlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.route-cruiser-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cruiserVoyage 2.6s ease-in-out infinite;
}

.route-cruiser-icon {
  font-size: 11px;
  color: var(--color-cyan);
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.85));
}

@keyframes cruiserVoyage {
  0%, 100% {
    transform: translateX(-8px) translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateX(8px) translateY(-2px) rotate(3deg);
  }
}

/* Activity Highlight Chips (Single-Line Horizontal Smooth Scroll Track) */
.banner-highlights-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 3px 2px 5px 2px;
  cursor: grab;
  user-select: none;
}

.banner-highlights-row:active {
  cursor: grabbing;
}

.banner-highlights-row::-webkit-scrollbar {
  display: none;
}

.highlight-chip {
  flex-shrink: 0;
  scroll-snap-align: start;
  font-size: 10.5px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.25s var(--ease-spring);
}

.paket-card:hover .highlight-chip {
  border-color: rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.08);
  color: #ffffff;
}

.highlight-chip:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--color-cyan);
  background: rgba(0, 240, 255, 0.18);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
  color: #ffffff;
}

.highlight-chip-large {
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 5px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: chipGlowPulse 3s ease-in-out infinite;
}

@keyframes chipGlowPulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(0, 240, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.35);
  }
}

/* Card Body */
.paket-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.paket-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.paket-type-pill {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-cyan);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 2px 8px;
  border-radius: 6px;
}

.paket-guarantee-tag {
  font-size: 10.5px;
  color: #34d399;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.paket-card-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.paket-card-title:hover {
  color: var(--color-cyan);
}

.paket-desc-text {
  font-size: 12px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price & Details Bar */
.paket-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.paket-price-container {
  display: flex;
  flex-direction: column;
}

.paket-price-label {
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.paket-price-val {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 800;
  color: #00f0ff;
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.35);
}

/* View Details Action Button */
.paket-btn-detail {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s var(--ease-spring);
  backdrop-filter: blur(8px);
}

.paket-btn-detail:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--color-cyan);
  color: #00f0ff;
  transform: translateX(2px);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3);
}

.paket-btn-detail i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.paket-btn-detail:hover i {
  transform: translateX(3px);
}

/* Card Bottom Footer */
.paket-card-footer {
  padding: 0 20px 18px 20px;
}

.paket-btn-book-primary {
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
  transition: all 0.3s var(--ease-spring);
}

.paket-btn-book-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.55);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* --------------------------------------------------------------------------
   5. AUTHENTIC "LIHAT DETAIL" GLASS MODAL (#package-detail-modal)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active,
#package-detail-modal.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.modal-dialog {
  background: rgba(4, 9, 20, 0.98);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 24px;
  max-width: 860px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 50px rgba(0, 240, 255, 0.22);
  transform: scale(0.95) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  touch-action: pan-y;
}

.modal-overlay.active .modal-dialog,
#package-detail-modal.active .modal-dialog {
  transform: scale(1) translateY(0) !important;
}

.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  touch-action: pan-y;
  will-change: scroll-position;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 240, 255, 0.5) rgba(255, 255, 255, 0.03);
}

.modal-body::-webkit-scrollbar {
  width: 5px;
}

.modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 9999px;
  margin: 6px 0;
}

.modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00f0ff 0%, #10b981 100%);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38bdf8 0%, #34d399 100%);
}

/* Close Button */
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.8);
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* Modal Travel Expedition Header */
/* Modal Travel Expedition Header */
.modal-travel-header {
  position: relative;
  width: 100%;
  padding: 18px 24px 14px;
  background: linear-gradient(135deg, rgba(9, 28, 54, 0.95) 0%, rgba(3, 12, 28, 0.98) 100%);
  border-bottom: 1px solid rgba(0, 240, 255, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.modal-ambient-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.22) 0%, rgba(16, 185, 129, 0.1) 60%, transparent 80%);
  filter: blur(50px);
  pointer-events: none;
}

.modal-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.modal-guarantee-pill {
  font-size: 10.5px;
  color: #34d399;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 3px 10px;
  border-radius: 9999px;
}

.modal-route-ribbon {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-mono, monospace);
  color: #cbd5e1;
  position: relative;
  z-index: 2;
}

.modal-highlights-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.highlight-chip-large {
  padding: 3.5px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 10.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Modal Body Scrollable Content */
.modal-body-scrollable {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px 24px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  touch-action: pan-y;
  will-change: scroll-position;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 240, 255, 0.5) rgba(255, 255, 255, 0.03);
}

.modal-body-scrollable::-webkit-scrollbar {
  width: 5px;
}

.modal-body-scrollable::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 9999px;
  margin: 6px 0;
}

.modal-body-scrollable::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00f0ff 0%, #10b981 100%);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.modal-body-scrollable::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38bdf8 0%, #34d399 100%);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.35;
}

/* 3 Metrics Cards Grid */
.modal-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

.metric-label {
  font-size: 10px;
  color: #94a3b8;
  display: block;
  margin-bottom: 2px;
}

.metric-val {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #00f0ff;
}

/* Description Box */
.modal-desc-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 12.5px;
  line-height: 1.65;
  color: #cbd5e1;
}

.modal-desc-p {
  margin-bottom: 6px;
  line-height: 1.6;
}

.modal-desc-highlight {
  color: #ffffff;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 6px;
  padding-left: 8px;
  border-left: 3px solid #00f0ff;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

/* Hotel Pricing Matrix Table */
.modal-hotel-section {
  margin-top: 14px;
}

.modal-section-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 7, 18, 0.6);
}

.modal-hotel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
  text-align: left;
}

.modal-hotel-table th {
  background: rgba(0, 240, 255, 0.12);
  color: #00f0ff;
  font-weight: 700;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 240, 255, 0.25);
  white-space: nowrap;
}

.modal-hotel-table td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Modal Action Footer */
.modal-footer {
  flex-shrink: 0;
  padding: 12px 24px;
  background: rgba(3, 10, 24, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal-btn-back {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.modal-btn-back:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.modal-actions-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.modal-btn-share {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.modal-btn-share:hover {
  background: rgba(34, 197, 94, 0.3);
  color: #ffffff;
}

.modal-btn-book {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: 1px solid rgba(0, 240, 255, 0.5);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 12px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.4);
  transition: all 0.3s var(--ease-spring);
}

.modal-btn-book:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.6);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   6. INTERACTIVE RESERVATION DASHBOARD (#booking-dashboard-section)
   -------------------------------------------------------------------------- */
#booking-dashboard-section {
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.dashboard-header-bar {
  text-align: center;
  margin-bottom: 36px;
}

.dashboard-chapter {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-cyan);
  display: block;
  margin-bottom: 4px;
}

.dashboard-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 40%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dashboard-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  background: rgba(8, 19, 36, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 240, 255, 0.12);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* Left Column: Policies & Guarantees */
.dashboard-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 28px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dashboard-right-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.policy-block-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.policies-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.policy-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.policy-item:hover {
  background: rgba(0, 240, 255, 0.05);
  border-color: rgba(0, 240, 255, 0.2);
}

.policy-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.policy-icon.icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.policy-icon.icon-gold {
  background: rgba(234, 179, 8, 0.12);
  border-color: rgba(234, 179, 8, 0.3);
  color: #facc15;
}

.policy-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.policy-text p {
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.5;
}

.dashboard-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
}

.trust-badge-item b {
  font-family: var(--font-serif);
  font-size: 12px;
  color: #00f0ff;
  display: block;
}

.trust-badge-item span {
  font-size: 9.5px;
  color: #94a3b8;
}

/* Right Column: Secure Reservation Form */
.dashboard-right-col {
  display: flex;
  flex-direction: column;
}

.form-group-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

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

.dash-input-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #cbd5e1;
}

.dash-select, .dash-input {
  width: 100%;
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 12.5px;
  transition: all 0.25s ease;
  outline: none;
}

.dash-select:focus, .dash-input:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.25);
  background: rgba(3, 7, 18, 0.9);
}

.dash-select option {
  background: #09152b;
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   CUSTOM LUXURY PACKAGE SELECTOR (DROPDOWN & BOTTOM SHEET)
   -------------------------------------------------------------------------- */
.custom-select-field {
  position: relative;
}

.hidden-native-select {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
}

/* Custom Select Trigger */
.custom-select-trigger {
  width: 100%;
  background: rgba(4, 12, 28, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.custom-select-trigger:hover,
.custom-select-trigger.active {
  border-color: var(--color-cyan);
  background: rgba(6, 18, 38, 0.95);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.trigger-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.trigger-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #00f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.trigger-text-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.trigger-pkg-title {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.trigger-pkg-route {
  font-size: 10px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-top: 1px;
}

.trigger-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.trigger-pkg-price {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 800;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.trigger-arrow {
  font-size: 12px;
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.custom-select-trigger.active .trigger-arrow {
  transform: rotate(180deg);
  color: var(--color-cyan);
}

/* Custom Popover Options Menu (Desktop Default) */
.custom-options-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(5, 14, 30, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.2);
  z-index: 100;
  max-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.25s var(--ease-spring);
}

.custom-options-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.options-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.options-header-title {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
}

.options-close-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.options-close-btn:hover {
  background: rgba(239, 68, 68, 0.8);
  color: #ffffff;
}

.options-list-wrap {
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 240, 255, 0.3) transparent;
}

.options-list-wrap::-webkit-scrollbar {
  width: 5px;
}

.options-list-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 240, 255, 0.3);
  border-radius: 4px;
}

/* Individual Option Item */
.custom-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-option-item:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateX(2px);
}

.custom-option-item.selected {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--color-cyan);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.25);
}

.option-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.option-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.custom-option-item.selected .option-icon-box {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--color-cyan);
}

.option-text-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.option-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.option-title {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.option-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
}

.option-route {
  font-size: 10px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.option-item-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.option-price {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 800;
  color: #00f0ff;
  white-space: nowrap;
}

.option-check-icon {
  font-size: 14px;
  color: var(--color-cyan);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.custom-option-item.selected .option-check-icon {
  opacity: 1;
}

/* Mobile Bottom Sheet Modal Mode */
@media (max-width: 768px) {
  .custom-options-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .custom-options-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .custom-options-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 75vh;
    border-radius: 24px 24px 0 0;
    border-bottom: none;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.35s var(--ease-spring);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.2);
  }

  .custom-options-menu.open {
    transform: translateY(0);
  }

  .options-header {
    padding: 16px 18px 12px;
  }

  .options-list-wrap {
    padding: 10px 12px 24px;
    gap: 8px;
    max-height: 60vh;
  }

  .custom-option-item {
    padding: 11px 12px;
  }

  .option-title {
    max-width: 220px;
    font-size: 11.5px;
  }

  .trigger-pkg-title {
    font-size: 11.5px;
  }

  .trigger-pkg-price {
    font-size: 11px;
    padding: 2px 6px;
  }
}

/* --------------------------------------------------------------------------
   LUXURY FORM INPUT WRAPPERS & INTERACTIVE COUNTERS
   -------------------------------------------------------------------------- */
.dash-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}

.dash-badge-helper {
  font-size: 9.5px;
  color: #94a3b8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dash-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 14px;
  background: rgba(3, 8, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.dash-input-wrapper:focus-within {
  border-color: var(--color-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background: rgba(5, 14, 30, 0.95);
}

.input-icon-box {
  width: 38px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f0ff;
  font-size: 13px;
  flex-shrink: 0;
  padding-left: 12px;
}

.input-prefix-tag {
  padding: 4px 8px;
  margin-left: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
}

.dash-input.with-icon {
  border: none !important;
  background: transparent !important;
  padding: 11px 14px 11px 8px !important;
  color: #ffffff;
  width: 100%;
  outline: none;
  font-size: 12.5px;
  box-shadow: none !important;
}

.dash-input.with-prefix {
  border: none !important;
  background: transparent !important;
  padding: 11px 14px 11px 8px !important;
  color: #ffffff;
  width: 100%;
  outline: none;
  font-size: 12.5px;
  font-family: var(--font-mono);
  box-shadow: none !important;
}

/* Luxury Guest Counter Control */
.dash-counter-box-luxury {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3, 8, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 4px 6px;
  height: 44px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.dash-counter-box-luxury:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.btn-counter-luxury {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-spring);
  flex-shrink: 0;
}

.btn-counter-luxury:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--color-cyan);
  color: #00f0ff;
  transform: scale(1.06);
}

.btn-counter-luxury:active {
  transform: scale(0.95);
}

.counter-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.dash-counter-input {
  width: 32px;
  background: transparent;
  border: none;
  color: #00f0ff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  outline: none;
}

.counter-unit {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

/* Quick Suggestion Chips for Notes */
.quick-request-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.quick-chip-btn {
  font-size: 10px;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-chip-btn:hover, 
.quick-chip-btn.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--color-cyan);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Total Price Summary Box */
.dash-price-summary-box {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dash-summary-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-summary-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-summary-title {
  font-size: 10.5px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.dash-summary-unit {
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 600;
}

.dash-summary-right {
  text-align: right;
  flex-shrink: 0;
}

.dash-summary-price {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  color: #00f0ff;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.45);
  letter-spacing: 0.02em;
}

.dash-summary-footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10.5px;
  color: #34d399;
  font-weight: 600;
}

/* Submit Reservation Shimmer Button */
.dash-submit-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
  transition: all 0.35s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.dash-submit-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(30deg);
  animation: btnShimmer 3.5s infinite;
}

@keyframes btnShimmer {
  0% { transform: translateX(-100%) rotate(30deg); }
  100% { transform: translateX(100%) rotate(30deg); }
}

.dash-submit-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
}

/* --------------------------------------------------------------------------
   7. VALUE MATRIX & TRUST SECTION (#paket-features)
   -------------------------------------------------------------------------- */
#paket-features {
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(8, 20, 38, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.4);
}

.feature-icon-frame {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-cyan);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. FOOTER
   -------------------------------------------------------------------------- */
.paket-footer {
  background: rgba(2, 6, 18, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 6% 32px;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand p {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--color-cyan);
  color: #00f0ff;
}

.footer-bottom {
  text-align: center;
  font-size: 11px;
  color: #64748b;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   9. MOBILE NAVIGATION DRAWER
   -------------------------------------------------------------------------- */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 18, 0.9);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all 0.35s var(--ease-spring);
}

.mobile-nav-drawer.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.mobile-drawer-link.active {
  background: rgba(0, 240, 255, 0.15);
  border-color: var(--color-cyan);
  color: #ffffff;
}

.mobile-drawer-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  background: #10b981;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   10. RESPONSIVE MEDIA QUERIES (MOBILE & DESKTOP PERFECTION)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) and (max-width: 1023px) {
  .paket-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .paket-header {
    top: 10px;
    padding: 0 10px;
    width: 100%;
  }

  .paket-nav {
    width: 100%;
    max-width: 100%;
    padding: 6px 12px;
    gap: 8px;
    justify-content: space-between;
  }

  .nav-links-wrapper {
    display: none !important;
  }

  .nav-audio-btn {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .nav-brand {
    gap: 8px;
  }

  .nav-brand-title {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .nav-brand-logo-frame {
    width: 28px;
    height: 28px;
  }

  .nav-brand-logo-frame span {
    font-size: 12px;
  }

  .nav-cta-btn {
    padding: 6px 12px;
    font-size: 9.5px;
    gap: 5px;
  }

  .dashboard-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }

  .dashboard-left-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .paket-section {
    padding: 50px 4% 35px 4%;
  }

  #paket-hero {
    min-height: 85vh;
    padding-top: calc(85px + env(safe-area-inset-top, 0px));
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-meta-badge {
    padding: 5px 14px;
    margin-bottom: 14px;
    gap: 6px;
    border-radius: 9999px;
  }

  .hero-meta-text {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .hero-main-title {
    font-size: clamp(2.1rem, 9.5vw, 2.7rem);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: 0.03em;
  }

  .hero-tagline {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 330px;
    margin: 0 auto 20px;
    color: #cbd5e1;
  }

  .hero-guarantee-pills {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    width: 100%;
    max-width: 320px;
  }

  .guarantee-pill {
    width: 100%;
    justify-content: center;
    padding: 6px 14px;
    font-size: 11px;
    gap: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .scroll-down-btn {
    padding: 9px 20px;
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-top: 4px;
  }

  #paket-catalog {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .catalog-chapter {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 6px;
  }

  .catalog-title {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    line-height: 1.25;
  }

  .paket-filter-bar {
    gap: 8px;
    margin: 18px auto 26px;
    padding: 4px 8px 12px;
  }

  .paket-filter-btn {
    padding: 7px 15px;
    font-size: 11.5px;
  }

  .paket-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .banner-route-flow {
    padding: 8px 10px;
    gap: 6px;
  }

  .route-node {
    font-size: 10.5px;
    gap: 4px;
  }

  .route-divider {
    width: 38px;
  }

  .highlight-chip {
    font-size: 10px;
    padding: 3px 8px;
  }

  .dashboard-container {
    padding: 20px 14px;
    border-radius: 20px;
    gap: 22px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .dashboard-left-col {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 22px;
    width: 100%;
  }

  .dashboard-right-col {
    width: 100%;
    min-width: 0;
  }

  .dash-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .quick-chip-btn {
    font-size: 9.5px;
    padding: 3px 8px;
    gap: 4px;
  }

  .dash-price-summary-box {
    padding: 14px 14px;
    border-radius: 14px;
    width: 100%;
  }

  .dash-summary-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .dash-summary-price {
    font-size: 1.45rem;
  }

  .dash-summary-footer-badge {
    font-size: 10px;
  }

  .dash-submit-btn {
    padding: 13px 18px;
    font-size: 11.5px;
    border-radius: 12px;
    width: 100%;
  }

  /* Modal Mobile Perfection */
  .modal-overlay {
    padding: 10px;
  }

  #package-detail-modal .modal-dialog {
    max-height: 92vh !important;
    width: 95vw !important;
    border-radius: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .modal-travel-header {
    padding: 10px 12px 8px !important;
  }

  .modal-title {
    font-size: 12px !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  .modal-route-ribbon {
    font-size: 9.5px !important;
    gap: 4px !important;
    margin-top: 4px !important;
  }

  .modal-body-scrollable {
    padding: 10px 12px !important;
    gap: 10px !important;
  }

  .modal-metrics-grid {
    gap: 6px !important;
  }

  .metric-card {
    padding: 6px 3px !important;
    border-radius: 10px !important;
  }

  .metric-label {
    font-size: 8.5px !important;
  }

  .metric-val {
    font-size: 11px !important;
  }

  .modal-desc-box {
    padding: 10px 12px !important;
    font-size: 11.5px !important;
    border-radius: 12px !important;
  }

  .modal-desc-highlight {
    font-size: 11.5px !important;
    margin-top: 8px !important;
    margin-bottom: 4px !important;
  }

  .modal-footer {
    padding: 8px 12px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
  }

  .modal-actions-right {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 6px !important;
    flex: 1 !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
  }

  .modal-btn-back {
    padding: 7px 10px !important;
    font-size: 10.5px !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  #modal-pkg-share-btn {
    padding: 7px 10px !important;
    font-size: 10.5px !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }

  #modal-pkg-book-btn {
    padding: 7px 12px !important;
    font-size: 10.5px !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
    flex: 1 !important;
    min-width: 0 !important;
    text-align: center !important;
  }
}
