/* ==========================================================================
   BatikNusa — Landing Page Competition Design System
   Palette: Cream (#FAF3E0) · Navy (#1B2B5E) · Brown (#7A2E0E / #8B3A1C) · Gold (#C8933A)
   Typography: Playfair Display + Inter
   No external subpage dependencies — Standalone Landing Page CSS
   ========================================================================== */

/* ---- CSS Variables ---- */
:root {
  --cream:        #FAF3E0;
  --cream-dark:   #F0E3C5;
  --cream-mid:    #F5EDD6;
  --navy:         #1B2B5E;
  --navy-light:   #2A3F7E;
  --navy-dark:    #111C3E;
  --brown:        #7A2E0E;
  --brown-mid:    #8B3A1C;
  --brown-light:  #A0522D;
  --gold:         #C8933A;
  --gold-light:   #D4A843;
  --gold-pale:    #E8C97A;
  --white:        #FFFFFF;
  --text-dark:    #1A1A2E;
  --text-mid:     #4A4A6A;
  --text-light:   #5A5A7A;
  --shadow-sm:    0 4px 12px rgba(27,43,94,0.06);
  --shadow-md:    0 8px 24px rgba(27,43,94,0.1);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  padding-top: 76px;
}

body.preloader-active {
  overflow: hidden !important;
}

/* ==========================================================================
   0. PRELOADER / INITIAL LOADING SCREEN
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #07090F;
  background-image: url('image/gallery/doc_canting.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 9, 15, 0.82) 0%, rgba(13, 16, 26, 0.86) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1;
}

.preloader-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 360px;
  width: 90%;
  padding: 32px 20px;
}

.preloader-logo-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.preloader-logo-glow {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 169, 74, 0.5) 0%, rgba(200, 147, 58, 0) 70%);
  animation: preloaderPulse 2s ease-in-out infinite alternate;
}

.preloader-logo-img {
  position: relative;
  z-index: 2;
  width: 72px;
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(217, 169, 74, 0.55));
  animation: preloaderFloat 3s ease-in-out infinite alternate;
}

.preloader-text-wrap {
  margin-bottom: 26px;
}

.preloader-brand {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #F0EDE5;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #FFFFFF 30%, #E8C97A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  opacity: 0.9;
}

.preloader-progress-wrap {
  width: 100%;
  max-width: 260px;
}

.preloader-bar-bg {
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(217, 169, 74, 0.3);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.preloader-bar-fill {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  border-radius: 10px;
  background: linear-gradient(90deg, #a66a28 0%, #d49a38 50%, #f7d58b 100%);
  box-shadow: 0 0 14px rgba(217, 169, 74, 0.85);
  transition: transform 0.15s ease-out;
}

.preloader-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11.5px;
  color: #B8B4AA;
  font-family: 'Inter', sans-serif;
}

.preloader-status {
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.preloader-percent {
  font-weight: 700;
  color: var(--gold);
}

.preloader.preloader-hidden {
  opacity: 0 !important;
  transform: scale(1.04);
  pointer-events: none !important;
}

@keyframes preloaderPulse {
  0% { transform: scale(0.85); opacity: 0.35; }
  100% { transform: scale(1.25); opacity: 0.85; }
}

@keyframes preloaderFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* Light Theme overrides for Preloader */
[data-theme="light"] .preloader {
  background-color: #FAF3E0;
  background-image: url('image/gallery/doc_canting.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

[data-theme="light"] .preloader-backdrop {
  background: linear-gradient(135deg, rgba(250, 243, 224, 0.82) 0%, rgba(245, 237, 214, 0.88) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

[data-theme="light"] .preloader-brand {
  background: linear-gradient(135deg, #1B2B5E 40%, #7A2E0E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .preloader-tagline {
  color: var(--brown-mid);
}

[data-theme="light"] .preloader-bar-bg {
  background: rgba(27, 43, 94, 0.08);
  border-color: rgba(200, 147, 58, 0.35);
}

[data-theme="light"] .preloader-meta {
  color: var(--text-mid);
}

[data-theme="light"] .preloader-percent {
  color: var(--navy);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-py { padding: 90px 0; position: relative; }
.section-py-sm { padding: 60px 0; position: relative; }

.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-brown { color: var(--brown-mid); }
.text-gold  { color: var(--gold); }
.text-white { color: var(--white); }

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ---- Background decoration: Cream sections with side batik background ---- */
.bg-cream-batik {
  background-color: var(--cream);
  background-image: linear-gradient(
    to right, 
    transparent 0%, 
    rgba(250, 243, 224, 0.2) 14%, 
    rgba(250, 243, 224, 0.55) 25%, 
    rgba(250, 243, 224, 0.55) 75%, 
    rgba(250, 243, 224, 0.2) 86%, 
    transparent 100%
  ), url('image/backgrounds/bg_cream_motif.webp');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
  position: relative;
}

/* ---- Section Headers ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brown-mid);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  display: none !important;
  content: '' !important;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--brown-mid);
  font-style: italic;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,43,94,0.25);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,43,94,0.35);
}

.btn-brown {
  background: var(--brown-mid);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(139,58,28,0.25);
}
.btn-brown:hover {
  background: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,58,28,0.35);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(200,147,58,0.3);
}
.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline-brown {
  background: transparent;
  color: var(--brown-mid);
  border: 1.5px solid var(--brown-mid);
}
.btn-outline-brown:hover {
  background: var(--brown-mid);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-white-solid {
  background: var(--white);
  color: var(--brown-mid);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-white-solid:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 15px 34px; font-size: 15px; border-radius: 12px; }

/* ---- Navbar Refinements ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(250, 243, 224, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(200, 147, 58, 0.25);
  padding: 0 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  box-shadow: 0 8px 30px rgba(27, 43, 94, 0.08);
  background: rgba(250, 243, 224, 0.97);
  border-bottom-color: rgba(200, 147, 58, 0.35);
}

.navbar.scrolled .nav-inner {
  height: 66px;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(27, 43, 94, 0.1));
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-link {
  position: relative;
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--brown-mid);
  background: rgba(200, 147, 58, 0.1);
}

.nav-link.active {
  color: var(--brown-mid);
  background: rgba(200, 147, 58, 0.15);
  font-weight: 700;
}

.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

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

.nav-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-size: 13.5px;
  box-shadow: 0 4px 14px rgba(139, 58, 28, 0.2);
}

.nav-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 58, 28, 0.35);
}

.nav-mobile-cta {
  display: none;
  width: 100%;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(200, 147, 58, 0.2);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  background: rgba(200, 147, 58, 0.1);
  border: 1px solid rgba(200, 147, 58, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.nav-hamburger:hover {
  background: rgba(200, 147, 58, 0.2);
}

.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO SECTION — HALF & HALF SEAMLESS GRADIENT BLEND
   ========================================================= */
.hero {
  position: relative;
  padding: 95px 0 85px;
  background-color: var(--cream);
  overflow: hidden;
}

.hero-bg-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: url('image/hero/hero_bg.webp') no-repeat left center / cover;
  z-index: 1;
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.hero-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: url('image/hero/hero_model.webp') no-repeat right center / cover;
  z-index: 1;
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250,243,224,0.75) 0%, rgba(250,243,224,0.4) 45%, rgba(250,243,224,0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content-left {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,147,58,0.15);
  border: 1px solid rgba(200,147,58,0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--brown-mid);
  font-style: italic;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(200,147,58,0.25);
  max-width: 580px;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.hero-stat-number span { color: var(--brown-mid); }
.hero-stat-label { font-size: 12px; color: var(--text-mid); margin-top: 4px; }

/* ---- CLEAN 3-COLUMN SECTIONS ---- */
.clean-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.clean-item {
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}

.clean-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.clean-item h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}

.clean-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* =========================================================
   PRODUK UNGGULAN SECTION
   ========================================================= */
/* =========================================================
   PRODUK UNGGULAN — TALL VERTICAL PHOTO CARDS (MATCHING USER REFERENCE)
   ========================================================= */
.product-vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-vcard {
  position: relative;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200, 147, 58, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.product-vcard-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-vcard-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(17, 28, 62, 0.92) 0%, rgba(17, 28, 62, 0.35) 35%, rgba(0, 0, 0, 0) 65%);
  transition: var(--transition);
}

.product-vcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 43, 94, 0.25);
  border-color: var(--gold);
}

.product-vcard:hover .product-vcard-bg {
  transform: scale(1.08);
}

.product-vcard:hover .product-vcard-overlay {
  background: linear-gradient(to top, rgba(17, 28, 62, 0.96) 0%, rgba(17, 28, 62, 0.45) 40%, rgba(0, 0, 0, 0) 70%);
}

.product-vcard-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-vbadge {
  background: rgba(200, 147, 58, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-pale);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 16px;
  border: 1px solid rgba(200, 147, 58, 0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-vrating {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  background: rgba(17, 28, 62, 0.75);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 10px;
}

.product-vcard-bottom {
  position: relative;
  z-index: 3;
  text-align: center;
}

.product-vrank {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: -0.2px;
}

.product-vseller {
  font-size: 10.5px;
  color: var(--gold-pale);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-vname {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-vprice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 7px 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 12px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(200, 147, 58, 0.3);
  transition: var(--transition);
}

/* =========================================================
   FITUR PLATFORM SECTION (FULL COVER WITH image/batik1.webp)
   ========================================================= */
#fitur {
  position: relative;
  background-color: #0d152a;
  background-image: url('image/backgrounds/bg_fitur.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: var(--white);
  overflow: hidden;
}

/* Clear, Elegant Dark Overlay over batik1.webp so photo is soft and balanced */
#fitur::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 16, 34, 0.76) 0%, rgba(17, 27, 56, 0.70) 50%, rgba(10, 16, 34, 0.76) 100%);
  z-index: 1;
  pointer-events: none;
}

#fitur .container {
  position: relative;
  z-index: 5;
}

#fitur .section-tag {
  color: var(--gold-pale);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

#fitur .section-title {
  color: var(--white);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.8);
}

#fitur .section-title span {
  color: var(--gold-pale);
  font-style: italic;
}

#fitur .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  margin: 10px auto 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-row-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px 36px;
  background: rgba(17, 28, 62, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1.5px solid rgba(200, 147, 58, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-row-item:hover {
  transform: translateY(-4px);
  background: rgba(17, 28, 62, 0.88);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.feature-row-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #a66a28 0%, #d49a38 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.feature-row-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-row-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}
/* ---- HOW IT WORKS (Clean Steps) ---- */
.steps-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-clean-item {
  text-align: center;
  position: relative;
}

.step-num-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-pale);
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(27,43,94,0.2);
}

.step-clean-item h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-clean-item p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---- ABOUT SECTION & UNIFIED FACTS CARD ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(27, 43, 94, 0.18));
}

.about-text-wrap {
  margin-left: 0;
  padding-top: 10px;
}

/* Single unified Card below the photo (3 Columns) */
.about-facts-card {
  width: 100%;
  margin-top: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1.5px solid rgba(200, 147, 58, 0.35);
  box-shadow: 0 10px 28px rgba(27, 43, 94, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.about-facts-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(27, 43, 94, 0.14);
  border-color: var(--gold);
}

.about-fact-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.fact-col-top {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fact-col-number {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.fact-col-text {
  font-size: 11.5px;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.3;
}

.about-fact-vdivider {
  width: 1px;
  height: 34px;
  background: rgba(200, 147, 58, 0.25);
}

/* ---- TESTIMONIALS (Clean Quotes) ---- */
#testimoni {
  background-color: #111C3E;
  background-image: linear-gradient(rgba(17, 28, 62, 0.88), rgba(17, 28, 62, 0.88)), url('image/gallery/doc_canting.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

#testimoni .section-tag {
  color: var(--gold-pale);
}

#testimoni .section-title {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#testimoni .section-title span {
  color: var(--gold-pale);
}

.testi-clean-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-clean-item {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(200,147,58,0.18);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.testi-clean-item p {
  font-size: 14px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar-initial {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
}

/* =========================================================
   DAMPAK NYATA (STATS BAR)
   ========================================================= */
.dampak-bar {
  background-color: #111C3E;
  background-image: linear-gradient(rgba(17, 28, 62, 0.88), rgba(17, 28, 62, 0.88)), url('image/gallery/doc_canting.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(200,147,58,0.3);
  border-bottom: 1px solid rgba(200,147,58,0.3);
  z-index: 2;
}

.dampak-bar .section-tag {
  color: var(--gold-pale);
}

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

.dampak-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(200,147,58,0.2);
  box-shadow: var(--shadow-sm);
}

.dampak-stat-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,147,58,0.12);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.dampak-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.dampak-label {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
  margin-top: 2px;
}

/* =========================================================
   BENTO PHOTO GALLERY (MATCHING USER REFERENCE LAYOUT)
   ========================================================= */
.bento-gallery-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.bento-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-tall {
  height: 480px;
}

.bento-half {
  height: 230px;
}

.bento-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 28, 62, 0.92) 0%, rgba(17, 28, 62, 0.45) 50%, rgba(0, 0, 0, 0.05) 100%);
  transition: var(--transition);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(27, 43, 94, 0.22);
}

.bento-card:hover .bento-card-bg {
  transform: scale(1.06);
}

.bento-card:hover .bento-card-overlay {
  background: linear-gradient(to top, rgba(17, 28, 62, 0.96) 0%, rgba(17, 28, 62, 0.55) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.bento-card-content {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.bento-card-text {
  color: var(--white);
}

.bento-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-pale);
  background: rgba(200, 147, 58, 0.25);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.bento-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bento-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.bento-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-arrow-btn {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold-light);
  transform: rotate(-45deg) scale(1.1);
}

/* =========================================================
   FULL-SECTION MAP BACKGROUND WITH GRADIENT FADE OVERLAY
   ========================================================= */
.contact-section-mapbg {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding: 90px 0 100px;
}

/* Full-Section Background Map Canvas (Fully Interactive & Draggable) */
.section-bg-map-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

.section-bg-map-container iframe {
  width: 100%;
  height: 130%;
  border: 0;
  margin-top: -6%;
  filter: grayscale(0.85) contrast(1.12) brightness(1.08) opacity(0.8);
  pointer-events: auto;
}

/* Linear Gradient Overlay — Thick Top for Header Text & Thin Clear Bottom for Map */
.section-bg-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(250, 243, 224, 0.98) 180px,
    rgba(250, 243, 224, 0.85) 240px,
    rgba(250, 243, 224, 0.25) 360px,
    rgba(250, 243, 224, 0.12) 680px,
    rgba(250, 243, 224, 0.45) 850px,
    var(--cream) 100%
  );
  pointer-events: none;
}

.contact-section-mapbg .container {
  position: relative;
  z-index: 5;
  pointer-events: none;
}

.contact-section-mapbg .container > * {
  pointer-events: auto;
}

/* Stage for Map Markers & Floating Card Over Background Map */
.map-stage-hero {
  position: relative;
  width: 100%;
  height: 480px;
  pointer-events: none;
}

.map-stage-hero .map-avatar-marker,
.map-stage-hero .map-center-card {
  pointer-events: auto;
}

/* Floating Filter Pill Bar */
.map-filter-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 10px 14px 10px 24px;
  border-radius: 50px;
  box-shadow: 0 12px 32px rgba(27, 43, 94, 0.12);
  border: 1.5px solid rgba(200, 147, 58, 0.3);
  position: relative;
  z-index: 20;
}

.map-filter-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.map-filter-item label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
}

.map-filter-item select {
  border: none !important;
  background: transparent !important;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
}

.map-filter-item select:focus,
.map-filter-item select:hover {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.filter-val-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brown-mid);
}

.map-filter-divider {
  width: 1px;
  height: 28px;
  background: rgba(200, 147, 58, 0.25);
}

.map-filter-search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #111C3E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(200, 147, 58, 0.35);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

.map-filter-search-btn svg {
  stroke: #111C3E;
  transition: var(--transition);
}

.map-filter-search-btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

/* Map Wrapper Canvas */
.realestate-map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(27, 43, 94, 0.12);
  border: 1.5px solid rgba(200, 147, 58, 0.3);
}

.realestate-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Floating Avatar Markers on Map */
.map-avatar-marker {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.map-avatar-marker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-avatar-marker:hover,
.map-avatar-marker.active {
  transform: scale(1.25) translateY(-4px);
  z-index: 20;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 147, 58, 0.4), 0 8px 24px rgba(27, 43, 94, 0.35);
}

.marker-buaran { top: 26%; left: 20%; }
.marker-wiradesa { top: 62%; left: 24%; }
.marker-kedungwuni { top: 32%; right: 20%; }
.marker-showroom { top: 68%; right: 24%; }

/* Center Floating Preview Card (Desktop: Hidden by default, pops up on pin click) */
.map-center-card {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.92);
  width: 310px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(27, 43, 94, 0.3);
  border: 1.5px solid rgba(200, 147, 58, 0.4);
  z-index: 25;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-center-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.map-card-close {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(17, 28, 62, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 147, 58, 0.5);
  color: var(--gold-pale);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map-card-close:hover {
  background: var(--brown-mid);
  color: var(--white);
  transform: scale(1.12);
}

.map-card-img-wrap {
  position: relative;
  height: 150px;
  width: 100%;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.map-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(17, 28, 62, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--gold-pale);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200, 147, 58, 0.4);
}

.map-card-body {
  padding: 16px 18px;
  text-align: left;
}

.map-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.map-card-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.map-card-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-mid);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(200, 147, 58, 0.2);
}

.map-card-stats strong {
  color: var(--navy);
}

.map-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-card-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--brown-mid);
}

.map-card-pin-pointer {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  border: 3px solid var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Floating Location Card (Popup tooltip matching reference image) */
.map-floating-popup {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(27, 43, 94, 0.22);
  border: 1px solid rgba(200, 147, 58, 0.35);
  max-width: 290px;
  z-index: 10;
  transition: var(--transition);
}

.map-floating-popup:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 43, 94, 0.3);
}

.map-popup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.map-popup-flag {
  font-size: 16px;
}

.map-popup-city {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.map-popup-address {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.45;
  margin-bottom: 12px;
}

.map-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--navy);
  color: var(--gold-pale);
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.map-popup-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

/* 4 Mini Cards Grid at Bottom (Matching Reference Layout - Always Centered) */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.contact-mini-card {
  background: transparent;
  padding: 12px 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.contact-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 147, 58, 0.15);
  color: var(--brown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

.contact-mini-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-align: center;
}

.contact-mini-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-align: center;
}

.contact-mini-val a,
a.contact-mini-val {
  color: var(--navy);
  transition: var(--transition);
}

.contact-mini-val a:hover,
a.contact-mini-val:hover {
  color: var(--brown-mid);
}

/* Horizontal Section Divider Line */
.contact-section-divider {
  width: 100%;
  max-width: 900px;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 147, 58, 0.45) 20%,
    rgba(200, 147, 58, 0.45) 80%,
    transparent 100%
  );
  margin-left: auto;
  margin-right: auto;
}

/* Seamless Direct Integration on Section Background (No Boxed Outer Card) */
.contact-form-full {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-full h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-full p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 28px;
  text-align: center;
}

/* =========================================================
   CTA BANNER — DEDICATED 'batik kiri.webp' & 'batik kanan.webp'
   ========================================================= */
.cta-banner {
  position: relative;
  background: #111C3E;
  padding: 95px 0;
  color: var(--white);
  overflow: hidden;
}

.cta-decor-left {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 480px; max-width: 42vw;
  background-image: url('image/backgrounds/cta_decor_left.webp');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 1; pointer-events: none; opacity: 0.95;
}

.cta-decor-right {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 480px; max-width: 42vw;
  background-image: url('image/backgrounds/cta_decor_right.webp');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 1; pointer-events: none; opacity: 0.95;
}

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text-wrap { max-width: 580px; }

.cta-inner h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 10px;
}

.cta-inner p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

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

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #0B1226;
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 36px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

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

.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: var(--gold-pale);
  transition: var(--transition);
}

.footer-social-icon:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer h4,
.footer-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.github-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--white);
  transition: var(--transition);
}
.github-box:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}

.github-box-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* =========================================================
   MODAL OVERLAYS (FOR PRODUCT QUICK VIEW & UMKM REGISTER)
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 28, 62, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex !important;
}

.modal-card {
  background: var(--white);
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  border: 1.5px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: modalPop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Gallery Lightbox Modal Card */
.modal-gallery-card {
  max-width: 520px;
  width: 92%;
  padding: 20px;
  border-radius: 20px;
}

.modal-gallery-img-wrap {
  position: relative;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--cream-dark);
}

.modal-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-gallery-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.modal-gallery-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 16px;
}

.modal-gallery-actions {
  display: flex;
  justify-content: flex-end;
}

/* Product Detail Modal Card */
.modal-product-card {
  max-width: 520px;
  width: 92%;
  padding: 20px;
  border-radius: 20px;
}

.modal-product-img-wrap {
  position: relative;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--cream-dark);
}

.modal-product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-product-rating {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-product-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}

.modal-product-seller {
  font-size: 12.5px;
  color: var(--text-mid);
  margin-bottom: 10px;
  font-weight: 600;
}

.modal-product-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 14px;
}

.modal-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(200, 147, 58, 0.2);
  padding-top: 12px;
}

.modal-product-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--gold-pale);
  background: var(--navy);
  padding: 4px 10px;
  border-radius: 8px;
}

/* Consultation & Registration Modal Card */
.modal-consult-card {
  max-width: 480px;
  width: 92%;
  padding: 24px;
  border-radius: 20px;
}

.modal-consult-header {
  text-align: center;
  margin-bottom: 18px;
}

.modal-consult-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--brown-mid);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-consult-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.modal-consult-desc {
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.45;
}

.modal-consult-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consult-form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}

.consult-form-group label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
}

.consult-form-control {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid rgba(200, 147, 58, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--navy);
  outline: none;
  transition: var(--transition);
  background: #FCF9F2;
}

.consult-form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 147, 58, 0.15);
}

/* Dedicated Product Order Modal & Summary Header */
.modal-product-order-card {
  max-width: 500px;
  width: 92%;
  padding: 22px;
  border-radius: 20px;
}

.product-order-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid rgba(200, 147, 58, 0.3);
  margin-bottom: 12px;
}

.order-product-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.order-product-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 2px;
}

.order-product-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--brown-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.order-product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.order-product-seller {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 600;
}

.order-product-price {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--brown-mid);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--cream);
  border: 1.5px solid rgba(200, 147, 58, 0.35);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
  z-index: 20;
  box-shadow: 0 4px 12px rgba(27, 43, 94, 0.12);
}

.modal-close:hover {
  background: var(--brown-mid);
  color: var(--white);
  border-color: var(--brown-mid);
  transform: rotate(90deg) scale(1.08);
}

/* Form Styles inside Modal */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid rgba(200,147,58,0.3);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27,43,94,0.1);
}

/* =========================================================
   ADVANCED MOBILE & RESPONSIVE DESIGN SYSTEM (PIXEL PERFECT)
   ========================================================= */

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

@media (max-width: 1100px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 243, 224, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1.5px solid rgba(200, 147, 58, 0.3);
    box-shadow: 0 16px 36px rgba(27, 43, 94, 0.15);
    z-index: 1000;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile-cta {
    display: block;
  }

  .nav-actions .nav-btn-cta {
    display: none;
  }
}

@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .section-py { padding: 60px 0; }
  
  /* Hero Left Alignment Fix: Keeps text on left 540px without overlapping model image on right */
  .hero-content-left { max-width: 540px; text-align: left; margin: 0; }
  .hero-subtitle { margin-left: 0; margin-right: 0; text-align: left; }
  .hero-cta { justify-content: flex-start; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); max-width: 540px; gap: 12px; }
  .hero-bg-right { width: 48%; opacity: 0.35; }

  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-image-wrap img { width: 100%; margin-left: 0; max-height: 400px; }
  .about-text-wrap { margin-left: 0; text-align: center; }
  .clean-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .product-vertical-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  
  /* Bento Gallery: Flawless Gapless 2x2 Grid for ALL screen widths <= 1200px (Fixes 933px & Intermediate Breakpoints) */
  .bento-gallery-container { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .bento-stack { display: contents !important; }
  .bento-card, .bento-tall, .bento-half { height: 280px !important; }

  .contact-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%; }
  .cta-inner { flex-direction: column; text-align: center; gap: 24px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 54px;
  }
  body {
    padding-top: 48px;
    padding-bottom: 68px;
  }
  .container { padding: 0 16px; max-width: 100%; }
  .section-py { padding: 48px 0; }

  /* Sleek, Modern, Compact Mobile Navbar (Extra Compact 48px Height & Fixed Top) */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding: 0 16px !important;
  }
  .nav-inner {
    height: 48px !important;
    gap: 8px !important;
  }
  .nav-logo {
    gap: 6px !important;
  }
  .nav-logo-img {
    height: 26px !important;
  }
  .nav-logo-name {
    font-size: 15.5px !important;
  }
  .nav-logo-sub {
    font-size: 8px !important;
    letter-spacing: 0.4px !important;
  }
  .nav-hamburger {
    display: none !important;
  }
  .nav-actions {
    gap: 6px !important;
  }
  .theme-toggle-btn,
  .sound-toggle-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }
  .theme-toggle-btn svg,
  .sound-toggle-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  /* Hero Mobile Layout — Lowered Text + High Contrast Gradient + Full Image Display at Top */
  .hero { 
    padding: 0 0 40px; 
    text-align: left; 
    position: relative;
    background-color: var(--cream);
    overflow: hidden;
  }
  .hero-bg-left { 
    display: none;
  }
  .hero-bg-right { 
    display: block; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; 
    height: 450px; 
    background: url('image/hero/hero_model.webp') no-repeat center 5% / cover;
    opacity: 1.0; 
    z-index: 1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0) 100%); 
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.3) 80%, rgba(0,0,0,0) 100%); 
  }
  .hero-backdrop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 470px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      180deg, 
      rgba(250,243,224,0) 0%, 
      rgba(250,243,224,0.1) 140px, 
      rgba(250,243,224,0.85) 250px, 
      rgba(250,243,224,1) 350px, 
      #FAF3E0 100%
    );
  }
  [data-theme="dark"] .hero-bg-right {
    background: url('image/hero/hero_model_dark.webp') no-repeat center 5% / cover !important;
  }
  [data-theme="dark"] .hero-backdrop {
    background: linear-gradient(
      180deg, 
      rgba(13,15,22,0) 0%, 
      rgba(13,15,22,0.1) 140px, 
      rgba(13,15,22,0.85) 250px, 
      rgba(13,15,22,1) 350px, 
      #0D0F16 100%
    ) !important;
  }
  .hero-content-left { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    text-align: left; 
    margin: 0; 
    max-width: 100%;
    position: relative;
    z-index: 10;
    padding-top: 230px; /* Lowers text so models' faces are clearly visible at top */
  }
  .hero-badge {
    font-size: 10.5px;
    padding: 6px 14px;
    margin-bottom: 14px;
    line-height: 1.35;
    background: rgba(250, 243, 224, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 147, 58, 0.4);
    box-shadow: 0 4px 12px rgba(27, 43, 94, 0.06);
  }
  .hero-title { 
    font-size: 31px; 
    line-height: 1.2; 
    margin-bottom: 14px; 
    text-align: left;
    color: var(--navy);
  }
  .hero-subtitle { 
    font-size: 13.5px; 
    line-height: 1.6; 
    margin-bottom: 22px; 
    text-align: left;
    color: var(--text-dark);
  }
  .hero-cta { 
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;
    width: 100%; 
    gap: 10px; 
  }
  .hero-cta .btn { 
    flex: 1 1 auto;
    justify-content: center; 
    padding: 11px 16px; 
    font-size: 13px; 
  }
  
  /* Hero Stats: Exact 4-Column Horizontal Row on Mobile (Same as Desktop!) */
  .hero-stats { 
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 8px; 
    margin-top: 28px;
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(200, 147, 58, 0.3);
    box-shadow: none;
    width: 100%;
    text-align: left;
  }
  .hero-stat-number { font-size: 18px; font-weight: 800; }
  .hero-stat-label { font-size: 10px; line-height: 1.25; }

  /* About Facts Card: 3 Columns horizontal on Mobile */
  .about-facts-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 6px;
    gap: 4px;
    margin-top: 16px;
    border-left: 1.5px solid rgba(200, 147, 58, 0.35);
    border-top: 4px solid var(--gold);
    text-align: center;
    width: 100%;
  }
  .about-fact-col { border-right: 1px solid rgba(200, 147, 58, 0.2); padding: 0 4px; }
  .about-fact-col:last-child { border-right: none; }
  .about-fact-vdivider { display: none; }
  .fact-col-top { justify-content: center; gap: 3px; }
  .fact-col-number { font-size: 13.5px; }
  .fact-col-text { font-size: 9.5px; line-height: 1.25; }

  /* Section Title & Subtitle for Mobile */
  .section-tag { font-size: 10px; letter-spacing: 2px; margin-bottom: 8px; }
  .section-title { font-size: 23px; margin-bottom: 8px; }
  .section-subtitle { font-size: 13px; margin-bottom: 24px; line-height: 1.55; }

  /* Masalah Grid: 2 side-by-side on top, 1 full-width on bottom on Mobile (Original Clean Non-Card Style) */
  .clean-grid-3 { 
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 16px 12px; 
  }
  .clean-item { 
    background: transparent;
    padding: 0 0 0 12px; 
    border-radius: 0;
    border: none;
    border-left: 3.5px solid var(--gold);
    box-shadow: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .clean-item:nth-child(3) {
    grid-column: 1 / -1;
    border-left: none;
    padding-left: 0;
    text-align: center;
    align-items: center;
    margin-top: 4px;
  }
  .clean-item:nth-child(3) .clean-item-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .clean-item-icon { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 8px; flex-shrink: 0; }
  .clean-item h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; line-height: 1.3; }
  .clean-item p { font-size: 11.5px; color: var(--text-mid); line-height: 1.5; }

  /* Fitur Platform Section on Mobile */
  /* Fitur Platform Section: Bento Grid on Mobile (2 side-by-side on top, 1 full-width on bottom) */
  #fitur { padding: 44px 0; }
  .feature-rows { 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feature-row-item { 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px; 
    padding: 14px 12px; 
    border-radius: 14px;
    background: rgba(17, 28, 62, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 147, 58, 0.35);
    box-shadow: 0 6px 18px rgba(17, 28, 62, 0.2);
    text-align: left;
  }
  .feature-row-item:nth-child(3) {
    grid-column: 1 / -1;
    flex-direction: column;
    padding: 16px 14px;
  }

  .feature-row-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; }
  .feature-row-item h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 2px; color: var(--gold-pale); line-height: 1.25; }
  .feature-row-item p { font-size: 11px; line-height: 1.45; color: rgba(255, 255, 255, 0.82); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; }
  .feature-row-item:nth-child(3) p { -webkit-line-clamp: 2; line-clamp: 2; }
  .feature-row-item .btn { width: 100%; justify-content: center; margin-top: 4px; padding: 7px 10px; font-size: 11.5px; border-radius: 7px; }

  /* Produk Unggulan: Structured 2-Column Catalog Grid on Mobile */
  .product-vertical-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-vcard { height: 340px; padding: 10px; border-radius: 14px; display: flex; flex-direction: column; justify-content: space-between; }
  .product-vbadge { font-size: 8.5px; padding: 2px 6px; border-radius: 10px; }
  .product-vrating { font-size: 9.5px; padding: 2px 5px; border-radius: 6px; }
  .product-vcard-overlay { background: linear-gradient(to top, rgba(17, 28, 62, 0.96) 0%, rgba(17, 28, 62, 0.45) 45%, rgba(0, 0, 0, 0.05) 100%); }
  .product-vrank { font-size: 13px; font-weight: 700; color: var(--gold-pale); margin-bottom: 1px; }
  .product-vseller { font-size: 9px; color: rgba(255, 255, 255, 0.75); margin-bottom: 3px; letter-spacing: 0.3px; }
  .product-vname { font-size: 11px; font-weight: 600; color: var(--white); margin-bottom: 8px; line-height: 1.3; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; }
  .product-vprice-btn { font-size: 11.5px; font-weight: 800; padding: 6px 8px; border-radius: 6px; width: 100%; text-align: center; justify-content: center; }

  /* Steps / Cara Kerja: Structured 2x2 Grid on Mobile */
  .steps-clean-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .step-clean-item { 
    background: var(--white); 
    padding: 14px 10px; 
    border-radius: 12px; 
    border: 1px solid rgba(200, 147, 58, 0.25);
    box-shadow: 0 4px 12px rgba(27,43,94,0.05);
    text-align: center;
  }
  .step-num-badge { width: 34px; height: 34px; font-size: 15px; margin-bottom: 8px; }
  .step-clean-item h3 { font-size: 13.5px; margin-bottom: 4px; }
  .step-clean-item p { font-size: 11px; line-height: 1.4; }

  /* Bento Gallery: Alternating Portrait-Landscape / Landscape-Portrait Grid on Mobile */
  .bento-gallery-container { 
    display: grid !important; 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 10px !important; 
    align-items: start !important;
  }
  .bento-stack { display: contents !important; }

  /* Card 1 (Row 1 Left): PORTRAIT (Tall 250px) */
  .bento-gallery-container > .bento-card:first-child { 
    height: 250px !important; 
    margin-top: 0 !important;
  }
  /* Card 2 (Row 1 Right): LANDSCAPE (Short 165px) */
  .bento-stack > .bento-card:first-child { 
    height: 165px !important; 
    margin-top: 0 !important;
  }
  /* Card 3 (Row 2 Left): LANDSCAPE (Short 165px) */
  .bento-stack > .bento-card:last-child { 
    height: 165px !important; 
    margin-top: 0 !important;
  }
  /* Card 4 (Row 2 Right): PORTRAIT (Tall 250px) — Pulled UP tightly against Card 2 */
  .bento-gallery-container > .bento-card:last-child { 
    height: 250px !important; 
    margin-top: -85px !important;
  }

  .bento-card-content { padding: 10px 12px !important; }
  .bento-badge { font-size: 8.5px !important; padding: 2px 6px !important; margin-bottom: 3px !important; }
  .bento-title { font-size: 13px !important; margin-bottom: 2px !important; line-height: 1.25 !important; }
  .bento-subtitle { font-size: 10px !important; }
  .bento-arrow-btn { width: 28px !important; height: 28px !important; }
  .bento-arrow-btn svg { width: 13px !important; height: 13px !important; }

  /* Testimoni: Smooth Horizontal Swipe Carousel (3 Cards side-by-side, centered on middle card) */
  #testimoni { overflow: hidden; }
  .testi-clean-grid { 
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 12px !important; 
    padding: 10px 16px 20px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    width: calc(100% + 32px) !important;
    scrollbar-width: none !important;
  }

  .testi-clean-grid::-webkit-scrollbar {
    display: none !important;
  }

  .testi-clean-item { 
    flex: 0 0 82% !important;
    max-width: 310px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    padding: 18px 16px !important; 
    border-radius: 16px !important;
    background: var(--white) !important;
    box-shadow: 0 6px 20px rgba(17, 28, 62, 0.1) !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    opacity: 0.45 !important;
    transform: scale(0.92) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .testi-clean-item.active {
    opacity: 1 !important;
    transform: scale(1) !important;
    box-shadow: 0 16px 40px rgba(17, 28, 62, 0.26) !important;
  }

  .testi-clean-grid::before,
  .testi-clean-grid::after {
    content: '' !important;
    flex: 0 0 4% !important;
  }

  .testi-quote-mark { font-size: 28px; margin-bottom: 2px; color: var(--gold); }
  .testi-clean-item p { font-size: 12.5px; margin-bottom: 14px; line-height: 1.6; color: var(--text-dark); }

  /* Dampak Nyata: Structured 2x2 Grid on Mobile */
  .dampak-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .dampak-stat-item { padding: 10px 12px; border-radius: 12px; gap: 8px; }
  .dampak-stat-icon { width: 34px; height: 34px; }
  .dampak-num { font-size: 17px; }
  .dampak-label { font-size: 10px; }

  /* Contact Cards: Structured 2x2 Grid on Mobile (Always Centered) */
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px 12px; justify-content: center; text-align: center; }
  .contact-mini-card { background: transparent; padding: 6px 0; border: none; align-items: center; text-align: center; }
  .contact-mini-icon { width: 34px; height: 34px; border-radius: 8px; margin-bottom: 6px; margin-left: auto; margin-right: auto; }
  .contact-mini-label { font-size: 9.5px; text-align: center; }
  .contact-mini-val { font-size: 11.5px; word-break: break-word; overflow-wrap: anywhere; text-align: center; }

  /* Map & Filter Bar Responsive on Mobile */
  .map-filter-bar { 
    flex-direction: column; 
    width: 100%; 
    border-radius: 16px; 
    padding: 14px 16px; 
    gap: 10px; 
  }
  .map-filter-divider { width: 100%; height: 1px; }
  .map-filter-item { width: 100%; text-align: center; align-items: center; }
  .map-filter-search-btn { width: 100%; border-radius: 10px; height: 40px; }
  
  .map-stage-hero { height: auto; min-height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  
  /* Strictly Hide Avatar Pin Markers on Mobile Devices */
  .map-avatar-marker,
  .map-stage-hero .map-avatar-marker,
  div.map-avatar-marker { 
    display: none !important; 
    opacity: 0 !important; 
    visibility: hidden !important; 
    pointer-events: none !important; 
    width: 0 !important; 
    height: 0 !important; 
  }

  /* Responsive Map Overlay Gradient for Mobile (Percentage-based for perfect top & bottom coverage) */
  .section-bg-map-overlay {
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(250, 243, 224, 0.98) 12%,
      rgba(250, 243, 224, 0.94) 38%,
      rgba(250, 243, 224, 0.22) 58%,
      rgba(250, 243, 224, 0.5) 82%,
      rgba(250, 243, 224, 0.96) 94%,
      var(--cream) 100%
    ) !important;
  }

  .map-center-card { 
    display: block !important; 
    opacity: 1 !important; 
    visibility: visible !important; 
    pointer-events: auto !important; 
    position: relative; 
    top: auto; 
    left: auto; 
    transform: none !important; 
    margin: 12px auto 0; 
    width: 100%; 
    max-width: 250px;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(27, 43, 94, 0.16);
  }
  .map-card-close { display: none !important; }
  .map-card-img-wrap { height: 95px; border-radius: 12px 12px 0 0; }
  .map-card-tag { font-size: 8.5px; padding: 2px 7px; top: 6px; right: 6px; }
  .map-card-body { padding: 10px 12px; }
  .map-card-title { font-size: 13px; margin-bottom: 3px; line-height: 1.25; }
  .map-card-loc { font-size: 10.5px; margin-bottom: 6px; gap: 4px; }
  .map-card-stats { font-size: 10.5px; padding-bottom: 6px; margin-bottom: 6px; gap: 8px; }
  .map-card-price { font-size: 10.5px; }
  .map-card-action .btn { padding: 5px 9px; font-size: 10.5px; border-radius: 6px; }
  .map-card-pin-pointer { width: 26px; height: 26px; font-size: 10px; bottom: -13px; }

  /* Footer Mobile Grid: 2-Column Clean Layout */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    text-align: left;
    margin-bottom: 6px;
  }
  .footer-desc {
    max-width: 100%;
    font-size: 13px;
    margin-bottom: 14px;
  }
  .footer h4 {
    font-size: 13.5px;
    margin-bottom: 12px;
  }
  .footer-links a {
    font-size: 12.5px;
  }
  .footer-bottom {
    margin-top: 32px;
    padding: 16px 0 72px !important;
    font-size: 11px;
    line-height: 1.5;
    background: transparent !important;
  }

  /* CTA Banner Mobile Optimization — Compact Size + Original Clean Navy Blue & Visible Side Batik */
  .cta-banner {
    padding: 44px 0 38px;
    position: relative;
    background: #111C3E;
  }

  .cta-decor-left {
    display: block !important;
    position: absolute;
    top: 0; bottom: 0; left: 0;
    width: clamp(140px, 30vw, 380px) !important;
    height: 100% !important;
    background-image: url('image/backgrounds/cta_decor_left.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0.45 !important;
    filter: blur(2px) !important;
    -webkit-filter: blur(2px) !important;
    z-index: 1;
    pointer-events: none;
  }

  .cta-decor-right {
    display: block !important;
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: clamp(140px, 30vw, 380px) !important;
    height: 100% !important;
    background-image: url('image/backgrounds/cta_decor_right.webp');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0.45 !important;
    filter: blur(2px) !important;
    -webkit-filter: blur(2px) !important;
    z-index: 1;
    pointer-events: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 0 16px;
    position: relative;
    z-index: 10;
  }

  .cta-text-wrap {
    max-width: 100%;
  }

  .cta-inner h2 {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 1.25;
  }

  .cta-inner p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 11px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .nav-logo-sub { display: none; }
  .hero-bg-right { height: 410px; }
  .hero-content-left { padding-top: 200px; }
  .hero-title { font-size: 26px; }
  .cta-banner { padding: 36px 0 30px; }
  .cta-inner h2 { font-size: 20px; }

  .section-title { font-size: 21px; }
  .section-subtitle { font-size: 13px; margin-bottom: 24px; }
  .btn-lg { width: 100%; justify-content: center; padding: 11px 14px; font-size: 13px; }
  .map-center-card { width: 100%; max-width: 230px; }
  .map-card-img-wrap { height: 85px; }
  .map-card-body { padding: 8px 10px; }
  .map-card-title { font-size: 12px; }
  .map-card-loc { font-size: 9.5px; margin-bottom: 5px; }
  .map-card-stats { font-size: 9.5px; padding-bottom: 5px; margin-bottom: 5px; }
  .map-card-price { font-size: 9.5px; }
  .map-card-action .btn { padding: 4px 8px; font-size: 10px; }
  .modal-card { padding: 16px; border-radius: 16px; }

  /* Compact Gallery Modal for Mobile */
  .modal-gallery-card {
    max-width: 320px !important;
    width: 90vw !important;
    padding: 14px !important;
    border-radius: 16px !important;
    max-height: 82vh !important;
    overflow-y: auto !important;
  }

  .modal-gallery-card .modal-close {
    width: 30px !important;
    height: 30px !important;
    top: 10px !important;
    right: 10px !important;
  }

  .modal-gallery-img-wrap {
    height: 170px !important;
    border-radius: 10px !important;
    margin-bottom: 10px !important;
  }

  .modal-gallery-title {
    font-size: 15px !important;
    margin-bottom: 4px !important;
  }

  .modal-gallery-desc {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 12px !important;
  }

  .modal-gallery-actions .btn {
    padding: 6px 12px !important;
    font-size: 11.5px !important;
    border-radius: 6px !important;
  }

  /* Compact Product Modal for Mobile */
  .modal-product-card {
    max-width: 320px !important;
    width: 90vw !important;
    padding: 14px !important;
    border-radius: 16px !important;
    max-height: 82vh !important;
    overflow-y: auto !important;
  }

  .modal-product-card .modal-close {
    width: 30px !important;
    height: 30px !important;
    top: 10px !important;
    right: 10px !important;
  }

  .modal-product-img-wrap {
    height: 160px !important;
    border-radius: 10px !important;
    margin-bottom: 8px !important;
  }

  .modal-product-rating {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }

  .modal-product-title {
    font-size: 14.5px !important;
    margin-bottom: 3px !important;
  }

  .modal-product-seller {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }

  .modal-product-desc {
    font-size: 11px !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }

  .modal-product-footer {
    padding-top: 8px !important;
  }

  .modal-product-price {
    font-size: 14px !important;
    padding: 3px 8px !important;
  }

  .modal-product-footer .btn {
    padding: 6px 10px !important;
    font-size: 11px !important;
    border-radius: 6px !important;
  }

  /* Compact Consultation Modal for Mobile */
  .modal-consult-card {
    max-width: 320px !important;
    width: 90vw !important;
    padding: 16px 14px !important;
    border-radius: 16px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }

  .modal-consult-card .modal-close {
    width: 30px !important;
    height: 30px !important;
    top: 10px !important;
    right: 10px !important;
  }

  .modal-consult-title {
    font-size: 16px !important;
  }

  .modal-consult-desc {
    font-size: 11px !important;
  }

  .consult-form-group label {
    font-size: 10.5px !important;
  }

  .consult-form-control {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }

  /* Compact Product Order Modal for Mobile */
  .modal-product-order-card {
    max-width: 320px !important;
    width: 90vw !important;
    padding: 14px !important;
    border-radius: 16px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
  }

  .product-order-summary {
    padding: 8px 10px !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }

  .order-product-thumb {
    width: 54px !important;
    height: 54px !important;
    border-radius: 8px !important;
  }

  .order-product-name {
    font-size: 12.5px !important;
  }

  .order-product-seller {
    font-size: 10px !important;
  }

  .order-product-price {
    font-size: 12px !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
}

/* =========================================================
   MOBILE BOTTOM NAVIGATION BAR (FIXED NAVY & GOLD THEME)
   ========================================================= */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0 !important;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 10px;
    left: 12px;
    right: 12px;
    height: 50px !important;
    background: rgba(17, 28, 62, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 147, 58, 0.4);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(17, 28, 62, 0.35);
    z-index: 10000;
    align-items: center;
    justify-content: space-around;
    padding: 3px 6px;
  }

  .mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 9px !important;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 2px !important;
    border-radius: 14px;
    flex: 1;
    text-align: center;
  }

  .mobile-bottom-nav-item svg {
    width: 18px !important;
    height: 18px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 2.2px;
  }

  .mobile-bottom-nav-item.active,
  .mobile-bottom-nav-item:hover {
    color: var(--gold-pale);
    background: rgba(200, 147, 58, 0.22);
  }

  .mobile-bottom-nav-item.active svg,
  .mobile-bottom-nav-item:hover svg {
    color: var(--gold);
    transform: translateY(-1px);
  }
}


/* =========================================================
   COMPATIBILITY UTILITIES (REPLACING INLINE STYLES)
   ========================================================= */
.nav-mobile-cta-btn {
  justify-content: center;
  width: 100%;
}

.about-desc-p {
  margin-top: 14px;
}

.testi-author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.testi-author-role {
  font-size: 12px;
  color: #555577;
}

.dampak-header-wrap {
  margin-bottom: 24px;
}

.contact-section {
  padding-top: 40px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-icon {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social-icon:hover {
  color: var(--gold-pale);
}

.modal-consult-header-compact {
  margin-bottom: 12px;
}

.modal-title-sm {
  font-size: 18px;
}

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

.btn-rounded-10 {
  border-radius: 10px;
}

/* =========================================================
   SOUND TOGGLE BUTTON (OPT-IN AMBIENT AUDIO)
   ========================================================= */
.sound-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(200, 147, 58, 0.1);
  color: var(--navy);
  border: 1px solid rgba(200, 147, 58, 0.25);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 0;
}

.sound-toggle-btn:hover {
  background: rgba(200, 147, 58, 0.22);
  color: var(--brown-mid);
  transform: translateY(-1px);
}

.sound-toggle-btn.sound-active,
.sound-toggle-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-dark);
  border-color: var(--gold);
  box-shadow: 0 3px 10px rgba(200, 147, 58, 0.35);
}

.sound-toggle-btn .icon-unmuted {
  display: none;
}

.sound-toggle-btn .icon-muted {
  display: block;
}

.sound-toggle-btn.sound-active .icon-unmuted,
.sound-toggle-btn[aria-pressed="true"] .icon-unmuted {
  display: block;
}

.sound-toggle-btn.sound-active .icon-muted,
.sound-toggle-btn[aria-pressed="true"] .icon-muted {
  display: none;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay untuk grid/kartu berurutan (opsional, dipakai lewat class tambahan) */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hormati preferensi user yang mematikan animasi (accessibility) */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   FAQ (FREQUENTLY ASKED QUESTIONS) ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(200, 147, 58, 0.25);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(27, 43, 94, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(27, 43, 94, 0.08);
  transform: translateY(-2px);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 8px 26px rgba(200, 147, 58, 0.15);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 16px;
  transition: color 0.25s ease;
}

.faq-q-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  flex: 1;
  transition: color 0.25s ease;
}

.faq-question:hover .faq-q-title {
  color: var(--brown-mid);
}

.faq-item.active .faq-q-title {
  color: var(--brown-mid);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(200, 147, 58, 0.12);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover .faq-icon {
  background: rgba(200, 147, 58, 0.25);
  color: var(--brown-mid);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--navy-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(200, 147, 58, 0.15);
  padding-top: 14px;
}

.faq-answer-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

.faq-answer-inner strong {
  color: var(--navy);
  font-weight: 600;
}

.faq-answer-inner em {
  color: var(--brown-mid);
  font-style: italic;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 0 4px;
  }
  .faq-item {
    margin-bottom: 10px;
    border-radius: 12px;
  }
  .faq-question {
    padding: 12px 14px;
    gap: 10px;
  }
  .faq-q-title {
    font-size: 14px;
    line-height: 1.35;
  }
  .faq-icon {
    width: 26px;
    height: 26px;
  }
  .faq-icon svg {
    width: 15px;
    height: 15px;
  }
  .faq-answer-inner {
    padding: 0 14px 14px;
    padding-top: 10px;
  }
  .faq-answer-inner p {
    font-size: 12px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .faq-item {
    margin-bottom: 8px;
    border-radius: 10px;
  }
  .faq-question {
    padding: 10px 12px;
    gap: 8px;
  }
  .faq-q-title {
    font-size: 13px;
  }
  .faq-answer-inner {
    padding: 0 12px 12px;
    padding-top: 8px;
  }
  .faq-answer-inner p {
    font-size: 11.5px;
  }
}

/* ==========================================================================
   ACCESSIBILITY: SKIP TO CONTENT LINK
   ========================================================================== */
.skip-to-content {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--navy);
  color: var(--gold-pale);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  z-index: 100000;
  border: 1.5px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: top 0.25s ease-out;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 16px;
  outline: 3px solid var(--gold-light);
}

/* ==========================================================================
   PRODUCT SEARCH & FILTER SYSTEM
   ========================================================================== */
.product-search-wrap {
  max-width: 520px;
  margin: 24px auto 0;
  position: relative;
}

.product-search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.product-search-icon {
  position: absolute;
  left: 16px;
  color: var(--brown-mid);
  pointer-events: none;
}

.product-search-input {
  width: 100%;
  padding: 12px 42px 12px 46px;
  background: var(--white);
  border: 1.5px solid rgba(200, 147, 58, 0.35);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(27, 43, 94, 0.06);
  transition: var(--transition);
  outline: none;
}

.product-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(200, 147, 58, 0.2);
  background: var(--white);
}

.product-search-clear {
  position: absolute;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 147, 58, 0.15);
  color: var(--brown-mid);
  border: none;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
}

.product-search-clear:hover {
  background: var(--brown-mid);
  color: var(--white);
}

.product-not-found {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: 18px;
  border: 1.5px dashed rgba(200, 147, 58, 0.4);
  margin-top: 32px;
  box-shadow: 0 4px 16px rgba(27, 43, 94, 0.05);
}

.product-not-found-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.product-not-found-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

.product-not-found-desc {
  font-size: 14px;
  color: var(--text-mid);
  max-width: 440px;
  margin: 0 auto;
}

.product-not-found-desc em {
  color: var(--brown-mid);
  font-weight: 600;
  font-style: normal;
}

/* ==========================================================================
   PRODUCT PAGINATION STYLES
   ========================================================================== */
.product-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.product-page-num,
.product-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--white);
  border: 1.5px solid rgba(200, 147, 58, 0.3);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(27, 43, 94, 0.05);
}

.product-page-num:hover:not(.active),
.product-page-btn:hover:not(:disabled) {
  background: rgba(200, 147, 58, 0.12);
  border-color: var(--gold);
  color: var(--brown-mid);
  transform: translateY(-2px);
}

.product-page-num.active {
  background: var(--navy);
  color: var(--gold-pale);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(27, 43, 94, 0.25);
  cursor: default;
}

.product-page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ==========================================================================
   FORM VALIDATION ERROR STYLES
   ========================================================================== */
.field-error {
  display: block;
  color: #D32F2F;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  min-height: 16px;
  line-height: 1.35;
  transition: opacity 0.2s ease;
}

.consult-form-control.is-invalid {
  border-color: #D32F2F !important;
  background-color: #FFF5F5 !important;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12) !important;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & BACK-TO-TOP)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9990;
  pointer-events: none;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  border: none;
}

/* WhatsApp Floating Button */
.floating-wa-btn {
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-wa-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  background: #20BA5A;
}

/* Back to Top Floating Button */
.back-to-top-btn {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold-pale);
  border: 1.5px solid rgba(200, 147, 58, 0.4);
  box-shadow: 0 6px 18px rgba(27, 43, 94, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--brown-mid);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(139, 58, 28, 0.35);
}

@media (max-width: 768px) {
  .floating-actions-container {
    bottom: 72px;
    right: 16px;
    gap: 10px;
  }

  .floating-wa-btn {
    width: 48px;
    height: 48px;
  }

  .floating-wa-btn svg {
    width: 24px;
    height: 24px;
  }

  .back-to-top-btn {
    width: 40px;
    height: 40px;
  }

  .back-to-top-btn svg {
    width: 17px;
    height: 17px;
  }

  .product-search-wrap {
    max-width: 100%;
    margin-top: 16px;
  }

  .product-search-input {
    font-size: 13px;
    padding: 10px 38px 10px 42px;
  }

  .product-not-found {
    padding: 32px 16px;
    margin-top: 20px;
  }

  .product-not-found-title {
    font-size: 17px;
  }

  .product-not-found-desc {
    font-size: 12px;
  }
}

/* ==========================================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--navy-dark);
  color: var(--gold-pale);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  font-size: 13.5px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.toast-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .toast-container {
    top: 60px;
    right: 16px;
    left: 16px;
  }
  .toast-bubble {
    font-size: 12px;
    padding: 10px 14px;
  }
}

/* ==========================================================================
   LUXURY UTILITY ACTION BUTTONS (THEME & SOUND TOGGLES IN NAVBAR)
   ========================================================================== */
.theme-toggle-btn,
.sound-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(200, 147, 58, 0.12);
  border: 1.5px solid rgba(200, 147, 58, 0.35);
  color: var(--brown-mid);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(27, 43, 94, 0.08);
}

.theme-toggle-btn:hover,
.sound-toggle-btn:hover {
  background: var(--brown-mid);
  border-color: var(--brown-mid);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 58, 28, 0.3);
}

.theme-toggle-btn svg,
.sound-toggle-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-toggle-btn .icon-sun {
  color: #C8933A;
}

.theme-toggle-btn:hover .icon-sun {
  color: #FFFFFF;
}

.theme-toggle-btn:hover svg {
  transform: rotate(45deg);
}

.theme-toggle-btn:active,
.sound-toggle-btn:active {
  transform: scale(0.92);
}

[data-theme="dark"] .theme-toggle-btn,
[data-theme="dark"] .sound-toggle-btn {
  background: rgba(217, 169, 74, 0.18);
  border-color: rgba(217, 169, 74, 0.5);
  color: var(--gold-pale);
  box-shadow: 0 0 12px rgba(217, 169, 74, 0.25);
}

[data-theme="dark"] .theme-toggle-btn .icon-moon {
  color: #F5E5BE;
}

[data-theme="dark"] .theme-toggle-btn:hover .icon-moon {
  color: #0A0B10;
}

[data-theme="dark"] .theme-toggle-btn:hover,
[data-theme="dark"] .sound-toggle-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A0B10;
  box-shadow: 0 0 20px rgba(217, 169, 74, 0.55);
}

/* ==========================================================================
   COMPREHENSIVE DARK MODE SYSTEM (NIGHT HERITAGE)
   ========================================================================== */
html[data-theme="dark"],
body[data-theme="dark"] {
  background-color: #0D0F16 !important;
  color: #F0EDE5 !important;
}

[data-theme="dark"] {
  --cream:        #0D0F16;
  --cream-dark:   #141722;
  --cream-mid:    #12151E;
  --navy:         #F0EDE5;
  --navy-light:   #D9A94A;
  --navy-dark:    #07080D;
  --brown:        #D9A94A;
  --brown-mid:    #C8933A;
  --brown-light:  #E8C97A;
  --gold:         #D9A94A;
  --gold-light:   #E8C97A;
  --gold-pale:    #F5E5BE;
  --white:        #161924;
  --text-dark:    #F0EDE5;
  --text-mid:     #B8B4AA;
  --text-light:   #8E8A80;
  --shadow-sm:    0 4px 14px rgba(0, 0, 0, 0.5);
  --shadow-md:    0 8px 26px rgba(0, 0, 0, 0.65);
}

/* Smooth Transition on Theme Switch */
body, 
.navbar, 
.modal-card, 
.masalah-card-clean, 
.bento-card, 
.testi-clean-item, 
.faq-item, 
.contact-card-clean, 
.product-vcard,
.product-search-input,
.consult-form-control,
.dampak-bar,
.footer-clean,
.section-py {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* 1. Global Sections & Background Patterns */
[data-theme="dark"] section,
[data-theme="dark"] .section-py {
  background-color: #0D0F16;
}

[data-theme="dark"] .bg-cream-batik {
  background-color: #0E1018 !important;
  background-image: linear-gradient(rgba(14, 16, 24, 0.965), rgba(14, 16, 24, 0.965)), url('image/backgrounds/bg_cream_motif.webp') !important;
  background-size: 100% auto !important;
  background-position: center top !important;
  background-repeat: repeat-y !important;
}

/* 2. Top Navbar & Menu */
[data-theme="dark"] .navbar {
  background: rgba(13, 15, 22, 0.95) !important;
  border-bottom: 1.5px solid rgba(217, 169, 74, 0.25) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(9, 11, 16, 0.98) !important;
  border-bottom-color: rgba(217, 169, 74, 0.35) !important;
}

[data-theme="dark"] .nav-logo-name {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .nav-menu {
  background: rgba(13, 15, 22, 0.98) !important;
  border-bottom-color: rgba(217, 169, 74, 0.3) !important;
}

[data-theme="dark"] .nav-link {
  color: #D6D2C8 !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: var(--gold) !important;
}

/* 3. Hero Section */
[data-theme="dark"] .hero {
  background-color: #0D0F16 !important;
}

[data-theme="dark"] .hero-bg-left {
  background: url('image/hero/hero_bg_dark.webp') no-repeat left center / cover !important;
}

@media (min-width: 901px) {
  [data-theme="dark"] .hero-bg-right {
    background: url('image/hero/hero_model_dark.webp') no-repeat right center / cover !important;
  }
}

@media (max-width: 900px) {
  [data-theme="dark"] .hero-bg-right {
    background: url('image/hero/hero_model_dark.webp') no-repeat center 5% / cover !important;
  }
}

[data-theme="dark"] .hero-backdrop {
  background: linear-gradient(90deg, rgba(13,15,22,0.62) 0%, rgba(13,15,22,0.3) 45%, rgba(13,15,22,0.08) 100%) !important;
}

/* About Section Image Switcher */
.about-img-dark {
  display: none !important;
}

.about-img-light {
  display: block !important;
}

[data-theme="dark"] .about-img-dark {
  display: block !important;
}

[data-theme="dark"] .about-img-light {
  display: none !important;
}

[data-theme="dark"] .hero-title {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .hero-title span {
  color: var(--gold) !important;
}

[data-theme="dark"] .hero-subtitle {
  color: #B8B4AA !important;
}

[data-theme="dark"] .hero-stat-card {
  background: rgba(22, 25, 36, 0.9) !important;
  border: 1.5px solid rgba(217, 169, 74, 0.3) !important;
}

[data-theme="dark"] .hero-stat-num {
  color: var(--gold) !important;
}

[data-theme="dark"] .hero-stat-lbl {
  color: #B8B4AA !important;
}

/* 4. Headings & Typography */
[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5,
[data-theme="dark"] .section-title {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] p {
  color: #B8B4AA;
}

[data-theme="dark"] .section-tag {
  color: var(--gold) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .about-text-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .about-desc,
[data-theme="dark"] .about-desc-p {
  color: #B8B4AA !important;
}

[data-theme="dark"] .about-fact-card-unified {
  background: rgba(22, 25, 36, 0.92) !important;
  border: 1.5px solid rgba(217, 169, 74, 0.3) !important;
}

[data-theme="dark"] .fact-col-number {
  color: var(--gold) !important;
}

[data-theme="dark"] .fact-col-text {
  color: #B8B4AA !important;
}

/* 5. Masalah yang Kami Jawab (#tantangan / .clean-grid-3) */
[data-theme="dark"] .clean-item {
  border-left-color: var(--gold) !important;
}

[data-theme="dark"] .clean-item-icon {
  background: rgba(217, 169, 74, 0.18) !important;
  color: var(--gold) !important;
  border: 1.5px solid rgba(217, 169, 74, 0.45) !important;
  box-shadow: 0 0 16px rgba(217, 169, 74, 0.25) !important;
}

[data-theme="dark"] .clean-item h3 {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .clean-item p {
  color: #B8B4AA !important;
}

/* 6. Fitur Platform (#fitur) & Background Attachment */
[data-theme="dark"] #fitur {
  background-color: #07090F !important;
  background-image: url('image/backgrounds/bg_fitur.webp') !important;
}

[data-theme="dark"] #fitur::before {
  background: linear-gradient(135deg, rgba(7, 9, 15, 0.72) 0%, rgba(13, 16, 26, 0.68) 100%) !important;
}

[data-theme="dark"] .feature-row-item {
  background: rgba(18, 21, 32, 0.92) !important;
  border: 1.5px solid rgba(217, 169, 74, 0.3) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .feature-row-item:hover {
  background: rgba(24, 28, 42, 0.96) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .feature-row-icon {
  background: linear-gradient(135deg, #a66a28 0%, #d49a38 100%) !important;
  color: #07080D !important;
  box-shadow: 0 4px 14px rgba(217, 169, 74, 0.3) !important;
}

[data-theme="dark"] .feature-row-item h3 {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .feature-row-item p {
  color: #B8B4AA !important;
}

/* 7. Cara Kerja (Steps) */
[data-theme="dark"] .step-num-badge {
  background: rgba(217, 169, 74, 0.18) !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold) !important;
  box-shadow: 0 0 16px rgba(217, 169, 74, 0.25) !important;
}

[data-theme="dark"] .step-clean-item h3 {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .step-clean-item p {
  color: #B8B4AA !important;
}

/* 8. Cards & Modals */
[data-theme="dark"] .masalah-card-clean,
[data-theme="dark"] .fitur-card,
[data-theme="dark"] .step-card,
[data-theme="dark"] .testi-clean-item,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .contact-card-clean,
[data-theme="dark"] .modal-card,
[data-theme="dark"] .product-not-found {
  background: #161924 !important;
  border: 1.5px solid rgba(217, 169, 74, 0.22) !important;
  color: #F0EDE5 !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .modal-overlay {
  background: rgba(5, 7, 12, 0.85) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

[data-theme="dark"] .modal-close {
  background: #10121A !important;
  border: 1.5px solid rgba(217, 169, 74, 0.35) !important;
  color: #F0EDE5 !important;
}

[data-theme="dark"] .modal-close:hover {
  background: var(--gold) !important;
  color: #07080D !important;
}

[data-theme="dark"] .consult-form-group label {
  color: #F0EDE5 !important;
}

/* Button Fixes for Dark Mode */
[data-theme="dark"] .btn-outline-white {
  background: transparent !important;
  color: #F0EDE5 !important;
  border: 1.5px solid rgba(240, 237, 229, 0.65) !important;
}

[data-theme="dark"] .btn-outline-white:hover {
  background: #F0EDE5 !important;
  color: #07080D !important;
  border-color: #F0EDE5 !important;
}

[data-theme="dark"] .btn-outline-brown {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold) !important;
}

[data-theme="dark"] .btn-outline-brown:hover {
  background: var(--gold) !important;
  color: #07080D !important;
  border-color: var(--gold) !important;
}

[data-theme="dark"] .btn-white-solid {
  background: var(--gold) !important;
  color: #07080D !important;
}

[data-theme="dark"] .btn-white-solid:hover {
  background: var(--gold-pale) !important;
  color: #07080D !important;
}

[data-theme="dark"] .masalah-title-clean,
[data-theme="dark"] .fitur-card-title,
[data-theme="dark"] .step-card-title,
[data-theme="dark"] .faq-q-title,
[data-theme="dark"] .contact-card-title,
[data-theme="dark"] .modal-product-title,
[data-theme="dark"] .modal-consult-title,
[data-theme="dark"] .modal-gallery-title {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .masalah-desc-clean,
[data-theme="dark"] .fitur-card-desc,
[data-theme="dark"] .step-card-desc,
[data-theme="dark"] .faq-answer-inner p,
[data-theme="dark"] .contact-card-desc,
[data-theme="dark"] .modal-product-desc,
[data-theme="dark"] .modal-consult-desc,
[data-theme="dark"] .modal-gallery-desc {
  color: #B8B4AA !important;
}

/* 9. Product Cards & Search */
[data-theme="dark"] .product-vcard {
  border: 1.5px solid rgba(217, 169, 74, 0.3) !important;
}

[data-theme="dark"] .product-vcard-overlay {
  background: linear-gradient(to top, rgba(7, 8, 13, 0.96) 0%, rgba(7, 8, 13, 0.45) 35%, rgba(0, 0, 0, 0) 65%) !important;
}

[data-theme="dark"] .product-vcard:hover .product-vcard-overlay {
  background: linear-gradient(to top, rgba(7, 8, 13, 0.98) 0%, rgba(7, 8, 13, 0.6) 40%, rgba(0, 0, 0, 0) 70%) !important;
}

[data-theme="dark"] .product-vcard-bottom {
  background: linear-gradient(180deg, transparent 0%, rgba(13, 15, 22, 0.95) 55%, #0D0F16 100%) !important;
}

[data-theme="dark"] .product-vname {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .product-search-input,
[data-theme="dark"] .consult-form-control {
  background: #10121A !important;
  border: 1.5px solid rgba(217, 169, 74, 0.35) !important;
  color: #F0EDE5 !important;
}

[data-theme="dark"] .product-search-input:focus,
[data-theme="dark"] .consult-form-control:focus {
  background: #141722 !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 16px rgba(217, 169, 74, 0.25) !important;
}

[data-theme="dark"] .product-page-num,
[data-theme="dark"] .product-page-btn {
  background: #161924 !important;
  border: 1.5px solid rgba(217, 169, 74, 0.3) !important;
  color: #F0EDE5 !important;
}

[data-theme="dark"] .product-page-num.active {
  background: var(--gold) !important;
  color: #0A0B10 !important;
  border-color: var(--gold) !important;
  font-weight: 700;
}

/* 10. Bento Gallery & Testimonials */
[data-theme="dark"] #testimoni {
  background-color: #07090F !important;
  background-image: linear-gradient(rgba(7, 9, 15, 0.94), rgba(7, 9, 15, 0.94)), url('image/gallery/doc_canting.webp') !important;
}

[data-theme="dark"] .bento-card {
  border: 1.5px solid rgba(217, 169, 74, 0.3) !important;
}

[data-theme="dark"] .bento-card-overlay {
  background: linear-gradient(to top, rgba(7, 8, 13, 0.95) 0%, rgba(7, 8, 13, 0.45) 50%, rgba(0, 0, 0, 0.05) 100%) !important;
}

[data-theme="dark"] .bento-card:hover .bento-card-overlay {
  background: linear-gradient(to top, rgba(7, 8, 13, 0.98) 0%, rgba(7, 8, 13, 0.6) 50%, rgba(0, 0, 0, 0.1) 100%) !important;
}

[data-theme="dark"] .testi-clean-item {
  background: #141722 !important;
  border: 1.5px solid rgba(217, 169, 74, 0.25) !important;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .testi-clean-item p {
  color: #E0DDD4 !important;
}

[data-theme="dark"] .testi-quote-mark {
  color: var(--gold) !important;
}

[data-theme="dark"] .testi-avatar-initial {
  background: rgba(217, 169, 74, 0.18) !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold) !important;
  box-shadow: 0 0 12px rgba(217, 169, 74, 0.25) !important;
}

[data-theme="dark"] .testi-author-name {
  color: var(--gold) !important;
}

[data-theme="dark"] .testi-author-role {
  color: #C2BEB4 !important;
}

/* 11. Dampak Bar, Map, & Kontak */
[data-theme="dark"] .dampak-bar {
  background-color: #07090F !important;
  background-image: linear-gradient(rgba(7, 9, 15, 0.95), rgba(7, 9, 15, 0.95)), url('image/gallery/doc_canting.webp') !important;
  border-top: 1.5px solid rgba(217, 169, 74, 0.25) !important;
  border-bottom: 1.5px solid rgba(217, 169, 74, 0.25) !important;
}

[data-theme="dark"] .dampak-num {
  color: var(--gold) !important;
}

[data-theme="dark"] .dampak-label {
  color: #B8B4AA !important;
}

/* Map Dark Theme Styles */
[data-theme="dark"] .section-bg-map-container iframe,
[data-theme="dark"] .realestate-map-wrapper iframe {
  filter: invert(90%) hue-rotate(180deg) contrast(110%) brightness(85%) saturate(30%) !important;
  opacity: 0.65 !important;
}

[data-theme="dark"] .section-bg-map-overlay {
  background: linear-gradient(
    180deg,
    #0E1018 0%,
    rgba(14, 16, 24, 0.98) 180px,
    rgba(14, 16, 24, 0.85) 240px,
    rgba(14, 16, 24, 0.25) 360px,
    rgba(14, 16, 24, 0.15) 680px,
    rgba(14, 16, 24, 0.5) 850px,
    #0E1018 100%
  ) !important;
}

[data-theme="dark"] .map-filter-bar {
  background: rgba(22, 25, 36, 0.95) !important;
  border: 1.5px solid rgba(217, 169, 74, 0.35) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .map-filter-item label {
  color: #8E8A80 !important;
}

[data-theme="dark"] .map-filter-item select {
  color: #F0EDE5 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .map-filter-item select:focus,
[data-theme="dark"] .map-filter-item select:hover {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

[data-theme="dark"] .map-filter-item select option {
  background: #161924 !important;
  color: #F0EDE5 !important;
}

[data-theme="dark"] .filter-val-text {
  color: var(--gold) !important;
}

[data-theme="dark"] .map-filter-search-btn {
  background: linear-gradient(135deg, #C8933A 0%, #E8C97A 100%) !important;
  color: #0A0C14 !important;
  box-shadow: 0 4px 16px rgba(217, 169, 74, 0.45) !important;
}

[data-theme="dark"] .map-filter-search-btn svg {
  stroke: #0A0C14 !important;
}

[data-theme="dark"] .map-filter-search-btn:hover {
  background: #F0EDE5 !important;
  transform: scale(1.08) !important;
}

[data-theme="dark"] .map-filter-search-btn:hover svg {
  stroke: #07080D !important;
}

[data-theme="dark"] .map-avatar-marker {
  border-color: #161924 !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .map-avatar-marker:hover,
[data-theme="dark"] .map-avatar-marker.active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(217, 169, 74, 0.4), 0 8px 24px rgba(0, 0, 0, 0.8) !important;
}

[data-theme="dark"] .map-center-card {
  background: #161924 !important;
  border-color: rgba(217, 169, 74, 0.35) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7) !important;
}

[data-theme="dark"] .map-card-body {
  background: #161924 !important;
}

[data-theme="dark"] .map-card-title {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .map-card-loc {
  color: #8E8A80 !important;
}

[data-theme="dark"] .map-card-stats {
  color: #8E8A80 !important;
  border-bottom-color: rgba(217, 169, 74, 0.2) !important;
}

[data-theme="dark"] .map-card-stats strong {
  color: var(--gold) !important;
}

[data-theme="dark"] .map-card-price {
  color: var(--gold) !important;
}

[data-theme="dark"] .map-card-pin-pointer {
  background: #0D0F16 !important;
  border-color: #161924 !important;
  color: var(--gold) !important;
}

[data-theme="dark"] .map-floating-popup {
  background: #161924 !important;
  border-color: rgba(217, 169, 74, 0.35) !important;
}

[data-theme="dark"] .map-popup-city {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .map-popup-address {
  color: #8E8A80 !important;
}

[data-theme="dark"] .contact-mini-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

[data-theme="dark"] .contact-mini-icon {
  background: rgba(217, 169, 74, 0.15) !important;
  color: var(--gold) !important;
  border: none !important;
}

[data-theme="dark"] .contact-mini-label {
  color: #8E8A80 !important;
}

[data-theme="dark"] .contact-mini-val {
  color: #F0EDE5 !important;
}

/* 12. CTA Banner */
[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, #07080D 0%, #10131E 100%) !important;
  border-top: 1.5px solid rgba(217, 169, 74, 0.25) !important;
  border-bottom: 1.5px solid rgba(217, 169, 74, 0.25) !important;
}

[data-theme="dark"] .cta-text-wrap h2 {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .cta-text-wrap p {
  color: #B8B4AA !important;
}

/* 13. Footer & Socials */
[data-theme="dark"] .footer,
[data-theme="dark"] #footer,
[data-theme="dark"] .footer-clean,
[data-theme="dark"] .footer-bottom {
  background: #07080D !important;
  border-top: 1.5px solid rgba(217, 169, 74, 0.2) !important;
  color: #B8B4AA !important;
}

[data-theme="dark"] .footer-bottom {
  background: #07080D !important;
  border-top: 1px solid rgba(217, 169, 74, 0.15) !important;
  color: #8E8A80 !important;
}

[data-theme="dark"] .footer-logo-name,
[data-theme="dark"] .footer h4 {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .footer-desc,
[data-theme="dark"] .footer-links a,
[data-theme="dark"] .footer-bottom {
  color: #8E8A80 !important;
}

[data-theme="dark"] .footer-links a:hover {
  color: var(--gold) !important;
}

[data-theme="dark"] .footer-social-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--gold) !important;
}

[data-theme="dark"] .footer-social-icon:hover {
  background: rgba(217, 169, 74, 0.15) !important;
  color: #F0EDE5 !important;
  transform: translateY(-2px) !important;
}

/* 14. Mobile Bottom Nav & Floating Buttons */
[data-theme="dark"] .mobile-bottom-nav {
  background: rgba(9, 11, 16, 0.96) !important;
  border-top: 1.5px solid rgba(217, 169, 74, 0.35) !important;
}

[data-theme="dark"] .back-to-top-btn {
  background: #161924 !important;
  border-color: rgba(217, 169, 74, 0.4) !important;
  color: var(--gold) !important;
}

[data-theme="dark"] .product-order-summary {
  background: #10121A !important;
  border: 1px solid rgba(217, 169, 74, 0.25) !important;
}

[data-theme="dark"] .order-product-name {
  color: #F0EDE5 !important;
}

[data-theme="dark"] .order-product-seller {
  color: #8E8A80 !important;
}

[data-theme="dark"] .modal-product-price {
  background: rgba(217, 169, 74, 0.16) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(217, 169, 74, 0.4) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .modal-product-seller {
  color: #8E8A80 !important;
}

[data-theme="dark"] .order-product-price {
  color: var(--gold) !important;
}


