/* Base Rules */
:root {
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  /* Gold Accent Palette */
  --color-gold-dark: #936521;
  --color-gold-primary: #c09f50;
  --color-gold-light: #f6e58d;
  /* Dark Background Palette */
  --color-bg-main: #1e1e1e;
  --color-bg-card: #242424;
  --color-bg-elevated: #272727;
  /* Text Colors */
  --color-text-primary: #ede6d6;
  --color-text-secondary: #96938e;
  /* Borders & Lines */
  --color-border: #4f4d49;
  /* Extended Utility Colors */
  --color-card-hover: #2a2a2a;
  --color-overlay: rgba(0, 0, 0, 0.75);
  --color-whatsapp: #25d366;
  /* Shadows & Glows */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-gold-glow: 0 0 15px rgba(192, 159, 80, 0.2);
}

/* Breakpoint Utilities */
/* Utility Icon Container */
[data-icon] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
[data-icon] svg {
  display: block;
  width: 1.3em;
  height: 1.3em;
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  line-height: 1.2;
}

/* Elements Base */
a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Base Rules */
/* Animations & Transitions */
/* Base Observer Animation Setup */
[class*=animate-] {
  opacity: 0;
  will-change: transform, opacity;
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animation Variants */
.animate-slideup {
  transform: translateY(35px);
}

.animate-slidedown {
  transform: translateY(-35px);
}

.animate-fadein {
  transform: scale(1);
}

.animate-zoomin {
  transform: scale(0.92);
}

/* Triggered State via JS Observer */
[class*=animate-].is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Staggered Delay Utilities */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* Luxury Glow Keyframes */
@keyframes goldPulse {
  0%, 100% {
    box-shadow: var(--shadow-gold-glow);
  }
  50% {
    box-shadow: 0 0 25px rgb(from var(--color-gold-primary) r g b/0.4);
  }
}
.glow-gold-pulse {
  animation: goldPulse 3s infinite ease-in-out;
}

/* Accessibility: Motion Preference */
@media (prefers-reduced-motion: reduce) {
  [class*=animate-] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* Base Rules */
/* ==========================================================================
   #01 ICON
   Cara pake: <i class="sn-icon" data-icon="whatsapp"></i>
   Fungsi   : Mengatur ukuran SVG agar responsif mengikuti font-size & warna parent.
   ========================================================================== */
.sn-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  color: currentColor;
  flex-shrink: 0;
}
.sn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==========================================================================
   #02 ANIMATION UTILITIES
   Cara pake (Single Item)   : <div class="sn-animate-slideup">
   Cara pake (Manual Delay)  : <div class="sn-animate-slideup delay-200">
   Cara pake (Auto Stagger)  : Pasang class "sn-stagger" di kontainer induk (Lihat #02.4)
   Fungsi                    : Animasi muncul saat di-scroll (dikontrol JS via .is-visible).
   ========================================================================== */
[class*=sn-animate-] {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* #02.1 Varian Animasi */
.sn-animate-slideup {
  transform: translateY(35px);
}

.sn-animate-slidedown {
  transform: translateY(-35px);
}

.sn-animate-slideleft {
  transform: translateX(40px);
}

.sn-animate-slideright {
  transform: translateX(-40px);
}

.sn-animate-fadein {
  transform: translateY(0);
}

.sn-animate-zoomin {
  transform: scale(0.92);
}

/* #02.2 State Visible (Ditrigger oleh IntersectionObserver JS) */
.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* #02.3 Manual Delay Utilities */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

/* #02.4 Auto Stagger (Animasi Berurutan Otomatis Tanpa Class Delay)
   Cara pake: <div class="card-grid sn-stagger">
                <div class="card sn-animate-slideup">Card 1</div>
                <div class="card sn-animate-slideup">Card 2</div>
                <div class="card sn-animate-slideup">Card 3</div>
              </div>
   Fungsi   : Memberi jeda waktu otomatis antar elemen anak (anak ke-1 delay 0.08s, ke-2 delay 0.16s, dst). */
.sn-stagger > *:nth-child(1) {
  transition-delay: 0.08s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(2) {
  transition-delay: 0.16s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(3) {
  transition-delay: 0.24s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(4) {
  transition-delay: 0.32s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(5) {
  transition-delay: 0.4s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(6) {
  transition-delay: 0.48s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(7) {
  transition-delay: 0.56s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(8) {
  transition-delay: 0.64s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(9) {
  transition-delay: 0.72s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(10) {
  transition-delay: 0.8s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(11) {
  transition-delay: 0.88s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(12) {
  transition-delay: 0.96s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(13) {
  transition-delay: 1.04s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(14) {
  transition-delay: 1.12s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger > *:nth-child(15) {
  transition-delay: 1.2s; /* Jeda default: 80ms antar elemen */
}
.sn-stagger {
  /* Varian Cepat (Jeda 40ms) -> <div class="grid sn-stagger is-fast"> */
}
.sn-stagger.is-fast > *:nth-child(1) {
  transition-delay: 0.04s;
}
.sn-stagger.is-fast > *:nth-child(2) {
  transition-delay: 0.08s;
}
.sn-stagger.is-fast > *:nth-child(3) {
  transition-delay: 0.12s;
}
.sn-stagger.is-fast > *:nth-child(4) {
  transition-delay: 0.16s;
}
.sn-stagger.is-fast > *:nth-child(5) {
  transition-delay: 0.2s;
}
.sn-stagger.is-fast > *:nth-child(6) {
  transition-delay: 0.24s;
}
.sn-stagger.is-fast > *:nth-child(7) {
  transition-delay: 0.28s;
}
.sn-stagger.is-fast > *:nth-child(8) {
  transition-delay: 0.32s;
}
.sn-stagger.is-fast > *:nth-child(9) {
  transition-delay: 0.36s;
}
.sn-stagger.is-fast > *:nth-child(10) {
  transition-delay: 0.4s;
}
.sn-stagger.is-fast > *:nth-child(11) {
  transition-delay: 0.44s;
}
.sn-stagger.is-fast > *:nth-child(12) {
  transition-delay: 0.48s;
}
.sn-stagger.is-fast > *:nth-child(13) {
  transition-delay: 0.52s;
}
.sn-stagger.is-fast > *:nth-child(14) {
  transition-delay: 0.56s;
}
.sn-stagger.is-fast > *:nth-child(15) {
  transition-delay: 0.6s;
}
.sn-stagger {
  /* Varian Lambat (Jeda 150ms) -> <div class="grid sn-stagger is-slow"> */
}
.sn-stagger.is-slow > *:nth-child(1) {
  transition-delay: 0.15s;
}
.sn-stagger.is-slow > *:nth-child(2) {
  transition-delay: 0.3s;
}
.sn-stagger.is-slow > *:nth-child(3) {
  transition-delay: 0.45s;
}
.sn-stagger.is-slow > *:nth-child(4) {
  transition-delay: 0.6s;
}
.sn-stagger.is-slow > *:nth-child(5) {
  transition-delay: 0.75s;
}
.sn-stagger.is-slow > *:nth-child(6) {
  transition-delay: 0.9s;
}
.sn-stagger.is-slow > *:nth-child(7) {
  transition-delay: 1.05s;
}
.sn-stagger.is-slow > *:nth-child(8) {
  transition-delay: 1.2s;
}
.sn-stagger.is-slow > *:nth-child(9) {
  transition-delay: 1.35s;
}
.sn-stagger.is-slow > *:nth-child(10) {
  transition-delay: 1.5s;
}
.sn-stagger.is-slow > *:nth-child(11) {
  transition-delay: 1.65s;
}
.sn-stagger.is-slow > *:nth-child(12) {
  transition-delay: 1.8s;
}
.sn-stagger.is-slow > *:nth-child(13) {
  transition-delay: 1.95s;
}
.sn-stagger.is-slow > *:nth-child(14) {
  transition-delay: 2.1s;
}
.sn-stagger.is-slow > *:nth-child(15) {
  transition-delay: 2.25s;
}

/* ==========================================================================
   #03 GOLD EFFECTS
   Cara pake: <h1 class="sn-text-gradient">Teks Emas Shimmer</h1>
              <div class="glow-gold-pulse">Kotak Glowing Emas</div>
   Fungsi   : Efek gradasi berkilau berjalan dan pendaran glow pada box.
   ========================================================================== */
.sn-text-gradient {
  background: linear-gradient(90deg, var(--color-gold-primary), #FFD700, var(--color-gold-primary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 3s linear infinite;
}

@keyframes goldShimmer {
  to {
    background-position: 200% center;
  }
}
.glow-gold-pulse {
  animation: goldPulse 3s infinite ease-in-out;
}

@keyframes goldPulse {
  0%, 100% {
    box-shadow: var(--shadow-gold-glow);
  }
  50% {
    box-shadow: 0 0 25px rgba(192, 159, 80, 0.4);
  }
}
/* ==========================================================================
   #04 SN THREAD - VERSI FULL DIAGONAL
   Cara pake: <div class="testimonial-card sn-thread-gold">...</div>
   Fungsi   : Hiasan motif benang emas melintang diagonal + kilau sparkle.
   ========================================================================== */
.sn-thread-gold {
  --sn-thread-dark: #936521;
  --sn-thread-base: #c09f50;
  --sn-thread-light: #f6e58d;
  --sn-thread-glow: rgba(192, 159, 80, 0.3);
  position: relative;
  overflow: hidden;
}
.sn-thread-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 200' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='tg1' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='currentColor' stop-opacity='0'/%3E%3Cstop offset='25%25' stop-color='currentColor' stop-opacity='0.5'/%3E%3Cstop offset='60%25' stop-color='currentColor' stop-opacity='0.9'/%3E%3Cstop offset='85%25' stop-color='currentColor' stop-opacity='0.4'/%3E%3Cstop offset='100%25' stop-color='currentColor' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='tg2' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='currentColor' stop-opacity='0'/%3E%3Cstop offset='35%25' stop-color='currentColor' stop-opacity='0.75'/%3E%3Cstop offset='75%25' stop-color='currentColor' stop-opacity='0.3'/%3E%3Cstop offset='100%25' stop-color='currentColor' stop-opacity='0'/%3E%3C/linearGradient%3E%3CradialGradient id='tsparkle'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='1'/%3E%3Cstop offset='25%25' stop-color='currentColor' stop-opacity='0.8'/%3E%3Cstop offset='60%25' stop-color='currentColor' stop-opacity='0.25'/%3E%3Cstop offset='100%25' stop-color='currentColor' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d='M-20 170 C 70 90, 160 190, 320 45' stroke='url(%23tg1)' stroke-width='1.4' stroke-linecap='round'/%3E%3Cpath d='M0 190 C 85 115, 175 205, 320 75' stroke='url(%23tg2)' stroke-width='1.1' stroke-dasharray='3 5' stroke-linecap='round'/%3E%3Cpath d='M30 205 C 110 75, 190 155, 320 20' stroke='url(%23tg1)' stroke-width='0.8' stroke-opacity='0.5'/%3E%3Ccircle cx='60' cy='122' r='4' fill='url(%23tsparkle)'/%3E%3Ccircle cx='122' cy='142' r='3' fill='url(%23tsparkle)'/%3E%3Ccircle cx='188' cy='158' r='4.5' fill='url(%23tsparkle)'/%3E%3Ccircle cx='222' cy='95' r='3.5' fill='url(%23tsparkle)'/%3E%3Ccircle cx='278' cy='68' r='5' fill='url(%23tsparkle)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  pointer-events: none;
  opacity: 0.65;
  filter: drop-shadow(0 0 4px var(--sn-thread-glow));
  animation: threadGlowPulse 5s ease-in-out infinite alternate;
  z-index: 1;
  color: var(--sn-thread-base);
}

@keyframes threadGlowPulse {
  0% {
    opacity: 0.55;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0.8;
    transform: translate3d(-2px, -3px, 0);
  }
}
/* ==========================================================================
   #05 SN THREAD - VERSI BAWAH MELENGKUNG
   Cara pake: <div class="service-card sn-thread-gold-bottom">...</div>
   Fungsi   : Hiasan benang emas melengkung halus di area bawah kartu/box.
   ========================================================================== */
.sn-thread-gold-bottom {
  --sn-thread-dark: #936521;
  --sn-thread-base: #c09f50;
  --sn-thread-light: #f6e58d;
  --sn-thread-glow: rgba(192, 159, 80, 0.3);
  position: relative;
  overflow: hidden;
}
.sn-thread-gold-bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 48' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='tgb1' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='currentColor' stop-opacity='0'/%3E%3Cstop offset='25%25' stop-color='currentColor' stop-opacity='0.9'/%3E%3Cstop offset='75%25' stop-color='currentColor' stop-opacity='0.9'/%3E%3Cstop offset='100%25' stop-color='currentColor' stop-opacity='0'/%3E%3C/linearGradient%3E%3CradialGradient id='tgsparkle'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='1'/%3E%3Cstop offset='50%25' stop-color='currentColor' stop-opacity='0.8'/%3E%3Cstop offset='100%25' stop-color='currentColor' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cpath d='M0 38 C 100 12, 200 44, 400 28' stroke='url(%23tgb1)' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M0 43 C 120 18, 240 46, 400 33' stroke='url(%23tgb1)' stroke-width='0.9' stroke-dasharray='4 6' stroke-opacity='0.7'/%3E%3Ccircle cx='120' cy='20' r='2.5' fill='url(%23tgsparkle)'/%3E%3Ccircle cx='280' cy='30' r='3' fill='url(%23tgsparkle)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  opacity: 0.85;
  filter: drop-shadow(0 0 5px var(--sn-thread-glow));
  z-index: 2;
  color: var(--sn-thread-base);
  transition: opacity 0.35s ease;
}
.sn-thread-gold-bottom:hover::before {
  opacity: 1;
}

/* ==========================================================================
   #06 SN BACKGROUND PATTERN
   Cara pake: <section class="sn-bg-pattern-gold">...</section>
              <section class="sn-bg-pattern-dots">...</section>
   Fungsi   : Pola latar transparan berulang dengan masking gradasi halus atas-bawah.
   ========================================================================== */
.sn-bg-pattern-gold {
  position: relative;
  overflow: hidden;
}
.sn-bg-pattern-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='currentColor' fill-opacity='0.4' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 28px 49px;
  background-repeat: repeat;
  color: var(--color-gold-primary);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.7) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.7) 90%, transparent 100%);
}

.sn-bg-pattern-dots {
  position: relative;
  overflow: hidden;
}
.sn-bg-pattern-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background-image: radial-gradient(currentColor 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  color: var(--color-gold-primary);
}

/* ==========================================================================
   #07 ACCESSIBILITY
   Fungsi   : Otomatis mematikan animasi saat user mengaktifkan pengaturan "Reduce Motion".
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  [class*=sn-animate-] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .sn-stagger > * {
    transition-delay: 0s !important;
  }
  .sn-text-gradient,
  .glow-gold-pulse,
  .sn-thread-gold::before,
  .sn-thread-gold-bottom::before {
    animation: none !important;
  }
}
/* Components Rules */
/* Base Rules */
/* Splash Screen Component */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--color-bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s ease;
}

/* Honeycomb Background Pattern */
.splash-honeycomb {
  position: absolute;
  left: 0;
  right: 0;
  height: 40vh;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='none' stroke='%23c09f50' stroke-width='0.8' opacity='0.25' d='M13.9 0L27.8 8v16L13.9 32 0 24V8zM0 32.5l13.9 8 13.9-8'/%3E%3C/svg%3E");
  background-size: 28px 49px;
}

.splash-honeycomb-top {
  top: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.splash-honeycomb-bottom {
  bottom: 0;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Light Line Glow Intro */
.splash-light-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
  box-shadow: 0 0 15px var(--color-gold-primary);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.splash-screen.start-line .splash-light-line {
  opacity: 1;
  transform: translate(-50%, -50%) scaleX(1);
}

.splash-screen.fade-line .splash-light-line {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(1.4);
}

/* Logo Setup & Entrance */
.splash-logo-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}

.splash-logo {
  max-width: 210px;
  height: auto;
  opacity: 0;
  transform: scale(0.85);
  filter: drop-shadow(0 0 20px rgba(var(--color-gold-primary-rgb, 192, 159, 80), 0.3));
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.splash-screen.show-logo .splash-logo {
  opacity: 1;
  transform: scale(1);
}

/* Firefly Particle System */
.splash-fireflies {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.firefly {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--color-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold-primary);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

/* Exit Dispersion Animation (Kunang-Kunang Berhamburan + Logo Zoom Out) */
.splash-screen.disperse-exit {
  opacity: 0;
}
.splash-screen.disperse-exit .splash-logo {
  opacity: 0;
  transform: scale(1.4);
  filter: blur(8px) drop-shadow(0 0 40px var(--color-gold-primary));
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease, filter 0.8s ease;
}
.splash-screen.disperse-exit .firefly:nth-child(1) {
  transform: translate(-180px, -220px) scale(2.5);
  opacity: 0.8;
}
.splash-screen.disperse-exit .firefly:nth-child(2) {
  transform: translate(220px, -150px) scale(3);
  opacity: 0.9;
}
.splash-screen.disperse-exit .firefly:nth-child(3) {
  transform: translate(-250px, 180px) scale(2);
  opacity: 0.7;
}
.splash-screen.disperse-exit .firefly:nth-child(4) {
  transform: translate(190px, 240px) scale(3.5);
  opacity: 0.8;
}
.splash-screen.disperse-exit .firefly:nth-child(5) {
  transform: translate(0px, -300px) scale(2.8);
  opacity: 0.9;
}

/* Base Rules */
/* ===== 1. STICKY GLASSMORPHISM HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 159, 80, 0.2);
  transition: all 0.3s ease;
}
.site-header.is-scrolled {
  background-color: rgba(24, 24, 24, 0.92);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--color-gold-primary);
}

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

.header-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ===== 2. MOBILE ACTIONS CAPSULE WRAPPER (<= 768px) ===== */
.mobile-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 4px 14px;
  background: rgba(39, 39, 39, 0.6);
  border: 1px solid rgba(192, 159, 80, 0.35);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (min-width: calc(768px + 1px)) {
  .mobile-actions-wrapper {
    display: none;
  }
}

.mobile-btn-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-gold-light);
  transition: color 0.25s ease;
}
.mobile-btn-cta:hover {
  color: var(--color-gold-primary);
}
.mobile-btn-cta [data-icon] {
  font-size: 1.15em;
  color: var(--color-gold-primary);
}

.mobile-action-divider {
  width: 1px;
  height: 18px;
  background: rgba(192, 159, 80, 0.25);
}

.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--color-gold-primary);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease;
}
.hamburger-btn:hover {
  background: rgba(192, 159, 80, 0.15);
}
.hamburger-btn .icon-close {
  display: none;
}
.hamburger-btn.is-active .icon-menu {
  display: none;
}
.hamburger-btn.is-active .icon-close {
  display: block;
}

/* ===== 3. DESKTOP NAVIGATION (> 768px) ===== */
.desktop-nav {
  display: none;
}
@media (min-width: calc(768px + 1px)) {
  .desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    margin-left: 40px;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  border-radius: 30px;
  border: 1px solid rgba(192, 159, 80, 0.25);
  background: rgba(39, 39, 39, 0.35);
  transition: all 0.25s ease;
}
.nav-link.active, .nav-link:hover {
  color: var(--color-gold-light);
  background: rgba(192, 159, 80, 0.12);
  border-color: var(--color-gold-primary);
  font-weight: 600;
}
.nav-link.is-dimmed {
  color: var(--color-text-secondary);
  border-color: rgba(192, 159, 80, 0.08);
  background: rgba(30, 30, 30, 0.15);
  opacity: 0.35;
  font-weight: 500;
}

/* ===== CTA GOLD BUTTON ===== */
.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--color-gold-primary);
  color: #000;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-gold-glow);
  transition: all 0.3s ease;
}
.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(192, 159, 80, 0.4);
  filter: brightness(1.1);
}
.btn-cta-gold.full-width {
  width: 100%;
  border-radius: 8px;
}

/* ===== 4. SIDEBAR DRAWER & OVERLAY ===== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sidebar-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background-color: var(--color-bg-card);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.7);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.sidebar-drawer.is-active {
  right: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-logo {
  height: 28px;
  width: auto;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
}

.sidebar-close-btn {
  color: var(--color-text-secondary);
  cursor: pointer;
}
.sidebar-close-btn:hover {
  color: var(--color-gold-primary);
}

.sidebar-divider {
  height: 1px;
  margin: 18px 0 24px 0;
  background: linear-gradient(90deg, var(--color-gold-primary) 0%, rgba(192, 159, 80, 0.1) 100%);
  border: none;
  z-index: 2;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  z-index: 2;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--color-text-primary);
  font-weight: 500;
  transition: all 0.25s ease;
}
.sidebar-link [data-icon] {
  color: var(--color-gold-primary);
  transition: transform 0.25s ease;
}
.sidebar-link:hover, .sidebar-link.active {
  background: rgba(192, 159, 80, 0.12);
  color: var(--color-gold-light);
}
.sidebar-link:hover [data-icon], .sidebar-link.active [data-icon] {
  transform: translateX(3px);
}

.sidebar-cta {
  padding-top: 20px;
  margin-top: auto;
}

/* ===== 5. SVG HONEYCOMB BACKGROUND AT SIDEBAR BOTTOM ===== */
.sidebar-honeycomb-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 390px;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='none' stroke='%23c09f50' stroke-width='0.8' opacity='0.25' d='M13.9 0L27.8 8v16L13.9 32 0 24V8zM0 32.5l13.9 8 13.9-8'/%3E%3C/svg%3E");
  background-size: 28px 49px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Base Rules */
/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 90px 0 60px 0;
  background-color: var(--color-bg-main);
  overflow: hidden;
}
@media (min-width: calc(768px + 1px)) {
  .hero-section {
    padding: 110px 0 80px 0;
  }
}

/* 1. Siluet Soft Gold Glow Effect (OPTIMIZED - TANPA FILTER BLUR) */
.hero-glow-bg {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%) translateZ(0); /* Hardware Acceleration */
  width: 100%;
  max-width: 700px;
  height: 450px;
  /* Gradasi emas langsung dibuat pudar halus tanpa butuh filter: blur() */
  background: radial-gradient(circle, rgba(192, 159, 80, 0.18) 0%, rgba(192, 159, 80, 0.06) 40%, rgba(30, 30, 30, 0) 70%);
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

/* 2. Enlarged Dot Pattern Grid Background (OPTIMIZED) */
.hero-dot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(192, 159, 80, 0.22) 1.8px, transparent 1.8px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, rgb(0, 0, 0) 35%, rgba(0, 0, 0, 0) 85%);
  -webkit-mask-image: radial-gradient(circle at center, rgb(0, 0, 0) 35%, rgba(0, 0, 0, 0) 85%);
  transform: translateZ(0); /* Memaksa browser pakai GPU layer khusus */
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: calc(768px + 1px)) {
  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }
}

/* Kolom Teks Kiri */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Badge (Pewarnaan solid semi-transparan agar tidak perlu render backdrop-filter berat) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(30, 30, 30, 0.85); /* Pakai warna pekat sedikit sebagai ganti blur */
  border: 1px solid rgba(192, 159, 80, 0.35);
  border-radius: 30px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-gold-light);
  width: fit-content;
}
.hero-badge [data-icon] {
  color: var(--color-gold-primary);
  font-size: 1rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--color-text-primary);
}
@media (min-width: calc(768px + 1px)) {
  .hero-title {
    font-size: 2.75rem;
  }
}
.hero-title .text-gold {
  color: var(--color-gold-light);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.hero-actions [data-icon] {
  font-size: 1.2em;
}
@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
.btn-cta-outline:hover {
  background: rgba(192, 159, 80, 0.12);
  border-color: var(--color-gold-primary);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}
.btn-cta-outline [data-icon] {
  color: var(--color-gold-primary);
}

/* 3. Bento Grid dengan Aspect Ratio Presisi */
.hero-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.bento-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(192, 159, 80, 0.25);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.bento-item:hover img {
  transform: scale(1.04);
}

/* Gambar Potret Utama (Kiri) */
.bento-main {
  height: 100%;
  aspect-ratio: 3/4;
}

/* Sisi Kanan (Susun 2 Gambar) */
.bento-side-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.bento-sub {
  flex: 1;
  aspect-ratio: 16/9;
  min-height: 0;
}

.bento-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 14px;
  background: rgba(24, 24, 24, 0.9); /* Solid semi-transparan tanpa blur agar smooth */
  border: 1px solid rgba(192, 159, 80, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

/* Base Rules */
/* ===== ARMADA SECTION ===== */
.armada-section {
  position: relative;
  padding: 50px 0;
  padding-top: 10px;
  background-color: var(--color-bg-main);
}
@media (min-width: calc(768px + 1px)) {
  .armada-section {
    padding: 50px 0;
  }
}

/* Header Elements */
.armada-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: flex-start;
  gap: 14px;
  margin-bottom: 32px;
}

@media (min-width: calc(768px + 1px)) {
  .armada-header {
    align-items: center;
    text-align: center;
  }
}
.armada-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(39, 39, 39, 0.5);
  border: 1px solid rgba(192, 159, 80, 0.35);
  border-radius: 30px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.armada-badge [data-icon] {
  color: var(--color-gold-primary);
  font-size: 1rem;
}

.armada-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
}
@media (min-width: calc(768px + 1px)) {
  .armada-title {
    font-size: 2.5rem;
  }
}
.armada-title .text-gold {
  color: var(--color-gold-light);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.armada-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 580px;
}

/* Horizontal Scroll Filter Bar */
.armada-filters-wrapper {
  margin-bottom: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}
.armada-filters-wrapper::-webkit-scrollbar {
  display: none;
}

.armada-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .armada-filters {
    margin: 0;
    padding-right: 1.25rem;
  }
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 24px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-text-primary);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-dark) 100%);
  border-color: var(--color-gold-primary);
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-gold-glow);
}

/* Responsive Grid System */
.armada-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: calc(768px + 1px)) {
  .armada-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (min-width: calc(1200px + 1px)) {
  .armada-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

/* Armada Card Design */
.armada-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  /* Siluet Sarang Tawon di Bagian Bawah Card */
}
.armada-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='none' stroke='%23c09f50' stroke-width='0.8' opacity='0.5' d='M13.9 0L27.8 8v16L13.9 32 0 24V8zM0 32.5l13.9 8 13.9-8'/%3E%3C/svg%3E");
  background-size: 24px 42px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  transition: opacity 0.3s ease;
}
.armada-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 159, 80, 0.8);
  box-shadow: var(--shadow-card);
}
.armada-card:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='none' stroke='%23c09f50' stroke-width='0.8' opacity='0.6' d='M13.9 0L27.8 8v16L13.9 32 0 24V8zM0 32.5l13.9 8 13.9-8'/%3E%3C/svg%3E");
}
.armada-card.is-hidden {
  display: none !important;
}

.card-media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--color-bg-elevated);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-media:hover img {
  transform: scale(1.05);
}

.card-category-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(192, 159, 80, 0.3);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold-light);
  z-index: 2;
  display: none;
}

.card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px;
}
@media (min-width: calc(768px + 1px)) {
  .card-body {
    padding: 16px;
  }
}
.card-body [data-icon] {
  width: 1em;
  height: 1em;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: calc(768px + 1px)) {
  .card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
}

.card-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
@media (min-width: 480px) {
  .card-specs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}
.spec-item [data-icon] {
  color: var(--color-gold-primary);
  font-size: 0.875rem;
}

.card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 480px) {
  .card-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.card-price {
  display: flex;
  flex-direction: column;
}
.card-price .price-amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-light);
}
.card-price .price-duration {
  font-size: 0.7rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-price .price-duration [data-icon] {
  color: var(--color-gold-primary);
}

.btn-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 20px;
  background: var(--color-gold-primary);
  border: 1px solid var(--color-border);
  color: var(--color-bg-main);
  font-size: 0.775rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-card-cta:hover {
  background: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: #ffffff;
}
.btn-card-cta [data-icon] {
  color: var(--color-bg-main);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  width: 1.2em;
  height: 1.2em;
}
.btn-card-cta:hover [data-icon] {
  color: #ffffff;
}

/* Toggle Expand/Collapse Button Wrapper */
.armada-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  width: 100%;
}
.armada-toggle-wrapper.is-hidden {
  display: none;
}

.btn-toggle-armada {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: calc(768px + 1px)) {
  .btn-toggle-armada {
    width: auto;
    min-width: 280px;
    padding: 12px 36px;
  }
}
@media (min-width: calc(1200px + 1px)) {
  .btn-toggle-armada {
    min-width: 320px;
    padding: 14px 42px;
    font-size: 0.925rem;
  }
}
.btn-toggle-armada:hover {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-light);
  background: rgba(192, 159, 80, 0.1);
}
.btn-toggle-armada .toggle-icon {
  transition: transform 0.3s ease;
  color: var(--color-gold-primary);
}
.btn-toggle-armada.is-expanded .toggle-icon {
  transform: rotate(180deg);
}

/* Base Rules */
/* ===== SERVICES SECTION STYLING ===== */
.services-section {
  position: relative;
  padding: 30px 0 60px;
  background-color: var(--color-bg-main);
}

/* Header Styling & Spacing Fix */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section-header {
    align-items: center;
    text-align: center;
    margin-bottom: 56px;
  }
}

/* Badge Section */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--color-bg-card);
  border: 1px solid rgba(192, 159, 80, 0.35);
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.section-badge [data-icon] {
  color: var(--color-gold-primary);
}

/* Title & Gold Gradient Accent */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 2.35rem;
  }
}
.section-title .text-gold {
  color: var(--color-gold-primary);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description / Sub-headline */
.section-desc {
  font-size: 0.925rem;
  color: var(--color-text-secondary);
  max-width: 620px;
  margin: 0;
}

/* Grid Layout (3 Kolom di Desktop, 2 di Tablet, 1 di Mobile) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 901px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service Card Container */
.service-card {
  position: relative;
  min-height: 225px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--color-bg-card);
  border: 1px solid rgba(192, 159, 80, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), var(--shadow-gold-glow);
}
.service-card:hover .service-bg-img {
  transform: scale(1.08);
}
.service-card:hover .gold-thread {
  opacity: 1;
}

/* Background Image & Overlay */
.service-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.service-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.25) 0%, rgba(24, 24, 24, 0.78) 55%, rgba(18, 18, 18, 0.98) 100%);
}

/* Content Text inside Card */
.service-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-gold-light);
  font-style: italic;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.service-desc {
  font-size: 0.83rem;
  line-height: 1.5;
  color: rgba(237, 230, 214, 0.82);
  margin: 0;
}

/* Hiasan 2 Benang Emas & Kunang-kunang Glow */
.service-gold-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  pointer-events: none;
  z-index: 2;
}

.gold-thread {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

/* Bintik Kunang-kunang Emas */
.gold-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--color-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-gold-light), 0 0 10px var(--color-gold-primary);
  animation: pulseFirefly 3s infinite ease-in-out;
}
.gold-dot.dot-1 {
  left: 18%;
  bottom: 22px;
  animation-delay: 0s;
}
.gold-dot.dot-2 {
  left: 45%;
  bottom: 12px;
  width: 5px;
  height: 5px;
  animation-delay: 0.8s;
}
.gold-dot.dot-3 {
  left: 72%;
  bottom: 26px;
  animation-delay: 1.6s;
}
.gold-dot.dot-4 {
  left: 88%;
  bottom: 14px;
  width: 3px;
  height: 3px;
  animation-delay: 2.2s;
}

@keyframes pulseFirefly {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}
/* Base Rules */
/* Layout Utama Seksi */
.about-team-section {
  position: relative;
  padding: 50px 0;
  background-color: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
@media (min-width: calc(768px + 1px)) {
  .about-team-section {
    padding: 90px 0;
  }
}

.relative-z {
  position: relative;
  z-index: 2;
}

/* Latar Belakang Honeycomb */
.about-bg-honeycomb {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Overlay Motif Sarang Tawon (Honeycomb) */
}
.about-bg-honeycomb::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%239C92AC' fill-opacity='0.3' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 28px 49px;
  /* Masking gradasi: samar di atas (0%), jelas di tengah (20%-80%), samar lagi di bawah (100%) */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.7) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.7) 90%, transparent 100%);
}

/* Tata Letak Grid */
.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: calc(901px + 1px)) {
  .about-team-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
  }
}

/* Kolom Kiri: Informasi */
.about-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: flex-start;
  gap: 14px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(39, 39, 39, 0.5);
  border: 1px solid rgba(192, 159, 80, 0.35);
  border-radius: 30px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-gold-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.about-badge [data-icon] {
  color: var(--color-gold-primary);
  font-size: 1rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
}
@media (min-width: calc(768px + 1px)) {
  .about-title {
    font-size: 2.5rem;
  }
}
.about-title .text-gold {
  color: var(--color-gold-light);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Manajemen */
.management-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.management-title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.management-title-wrapper [data-icon] {
  color: var(--color-gold-primary);
  font-size: 1rem;
}
.management-title-wrapper .management-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.management-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mgmt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.mgmt-card:hover {
  transform: translateY(-2px);
  border-color: rgba(192, 159, 80, 0.8);
  background-color: var(--color-card-hover);
}

.mgmt-avatar {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}
.mgmt-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-primary);
  background-color: var(--color-bg-main);
}
.mgmt-avatar .mgmt-tag {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-main);
  color: var(--color-text-secondary);
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mgmt-avatar .mgmt-tag [data-icon] {
  font-size: 0.75em;
  color: var(--color-gold-primary);
}
.mgmt-avatar .mgmt-tag.gold {
  background: var(--color-gold-primary);
  color: var(--color-bg-main);
  border-color: var(--color-gold-primary);
  font-weight: 700;
}
.mgmt-avatar .mgmt-tag.gold [data-icon] {
  color: var(--color-bg-main);
}

.mgmt-info {
  display: flex;
  flex-direction: column;
}
.mgmt-info .mgmt-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
.mgmt-info .mgmt-role {
  font-size: 0.775rem;
  color: var(--color-gold-light);
  font-weight: 600;
}
.mgmt-info .mgmt-desc {
  font-size: 0.775rem;
  color: var(--color-text-secondary);
  margin-top: 2px;
  line-height: 1.4;
}

/* Kolom Kanan: Pengemudi */
.drivers-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.drivers-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.drivers-header .drivers-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-top: 8px;
}
.drivers-header .drivers-subtext {
  font-size: 0.825rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.drivers-header .drivers-subtext .swipe-hint {
  color: var(--color-gold-primary);
}

/* Container Scroll Horizontal Slider Driver */
.drivers-scroll-wrapper {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
  padding: 4px 0 12px 0;
  width: 100%;
}
.drivers-scroll-wrapper::-webkit-scrollbar {
  height: 4px;
}
.drivers-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--color-bg-main);
  border-radius: 10px;
}
.drivers-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-gold-primary);
  border-radius: 10px;
}

/* Kartu Driver */
.driver-card {
  flex: 0 0 215px;
  scroll-snap-align: start;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.driver-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 159, 80, 0.8);
  box-shadow: var(--shadow-card);
}
@media (min-width: calc(768px + 1px)) {
  .driver-card {
    flex: 0 0 230px;
  }
}

.driver-img-box {
  position: relative;
  height: 190px;
  width: 100%;
  background-color: var(--color-bg-main);
}
.driver-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.driver-img-box .driver-exp-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-overlay);
  border: 1px solid rgba(192, 159, 80, 0.35);
  color: var(--color-gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.driver-img-box .driver-exp-badge [data-icon] {
  color: var(--color-gold-primary);
  font-size: 0.85em;
}

.driver-details {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.driver-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.driver-head .driver-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
.driver-head .driver-rating {
  font-size: 0.75rem;
  color: var(--color-gold-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}
.driver-head .driver-rating [data-icon] {
  color: var(--color-gold-primary);
  font-size: 0.85em;
}

.driver-role {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-top: 2px;
}

.driver-specialty {
  font-size: 0.725rem;
  color: var(--color-text-secondary);
}

.driver-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.driver-tags .tag-item {
  font-size: 0.675rem;
  background: var(--color-bg-main);
  color: var(--color-text-secondary);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}

/* Base Rules */
/* Layout Seksi Klien */
.clients-section {
  padding: 36px 0;
  background-color: var(--color-bg-main);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 10px;
}
.clients-header .clients-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold-primary);
}

/* Wrapper Ticker dengan Masking Fade Kiri Kanan */
.ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px;
  /* Gradasi halus di ujung kiri dan kanan */
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused; /* Berhenti sejenak saat kursor di-hover */
}

/* Kartu Kecil Logo Klien */
.client-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  height: 52px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.client-card:hover {
  border-color: var(--color-gold-primary);
  transform: translateY(-2px);
}
.client-card img {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}
.client-card:hover img {
  filter: grayscale(0%) opacity(1);
}
.client-card .client-name-fallback {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

/* Keyframes Animasi Mengalir */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Base Rules */
/* Layout Utama Seksi Testimoni */
.testimonials-section {
  padding: 50px 0;
  background-color: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: calc(768px + 1px)) {
  .testimonials-section {
    padding: 90px 0;
  }
}

/* Header Seksi (Rata Kiri di Mobile) */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: calc(768px + 1px)) {
  .section-header {
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
  }
}
.section-header .section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-primary);
}
@media (min-width: calc(768px + 1px)) {
  .section-header .section-title {
    font-size: 2.3rem;
  }
}
.section-header .section-title .text-gold {
  color: var(--color-gold-light);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-header .section-subtitle {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 520px;
}

/* Grid Kartu Testimoni */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: calc(768px + 1px)) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Kartu Testimoni dengan Benang Emas Bergradasi Smooth & Sparkle Glowing */
.testimonial-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  /* Layer 1: Paduan 3 Benang Emas Multi-Stop Gradient + Radial Sparkle Nodes */
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Vector SVG: Gradasi Panjang (Fade-in -> Gold Bright -> Fade-out) & Radial Sparkle Glow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 200' fill='none'%3E%3Cdefs%3E%3ClinearGradient id='goldGrad1' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23936521' stop-opacity='0'/%3E%3Cstop offset='25%25' stop-color='%23c09f50' stop-opacity='0.5'/%3E%3Cstop offset='60%25' stop-color='%23f6e58d' stop-opacity='0.9'/%3E%3Cstop offset='85%25' stop-color='%23c09f50' stop-opacity='0.4'/%3E%3Cstop offset='100%25' stop-color='%23936521' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='goldGrad2' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23c09f50' stop-opacity='0'/%3E%3Cstop offset='35%25' stop-color='%23f6e58d' stop-opacity='0.75'/%3E%3Cstop offset='75%25' stop-color='%23c09f50' stop-opacity='0.3'/%3E%3Cstop offset='100%25' stop-color='%23936521' stop-opacity='0'/%3E%3C/linearGradient%3E%3CradialGradient id='sparkleGlow'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='1'/%3E%3Cstop offset='25%25' stop-color='%23f6e58d' stop-opacity='0.8'/%3E%3Cstop offset='60%25' stop-color='%23c09f50' stop-opacity='0.25'/%3E%3Cstop offset='100%25' stop-color='%23c09f50' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3C!-- Benang 1: Utama Solid Gradasi Lengkung --%3E%3Cpath d='M-20 170 C 70 90, 160 190, 320 45' stroke='url(%23goldGrad1)' stroke-width='1.4' stroke-linecap='round'/%3E%3C!-- Benang 2: Motif Dotted Putus-Putus Bergradasi --%3E%3Cpath d='M0 190 C 85 115, 175 205, 320 75' stroke='url(%23goldGrad2)' stroke-width='1.1' stroke-dasharray='3 5' stroke-linecap='round'/%3E%3C!-- Benang 3: Akses Tipis Sutra Meliuk --%3E%3Cpath d='M30 205 C 110 75, 190 155, 320 20' stroke='url(%23goldGrad1)' stroke-width='0.8' stroke-opacity='0.5'/%3E%3C!-- Sparkles / Cahaya Glowing Pendar Halus Nempel di Benang --%3E%3Ccircle cx='60' cy='122' r='4' fill='url(%23sparkleGlow)'/%3E%3Ccircle cx='122' cy='142' r='3' fill='url(%23sparkleGlow)'/%3E%3Ccircle cx='188' cy='158' r='4.5' fill='url(%23sparkleGlow)'/%3E%3Ccircle cx='222' cy='95' r='3.5' fill='url(%23sparkleGlow)'/%3E%3Ccircle cx='278' cy='68' r='5' fill='url(%23sparkleGlow)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  pointer-events: none;
  opacity: 0.65; /* Diturunkan agar membaur elegan sebagai watermark mewah */
  filter: drop-shadow(0 0 4px rgba(192, 159, 80, 0.3));
  will-change: opacity, transform;
  animation: threadGlowPulse 5s ease-in-out infinite alternate;
  z-index: 1;
}
.testimonial-card {
  /* Layer 2: Ambient Sparkle Melayang di Latar Belakang */
}
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1.5px 1.5px at 30px 40px, var(--color-gold-light), transparent), radial-gradient(2px 2px at 70px 160px, rgba(255, 255, 255, 0.7), transparent), radial-gradient(2px 2px at 140px 35px, var(--color-gold-primary), transparent), radial-gradient(1.5px 1.5px at 200px 170px, var(--color-gold-light), transparent), radial-gradient(2px 2px at 260px 45px, rgba(255, 255, 255, 0.8), transparent);
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.35;
  will-change: transform, opacity;
  animation: goldFireflies 7s ease-in-out infinite alternate;
  z-index: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 159, 80, 0.8);
  background-color: var(--color-card-hover);
  box-shadow: var(--shadow-gold-glow);
}
.testimonial-card:hover::before {
  opacity: 0.9;
  transform: scale(1.04);
  filter: drop-shadow(0 0 7px rgba(246, 229, 141, 0.5));
}
.testimonial-card:hover::after {
  opacity: 0.65;
}
@media (min-width: calc(768px + 1px)) {
  .testimonial-card {
    padding: 24px;
  }
}

/* Animasi Denyut Cahaya Benang (Smooth GPU Rendition) */
@keyframes threadGlowPulse {
  0% {
    opacity: 0.55;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0.8;
    transform: translate3d(-2px, -3px, 0);
  }
}
/* Animasi Kunang-Kunang Ambient Melayang */
@keyframes goldFireflies {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.25;
  }
  50% {
    transform: translate3d(-5px, -8px, 0) scale(1.05);
    opacity: 0.6;
  }
  100% {
    transform: translate3d(5px, -15px, 0) scale(0.95);
    opacity: 0.3;
  }
}
.testimonial-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.testimonial-rating {
  display: flex;
  gap: 3px;
}
.testimonial-rating .star-icon {
  color: var(--color-gold-primary);
  font-size: 0.9rem;
}

.testimonial-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold-light);
  background: rgba(192, 159, 80, 0.1);
  border: 1px solid rgba(192, 159, 80, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
}

.testimonial-text {
  position: relative;
  z-index: 2;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-user {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
}
.testimonial-user .user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-primary);
  background-color: var(--color-bg-main);
  object-fit: cover;
}
.testimonial-user .user-info {
  display: flex;
  flex-direction: column;
}
.testimonial-user .user-info .user-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-primary);
}
.testimonial-user .user-info .user-role {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

/* Base Rules */
/* FAQ Main Wrapper */
.faq-section {
  padding: 50px 20px;
  background-color: var(--color-bg-main);
}
@media (min-width: 768px) {
  .faq-section {
    padding: 70px 32px;
  }
}
@media (min-width: 1024px) {
  .faq-section {
    padding: 90px 48px;
  }
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  /* Split Layout 2 Kolom di Laptop */
}
@media (min-width: 1024px) {
  .faq-container {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 56px;
    align-items: start;
  }
}

/* Sidebar Info (Kiri) */
.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* Sticky Sidebar di Laptop */
}
@media (min-width: 1024px) {
  .faq-sidebar {
    position: sticky;
    top: 100px;
  }
}

.faq-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-gold-light);
  background: rgba(192, 159, 80, 0.1);
  border: 1px solid rgba(192, 159, 80, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.faq-badge [data-icon] {
  font-size: 0.85rem;
  color: var(--color-gold-primary);
}

.faq-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .faq-title {
    font-size: 2.2rem;
  }
}
.faq-title .text-gold {
  color: var(--color-gold-light);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

/* Help Card CS */
.faq-help-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(135deg, rgba(192, 159, 80, 0.08) 0%, rgba(20, 20, 20, 0.6) 100%);
  border: 1px solid rgba(192, 159, 80, 0.3);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-help-card .help-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(192, 159, 80, 0.15);
  border: 1px solid rgba(192, 159, 80, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-help-card .help-icon-wrapper [data-icon] {
  font-size: 1.3rem;
  color: var(--color-gold-light);
}
.faq-help-card .help-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}
.faq-help-card .help-text p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.faq-help-card .help-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--color-gold-primary);
  color: #121212;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.faq-help-card .help-btn [data-icon] {
  font-size: 1.1rem;
}
.faq-help-card .help-btn:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 229, 141, 0.3);
}

/* Accordion Column (Kanan) */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Item Card Accordion */
.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(192, 159, 80, 0.5);
}
.faq-item {
  /* State Terbuka */
}
.faq-item[open] {
  border-color: var(--color-gold-primary);
  box-shadow: 0 4px 20px rgba(192, 159, 80, 0.15);
  background-color: var(--color-card-hover);
}
.faq-item[open] .faq-icon-box [data-icon] {
  transform: rotate(180deg);
  color: var(--color-gold-light);
}
.faq-item[open] .question-text {
  color: var(--color-gold-light);
}

/* Question Header */
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
@media (min-width: 768px) {
  .faq-question {
    padding: 22px 24px;
    font-size: 1.05rem;
  }
}
.faq-question .question-text {
  transition: color 0.3s ease;
}
.faq-question .faq-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-question .faq-icon-box [data-icon] {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

/* Answer Body */
.faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 4px;
  padding-top: 14px;
}
@media (min-width: 768px) {
  .faq-answer {
    padding: 0 24px 22px 24px;
    font-size: 0.95rem;
  }
}
.faq-answer p {
  margin: 0;
}

/* Hiasan 2 Benang Emas & Kunang-kunang Glow */
.faq-gold-decoration {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 48px;
  pointer-events: none;
  z-index: 2;
}

.gold-thread {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

/* Bintik Kunang-kunang Emas */
.gold-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--color-gold-light);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-gold-light), 0 0 10px var(--color-gold-primary);
  animation: pulseFirefly 3s infinite ease-in-out;
}
.gold-dot.dot-1 {
  left: 18%;
  bottom: 22px;
  animation-delay: 0s;
}
.gold-dot.dot-2 {
  left: 45%;
  bottom: 12px;
  width: 5px;
  height: 5px;
  animation-delay: 0.8s;
}
.gold-dot.dot-3 {
  left: 72%;
  bottom: 26px;
  animation-delay: 1.6s;
}
.gold-dot.dot-4 {
  left: 88%;
  bottom: 14px;
  width: 3px;
  height: 3px;
  animation-delay: 2.2s;
}

@keyframes pulseFirefly {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}
/* Base Rules */
/* ===== SITE FOOTER SECTION ===== */
.site-footer {
  position: relative;
  background-color: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: 50px 0 24px 0;
  color: var(--color-text-secondary);
  overflow: hidden;
}
@media (min-width: calc(768px + 1px)) {
  .site-footer {
    padding: 70px 0 32px 0;
  }
}
.site-footer {
  /* Overlay Motif Sarang Tawon (Honeycomb) */
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%239C92AC' fill-opacity='0.4' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 28px 49px;
  /* Masking gradasi: samar di atas (0%), jelas di tengah (20%-80%), samar lagi di bawah (100%) */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.7) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 20%, rgba(0, 0, 0, 0.7) 80%, transparent 100%);
}

.footer-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Footer Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: calc(768px + 1px)) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
}
@media (min-width: calc(901px + 1px)) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1.1fr 1.2fr;
    gap: 32px;
  }
}

/* Footer Section Headings */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-primary), var(--color-gold-dark));
  border-radius: 2px;
}

/* Kolom 1: Brand Profile & Socials */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand .footer-logo {
  display: inline-block;
}
.footer-brand .footer-logo img {
  width: 140px;
  height: auto;
}
.footer-brand .brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}
.footer-brand .footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold-light);
  background: rgba(39, 39, 39, 0.6);
  border: 1px solid rgba(192, 159, 80, 0.35);
  padding: 6px 12px;
  border-radius: 8px;
  width: fit-content;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.footer-brand .footer-badge [data-icon] {
  color: var(--color-gold-primary);
  font-size: 0.95rem;
}
.footer-brand .footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-brand .footer-socials .social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}
.footer-brand .footer-socials .social-link [data-icon] {
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.footer-brand .footer-socials .social-link:hover {
  background: var(--color-gold-primary);
  border-color: var(--color-gold-primary);
  color: var(--color-bg-main);
  box-shadow: var(--shadow-gold-glow);
  transform: translateY(-3px);
}
.footer-brand .footer-socials .social-link:hover [data-icon] {
  transform: scale(1.1);
}

/* Kolom 2: Navigasi Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, transform 0.25s ease;
}
.footer-links a [data-icon] {
  color: var(--color-gold-primary);
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}
.footer-links a:hover [data-icon] {
  transform: translateX(2px);
}

/* Kolom 3: Detail Kontak */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-list .info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.contact-info-list .info-item [data-icon] {
  color: var(--color-gold-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-list .info-item strong {
  display: block;
  font-size: 0.825rem;
  color: var(--color-text-primary);
  margin-bottom: 2px;
}
.contact-info-list .info-item p {
  font-size: 0.825rem;
  line-height: 1.4;
  color: var(--color-text-secondary);
}

/* Kolom 4: Google Maps Frame */
.footer-map-col {
  display: flex;
  flex-direction: column;
}
.footer-map-col .map-wrapper {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-card);
}
.footer-map-col .map-wrapper iframe {
  width: 100%;
  height: 100%;
  /* Style Dark Mode Google Maps */
  filter: grayscale(100%) invert(90%) contrast(85%);
  transition: filter 0.4s ease;
}
.footer-map-col .map-wrapper:hover iframe {
  filter: grayscale(0%) invert(0%) contrast(100%);
}
.footer-map-col .map-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  transition: color 0.3s ease;
}
.footer-map-col .map-direct-link [data-icon] {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.footer-map-col .map-direct-link:hover {
  color: var(--color-gold-light);
}
.footer-map-col .map-direct-link:hover [data-icon] {
  transform: translateX(3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.825rem;
}
@media (min-width: calc(768px + 1px)) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-bottom .copyright-text {
  color: var(--color-text-secondary);
}
.footer-bottom .copyright-text strong {
  color: var(--color-text-primary);
}
.footer-bottom .bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom .bottom-links a {
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}
.footer-bottom .bottom-links a:hover {
  color: var(--color-gold-light);
}
.footer-bottom .bottom-links .dot {
  color: var(--color-border);
}

/*# sourceMappingURL=main.css.map */
