/* ==============================================================================
   JAVA OUTBOUND (javaoutbound.com) - POMAII TRAVEL DESIGN SYSTEM
   Ultra-modern, organic nature theme inspired by Pomaii travel mockup
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette - Pomaii Nature Theme */
  --color-primary: #193527;        /* Deep Forest Green */
  --color-primary-dark: #12281d;   /* Dark Moss */
  --color-primary-light: #244937;  /* Lush Pine */
  --color-accent: #eeaa01;         /* Golden Amber resmi logo */
  --color-accent-hover: #d99b00;   /* Deep Amber Gold */
  --color-accent-light: #fffbeb;   /* Warm Champagne Gold Tint */
  --color-accent-rgb: 238, 170, 1;
  --color-accent-gold: #b28727;    /* Bronze Gold dari bayangan logo */
  
  --color-bg: #fbfcf9;             /* Crisp Warm Ivory Canvas */
  --color-bg-subtle: #f3f5ee;      /* Soft Sage Grey */
  --color-bg-card: #fdfaf3;        /* Warm Champagne Beige */
  --color-white: #ffffff;
  
  --color-text-dark: #16241b;      /* Rich Dark Slate */
  --color-text-muted: #647569;     /* Olive Muted Grey */
  --color-text-light: #8e9e93;     /* Light Muted */
  --color-border: #e4e9de;         /* Delicate Green-Tinted Border */
  --color-border-light: #eff2eb;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevation & Shadows */
  --shadow-xs: 0 2px 4px rgba(22, 36, 27, 0.04);
  --shadow-sm: 0 4px 12px rgba(22, 36, 27, 0.06);
  --shadow-md: 0 8px 24px rgba(22, 36, 27, 0.08);
  --shadow-lg: 0 16px 40px rgba(22, 36, 27, 0.12);
  --shadow-floating: 0 20px 48px rgba(25, 53, 39, 0.14);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================================================================
   HEADER & NAVBAR
   ============================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(251, 252, 249, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 233, 222, 0.7);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-brand .logo-img {
  height: 48px;
  width: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.logo-icon-emblem {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #193527, #2c5942);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(25, 53, 39, 0.2);
}

.logo-icon-emblem svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.logo-texts {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link.active {
  color: var(--color-accent);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-accent);
  border-radius: 4px;
}

/* Nav Dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-link.dropdown-toggle svg {
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-link.dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 290px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 16px 36px rgba(22, 36, 27, 0.15);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1010;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background-color var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--color-bg-subtle);
}

.dropdown-item-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.25;
}

.dropdown-item:hover .dropdown-item-title {
  color: var(--color-accent);
}

.dropdown-item-sub {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* Mobile Drawer Sub-group */
.mobile-drawer-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 12px;
  border-left: 2px solid var(--color-border);
  margin: 6px 0;
  gap: 4px;
}

.mobile-drawer-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.action-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.action-icon-btn:hover {
  background-color: var(--color-bg-subtle);
  border-color: var(--color-text-muted);
  transform: translateY(-1px);
}

.grid-menu-icon {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
  padding: 6px;
  cursor: pointer;
}

.grid-menu-dot {
  width: 4px;
  height: 4px;
  background-color: var(--color-text-dark);
  border-radius: 50%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--color-text-dark);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* ==============================================================================
   HERO SECTION - ORGANIC CURVED CANVAS
   ============================================================================== */
/* ======================================================
   HOMEPAGE HERO — FULL-WIDTH BACKGROUND PHOTO
   ====================================================== */
.hero-wrapper {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Background image set via inline style on the element */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark overlay for text readability */
.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 31, 20, 0.72) 0%,
    rgba(25, 53, 39, 0.55) 50%,
    rgba(9, 31, 20, 0.40) 100%
  );
  z-index: 1;
}

.hero-backdrop {
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 0;
  margin: 0;
  padding: 160px 24px 100px 24px;
  max-width: 100%;
  width: 100%;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 0 0;
  padding-left: 40px;
}

.hero-content {
  padding-left: 0;
  max-width: 780px;
  width: 100%;
}

/* Adapt text colors for dark background */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(238, 170, 1, 0.2);
  border: 1px solid rgba(238, 170, 1, 0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.eyebrow-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight-word {
  position: relative;
  display: inline-block;
  color: var(--color-accent);
}

.hero-title .highlight-word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 4px;
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-subtitle strong {
  color: var(--color-accent);
}

/* Hide the old right-side image wrapper */
.hero-media-wrapper {
  display: none;
}

.hero-image-container {
  display: none;
}

.hero-organic-cloud {
  display: none;
}

/* ======================================================
   SERVICE PAGE HERO — PHOTO BACKGROUND SUPPORT
   ====================================================== */

/* Floating leaf accents */
.leaf-accent-floating {
  position: absolute;
  pointer-events: none;
  z-index: 4;
}

/* ==============================================================================
   FLOATING BOOKING & SEARCH WIDGET
   ============================================================================== */
.search-widget-container {
  position: relative;
  max-width: 1100px;
  margin: -50px auto 40px auto;
  z-index: 20;
  padding: 0 20px;
}

.search-pill-card {
  background: var(--color-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-floating);
  border: 1px solid var(--color-border);
  padding: 12px 16px 12px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr auto;
  align-items: center;
  gap: 16px;
  transition: box-shadow var(--transition-normal);
}

.search-pill-card:hover {
  box-shadow: 0 24px 56px rgba(25, 53, 39, 0.18);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.search-field:not(:last-of-type)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--color-border);
}

.field-icon {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.field-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.field-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: capitalize;
  margin-bottom: 2px;
}

.field-input, .field-select {
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
  width: 100%;
  outline: none;
  cursor: pointer;
  padding: 0;
}

.field-select {
  appearance: none;
  -webkit-appearance: none;
}

.field-select option {
  background-color: var(--color-white);
  color: var(--color-text-dark);
}

.search-submit-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.search-submit-btn:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(25, 53, 39, 0.3);
}

.search-submit-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==============================================================================
   4 TRUST HIGHLIGHTS BAR
   ============================================================================== */
.trust-bar-section {
  padding: 24px 0 60px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 12px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f1f4ed;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.trust-text-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 3px;
}

.trust-text-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ==============================================================================
   FEATURED SERVICE PACKAGES (LAYANAN KAMI)
   ============================================================================== */
.packages-showcase-section {
  padding: 70px 0 50px 0;
  background-color: var(--color-bg);
  position: relative;
}

.packages-section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px auto;
}

.packages-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.packages-main-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.packages-main-subtitle {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* 3-Column Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Individual Package Card */
.pkg-service-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.pkg-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(25, 53, 39, 0.2);
}

/* Image Zone */
.pkg-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-subtle);
}

.pkg-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.pkg-service-card:hover .pkg-img-wrapper img {
  transform: scale(1.06);
}

.pkg-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 32, 23, 0.2) 0%,
    rgba(18, 32, 23, 0) 40%,
    rgba(18, 32, 23, 0.85) 100%
  );
  z-index: 1;
}

.pkg-floating-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.pkg-floating-badge.badge-gold {
  background: linear-gradient(135deg, #b28727, #eeaa01);
}

.pkg-floating-badge.badge-ember {
  background: linear-gradient(135deg, #d97706, #eeaa01);
}

.pkg-floating-badge.badge-green {
  background: linear-gradient(135deg, #193527, #2c5942);
}

.pkg-category-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pkg-category-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* Card Body */
.pkg-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.pkg-card-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.pkg-card-title a:hover {
  color: var(--color-accent);
}

.pkg-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

/* Highlights Chips */
.pkg-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.pkg-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
}

/* Price Box */
.pkg-price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: var(--color-bg-subtle);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  margin-bottom: 18px;
}

.pkg-price-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pkg-price-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pkg-price-currency {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
}

.pkg-price-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.pkg-price-unit {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Action Buttons */
.pkg-actions-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-pkg-view {
  flex: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-pkg-view:hover {
  background-color: var(--color-primary-light);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(25, 53, 39, 0.25);
}

.btn-pkg-view svg {
  transition: transform var(--transition-fast);
}

.btn-pkg-view:hover svg {
  transform: translateX(3px);
}

.btn-pkg-wa-cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 12px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-pkg-wa-cta:hover {
  background-color: #20ba5a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* Custom & Flexible Package Banner */
.custom-package-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #12281d 0%, #193527 60%, #244937 100%);
  border-radius: 28px;
  padding: 40px 48px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.custom-package-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.custom-package-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffb800;
  margin-bottom: 14px;
}

.custom-package-left h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.custom-package-left p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}

.custom-package-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.custom-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.custom-bullet-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(238, 170, 1, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.custom-bullet-item strong {
  display: block;
  font-size: 0.84rem;
  color: #ffffff;
  line-height: 1.2;
}

.custom-bullet-item span {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.custom-package-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.custom-cta-heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.custom-package-card p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-custom-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background-color: var(--color-accent);
  color: #1a160f;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-custom-wa:hover {
  background-color: var(--color-accent-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 170, 1, 0.4);
}

.custom-card-note {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
}

/* ==============================================================================
   POPULAR DESTINATIONS / PACKAGES SECTION
   ============================================================================== */
.popular-section {
  padding: 40px 0 50px 0;
}

.section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-heading-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
}

.section-leaf-icon {
  font-size: 1.4rem;
}

.section-view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: color var(--transition-fast);
}

.section-view-all-link:hover {
  color: var(--color-accent);
}

.section-view-all-link svg {
  transition: transform var(--transition-fast);
}

.section-view-all-link:hover svg {
  transform: translateX(4px);
}

/* 4 Card Destination Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  cursor: pointer;
  display: block;
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dest-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.dest-card:hover .dest-card-img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(22, 36, 27, 0.1) 0%,
    rgba(22, 36, 27, 0.15) 50%,
    rgba(14, 25, 18, 0.85) 85%,
    rgba(10, 18, 13, 0.95) 100%
  );
  z-index: 2;
}

.dest-rating-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(18, 32, 23, 0.7);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.dest-rating-pill svg {
  width: 12px;
  height: 12px;
  fill: #ffb800;
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dest-meta {
  flex: 1;
  padding-right: 12px;
}

.dest-title {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 4px;
}

.dest-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.3;
}

.dest-price-badge {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent);
  white-space: nowrap;
}

.dest-price-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

/* ==============================================================================
   CATEGORY FILTER PILLS
   ============================================================================== */
.category-filter-section {
  padding: 20px 0 60px 0;
}

.category-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.cat-pill:hover {
  border-color: var(--color-primary);
  background-color: var(--color-bg-subtle);
  transform: translateY(-2px);
}

.cat-pill.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 6px 16px rgba(25, 53, 39, 0.2);
}

.cat-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ==============================================================================
   STORIES & GUIDES / INSPIRATION SECTION
   ============================================================================== */
.stories-section {
  padding: 30px 0 70px 0;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Warm Beige Left Promo Box */
.inspiration-card {
  background-color: var(--color-bg-card);
  border-radius: 28px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.inspiration-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.inspiration-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.inspiration-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 28px;
}

.inspiration-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.inspiration-btn:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.inspiration-btn svg {
  transition: transform var(--transition-fast);
}

.inspiration-btn:hover svg {
  transform: translateX(4px);
}

/* Right Guide Article Cards */
.guide-card {
  background-color: var(--color-white);
  border-radius: 28px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.guide-card-thumb {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.guide-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.guide-card:hover .guide-card-thumb img {
  transform: scale(1.05);
}

.guide-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.guide-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.guide-meta-time {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-top: auto;
}

/* ==============================================================================
   SPECIAL OFFER BANNER - "YOUR NEXT ADVENTURE STARTS HERE"
   ============================================================================== */
.special-offer-section {
  padding: 30px 0 60px 0;
}

.offer-banner-card {
  background-color: var(--color-primary);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.offer-image-side {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.offer-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Organic curve cutting from image side into dark green */
.offer-curve-mask {
  position: absolute;
  top: 0;
  right: -2px;
  height: 100%;
  width: 80px;
  pointer-events: none;
}

.offer-content-side {
  padding: 48px 56px 48px 32px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffca66;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.offer-description {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 440px;
}

.offer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background-color: var(--color-accent);
  color: #1a160f;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(238, 170, 1, 0.4);
  transition: all var(--transition-fast);
}

.offer-cta-btn:hover {
  background-color: var(--color-accent-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(238, 170, 1, 0.5);
}

/* Botanical Accent in Corner */
.offer-flower-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 140px;
  pointer-events: none;
  opacity: 0.9;
}

/* ==============================================================================
   KEY STATS ROW
   ============================================================================== */
.stats-section {
  padding: 30px 0 50px 0;
  border-bottom: 1px solid var(--color-border);
}

.stats-container-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.stats-group {
  display: flex;
  align-items: center;
  gap: 48px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon {
  font-size: 1.6rem;
  color: var(--color-primary);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.social-follow-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.social-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ==============================================================================
   FOOTER
   ============================================================================== */
.site-footer {
  background-color: var(--color-bg);
  padding: 60px 0 30px 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 50px;
}

.footer-brand-col {
  padding-right: 20px;
}

.footer-tagline {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-top: 14px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
  color: var(--color-accent);
}

.newsletter-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-input {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 0.86rem;
  color: var(--color-text-dark);
  outline: none;
  flex: 1;
}

.newsletter-btn {
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--color-primary-light);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==============================================================================
   QUICK BOOKING MODAL & INTERACTION
   ============================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 36, 26, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-card {
  background: var(--color-white);
  border-radius: 32px;
  max-width: 580px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e7dd;
  color: var(--color-text-dark);
}

/* Floating WhatsApp Quick Action */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.floating-wa-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5);
}

/* ==============================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ============================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-content {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }
  .eyebrow-badge {
    margin: 0 auto 16px auto;
  }
  .hero-subtitle {
    margin: 0 auto 24px auto;
  }
  .hero-title {
    font-size: 3rem;
  }
  .search-pill-card {
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    padding: 24px;
  }
  .search-field:not(:last-of-type)::after {
    display: none;
  }
  .search-submit-btn {
    grid-column: span 2;
    justify-content: center;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .custom-package-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .custom-package-bullets {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .offer-banner-card {
    grid-template-columns: 1fr;
  }
  .offer-image-side {
    height: 260px;
  }
  .offer-curve-mask {
    display: none;
  }
  .offer-content-side {
    padding: 32px 24px;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-backdrop {
    padding: 130px 20px 70px 20px;
  }
  .hero-grid {
    padding-left: 0;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .search-pill-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .search-submit-btn {
    grid-column: span 1;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .packages-main-title {
    font-size: 1.85rem;
  }
  .packages-grid {
    max-width: 100%;
  }
  .custom-package-cta {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .custom-package-left h3 {
    font-size: 1.45rem;
  }
  .custom-package-card {
    padding: 22px 16px;
  }
  .pkg-card-body {
    padding: 20px 16px;
  }
  .pkg-actions-group {
    flex-direction: column;
    gap: 8px;
  }
  .btn-pkg-view,
  .btn-pkg-wa-cta {
    width: 100%;
  }
  .stats-container-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats-group {
    flex-wrap: wrap;
    gap: 20px;
  }
  .social-follow-group {
    align-items: flex-start;
    margin-top: 16px;
  }
  .footer-top-grid {
    text-align: center;
  }
}

/* ==============================================================================
   SERVICE PAGES EXTENSION - POMAII TRAVEL DESIGN SYSTEM
   Paket Jeep, Paket Outbound, & River Tubing Kemuning
   Theme Color: Golden Amber (#EEAA01) & Deep Forest Green (#193527)
   ============================================================================== */

/* Service Page Hero */
.service-page-hero {
  position: relative;
  padding: 160px 0 90px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 3px solid var(--color-accent);
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Dark overlay on top of photo */
.service-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(9, 31, 20, 0.78) 0%,
    rgba(25, 53, 39, 0.60) 50%,
    rgba(9, 31, 20, 0.45) 100%
  );
  z-index: 1;
}

.service-page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Breadcrumbs */
.service-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.service-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.service-breadcrumb a:hover {
  color: var(--color-accent);
}

.service-breadcrumb .sep {
  color: var(--color-accent);
  font-size: 0.75rem;
}

.service-breadcrumb .current {
  color: var(--color-accent);
  font-weight: 700;
}

/* Hero Badge */
.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: rgba(238, 170, 1, 0.14);
  border: 1px solid rgba(238, 170, 1, 0.35);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.service-hero-badge i,
.service-hero-badge svg {
  color: var(--color-accent);
}

.service-hero-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.service-hero-title span {
  color: var(--color-accent);
  position: relative;
}

.service-hero-desc {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  max-width: 740px;
}

/* Trust Pills Strip */
.service-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.trust-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
}

.trust-pill-item svg,
.trust-pill-item i {
  color: var(--color-accent);
  font-size: 0.95rem;
}

/* Hero Action CTAs */
.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
}

.btn-hero-wa:hover {
  background: #1eb957;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(238, 170, 1, 0.5);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.btn-hero-secondary:hover {
  background: rgba(238, 170, 1, 0.15);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Quick Strip Section */
.service-booking-strip {
  position: relative;
  z-index: 20;
  margin-top: -32px;
  margin-bottom: 50px;
}

.booking-strip-card-clean {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 30px;
  box-shadow: 0 16px 45px rgba(22, 36, 27, 0.1);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bsc-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bsc-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  border: 1px solid rgba(238, 170, 1, 0.3);
}

.bsc-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 3px;
}

.bsc-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.bsc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: #1a160f;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(238, 170, 1, 0.35);
  transition: all var(--transition-fast);
}

.bsc-btn:hover {
  background: var(--color-accent-hover);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238, 170, 1, 0.45);
}

/* Service Package Grid & Modern Package Card */
.service-packages-section {
  padding: 70px 0 90px;
  background-color: var(--color-bg);
}

.service-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.ssh-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border: 1px solid rgba(238, 170, 1, 0.35);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.ssh-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.ssh-title span {
  color: var(--color-accent);
}

.ssh-desc {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.service-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Individual Package Card */
.sp-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(22, 36, 27, 0.12);
  border-color: rgba(238, 170, 1, 0.5);
}

/* Card Photo Wrap */
.sp-photo-wrap {
  height: 220px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg-subtle);
}

.sp-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.sp-card:hover .sp-photo-wrap img {
  transform: scale(1.06);
}

/* Floating Status Badges */
.sp-badge-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sp-badge-tag.badge-bestseller {
  background: linear-gradient(135deg, #d97706, #eeaa01);
  color: #1a160f;
}

.sp-badge-tag.badge-popular {
  background: linear-gradient(135deg, #193527, #2c5942);
  color: #ffffff;
  border: 1px solid rgba(238, 170, 1, 0.4);
}

.sp-badge-tag.badge-complete {
  background: linear-gradient(135deg, #b28727, #eeaa01);
  color: #1a160f;
}

/* Card Category Pill */
.sp-cat-pill {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  background: rgba(9, 31, 20, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Card Body */
.sp-card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sp-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.sp-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Route Spot Pills Container */
.sp-route-box {
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.sp-route-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-gold);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.sp-route-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sp-spot-tag {
  background: #ffffff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sp-spot-tag i,
.sp-spot-tag svg {
  color: var(--color-accent);
  font-size: 0.7rem;
}

/* Quick Meta Specs (Kapasitas, Durasi) */
.sp-meta-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-top: 1px dashed var(--color-border);
  border-bottom: 1px dashed var(--color-border);
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.sp-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sp-meta-item i,
.sp-meta-item svg {
  color: var(--color-accent);
}

/* Facilities List */
.sp-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-grow: 1;
}

.sp-features-list li {
  font-size: 0.84rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.sp-features-list li svg,
.sp-features-list li i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}

/* Card Price Strip */
.sp-price-box {
  background: linear-gradient(135deg, rgba(238, 170, 1, 0.08) 0%, rgba(25, 53, 39, 0.04) 100%);
  border: 1px solid rgba(238, 170, 1, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-price-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

.sp-price-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sp-price-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.sp-price-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Card CTA Action Buttons */
.sp-btn-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-sp-wa {
  flex: 1;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-sp-wa:hover {
  background: #1eb957;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-sp-detail {
  background: rgba(25, 53, 39, 0.06);
  border: 1px solid rgba(25, 53, 39, 0.15);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all var(--transition-fast);
}

.btn-sp-detail:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Safety Standards Section (for Tubing & Jeep) */
.safety-standards-section {
  padding: 70px 0;
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.safety-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.safety-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px auto;
  border: 1px solid rgba(238, 170, 1, 0.3);
}

.safety-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.safety-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Modern Reviews Section */
.reviews-section-clean {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.reviews-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rev-card-clean {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rev-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(238, 170, 1, 0.4);
}

.rev-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rev-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rev-avatar.alt-gold {
  background: linear-gradient(135deg, #b28727, #eeaa01);
  color: #1a160f;
}

.rev-user-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.rev-user-meta {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.rev-stars {
  display: flex;
  gap: 3px;
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.rev-body-text {
  font-size: 0.9rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  flex-grow: 1;
}

.rev-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg-subtle);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
}

/* Modern FAQ Section */
.faq-section-clean {
  padding: 80px 0;
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
}

.faq-list-clean {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-clean {
  background: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item-clean[open] {
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(238, 170, 1, 0.12);
}

.faq-summary-clean {
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-summary-clean::-webkit-details-marker {
  display: none;
}

.faq-summary-clean::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item-clean[open] .faq-summary-clean::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-content-clean {
  padding: 0 22px 20px 22px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--color-border-light);
  padding-top: 14px;
}

/* Cross Services Section */
.cross-services-clean {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.cross-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cross-card-clean {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cross-card-clean:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(238, 170, 1, 0.4);
}

.cross-card-img {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.cross-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cross-card-clean:hover .cross-card-img img {
  transform: scale(1.06);
}

.cross-card-info {
  width: 60%;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cross-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.cross-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cross-card-info p {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.btn-cross-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.btn-cross-link:hover {
  color: var(--color-accent);
}

/* Service Page Responsiveness */
@media (max-width: 1024px) {
  .service-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid-3col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-page-hero {
    padding: 105px 0 50px;
  }
  .service-hero-title {
    font-size: 2.2rem;
  }
  .service-pkg-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .booking-strip-card-clean {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }
  .bsc-info {
    flex-direction: column;
    text-align: center;
  }
  .bsc-btn {
    width: 100%;
    justify-content: center;
  }
  .safety-grid {
    grid-template-columns: 1fr;
  }
  .cross-services-grid {
    grid-template-columns: 1fr;
  }
  .cross-card-clean {
    flex-direction: column;
  }
  .cross-card-img,
  .cross-card-info {
    width: 100%;
  }
  .cross-card-img {
    height: 180px;
  }
}

