/* ==========================================================================
   DWAKA HOLIDAY - MAIN CUSTOM CSS
   Modern Clean Design System — Light style, kept primary #A8D5E5
   ========================================================================== */

:root {
  --primary: #A8D5E5;
  --primary-hover: #2F8AC4;
  --secondary: #EAF5F9;
  --bg-white: #FFFFFF;
  --bg-canvas: #F4F8FB;
  --text-dark: #111827;
  --text-muted: #4B5563;
  --accent: #4AA3D8;
  --accent-dark: #0E7DB8;
  --navy-dark: #0A2540;
  --border: #DCE6EE;
  --line: #DCE6EE;
  --shadow-sm: 0 1px 2px rgba(9, 20, 33, 0.05);
  --shadow-card: 0 1px 2px rgba(9, 20, 33, 0.06), 0 4px 12px -6px rgba(9, 20, 33, 0.08);
  --shadow-hover: 0 6px 18px -8px rgba(14, 125, 184, 0.22);
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --radius-btn: 4px;
  --transition: all 0.2s ease;
  --navbar-height: 81px;

  /* ── Header Design Tokens ──────────────────────────────────────── */
  --header-height: var(--navbar-height);
  --header-padding-x: 0;
  --header-bg: rgba(255, 255, 255, 0.98);
  --header-text: var(--text-dark);
  --header-text-hover: var(--accent-dark);
  --header-text-active: var(--accent-dark);
  --header-border: var(--line);
  --header-shadow: none;
  --header-shadow-scrolled: 0 4px 20px rgba(9, 20, 33, 0.08);
  --header-radius: 0;
  --header-transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.2s ease, border-color 0.3s ease;
  --header-link-padding: 8px 16px;
  --header-link-font-size: 0.95rem;
  --header-link-font-weight: 600;
  --header-link-radius: var(--radius-sm);
  --header-link-hover-bg: rgba(74, 163, 216, 0.1);
  --header-link-active-bg: rgba(74, 163, 216, 0.12);
  --header-cta-height: 42px;
  --header-focus-ring: 0 0 0 3px rgba(74, 163, 216, 0.35);
}

body {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Touch targets and iOS zoom prevention */
@media (max-width: 767.98px) {

  .form-control,
  .form-select,
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

p {
  font-weight: 500;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-accent {
  color: var(--accent);
}

.text-accent-dark {
  color: var(--accent-dark);
}

.bg-secondary-custom {
  background-color: var(--secondary) !important;
}

.bg-primary-custom {
  background-color: var(--accent) !important;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 10px;
}

/* ==========================================================================
   BUTTONS — Slightly rounded (8px), modern flat style, keep brand color
   ========================================================================== */
.btn {
  border-radius: var(--radius-btn);
}

.btn-custom-primary {
  background-color: var(--accent-dark);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid var(--accent-dark);
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  box-shadow: 0 1px 2px rgba(9, 20, 33, 0.08);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px -4px rgba(47, 138, 196, 0.35);
}

.btn-custom-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #54b8ea;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  font-weight: 700;
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
}

.btn-custom-outline:hover {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.btn-custom-wa {
  background-color: #25D366;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid #25D366;
  box-shadow: 0 1px 2px rgba(9, 20, 33, 0.08);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
}

.btn-custom-wa:hover {
  background-color: #1EBE57;
  border-color: #1EBE57;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-radius: var(--radius-btn);
  font-weight: 600;
}

/* Square icon buttons (social / quick actions) */
.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-icon:hover {
  transform: translateY(-1px);
}

.btn-outline-primary.btn-icon:hover,
.btn-outline-danger.btn-icon:hover,
.btn-outline-dark.btn-icon:hover,
.btn-outline-success.btn-icon:hover {
  color: #ffffff;
}

.btn-outline-primary.btn-icon:hover { background-color: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline-danger.btn-icon:hover { background-color: #DC3545; border-color: #DC3545; }
.btn-outline-dark.btn-icon:hover { background-color: #212529; border-color: #212529; }
.btn-outline-success.btn-icon:hover { background-color: #198754; border-color: #198754; }

/* Filter buttons */
.filter-btn {
  transition: var(--transition);
  border-width: 1.5px;
}

.filter-btn.active {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
  font-weight: 700;
}

/* ── Sticky category filter bar ────────────────────────────
   Menempel di bawah navbar saat pengguna scroll, sehingga
   tombol filter selalu terlihat tanpa perlu scroll ke atas. */
.katalog-filter-bar {
  top: 90px;
  z-index: 900;
}
@media (max-width: 643.98px) {
  .katalog-filter-bar {
    top: calc(var(--navbar-height) + 4px);
    margin-left: -10px !important;
    margin-right: -10px !important;
    padding: 8px 10px;
    border-radius: 14px;
  }
}

/* ==========================================================================
    HEADER / NAVBAR
    ========================================================================== */

/* ── Base Navbar ─────────────────────────────────────────── */
.navbar-dwaka {
  background-color: var(--header-bg);
  padding: 14px 0;
  transition: var(--header-transition);
  z-index: 1050;
  border-bottom: 1px solid var(--header-border);
  border-radius: var(--header-radius);
}

/* ── Navbar Scrolled State ──────────────────────────────────── */
.navbar-dwaka.navbar-scrolled {
  box-shadow: var(--header-shadow-scrolled);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ── Navbar over hero (transparent until scroll, desktop only) ── */
@media (min-width: 992px) {
  .navbar-dwaka.navbar-over-hero {
    background-color: transparent;
    border-bottom-color: transparent;
    height: var(--header-height);
    min-height: var(--header-height);
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
    display: flex;
    margin-top: -15px;
  }
  .navbar-dwaka.navbar-over-hero .container {
    display: flex;
    align-items: center;
  }
  .navbar-dwaka.navbar-over-hero .navbar-brand {
    padding: 0;
  }
  .navbar-dwaka.navbar-over-hero.navbar-solid {
    background-color: var(--header-bg);
    border-bottom-color: var(--header-border);
    box-shadow: var(--header-shadow-scrolled);
  }
}
/* ── Light mode for navbar over hero (transparent → white text) ── */
@media (min-width: 992px) {
  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .navbar-brand span,
  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .nav-link-dwaka {
    color: #ffffff;
  }

  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .navbar-brand small {
    color: rgba(255, 255, 255, 0.85);
  }

  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .nav-link-dwaka:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
  }

  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .nav-link-dwaka.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
  }

  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .nav-link-dwaka.active::after {
    background-color: var(--primary);
  }

  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .navbar-toggler-icon {
    filter: invert(1);
  }
}

/* ── Solid navbar (scrolled) → dark text ─────────────────── */
@media (min-width: 992px) {
  .navbar-dwaka.navbar-over-hero.navbar-solid .navbar-brand span,
  .navbar-dwaka.navbar-over-hero.navbar-solid .nav-link-dwaka {
    color: var(--text-dark);
  }

  .navbar-dwaka.navbar-over-hero.navbar-solid .navbar-brand small {
    color: var(--text-muted);
  }

  .navbar-dwaka.navbar-over-hero.navbar-solid .navbar-toggler-icon {
    filter: none;
  }
}

/* ── Toggler hover/focus over hero (transparent) ──────────── */
@media (min-width: 992px) {
  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .navbar-toggler:hover,
  .navbar-dwaka.navbar-over-hero:not(.navbar-solid) .navbar-toggler:focus {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }
}

/* ── Brand Logo ──────────────────────────────────────────── */
.navbar-brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

/* ── Brand Tagline ───────────────────────────────────────── */
.navbar-brand-tagline {
  font-size: 0.7rem;
}

/* ── Toggler ──────────────────────────────────────────────── */
.navbar-toggler {
  border: none;
  box-shadow: none;
}
.navbar-toggler:hover,
.navbar-toggler:focus {
  background-color: var(--primary);
  color: var(--navy-dark);
  transform: scale(1.04);
}
.navbar-toggler:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
  border-radius: var(--header-link-radius);
}

/* ── Navigation Links ─────────────────────────────────────── */
.nav-link-dwaka {
  color: var(--header-text);
  font-weight: var(--header-link-font-weight);
  font-size: var(--header-link-font-size);
  padding: var(--header-link-padding) !important;
  border-radius: var(--header-link-radius);
  position: relative;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  min-height: var(--header-cta-height);
  text-decoration: none;
}

.nav-link-dwaka:hover {
  color: var(--header-text-hover);
  background-color: var(--header-link-hover-bg);
}

.nav-link-dwaka:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
  box-shadow: var(--header-focus-ring);
}

.nav-link-dwaka.active {
  color: var(--header-text-active);
  font-weight: 700;
  background-color: var(--header-link-active-bg);
}

.nav-link-dwaka.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  background-color: var(--accent-dark);
  border-radius: 3px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* ── Dropdown ────────────────────────────────────────────── */
.navbar-dropdown-dwaka {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1060;
  list-style: none;
}

.navbar-dropdown-dwaka.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-dropdown-dwaka .dropdown-item-dwaka {
  display: block;
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.navbar-dropdown-dwaka .dropdown-item-dwaka:hover {
  background-color: var(--header-link-hover-bg);
  color: var(--accent-dark);
}

.navbar-dropdown-dwaka .dropdown-item-dwaka:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
  box-shadow: var(--header-focus-ring);
}

.navbar-dropdown-dwaka .dropdown-item-dwaka.active {
  background-color: var(--header-link-active-bg);
  color: var(--accent-dark);
  font-weight: 700;
}

/* ── Nav Item Wrapper ────────────────────────────────────── */
.navbar-item-dwaka {
  position: relative;
}

/* ── Header Actions ──────────────────────────────────────── */
.header-actions-dwaka {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================================================
   HERO SECTION (Bootstrap Carousel + Overlay)
   ========================================================================== */
.hero-section {
  padding: 0;
}

/* Full-width hero pulled up behind the transparent sticky navbar (merged look) */
.hero-section-full {
  margin-top: calc(-1 * var(--navbar-height));
}

.hero-carousel-container {
  border-radius: 0 !important;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  position: relative;
}

/* Ensure hero corners are square */
.hero-carousel-container,
.hero-carousel-container .carousel-inner,
.hero-slide-item,
.hero-overlay,
.hero-carousel-container img,
.hero-slide-item img {
  border-radius: 0 !important;
}

.hero-slide-item {
  height: 100vh;
  height: 100svh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* Slide with text hidden: keep the image clean (lighter overlay) */
.hero-slide-no-text .hero-overlay {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.55) 0%, rgba(10, 37, 64, 0.25) 60%, rgba(0, 0, 0, 0.15) 100%);
}

/* Hero: no-text fallback — solid gradient when all slides hide text */
.hero-section-full:has(.carousel-item.active.hero-slide-no-text) .hero-overlay {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.6) 0%, rgba(10, 37, 64, 0.3) 100%);
}

/* Hero: ensure carousel renders even with no-text slides */
.hero-carousel-container:empty {
  min-height: 400px;
  background-color: var(--navy-dark);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.78) 0%, rgba(30, 64, 110, 0.5) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #ffffff;
  max-width: 720px;
  padding: 0 24px 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #E2E8F0;
  margin-bottom: 28px;
  font-weight: 500;
  max-width: 560px;
}

.carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  transition: var(--transition);
}

.carousel-indicators .active {
  width: 24px;
  border-radius: 6px;
  background-color: #ffffff;
}

/* ==========================================================================
   HERO CAROUSEL — REFINED TRANSITION & CONTENT ANIMATION
   ========================================================================== */
/* Smoother, slightly longer cross-fade between slides */
.hero-carousel-container.carousel-fade .carousel-item {
  transition: opacity 0.9s ease-in-out;
}
.hero-carousel-container.carousel-fade .carousel-item.active.carousel-item-start,
.hero-carousel-container.carousel-fade .carousel-item.active.carousel-item-end {
  opacity: 0;
}

/* Subtle Ken Burns pan on the active background for a premium feel.
   Uses cover + background-position (never background-size %) so the image
   always fills the slide and cannot repeat/clone on tall portrait screens. */
.hero-carousel-container .hero-slide-item {
  will-change: background-position;
}
.hero-carousel-container .carousel-item.active .hero-slide-item {
  background-position: 50% 30%;
  transition: background-position 9s linear;
}

/* Refined content entrance (badge, title, subtitle, buttons) */
.hero-carousel-container .hero-content > * {
  opacity: 0;
  transform: translateY(18px);
}
.hero-carousel-container .carousel-item.active .hero-content > * {
  animation: dwakaHeroFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.hero-carousel-container .carousel-item.active .hero-badge { animation-delay: 0.05s; }
.hero-carousel-container .carousel-item.active .hero-title  { animation-delay: 0.18s; }
.hero-carousel-container .carousel-item.active .hero-subtitle { animation-delay: 0.32s; }
.hero-carousel-container .carousel-item.active .hero-buttons { animation-delay: 0.46s; }

@keyframes dwakaHeroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-card-container {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent-dark);
}

.feature-box {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.feature-box:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  background-color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy-dark);
  font-size: 1.4rem;
  box-shadow: 0 6px 14px rgba(74, 163, 216, 0.25);
}

.feature-box:hover .feature-icon-wrapper {
  background-color: var(--accent-dark);
  color: #ffffff;
}

/* ==========================================================================
   KATALOG SECTION
   ========================================================================== */
.katalog-section {
  background-color: var(--bg-canvas);
  padding: 80px 0;
  margin: 0;
  position: relative;
  scroll-margin-top: calc(var(--navbar-height) + 10px);
}

/* Post-hero content: contained with side margins only (no visible card wrapper) */
.page-card-dwaka {
  max-width: 1360px;
  margin: 24px auto 0;
  padding: 0 16px;
}

/* Home "Klien Kami" / Trusted Partners section */
.about-section { background: #fff; }

/* Trusted Partners marquee sits in a light-blue band so the white chips pop */
#clientsSection {
  background: linear-gradient(180deg, var(--secondary) 0%, #f7fbfd 100%);
  border-bottom: 1px solid var(--line);
}

/* ── Trusted Partners horizontal marquee (pure CSS) ────────────────────── */
.clients-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}
.clients-marquee-wrap::before,
.clients-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.clients-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bs-body-bg, #fff), transparent);
}
.clients-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bs-body-bg, #fff), transparent);
}
.clients-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clients-marquee 40s linear infinite;
  will-change: transform;
}
.clients-marquee-track > * { flex: 0 0 auto; }
.clients-marquee-wrap:hover .clients-marquee-track {
  animation-play-state: paused;
}
@keyframes clients-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clients-marquee-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
  height: 82px;
  margin-right: 24px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.clients-marquee-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.clients-marquee-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #f8f9fa;
}
.clients-marquee-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}
.clients-marquee-logo i { font-size: 24px; opacity: 0.5; }
.clients-marquee-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .clients-marquee-item {
    min-width: 160px;
    height: 72px;
    padding: 10px 15px;
    margin-right: 16px;
  }
  .clients-marquee-logo { width: 44px; height: 44px; flex-basis: 44px; }
  .clients-marquee-name { font-size: 13px; }
  .clients-marquee-wrap::before,
  .clients-marquee-wrap::after { width: 45px; }
}
@media (prefers-reduced-motion: reduce) {
  .clients-marquee-track { animation: none; }
  .clients-marquee-wrap { overflow: visible; }
  .clients-marquee-wrap::before,
  .clients-marquee-wrap::after { display: none; }
  .clients-marquee-item { margin: 6px; }
}

.package-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--line);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid var(--accent-dark);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary-hover);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.package-img-wrapper {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.package-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img {
  transform: scale(1.07);
}

.package-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.package-title a:hover {
  color: var(--accent-dark) !important;
}

.package-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

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

.package-price-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.package-rating {
  font-size: 0.8rem;
  color: #B45309;
  font-weight: 700;
}

.package-rating .text-warning {
  color: #F59E0B !important;
}

/* ==========================================================================
   FAQ & REQUEST FORM SECTION
   ========================================================================== */
.faq-section {
  padding: 60px 0;
}

.accordion-dwaka .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-dwaka .accordion-button {
  font-weight: 700;
  color: var(--text-dark);
  background-color: var(--bg-white);
  padding: 16px 18px;
  box-shadow: none !important;
}

.accordion-dwaka .accordion-button:not(.collapsed) {
  color: var(--accent-dark);
  background-color: var(--secondary);
}

.form-request-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}

.form-dwaka .form-control,
.form-dwaka .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  padding: 11px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
}

.form-dwaka .form-control:focus,
.form-dwaka .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 163, 216, 0.18);
}

.form-dwaka .input-group-text {
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 37, 64, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #ffffff;
  font-size: 1.5rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==========================================================================
   REVIEWS / TESTIMONIALS
   ========================================================================== */
.review-section {
  background-color: var(--bg-canvas);
  padding: 70px 0;
  border-radius: var(--radius-lg);
  margin: 40px 0;
  position: relative;
}

.review-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent-dark);
  height: 100%;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.clients-marquee-wrap .review-card {
  display: flex;
  flex-direction: column;
  vertical-align: top;
  width: 300px;
  height: 270px;
  margin-right: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.clients-marquee-wrap .review-card .stars { color: #F59E0B; }
.clients-marquee-wrap .review-card .text-muted {
  flex: 1 1 auto;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clients-marquee-wrap .review-card .d-flex {
  margin-top: auto;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.star-rating {
  color: #F59E0B;
  font-size: 0.9rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-dwaka {
  background-color: #0F2D48;
  color: #94A3B8;
  padding: 60px 0 24px;
}

.footer-dwaka h5 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.footer-dwaka a {
  color: #94A3B8;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer-dwaka a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 40px;
  font-size: 0.85rem;
}

/* Back to Top Button */
#btnBackToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background-color: var(--accent-dark);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(14, 125, 184, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

#btnBackToTop.show {
  opacity: 1;
  visibility: visible;
}

#btnBackToTop:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* ==========================================================================
   PACKAGE DETAIL PAGE STYLING
   ========================================================================== */
.package-detail-gallery-main {
  height: 420px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.package-detail-thumb {
  height: 90px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}

.package-detail-thumb.active,
.package-detail-thumb:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.itinerary-timeline {
  position: relative;
  padding-left: 32px;
  border-left: 3px solid var(--line);
  margin-left: 12px;
  margin-top: 20px;
}

.itinerary-step {
  position: relative;
  margin-bottom: 28px;
}

.itinerary-step:last-child {
  margin-bottom: 0;
}

.itinerary-dot {
  position: absolute;
  left: -41px;
  top: 4px;
  width: 18px;
  height: 18px;
  background-color: var(--accent);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--accent);
}

.itinerary-badge {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--accent-dark);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  margin-bottom: 8px;
}

/* ── Private Package Itinerary Highlight ─────────────────────── */
.itinerary-section-active {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 163, 216, 0.15), var(--shadow-card);
  position: relative;
}
.itinerary-section-active::before {
  content: 'Detail & Penawaran Khusus Paket Privat';
  position: absolute;
  top: -13px;
  left: 16px;
  background-color: var(--bg-white);
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.itinerary-step-highlighted {
  background-color: rgba(74, 163, 216, 0.06);
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  margin-left: -15px;
  padding-right: 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.itinerary-step-highlighted .itinerary-dot {
  background-color: var(--accent-dark);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 2px var(--accent-dark);
}
.itinerary-step-highlighted .itinerary-badge {
  background-color: var(--accent-dark);
  color: #ffffff;
}
.itinerary-step-highlighted h5 {
  color: var(--navy-dark);
}

/* PDF preview section connecting line when itinerary is active */
.detail-block-card.pdf-section-active {
  border-top: 3px solid var(--accent);
  margin-top: -2px;
}

/* ── Private Unlock Banner Active ────────────────────────────── */
.private-unlock-banner.itinerary-active {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(74, 163, 216, 0.08) 0%, rgba(74, 163, 216, 0.03) 100%);
}
/* ── WhatsApp Confirm Modal ───────────────────────── */
#waConfirmModal .modal-content {
  border-radius: 12px;
}
#waConfirmModal pre {
  font-size: 0.82rem;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* ── Package Detail Scrollspy Nav ────────────────────── */
#pkgScrollspy {
  position: sticky;
  top: 90px;
  z-index: 10;
}
#pkgScrollspy .nav-link-dwaka {
  font-size: 0.82rem;
  padding: 8px 16px;
  min-height: auto;
  border-radius: 50px !important;
  transition: var(--transition);
}
#pkgScrollspy .nav-link-dwaka.active {
  background-color: var(--accent-dark);
  color: #ffffff;
  border-color: var(--accent-dark);
}
#pkgScrollspy .nav-link-dwaka:not(.active):hover {
  background-color: var(--primary);
  color: var(--navy-dark);
}

/* Desktop scrollspy nav — floating left sidebar */
@media (min-width: 992px) {
  .pkg-scrollspy-desktop {
    position: sticky;
    top: 100px;
    align-self: start;
    width: 160px;
    flex-shrink: 0;
  }
  .pkg-scrollspy-desktop .nav-link-dwaka {
    font-size: 0.8rem;
    padding: 10px 14px;
    min-height: auto;
    border-radius: var(--radius-sm) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
  .pkg-scrollspy-desktop .nav-link-dwaka.active {
    background-color: var(--accent-dark);
    color: #ffffff;
  }
  .pkg-scrollspy-desktop .nav-link-dwaka:not(.active):hover {
    background-color: var(--primary);
    color: var(--navy-dark);
  }
}


.sticky-booking-card {
  position: sticky;
  top: 90px;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent-dark);
  z-index: 20;
}

.detail-feature-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

/* Shared subtle card for detail sub-blocks */
.detail-block-card {
  background-color: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 26px;
}

.include-item,
.exclude-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.include-item i {
  color: #10B981;
  font-size: 1.1rem;
  margin-top: 2px;
}

.exclude-item i {
  color: #EF4444;
  font-size: 1.1rem;
  margin-top: 2px;
}

/* ==========================================================================
   PRIVATE PACKAGE (blur + request access)
   ========================================================================== */
.private-content-wrap {
  position: relative;
}
.private-content-wrap.is-blurred {
  pointer-events: none;
  user-select: none;
  touch-action: none;
}

.private-content-wrap.is-blurred .itinerary-timeline {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 16px;
}

.private-content-wrap.is-blurred .overflow-hidden {
  filter: blur(6px);
}

.itinerary-blurred-placeholder {
  background: linear-gradient(135deg, var(--secondary) 0%, #f8f9fa 100%);
  border: 1px dashed var(--line);
  opacity: 0.8;
}

.itinerary-blurred-placeholder .itinerary-step {
  opacity: 0.5;
}

.private-unlock-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
}

/* ==========================================================================
   PAGE HEADER BANNER (shared on subpages)
   ========================================================================== */
.page-header-dwaka {
  background-color: var(--secondary);
  padding: 48px 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.page-header-dwaka .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(10, 37, 64, 0.4);
}

.page-header-dwaka .breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

.page-header-dwaka .breadcrumb-item a:hover {
  color: var(--accent-dark);
}

.page-header-dwaka .breadcrumb-item.active {
  color: var(--accent-dark);
  font-weight: 700;
}

/* ==========================================================================
   CARDS (generic)
   ========================================================================== */
.card-dwaka {
  background-color: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* Info contact block */
.info-contact-item {
  background-color: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.info-contact-item:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner-dwaka {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  max-width: 820px;
}

.cta-banner-dwaka .cta-body {
  position: relative;
  z-index: 2;
}

.cta-banner-dwaka::after {
  content: '';
  position: absolute;
  z-index: 1;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(168, 213, 229, 0.14);
  pointer-events: none;
}

.cta-banner-dwaka::before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.cta-banner-dwaka .cta-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: var(--navy-dark);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.cta-banner-dwaka h2,
.cta-banner-dwaka h3 {
  color: #ffffff;
}

.cta-banner-dwaka .lead-desc {
  color: rgba(255, 255, 255, 0.82);
}

/* ==========================================================================
   CONTACT PAGE INFO ICONS
   ========================================================================== */
.info-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--secondary);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   USEFUL LINKS / SMALL PARAGRAPHS
   ========================================================================== */
