/* =========================================================
   VENDOR OUTBOUND — LUXURY MAROON THEME
   Inspired by modern eco-luxury UI:
   Warm off-white background, deep royal maroon, rose accents,
   soft rounded cards, elegant typography, floating frosted glass.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* --- Luxury Maroon Color Palette --- */
  --c-bg: #FAF7F7;
  --c-bg-alt: #F3ECEE;
  --c-bg-subtle: #EDE4E6;
  --c-surface: #FFFFFF;

  --c-maroon-dark: #2B0810;
  /* Teks utama / header gelap / background pekat */
  --c-maroon: #6B1426;
  /* Brand Maroon utama */
  --c-maroon-hover: #821B31;
  /* Maroon hover */
  --c-maroon-light: #9C243E;
  /* Maroon terang untuk badge/icon */
  --c-maroon-soft: rgba(107, 20, 38, 0.07);
  --c-maroon-border: rgba(107, 20, 38, 0.12);

  --c-accent-rose: #D9385B;
  /* Aksen highlight kata kunci */
  --c-accent-champagne: #F9ECE6;
  /* Aksen lembut Consultation Card */
  --c-accent-gold: #E89874;
  /* Aksen hangat */

  --c-text: #4A3B3E;
  /* Teks isi / body */
  --c-text-soft: #78686B;
  /* Teks sekunder */
  --c-text-light: #A39497;
  --c-white: #FFFFFF;

  /* --- Tipografi Modern --- */
  --f-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* --- Layout & Radius --- */
  --maxw: 1240px;
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  /* --- Bayangan & Glassmorphism --- */
  --shadow-xs: 0 2px 8px rgba(43, 8, 16, 0.04);
  --shadow-sm: 0 6px 20px rgba(43, 8, 16, 0.06);
  --shadow-md: 0 16px 40px rgba(43, 8, 16, 0.09);
  --shadow-lg: 0 24px 60px rgba(43, 8, 16, 0.14);
  --shadow-glow: 0 0 35px rgba(107, 20, 38, 0.18);

  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: 1px solid rgba(255, 255, 255, 0.7);
  --glass-blur: blur(16px);

  --space-section: clamp(64px, 8vw, 110px);
}

/* =========================================================
   UNIVERSAL LIVING ANIMATION SYSTEM (KEYFRAMES)
   Harmonious organic floating, ambient aura pulses, and
   responsive micro-animations across all sections.
   ========================================================= */
@keyframes cardAmbientFloatA {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes cardAmbientFloatB {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes badgeGlowPulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(217, 56, 91, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(217, 56, 91, 0.55);
    border-color: rgba(255, 139, 163, 0.7);
  }
}

@keyframes iconMicroFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.06);
  }
}

@keyframes numberGlow {

  0%,
  100% {
    text-shadow: 0 0 14px rgba(217, 56, 91, 0.35);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 28px rgba(217, 56, 91, 0.8);
    transform: scale(1.03);
  }
}

@keyframes auraBreathing {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

/* Reset & Dasar */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--f-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Tipografi Utama */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-display);
  color: var(--c-maroon-dark);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 700;
}

p {
  margin: 0 0 1.2em;
}

.lead {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.7;
  color: var(--c-text-soft);
}

.highlight {
  color: var(--c-maroon);
  position: relative;
  display: inline;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--space-section) 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--c-bg-alt);
}

.section-forest,
.section-maroon-dark {
  background-color: var(--c-maroon-dark);
  color: #E8DADC;
}

.section-maroon-dark h1,
.section-maroon-dark h2,
.section-maroon-dark h3 {
  color: #FFFFFF;
}

:focus-visible {
  outline: 3px solid var(--c-maroon);
  outline-offset: 3px;
}

/* --- Eyebrow / Pill Badge --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-maroon);
  background: var(--c-maroon-soft);
  border: 1px solid var(--c-maroon-border);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.eyebrow svg,
.eyebrow .icon-leaf {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.section-maroon-dark .eyebrow {
  background: rgba(217, 56, 91, 0.15);
  border-color: rgba(217, 56, 91, 0.3);
  color: #FF8BA3;
}

/* =========================================================
   TOMBOL (BUTTONS) LUXURY MAROON — SERAGAM DI SEMUA HALAMAN
   Semua button memiliki gaya pill melengkung halus, warna maroon mewah,
   font Outfit tebal, dan efek bayangan lembut identik dengan tombol navbar.
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  text-decoration: none;
  background: var(--c-maroon);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(107, 20, 38, 0.22);
}

.btn:hover {
  background: var(--c-maroon-dark);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 20, 38, 0.35);
}

.btn-primary,
.btn-maroon-pill {
  background: var(--c-maroon);
  color: #FFFFFF;
  border-color: transparent;
}

.btn-primary:hover,
.btn-maroon-pill:hover {
  background: var(--c-maroon-dark);
  color: #FFFFFF;
}

/* Tombol WhatsApp pada Semua CTA & Card (Matching Floating WA Design) */
.btn-wa {
  position: relative;
  background: linear-gradient(180deg, #24C06A 0%, #159B58 100%) !important;
  color: #FFFFFF !important;
  border: 2.5px solid #A2F4C5 !important;
  box-shadow: 0 6px 20px rgba(21, 155, 88, 0.35) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  animation: wa-cta-float 3.5s ease-in-out infinite;
}

.btn-wa svg {
  width: 20px;
  height: 20px;
  fill: #FFFFFF !important;
  flex: none;
}

.btn-wa:hover {
  background: linear-gradient(180deg, #28CC71 0%, #17A85F 100%) !important;
  border-color: #C2F9D8 !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 10px 26px rgba(21, 155, 88, 0.48) !important;
  animation-play-state: paused;
}

/* Badge Tanda Seru Merah pada Tombol CTA */
.btn-wa-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 20px;
  height: 20px;
  background: #EF4444;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
  animation: wa-badge-pulse 2.2s infinite;
  pointer-events: none;
  line-height: 1;
  z-index: 2;
}

/* Animasi Lembut untuk Tombol CTA */
@keyframes wa-cta-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}



/* Tombol Outline (Gaya Sekunder Pill) */
.btn-outline {
  background: transparent;
  border: 2px solid var(--c-maroon);
  color: var(--c-maroon);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--c-maroon);
  border-color: var(--c-maroon);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(107, 20, 38, 0.25);
}

/* Tombol Aksen Rose */
.btn-accent {
  background: var(--c-accent-rose);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(217, 56, 91, 0.25);
}

.btn-accent:hover {
  background: #B82B4D;
  color: #FFFFFF;
}

/* Tombol Putih Kontras di Banner Gelap */
.btn-cta-white,
.btn-ghost-white {
  background: #FFFFFF;
  color: var(--c-maroon-dark);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover,
.btn-ghost-white:hover {
  background: var(--c-accent-champagne);
  color: var(--c-maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn-block {
  width: 100%;
}

/* =========================================================
   HEADER / NAVBAR (Fixed, Transparent at Top, Scrolled Glassmorphism)
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(43, 8, 16, 0.08);
  border-bottom: 1px solid rgba(107, 20, 38, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  transition: padding 0.3s ease;
}

.site-header.is-scrolled .navbar {
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--c-maroon-dark);
  letter-spacing: -0.02em;
  flex: none;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-maroon) 0%, #470C19 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(107, 20, 38, 0.25);
}

.brand .brand-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Nav Right Alignment Group */
.nav-right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 5px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav-menu>li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-text);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-expanded="true"] {
  color: var(--c-maroon);
  background: rgba(107, 20, 38, 0.06);
}

.nav-link.nav-link-active {
  color: var(--c-maroon);
  background: #FFFFFF;
  box-shadow: var(--shadow-xs);
  font-weight: 700;
}

.nav-link .chev {
  width: 10px;
  height: 10px;
  transition: transform 0.2s ease;
}

.nav-link[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.nav-actions,
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-maroon-dark);
  margin: 5px 0;
  transition: 0.2s;
}

/* --- Mega Menu (Paket) --- */
.mega-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(880px, 86vw);
  background: #FFFFFF;
  border: 1px solid var(--c-maroon-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  translate: 0 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
}

.nav-item-mega:hover .mega-panel,
.nav-item-mega:focus-within .mega-panel,
.mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.mega-col-title {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-maroon);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--c-maroon-soft);
}

.mega-col ul li a {
  display: block;
  padding: 7px 0;
  font-size: 0.92rem;
  color: var(--c-text);
  font-weight: 500;
  transition: all 0.15s ease;
}

.mega-col ul li a:hover {
  color: var(--c-maroon);
  padding-left: 6px;
}

/* =========================================================
   WANDERLUST NAVBAR & HERO STYLES — LUXURY MAROON THEME
   ========================================================= */

/* Navbar Brand & Dark Luxury Maroon Aesthetic */
.site-header--wander {
  background: rgba(30, 6, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 139, 163, 0.14);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header--wander.site-header--transparent:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-header--wander .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  gap: 16px;
  max-width: 1300px;
  width: 100%;
}

.site-header--wander.is-scrolled {
  background: rgba(43, 8, 16, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 56, 91, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Page top clearance when using fixed wander header on subpages */
.site-header--wander~main {
  padding-top: 88px;
}

@media (max-width: 768px) {
  .site-header--wander~main {
    padding-top: 56px;
  }
}

@media (max-width: 576px) {
  .site-header--wander~main {
    padding-top: 48px;
  }
}

.site-header--wander.site-header--transparent~main,
.site-header--wander~main:has(.wander-hero),
.site-header--wander~main:has(.about-hero-maroon),
.site-header--wander~main:has(.subpage-hero-maroon) {
  padding-top: 0;
}

.brand--wander {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 12px rgba(217, 56, 91, 0.28));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
}

.brand--wander:hover .brand-logo-img {
  transform: scale(1.06) translateY(-1px);
  filter: drop-shadow(0 4px 16px rgba(217, 56, 91, 0.55)) drop-shadow(0 0 20px rgba(255, 139, 163, 0.38));
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  margin-bottom: 8px;
  transition: transform 0.25s ease;
}

.footer-brand a:hover .footer-logo-img {
  transform: scale(1.04);
}

.brand-wander-logo {
  width: 40px;
  height: 30px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-wander-logo svg {
  width: 100%;
  height: 100%;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-text-group .brand-name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-text-group .brand-tagline {
  font-family: var(--f-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #FF8BA3;
  line-height: 1;
  margin-top: 2px;
  white-space: nowrap;
}

/* Nav Menu Wanderlust */
.nav-menu--wander {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  gap: 4px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap !important;
  white-space: nowrap;
}

.nav-menu--wander .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-menu--wander .nav-link:hover,
.nav-menu--wander .nav-link:focus-visible,
.nav-menu--wander .nav-link[aria-expanded="true"] {
  color: #FF8BA3;
  background: rgba(217, 56, 91, 0.12);
}

.nav-menu--wander .nav-link.nav-link-active {
  color: #FFFFFF;
  background: rgba(217, 56, 91, 0.2);
  font-weight: 700;
}

/* Mega Panel Dark Mode */
.mega-panel--dark {
  background: rgba(36, 7, 14, 0.97) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(217, 56, 91, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
}

.mega-panel--dark .mega-col-title {
  color: #FF8BA3 !important;
  border-bottom: 1px solid rgba(217, 56, 91, 0.25) !important;
}

.mega-panel--dark .mega-col ul li a {
  color: rgba(255, 255, 255, 0.82) !important;
}

.mega-panel--dark .mega-col ul li a:hover {
  color: #FF8BA3 !important;
  padding-left: 6px;
}

/* Nav Actions (Search, Lang, Maroon CTA) */
.nav-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-icon-btn svg {
  width: 17px;
  height: 17px;
}

.nav-icon-btn:hover {
  background: rgba(217, 56, 91, 0.2);
  border-color: #FF8BA3;
  color: #FF8BA3;
}

.site-header--wander .nav-right-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap !important;
  flex-shrink: 0;
}

.site-header--wander .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap !important;
  flex-shrink: 0;
}


/* Luxury Maroon Pill CTA Button in Navbar with CS Headset Icon */
.btn-wander-cta {
  background: linear-gradient(135deg, #8E1731 0%, #6B1426 100%);
  color: #FFFFFF !important;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 139, 163, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(107, 20, 38, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-wander-cta .cs-headset-icon {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.btn-wander-cta:hover {
  background: linear-gradient(135deg, #A8203D 0%, #821B31 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(168, 32, 61, 0.65), 0 0 16px rgba(255, 139, 163, 0.35);
  border-color: rgba(255, 139, 163, 0.6);
  color: #FFFFFF !important;
}

.btn-wander-cta:hover .cs-headset-icon {
  transform: scale(1.15) rotate(-8deg);
}

@media (max-width: 992px) {
  .brand-logo-img {
    height: 44px;
    max-width: 190px;
  }
}

@media (max-width: 768px) {
  .navbar,
  .site-header--wander .navbar {
    padding: 8px 16px !important;
    min-height: 52px;
  }
  .site-header.is-scrolled .navbar,
  .site-header--wander.is-scrolled .navbar {
    padding: 6px 16px !important;
  }
  .brand-logo-img {
    height: 38px;
    max-width: 160px;
  }
  .site-header--wander .btn-wander-cta {
    padding: 7px 14px;
    font-size: 0.8rem;
    gap: 6px;
  }
  .btn-wander-cta .cs-headset-icon {
    width: 15px;
    height: 15px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .menu-toggle span {
    width: 17px;
    height: 2px;
    margin: 2px 0;
  }
}

@media (max-width: 576px) {
  .navbar,
  .site-header--wander .navbar {
    padding: 6px 12px !important;
    min-height: 48px;
  }
  .brand-logo-img {
    height: 34px;
    max-width: 140px;
  }
  .site-header--wander .btn-wander-cta span.nav-cta-text {
    display: none;
  }
  .site-header--wander .btn-wander-cta {
    padding: 8px;
    border-radius: 50%;
  }
}

.menu-toggle--wander span {
  background: #FFFFFF !important;
}

/* =========================================================
   WANDERLUST HERO SECTION (FULL SCREEN PANORAMIC — MAROON)
   ========================================================= */
.wander-hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-color: #1A050B;
  color: #FFFFFF;
}

.wander-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 1;
  pointer-events: none;
}

.wander-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(217, 56, 91, 0.28) 0%, rgba(107, 20, 38, 0.45) 45%, rgba(26, 5, 11, 0.94) 88%),
    linear-gradient(180deg, rgba(26, 5, 11, 0.88) 0%, rgba(43, 8, 16, 0.65) 45%, rgba(26, 5, 11, 0.96) 92%, #FAF7F7 100%);
  z-index: 2;
  pointer-events: none;
}

.wander-hero-glow-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217, 56, 91, 0.18) 0%, rgba(107, 20, 38, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
  animation: cardAmbientFloatA 8s ease-in-out infinite;
}

.wander-hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 107, 139, 0.16) 0%, rgba(107, 20, 38, 0.08) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
  animation: cardAmbientFloatB 9s ease-in-out infinite;
}

/* Flight Path & Pin Beacon */
.wander-flight-path-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.wander-flight-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.wander-pin-beacon {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.beacon-pulse {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 56, 91, 0.45);
  animation: beaconPulse 2.4s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

.beacon-pin {
  position: relative;
  width: 28px;
  height: 28px;
  color: #FF6B8B;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
  animation: pinBob 2.5s ease-in-out infinite;
}

.beacon-pin svg {
  width: 100%;
  height: 100%;
}

.wander-mini-plane {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  opacity: 0.85;
}

@keyframes beaconPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes pinBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Hero Container */
.wander-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

/* Top Row: Copy + Booking Card */
.wander-hero-top-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.98fr;
  gap: 36px;
  align-items: center;
}

.wander-hero-copy {
  max-width: 580px;
}

.wander-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FF8BA3;
  margin-bottom: 20px;
}

.eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #D9385B;
}

.wander-main-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.2rem, 5.4vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 22px;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}

.wander-hero-desc {
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin: 0 0 32px;
}

/* Action Buttons */
.wander-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-wander-primary {
  background: linear-gradient(135deg, #8E1731 0%, #6B1426 100%);
  color: #FFFFFF !important;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 139, 163, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(107, 20, 38, 0.45);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-wander-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-wander-primary:hover {
  background: linear-gradient(135deg, #A8203D 0%, #821B31 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 32, 61, 0.6);
  color: #FFFFFF !important;
}

.btn-wander-primary:hover svg {
  transform: translateX(3px);
}

/* Frosted Video Play Pill */
.wander-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 22px 8px 8px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.25s ease;
}

.wander-video-btn:hover {
  background: rgba(217, 56, 91, 0.2);
  border-color: rgba(255, 139, 163, 0.4);
  transform: translateY(-2px);
}

.video-play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8E1731 0%, #6B1426 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-play-icon svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.video-btn-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.video-btn-text small {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
}

/* Right Glass Card "Rencanakan Kegiatan" */
.wander-card-wrapper {
  display: flex;
  justify-content: flex-end;
}

.wander-card {
  background: rgba(30, 6, 12, 0.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 139, 163, 0.2);
  border-radius: 26px;
  padding: 24px 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
  width: 100%;
  max-width: 460px;
}

.wander-card-header h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px;
}

.wander-card-header p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 16px;
}

/* Category Tabs (4 Tabs in 1 Line) */
.wander-card-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px;
  border-radius: 12px;
}

.wander-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 3px;
  background: transparent;
  border: none;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--f-display);
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

overflow: hidden;
text-overflow: ellipsis;
}

.wander-tab span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wander-tab svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.wander-tab:hover {
  color: #FFFFFF;
}

.wander-tab.active {
  background: rgba(142, 23, 49, 0.4);
  color: #FF8BA3;
  border: 1px solid rgba(217, 56, 91, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Input Fields inside Card */
.wander-input-row {
  position: relative;
  margin-bottom: 12px;
}

.wander-input-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.wander-input-box:focus-within {
  border-color: #D9385B;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(217, 56, 91, 0.15);
}

.wander-input-box label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E2D2D5;
  margin-bottom: 2px;
}

.wander-input-box label .field-icon {
  width: 13px;
  height: 13px;
  color: #FF8BA3;
}

.wander-input-box .input-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wander-input-box .dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D9385B;
  box-shadow: 0 0 8px #D9385B;
  flex: none;
}

.wander-input-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--f-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: #FFFFFF;
}

.wander-input-box input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.wander-swap-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.wander-swap-btn svg {
  width: 14px;
  height: 14px;
}

.wander-swap-btn:hover {
  background: #8E1731;
  color: #FFFFFF;
  transform: translateY(-50%) rotate(180deg);
}

/* Quick Area Chips (Proportional 2x2 Grid with SVG Icons) */
.wander-area-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.area-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 139, 163, 0.22);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--f-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  white-space: nowrap;
}

.area-chip span {
  white-space: nowrap;
}

.area-chip svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #FF8BA3;
  transition: transform 0.2s ease;
}

.area-chip:hover {
  background: rgba(217, 56, 91, 0.3);
  border-color: #FF8BA3;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.area-chip:hover svg {
  transform: scale(1.15);
}

.area-chip.active {
  background: linear-gradient(135deg, rgba(142, 23, 49, 0.85) 0%, rgba(217, 56, 91, 0.7) 100%);
  border-color: #FF8BA3;
  color: #FFFFFF;
  box-shadow: 0 3px 10px rgba(107, 20, 38, 0.35);
}

.area-chip.active svg {
  color: #FFFFFF;
}

.wander-grid-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.wander-card-submit {
  width: 100%;
  background: linear-gradient(135deg, #8E1731 0%, #6B1426 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 139, 163, 0.35);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(107, 20, 38, 0.45);
  transition: all 0.25s ease;
}

.wander-card-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.wander-card-submit:hover {
  background: linear-gradient(135deg, #A8203D 0%, #821B31 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(168, 32, 61, 0.6);
  color: #FFFFFF;
}

.wander-card-submit:hover svg {
  transform: translateX(3px);
}

/* Row 2: Popular Destinations Section (Full Width & Spacious) */
.wander-destinations-section {
  width: 100%;
}

.wander-dest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dest-title-group {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.dest-title-group h3 {
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.view-all-link {
  font-size: 0.84rem;
  color: #FF8BA3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.view-all-link:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

.wander-dest-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.wander-dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  min-height: 175px;
  text-decoration: none;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: cardAmbientFloatA 5.8s ease-in-out infinite;
}

.wander-dest-card:nth-child(1) {
  animation-delay: 0s;
}

.wander-dest-card:nth-child(2) {
  animation-delay: 1.4s;
}

.wander-dest-card:nth-child(3) {
  animation-delay: 2.8s;
}

.wander-dest-card:nth-child(4) {
  animation-delay: 4.2s;
}

.wander-dest-card:hover {
  transform: translateY(-9px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.7), 0 0 20px rgba(217, 56, 91, 0.35);
  border-color: rgba(255, 139, 163, 0.7);
  animation-play-state: paused;
}

.dest-card-img {
  position: absolute;
  inset: 0;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wander-dest-card:hover .dest-card-img img {
  transform: scale(1.08);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(20, 3, 7, 0.45) 40%, rgba(20, 3, 7, 0.95) 100%);
}

.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  z-index: 2;
}

.dest-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.74rem;
  color: #FF8BA3;
  font-weight: 700;
  margin-bottom: 4px;
}

.dest-card-meta .meta-location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dest-card-info h4 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  line-height: 1.25;
}

.dest-card-desc {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  margin: 0;
  display: block;
}

.dest-rating {
  color: #FF8BA3;
  font-weight: 700;
  flex-shrink: 0;
}

/* Row 3: Features Frosted Glass Badges */
.wander-features-section {
  width: 100%;
}

.wander-features-glass {
  background: rgba(30, 6, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 139, 163, 0.15);
  border-radius: 22px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.feat-badge-item,
.metric-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 4px 10px;
}

.metric-number {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.metric-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  line-height: 1.2;
}

.metric-rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.metric-rating-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.metric-stars {
  color: #FF8BA3;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 1080px) {
  .wander-hero-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wander-hero-copy {
    max-width: 100%;
  }

  .wander-card-wrapper {
    justify-content: flex-start;
  }

  .wander-card {
    max-width: 100%;
  }

  .wander-dest-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-menu--wander {
    background: rgba(36, 7, 14, 0.98) !important;
    backdrop-filter: blur(20px) !important;
  }

  .wander-hero {
    padding-top: 100px;
  }

  .wander-dest-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .wander-features-glass {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .wander-hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .wander-dest-cards {
    grid-template-columns: 1fr;
  }

  .wander-grid-inputs {
    grid-template-columns: 1fr;
  }

  .btn-wander-cta {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
}

/* =========================================================
   SECTION 2: OUR MISSION / PENDEKATAN KAMI (Split 3 Tall Cards)
   ========================================================= */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: center;
}

.mission-copy {
  max-width: 480px;
}

.mission-copy h2 {
  margin-bottom: 18px;
}

.mission-copy p {
  margin-bottom: 28px;
}

.mission-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tall-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tall-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4.8;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #FFFFFF;
  border: 1px solid rgba(107, 20, 38, 0.12);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: cardAmbientFloatB 6.5s ease-in-out infinite;
}

.tall-card:nth-child(1) {
  animation-delay: 0s;
}

.tall-card:nth-child(2) {
  animation-delay: 1.5s;
}

.tall-card:nth-child(3) {
  animation-delay: 3s;
}

.tall-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 50px rgba(107, 20, 38, 0.2), 0 0 25px rgba(217, 56, 91, 0.3);
  border-color: rgba(217, 56, 91, 0.4);
  animation-play-state: paused;
}

.tall-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tall-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tall-card:hover .tall-card-bg img {
  transform: scale(1.08);
}

.tall-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 8, 16, 0.1) 0%, rgba(43, 8, 16, 0.4) 40%, rgba(43, 8, 16, 0.92) 100%);
  z-index: 2;
}

.tall-card-content {
  position: relative;
  z-index: 3;
}

.tall-card-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.tall-card:hover .tall-card-badge {
  background: rgba(217, 56, 91, 0.45);
  border-color: #FF8BA3;
  transform: scale(1.08);
}

.tall-card-badge svg {
  width: 22px;
  height: 22px;
  stroke: #FFFFFF;
}

.tall-card h3 {
  color: #FFFFFF;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

.tall-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
  margin: 0;
}

/* =========================================================
   TRUST / CLIENT HORIZONTAL MARQUEE TICKER
   ========================================================= */
.trust-strip {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--c-maroon-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: var(--c-maroon-soft);
  border: 1px solid rgba(107, 20, 38, 0.08);
  color: var(--c-maroon);
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-badge-icon {
  width: 13px;
  height: 13px;
  color: var(--c-accent-rose);
}

.trust-title {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin: 0;
}

/* Horizontal Continuous Marquee Wrapper & Track */
.trust-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 18px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 20px;
  animation: trustMarqueeScroll 28s linear infinite;
  will-change: transform;
}

.trust-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes trustMarqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

/* Premium Client Cards */
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(107, 20, 38, 0.1);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(43, 8, 16, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
}

.trust-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(107, 20, 38, 0.28);
  box-shadow: 0 12px 30px rgba(107, 20, 38, 0.1);
}

/* Client Icon Badge Container */
.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.trust-card:hover .trust-card-icon {
  transform: scale(1.08) rotate(2deg);
}

.trust-card-icon svg {
  width: 22px;
  height: 22px;
}

/* Curated Palette for Company Badges */
.trust-card-icon.icon-corporate {
  background: linear-gradient(135deg, #FBEBED 0%, #F5D3D9 100%);
  color: var(--c-maroon);
  border: 1px solid rgba(107, 20, 38, 0.14);
}

.trust-card-icon.icon-fintech {
  background: linear-gradient(135deg, #EAF2F8 0%, #D4E6F1 100%);
  color: #1F618D;
  border: 1px solid rgba(31, 97, 141, 0.16);
}

.trust-card-icon.icon-edu {
  background: linear-gradient(135deg, #FEF9E7 0%, #FDEBD0 100%);
  color: #B7950B;
  border: 1px solid rgba(183, 149, 11, 0.18);
}

.trust-card-icon.icon-logistics {
  background: linear-gradient(135deg, #E8F8F5 0%, #D1F2EB 100%);
  color: #117A65;
  border: 1px solid rgba(17, 122, 101, 0.16);
}

.trust-card-icon.icon-bumn {
  background: linear-gradient(135deg, #FDEDEC 0%, #FADBD8 100%);
  color: #922B21;
  border: 1px solid rgba(146, 43, 33, 0.16);
}

/* Text Meta */
.trust-card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.trust-card-name {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.trust-card-tag {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-text-soft);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .trust-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-marquee-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }
}

/* =========================================================
   SECTION 3: PROGRAM PILIHAN (Modern 4-Column Luxury Grid)
   ========================================================= */
.section-programs {
  position: relative;
}

.programs-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 40px;
}

.programs-header-left {
  max-width: 680px;
}

.programs-header-left .eyebrow {
  margin-bottom: 10px;
}

.programs-header-left h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.16;
  margin-bottom: 12px;
}

.programs-header-left .lead {
  margin-bottom: 0;
  color: var(--c-text-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.programs-header-action {
  flex-shrink: 0;
  margin-bottom: 4px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.program-card {
  background: var(--c-surface);
  border: 1px solid var(--c-maroon-border);
  border-radius: var(--radius-lg);
  padding: 14px 14px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  animation: cardAmbientFloatA 6.2s ease-in-out infinite;
}

.program-card:nth-child(1) {
  animation-delay: 0s;
}

.program-card:nth-child(2) {
  animation-delay: 1.3s;
}

.program-card:nth-child(3) {
  animation-delay: 2.6s;
}

.program-card:nth-child(4) {
  animation-delay: 3.9s;
}

.program-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 22px 48px rgba(107, 20, 38, 0.16), 0 0 20px rgba(217, 56, 91, 0.18);
  border-color: rgba(107, 20, 38, 0.35);
  animation-play-state: paused;
}

.program-media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  margin-bottom: 16px;
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-card:hover .program-media img {
  transform: scale(1.08);
}

.program-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.program-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-body h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--c-maroon-dark);
  line-height: 1.25;
}

.program-body p {
  font-size: 0.86rem;
  color: var(--c-text-soft);
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--c-maroon-border);
}

.program-chip {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-maroon-dark);
  background: var(--c-maroon-soft);
  border: 1px solid rgba(107, 20, 38, 0.08);
  padding: 4px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
}

.program-chip svg {
  width: 13px;
  height: 13px;
  color: var(--c-maroon);
  flex-shrink: 0;
}

.program-footer {
  margin-top: auto;
  padding-top: 4px;
}

.program-link {
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-link:hover {
  color: var(--c-maroon-hover);
  gap: 10px;
}

@media (max-width: 1100px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .programs-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SECTION 4: FEATURE / MENGAWA MEMILIH KAMI (Numbered Luxury Steps)
   ========================================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.feature-luxury-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: cardAmbientFloatB 6.2s ease-in-out infinite;
}

.feature-luxury-card:nth-child(1) {
  animation-delay: 0s;
}

.feature-luxury-card:nth-child(2) {
  animation-delay: 1.5s;
}

.feature-luxury-card:nth-child(3) {
  animation-delay: 3s;
}

.feature-luxury-card:nth-child(4) {
  animation-delay: 4.5s;
}

.feature-luxury-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(217, 56, 91, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 56, 91, 0.25);
  animation-play-state: paused;
}

.feature-luxury-card .feat-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-accent-rose);
  margin-bottom: 14px;
  line-height: 1;
  animation: numberGlow 3.6s ease-in-out infinite;
}

.feature-luxury-card h3 {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.feature-luxury-card p {
  font-size: 0.88rem;
  color: #D6C7CA;
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   SECTION 5: GALLERY / DOKUMENTASI (Editorial Bento Showcase)
   ========================================================= */
.section-gallery {
  position: relative;
}

.gallery-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
}

.gallery-header-left {
  max-width: 680px;
}

.gallery-header-left .eyebrow {
  margin-bottom: 10px;
}

.gallery-header-left h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.16;
  margin-bottom: 12px;
}

.gallery-header-left .lead {
  margin-bottom: 0;
  color: var(--c-text-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.gallery-header-action {
  flex-shrink: 0;
  margin-bottom: 4px;
}

/* Bento Grid Showcase */
.gallery-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 20px;
  margin-bottom: 28px;
}

.gallery-bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43, 8, 16, 0.06);
  border: 1px solid rgba(107, 20, 38, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  animation: cardAmbientFloatA 6.8s ease-in-out infinite;
}

.gallery-bento-item:nth-child(1) {
  animation-delay: 0s;
}

.gallery-bento-item:nth-child(2) {
  animation-delay: 1.4s;
}

.gallery-bento-item:nth-child(3) {
  animation-delay: 2.8s;
}

.gallery-bento-item:nth-child(4) {
  animation-delay: 4.2s;
}

.gallery-bento-item:nth-child(5) {
  animation-delay: 5.6s;
}

.gallery-bento-item:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 22px 48px rgba(107, 20, 38, 0.18), 0 0 25px rgba(217, 56, 91, 0.2);
  border-color: rgba(217, 56, 91, 0.4);
  animation-play-state: paused;
}

/* Hero Item spans 2 rows */
.gallery-bento-item.item-hero {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding: 24px;
}

.gallery-bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.gallery-bento-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 8, 16, 0.2) 0%, rgba(43, 8, 16, 0.3) 40%, rgba(43, 8, 16, 0.92) 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-bento-item:hover .gallery-overlay {
  background: linear-gradient(180deg, rgba(43, 8, 16, 0.1) 0%, rgba(43, 8, 16, 0.35) 40%, rgba(43, 8, 16, 0.95) 100%);
}

.gallery-tag-pill {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  background: rgba(43, 8, 16, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-info {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 500;
  color: #E8D2D6;
}

.gallery-location svg {
  width: 12px;
  height: 12px;
  color: var(--c-accent-rose);
  flex-shrink: 0;
}

.gallery-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

.item-hero .gallery-title {
  font-size: 1.35rem;
  line-height: 1.25;
}

/* Gallery Preview Floating Badge on Card */
.gallery-preview-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(26, 4, 9, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(-4px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.gallery-preview-badge svg {
  width: 13px;
  height: 13px;
  stroke: #FFFFFF;
}

.gallery-bento-item:hover .gallery-preview-badge,
.gallery-bento-item:focus-visible .gallery-preview-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-bento-item:focus-visible {
  outline: 2px solid var(--c-accent-rose);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-bento-item.item-hero {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 320px;
  }

  .gallery-bento-item {
    min-height: 230px;
  }

  .gallery-preview-badge {
    opacity: 0.9;
    transform: none;
  }

  .gallery-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .gallery-bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-bento-item {
    min-height: 220px;
  }
}

/* =========================================================
   ELEGANT GALLERY LIGHTBOX PREVIEW
   ========================================================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(38, 5, 15, 0.92) 0%, rgba(12, 2, 5, 0.96) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  z-index: 1;
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1040px;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox.is-open .lightbox-dialog {
  transform: scale(1) translateY(0);
}

/* Lightbox Top Toolbar */
.lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.lightbox-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.lightbox-tag {
  color: var(--c-accent-rose);
  letter-spacing: 0.03em;
}

.lightbox-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.lightbox-index {
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}

.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lightbox-btn-action {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-btn-action svg {
  width: 20px;
  height: 20px;
}

.lightbox-btn-action:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
  color: #FFFFFF;
}

.lightbox-btn-action.lightbox-btn-close:hover {
  background: var(--c-maroon);
  border-color: var(--c-accent-rose);
}

/* Lightbox Viewport & Image */
.lightbox-viewport {
  position: relative;
  width: 100%;
  min-height: 280px;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.lightbox-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lightbox-main-img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  cursor: zoom-in;
  display: block;
}

.lightbox-main-img.is-zoomed {
  transform: scale(1.6);
  cursor: zoom-out;
}

.lightbox-main-img.is-animating {
  opacity: 0.25;
  transform: scale(0.97);
}

/* Floating Navigation Arrows */
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(26, 4, 9, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-nav-btn svg {
  width: 22px;
  height: 22px;
}

.lightbox-prev {
  left: -24px;
}

.lightbox-next {
  right: -24px;
}

.lightbox-nav-btn:hover {
  background: var(--c-maroon);
  border-color: var(--c-accent-rose);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(107, 20, 38, 0.6);
}

.lightbox-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

/* Lightbox Footer & Caption */
.lightbox-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 22px;
  background: rgba(26, 4, 9, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lightbox-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: #E8D2D6;
}

.lightbox-location svg {
  width: 14px;
  height: 14px;
  color: var(--c-accent-rose);
  flex-shrink: 0;
}

.lightbox-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Lightbox Thumbnails Navigator */
.lightbox-thumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 2px 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.lightbox-thumb-btn {
  position: relative;
  width: 64px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #111;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.lightbox-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-thumb-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.lightbox-thumb-btn.is-active {
  opacity: 1;
  border-color: var(--c-accent-rose);
  box-shadow: 0 0 14px rgba(217, 43, 85, 0.6);
  transform: scale(1.05);
}

/* Responsive Lightbox */
@media (max-width: 820px) {
  .gallery-lightbox {
    padding: 12px;
  }

  .lightbox-dialog {
    max-height: 96vh;
    gap: 10px;
  }

  .lightbox-viewport {
    max-height: 52vh;
  }

  .lightbox-main-img {
    max-height: 52vh;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
    background: rgba(26, 4, 9, 0.88);
  }

  .lightbox-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  .lightbox-title {
    font-size: 0.98rem;
  }

  .lightbox-footer {
    padding: 12px 14px;
  }

  .lightbox-thumb-btn {
    width: 52px;
    height: 36px;
  }
}

/* =========================================================
   FEATURED BLOG SECTION (3 ARTIKEL UNGGULAN)
   ========================================================= */
.section-featured-blog {
  background: var(--c-surface);
  border-top: 1px solid var(--c-maroon-border);
  border-bottom: 1px solid var(--c-maroon-border);
  padding: 85px 0;
}

.blog-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.blog-header-left {
  max-width: 680px;
}

.blog-header-left h2 {
  margin-bottom: 10px;
}

.blog-header-left .lead {
  margin-bottom: 0;
}

.blog-header-action {
  flex-shrink: 0;
}

/* Button Outline Maroon */
.btn-outline-maroon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--c-maroon);
  border: 1.5px solid var(--c-maroon-border);
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-maroon:hover {
  background: var(--c-maroon);
  color: #FFFFFF;
  border-color: var(--c-maroon);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 20, 38, 0.25);
}

/* Featured Blog Cards Grid */
.featured-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.featured-blog-card {
  background: var(--c-bg);
  border: 1px solid var(--c-maroon-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  animation: cardAmbientFloatB 6.6s ease-in-out infinite;
}

.featured-blog-card:nth-child(1) {
  animation-delay: 0s;
}

.featured-blog-card:nth-child(2) {
  animation-delay: 1.6s;
}

.featured-blog-card:nth-child(3) {
  animation-delay: 3.2s;
}

.featured-blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 50px rgba(107, 20, 38, 0.16), 0 0 22px rgba(217, 56, 91, 0.2);
  border-color: rgba(217, 56, 91, 0.35);
  animation-play-state: paused;
}

/* Card Media */
.featured-blog-media {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
}

.featured-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-blog-card:hover .featured-blog-media img {
  transform: scale(1.08);
}

.featured-blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 8, 16, 0.05) 0%, rgba(43, 8, 16, 0.55) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.featured-blog-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

.featured-blog-category {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  background: rgba(26, 4, 9, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.featured-blog-readtime {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.featured-blog-readtime svg {
  width: 12px;
  height: 12px;
}

/* Card Body */
.featured-blog-body {
  padding: 22px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-blog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--c-text-soft);
  margin-bottom: 10px;
}

.featured-blog-date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.featured-blog-date svg {
  width: 13px;
  height: 13px;
  color: var(--c-maroon);
}

.featured-blog-divider {
  color: rgba(107, 20, 38, 0.25);
}

.featured-blog-author {
  font-weight: 500;
}

.featured-blog-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  line-height: 1.35;
  margin: 0 0 10px 0;
  letter-spacing: -0.015em;
}

.featured-blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-blog-title a:hover {
  color: var(--c-maroon);
}

.featured-blog-excerpt {
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}

.featured-blog-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(107, 20, 38, 0.08);
}

.featured-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-maroon);
  text-decoration: none;
  transition: all 0.22s ease;
}

.featured-blog-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.featured-blog-link:hover {
  color: var(--c-accent-rose);
  gap: 12px;
}

.featured-blog-link:hover svg {
  transform: translateX(4px);
}

/* Responsive Featured Blog */
@media (max-width: 1024px) {
  .featured-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .blog-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .section-featured-blog {
    padding: 60px 0;
  }

  .featured-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .featured-blog-media {
    height: 190px;
  }

  .featured-blog-title {
    font-size: 1.05rem;
  }
}

/* =========================================================
   TESTIMONIALS (3-CARD FLOATING AVATAR DESIGN)
   ========================================================= */
.section-testimonials {
  background-color: var(--c-bg-alt);
  padding: 100px 0 115px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 75px auto;
}

.testimonials-header .eyebrow {
  margin-bottom: 14px;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.testimonials-header .lead {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  margin-bottom: 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  padding-top: 55px;
  /* Space for the floating avatars */
}

/* Base Testi Card */
.testi-card {
  position: relative;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 68px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 35px rgba(43, 8, 16, 0.06);
  border: 1px solid rgba(107, 20, 38, 0.09);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: testiFloat 6s ease-in-out infinite;
}

.testi-card:nth-child(1) {
  animation-delay: 0s;
}

.testi-card:nth-child(2) {
  animation-delay: 1.5s;
}

.testi-card:nth-child(3) {
  animation-delay: 3s;
}

@keyframes testiFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.testi-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 26px 55px rgba(107, 20, 38, 0.16);
  border-color: rgba(107, 20, 38, 0.28);
  animation-play-state: paused;
  z-index: 5;
}

/* Featured Center Card */
.testi-card-featured {
  background: linear-gradient(155deg, #7A172C 0%, #4D0A18 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 50px rgba(107, 20, 38, 0.36);
  transform: translateY(-4px);
}

.testi-card-featured:hover {
  transform: translateY(-16px) scale(1.03);
  box-shadow: 0 32px 70px rgba(107, 20, 38, 0.48);
}

/* Floating Avatar Wrapper */
.testi-avatar-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.testi-avatar-halo {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(107, 20, 38, 0.14);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.testi-card-featured .testi-avatar-halo {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(122, 23, 44, 0.45);
}

.testi-card:hover .testi-avatar-halo {
  inset: -10px;
  border-color: var(--c-accent-rose);
  box-shadow: 0 0 28px rgba(217, 56, 91, 0.45);
}

.testi-avatar-inner {
  position: relative;
  z-index: 2;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 3px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-bg-cyan {
  background: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);
}

.avatar-bg-pink {
  background: linear-gradient(135deg, #FB7185 0%, #E11D48 100%);
}

.avatar-bg-amber {
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
}

.testi-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card:hover .testi-avatar-inner img {
  transform: scale(1.1);
}

/* Stars Rating */
.testi-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
  color: var(--c-accent-rose);
}

.testi-card-featured .testi-stars {
  color: #FFFFFF;
}

.testi-stars svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.testi-card:hover .testi-stars svg {
  transform: scale(1.15);
}

/* Author Name & Role */
.testi-author-name {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin: 0 0 4px 0;
  letter-spacing: -0.015em;
}

.testi-card-featured .testi-author-name {
  color: #FFFFFF;
}

.testi-author-role {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text-soft);
  margin-bottom: 18px;
  display: block;
}

.testi-card-featured .testi-author-role {
  color: rgba(255, 255, 255, 0.8);
}

/* Quote Icon */
.testi-quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--c-maroon);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}

.testi-card-featured .testi-quote-icon {
  color: rgba(255, 255, 255, 0.9);
}

.testi-quote-icon svg {
  width: 30px;
  height: 30px;
}

.testi-card:hover .testi-quote-icon {
  transform: scale(1.22) rotate(-6deg);
  color: var(--c-accent-rose);
}

.testi-card-featured:hover .testi-quote-icon {
  color: #FFFFFF;
}

/* Quote Text */
.testi-quote {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.68;
  margin: 0;
  font-style: normal;
}

.testi-card-featured .testi-quote {
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .testi-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-testimonials {
    padding: 70px 0 80px 0;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testi-grid {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-top: 45px;
  }

  .testi-card {
    padding: 60px 22px 30px 22px;
  }

  .testi-avatar-wrap {
    width: 94px;
    height: 94px;
  }

  .testi-avatar-inner {
    width: 80px;
    height: 80px;
  }

  .testi-card:nth-child(3) {
    max-width: 100%;
  }
}

/* =========================================================
   SECTION 7: FAQ (SPLIT 2-COLUMN LUXURY CARDS DESIGN)
   ========================================================= */
.section-faq {
  padding: 95px 0 105px 0;
  background: var(--c-surface);
  position: relative;
}

.faq-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: flex-start;
}

/* Left Column */
.faq-left-col {
  position: sticky;
  top: 100px;
}

.faq-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-maroon-soft);
  border: 1px solid rgba(107, 20, 38, 0.12);
  color: var(--c-maroon);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--f-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.faq-eyebrow-badge svg {
  width: 14px;
  height: 14px;
  color: var(--c-accent-rose);
}

.faq-main-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--c-maroon-dark);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.faq-main-desc {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-text-soft);
  line-height: 1.65;
  margin: 0 0 32px 0;
}

/* Help Card "Masih Memiliki Pertanyaan?" */
.faq-help-card {
  background: var(--c-bg-alt);
  border: 1.5px solid var(--c-maroon-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(43, 8, 16, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-help-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 20, 38, 0.28);
  box-shadow: 0 16px 36px rgba(107, 20, 38, 0.08);
}

.faq-help-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin: 0 0 10px 0;
}

.faq-help-card p {
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  margin: 0 0 22px 0;
}

.btn-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-maroon);
  color: #FFFFFF !important;
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(107, 20, 38, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-faq-cta:hover {
  background: var(--c-maroon-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 20, 38, 0.4);
}

.btn-faq-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-faq-cta:hover svg {
  transform: translateX(3px);
}

/* Right Column: FAQ Stack */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-maroon-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(43, 8, 16, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107, 20, 38, 0.3);
  box-shadow: 0 12px 30px rgba(107, 20, 38, 0.09);
}

.faq-card[open] {
  border-color: var(--c-maroon);
  box-shadow: 0 14px 34px rgba(107, 20, 38, 0.12);
  background: var(--c-bg-alt);
}

.faq-card-summary {
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}

.faq-card-summary::-webkit-details-marker {
  display: none;
}

.faq-card-question {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}

.faq-card-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(107, 20, 38, 0.06);
  border: 1px solid rgba(107, 20, 38, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-maroon);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-card:hover .faq-card-btn {
  background: var(--c-maroon);
  color: #FFFFFF;
  border-color: var(--c-maroon);
}

.faq-card[open] .faq-card-btn {
  background: var(--c-maroon);
  color: #FFFFFF;
  border-color: var(--c-maroon);
}

.faq-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(180deg);
}

.faq-card[open] .faq-arrow-icon {
  transform: rotate(0deg);
}

.faq-card-body {
  padding: 0 24px 22px 24px;
}

.faq-card-body p {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--c-text);
  line-height: 1.68;
  margin: 0;
}

/* FAQ Responsive */
@media (max-width: 992px) {
  .section-faq {
    padding: 70px 0 80px 0;
  }

  .faq-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left-col {
    position: static;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-card-summary {
    padding: 18px 18px;
  }

  .faq-card-question {
    font-size: 1rem;
  }

  .faq-card-body {
    padding: 0 18px 18px 18px;
  }

  .faq-help-card {
    padding: 24px 20px;
  }
}

/* =========================================================
   BOTTOM CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--c-maroon) 0%, #4A0B19 100%);
  border-radius: var(--radius-xl);
  padding: 56px clamp(28px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(217, 56, 91, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: auraBreathing 5s ease-in-out infinite;
}

.cta-band h2 {
  color: #FFFFFF;
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-band p {
  margin: 0;
  color: #E8D6D9;
  font-size: 1.05rem;
  max-width: 48ch;
}

.cta-band .btn-cta-white {
  background: #FFFFFF;
  color: var(--c-maroon-dark);
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-band .btn-cta-white:hover {
  background: var(--c-accent-champagne);
  transform: translateY(-3px) scale(1.02);
}

/* WhatsApp button di dalam CTA band */
.cta-band .btn-wa,
.cta-band .btn-cta-white.btn-wa {
  background: linear-gradient(180deg, #24C06A 0%, #159B58 100%) !important;
  color: #FFFFFF !important;
  border: 2.5px solid #A2F4C5 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 20px rgba(37, 211, 102, 0.45) !important;
}

.cta-band .btn-wa:hover,
.cta-band .btn-cta-white.btn-wa:hover {
  background: linear-gradient(180deg, #28CC71 0%, #17A85F 100%) !important;
  border-color: #C2F9D8 !important;
  color: #FFFFFF !important;
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 28px rgba(37, 211, 102, 0.65) !important;
}



/* =========================================================
   FOOTER (Living Luxury Maroon & Animated Social Presence)
   ========================================================= */

@keyframes footerAmbientAura {
  0%, 100% {
    opacity: 0.35;
    transform: scale(1) translate(0, 0);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.1) translate(-15px, 10px);
  }
}

@keyframes socialIdleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes brandBadgeGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(217, 56, 91, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
  }
  50% {
    box-shadow: 0 0 20px rgba(217, 56, 91, 0.45);
    border-color: rgba(255, 139, 163, 0.4);
  }
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #1B0308 0%, #28060E 40%, #150206 100%);
  color: #D3C4C7;
  padding: 84px 0 36px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 139, 163, 0.18);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.35);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 56, 91, 0.18) 0%, rgba(217, 56, 91, 0) 70%);
  pointer-events: none;
  animation: footerAmbientAura 10s ease-in-out infinite alternate;
  z-index: 1;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 152, 116, 0.12) 0%, rgba(232, 152, 116, 0) 70%);
  pointer-events: none;
  animation: footerAmbientAura 12s ease-in-out infinite alternate-reverse;
  z-index: 1;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.footer-brand .brand:hover {
  transform: translateY(-2px);
}

.footer-logo-img {
  max-height: 48px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-desc {
  font-size: 0.92rem;
  color: #BDB0B3;
  max-width: 36ch;
  line-height: 1.68;
  margin: 0 0 20px 0;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-accent-gold);
  width: fit-content;
  backdrop-filter: blur(8px);
  animation: brandBadgeGlow 4s ease-in-out infinite;
}

.footer-col h4 {
  color: #FFFFFF;
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent-rose), transparent);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.92rem;
  color: #CFC1C4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  position: relative;
}

.footer-col ul li a::before {
  content: "›";
  font-size: 1.1rem;
  line-height: 1;
  color: var(--c-accent-rose);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.footer-col ul li a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  color: #9E8E91;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-copy {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   ANIMATED LIVING SOCIAL MEDIA BUTTONS
   ========================================================= */

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-link {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: socialIdleFloat 3.5s ease-in-out infinite;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.35s ease;
}

/* Staggered Floating Delays */
.social-ig {
  animation-delay: 0s;
}

.social-tiktok {
  animation-delay: 0.35s;
}

.social-linkedin {
  animation-delay: 0.7s;
}

.social-fb {
  animation-delay: 1.05s;
}

.social-x {
  animation-delay: 1.4s;
}

/* Individual Brand Hover Animations */
.social-ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  border-color: rgba(220, 39, 67, 0.7);
  box-shadow: 0 0 22px rgba(225, 48, 108, 0.7), 0 8px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px) scale(1.15) rotate(5deg);
  color: #FFFFFF;
}

.social-tiktok:hover {
  background: #010101;
  border-color: #25F4EE;
  box-shadow: 0 0 16px rgba(37, 244, 238, 0.7), 0 0 24px rgba(254, 44, 85, 0.7), 0 8px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px) scale(1.15) rotate(-5deg);
  color: #FFFFFF;
}

.social-linkedin:hover {
  background: #0A66C2;
  border-color: #70B5F9;
  box-shadow: 0 0 22px rgba(10, 102, 194, 0.8), 0 8px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px) scale(1.15) rotate(5deg);
  color: #FFFFFF;
}

.social-fb:hover {
  background: #1877F2;
  border-color: #68A6F7;
  box-shadow: 0 0 22px rgba(24, 119, 242, 0.8), 0 8px 18px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px) scale(1.15) rotate(-5deg);
  color: #FFFFFF;
}

.social-x:hover {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.45), 0 8px 18px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px) scale(1.15) rotate(5deg);
  color: #FFFFFF;
}

.footer-social-link:hover svg {
  transform: scale(1.12);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 56px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding-top: 24px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =========================================================
   FLOATING ACTION BUTTONS (WhatsApp & Back to Top)
   ========================================================= */

/* Animasi Bergerak & Bobbing untuk Floating WhatsApp */
@keyframes wa-float-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-7px);
  }

  40% {
    transform: translateY(-7px) rotate(-3deg);
  }

  50% {
    transform: translateY(-7px) rotate(3deg);
  }

  60% {
    transform: translateY(-7px) rotate(-2deg);
  }

  70% {
    transform: translateY(-7px) rotate(0deg);
  }
}

@keyframes wa-badge-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.75);
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(239, 68, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    transform: scale(1);
  }
}

/* WhatsApp Floating Button (Exact Design with Light-Green Border & Tooltip) */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #24C06A 0%, #159B58 100%);
  border: 4px solid #A2F4C5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(21, 155, 88, 0.32);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  animation: wa-float-bob 3.2s ease-in-out infinite;
}

.wa-float:hover {
  background: linear-gradient(180deg, #28CC71 0%, #17A85F 100%);
  border-color: #C2F9D8;
  transform: translateY(-4px) scale(1.05) !important;
  box-shadow: 0 10px 24px rgba(21, 155, 88, 0.42);
  animation-play-state: paused;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
  display: block;
}

/* Badge Tanda Seru Merah */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 20px;
  height: 20px;
  background: #EF4444;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
  animation: wa-badge-pulse 2.2s infinite;
  pointer-events: none;
  line-height: 1;
  z-index: 2;
}

/* Tooltip Animasi Teks Nomor WhatsApp (Green Brand Pill) */
.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  background: linear-gradient(135deg, #24C06A 0%, #159B58 100%);
  color: #FFFFFF;
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(21, 155, 88, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.25s;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid #A2F4C5;
}

.wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #159B58;
}

.wa-float:hover .wa-tooltip,
.wa-float:focus .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}


/* Floating Back to Top Button (Maroon dengan Hover Maroon Cerah) */
.back-to-top {
  position: fixed;
  right: 31px;
  bottom: 94px;
  z-index: 399;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-maroon);
  color: #FFFFFF;
  border: 1.5px solid var(--c-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--c-maroon-hover);
  color: #FFFFFF;
  border-color: var(--c-maroon-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(130, 27, 49, 0.38);
}


.back-to-top svg {
  width: 19px;
  height: 19px;
  stroke: #FFFFFF;
  stroke-width: 2.6;
  fill: none;
  transition: transform 0.2s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    border-width: 3px;
  }

  .wa-float svg {
    width: 25px;
    height: 25px;
  }

  .wa-tooltip {
    font-size: 0.78rem;
    padding: 6px 12px;
    right: calc(100% + 10px);
  }

  .back-to-top {
    right: 24px;
    bottom: 80px;
    width: 40px;
    height: 40px;
  }

  .back-to-top svg {
    width: 17px;
    height: 17px;
  }
}




/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1024px) {
  .hero {
    padding-top: 110px;
    min-height: auto;
  }

  .hero-bg-layer {
    width: 100%;
    opacity: 0.22;
  }

  .hero-bg-layer::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.9) 60%, #FFFFFF 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-interactive-stage {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
  }

  .hero-center-play {
    position: static;
    transform: none;
  }

  .hero-center-play:hover {
    transform: scale(1.04);
  }

  .hero-cards-stack {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .floating-pill-card {
    flex: 1 1 240px;
    max-width: 320px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-copy {
    max-width: 100%;
  }

  .initiatives-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hide Navbar CTA on Mobile as requested */
  .btn-wander-cta,
  .nav-actions .btn-wander-cta,
  .nav-actions .btn-maroon-pill {
    display: none !important;
  }

  .nav-actions {
    gap: 0;
  }

  /* Perfect Luxury Hamburger Button */
  .menu-toggle,
  .menu-toggle--wander {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: rgba(217, 56, 91, 0.35) !important;
    border-color: #FF8BA3 !important;
    transform: scale(1.05);
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #FFFFFF !important;
    border-radius: 2px;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
  }

  /* Hamburger to X Animation when open */
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Luxury Mobile Drawer Navigation */
  .nav-menu--wander,
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 86% !important;
    max-width: 360px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: linear-gradient(180deg, #1C040A 0%, #2E0812 50%, #150207 100%) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-left: 1px solid rgba(255, 139, 163, 0.22) !important;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.75) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 85px 22px 30px 22px !important;
    border-radius: 24px 0 0 24px !important;
    transform: translateX(110%) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
  }

  .nav-menu.is-open {
    transform: translateX(0) !important;
  }

  .nav-menu>li {
    width: 100%;
  }

  .nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: all 0.2s ease !important;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:focus-visible,
  .nav-menu .nav-link.nav-link-active {
    background: rgba(217, 56, 91, 0.25) !important;
    border-color: rgba(255, 139, 163, 0.4) !important;
    color: #FFFFFF !important;
    transform: translateX(4px);
  }

  /* Mobile Mega Menu Accordion in Drawer */
  .mega-panel,
  .mega-panel--dark {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    background: rgba(0, 0, 0, 0.35) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    padding: 14px !important;
    margin-top: 8px !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
  }

  .mega-panel.is-open {
    display: flex !important;
    flex-direction: column !important;
  }

  .mega-col-title a {
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    color: var(--c-accent-gold) !important;
    display: block !important;
    margin-bottom: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .mega-col ul {
    list-style: none !important;
    padding-left: 8px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .mega-col li a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.86rem !important;
    text-decoration: none !important;
    padding: 4px 6px !important;
    border-radius: 6px !important;
    display: block !important;
    transition: all 0.2s ease !important;
  }

  .mega-col li a:hover {
    color: #FFFFFF !important;
    transform: translateX(4px) !important;
  }

  /* =========================================================
     COMPREHENSIVE 1-COLUMN MOBILE LAYOUT (PROPORTIONAL & CLEAN)
     ========================================================= */

  /* Global Grid Reset on Mobile to Strict 1-Column */
  .grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-240 {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Subpage & About Hero Section on Mobile */
  .subpage-hero-maroon,
  .about-hero-maroon {
    min-height: auto !important;
    padding-top: 105px !important;
    padding-bottom: 42px !important;
  }

  .subpage-hero-container,
  .about-hero-container {
    padding: 0 18px !important;
  }

  .subpage-hero-grid,
  .about-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .subpage-hero-copy,
  .about-hero-copy {
    max-width: 100% !important;
  }

  .subpage-hero-breadcrumb,
  .about-hero-breadcrumb {
    font-size: 0.78rem !important;
    padding: 5px 12px !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
  }

  .subpage-hero-eyebrow,
  .about-hero-eyebrow {
    font-size: 0.72rem !important;
    padding: 4px 12px !important;
    margin-bottom: 14px !important;
  }

  .subpage-hero-title,
  .about-hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 14px !important;
  }

  .subpage-hero-desc,
  .about-hero-desc {
    font-size: 0.94rem !important;
    line-height: 1.62 !important;
    margin-bottom: 18px !important;
  }

  .subpage-hero-tags,
  .about-hero-tags {
    gap: 8px !important;
    margin-bottom: 22px !important;
  }

  .subpage-hero-tag,
  .about-hero-tag {
    font-size: 0.78rem !important;
    padding: 6px 12px !important;
  }

  .subpage-hero-actions,
  .about-hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .subpage-hero-actions a,
  .about-hero-actions a,
  .btn-hero-maroon-primary,
  .btn-hero-maroon-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 13px 20px !important;
    font-size: 0.92rem !important;
  }

  /* Right Glass Spotlight Card on Subpages */
  .subpage-hero-card,
  .about-hero-card {
    max-width: 100% !important;
    width: 100% !important;
    padding: 22px 18px !important;
    border-radius: 20px !important;
    animation: none !important;
    margin-top: 6px !important;
  }

  .subpage-hero-card-title,
  .about-hero-card-title {
    font-size: 1.05rem !important;
  }

  .subpage-hero-card-desc,
  .about-hero-card-desc {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
  }

  .subpage-hero-stats,
  .about-hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 12px 8px !important;
    gap: 4px !important;
    margin-bottom: 16px !important;
  }

  .subpage-hero-stat-num,
  .about-hero-stat-num {
    font-size: 1.3rem !important;
  }

  .subpage-hero-stat-label,
  .about-hero-stat-label {
    font-size: 0.65rem !important;
  }

  .subpage-hero-quote,
  .about-hero-quote {
    font-size: 0.78rem !important;
    padding: 10px 12px !important;
  }

  /* Tentang Kami Body Sections on Mobile */
  .about-body-section {
    padding: 44px 0 60px 0 !important;
  }

  .about-feature-list {
    margin-top: 18px !important;
    gap: 12px !important;
  }

  .about-feature-item {
    padding: 14px 16px !important;
    border-radius: 14px !important;
  }

  .about-visual-frame {
    border-radius: 20px !important;
    height: 250px !important;
    min-height: 250px !important;
    margin-top: 10px !important;
  }

  .about-visual-img {
    height: 250px !important;
    min-height: 250px !important;
  }

  .about-badge-floating {
    font-size: 0.72rem !important;
    padding: 6px 12px !important;
  }

  .about-badge-floating--top {
    top: 12px !important;
    left: 12px !important;
  }

  .about-badge-floating--bottom {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .about-vm-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  .about-vm-title {
    font-size: 1.25rem !important;
  }

  .about-vm-text {
    font-size: 0.92rem !important;
    line-height: 1.62 !important;
    margin-bottom: 16px !important;
  }

  .about-advantage-card {
    border-radius: 20px !important;
  }

  .about-advantage-thumb {
    height: 180px !important;
  }

  .about-advantage-body {
    padding: 20px 18px !important;
  }

  .about-advantage-body h3 {
    font-size: 1.12rem !important;
  }

  .about-advantage-body p {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
  }

  .cta-band {
    padding: 30px 20px !important;
    border-radius: 22px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .cta-band .btn-wa {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Paket.html Body Sections on Mobile */
  .subpage-body-section {
    padding: 44px 0 60px 0 !important;
  }

  .package-cat-card {
    border-radius: 22px !important;
  }

  .package-cat-header {
    height: 190px !important;
  }

  .package-cat-title {
    font-size: 1.35rem !important;
  }

  .package-cat-body {
    padding: 22px 18px !important;
  }

  .package-cat-desc {
    font-size: 0.9rem !important;
    line-height: 1.58 !important;
    margin-bottom: 16px !important;
  }

  /* Sublist in Package Cards: strictly 1 column on mobile */
  .package-sublist {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
  }

  .package-sublink {
    padding: 11px 14px !important;
    font-size: 0.88rem !important;
  }

  .package-cat-footer {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    padding-top: 14px !important;
  }

  .btn-package-cat,
  .btn-package-wa-green {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 16px !important;
    font-size: 0.88rem !important;
  }

  /* Split FAQ on Mobile */
  .faq-split-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .faq-left-col {
    width: 100% !important;
  }

  .faq-help-card {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }

  .btn-faq-cta {
    width: 100% !important;
    justify-content: center !important;
  }

  .faq-stack {
    width: 100% !important;
    gap: 12px !important;
  }

  .faq-card-summary {
    padding: 16px 18px !important;
    font-size: 0.94rem !important;
  }

  .faq-card-body {
    padding: 0 18px 18px 18px !important;
    font-size: 0.9rem !important;
  }

  /* Homepage & General Elements */
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .tall-cards-row {
    grid-template-columns: 1fr;
  }

  .tall-card {
    aspect-ratio: 16 / 9;
  }

  .initiative-cards-row {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .floating-card {
    width: 210px;
    right: -10px;
    padding: 10px;
  }

  /* Detail Package Product Pages on Mobile */
  .detail-product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-main-img-wrap {
    height: 280px;
  }

  .detail-pricing-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .detail-product-ctas {
    flex-direction: column;
    width: 100%;
  }

  .detail-product-ctas a,
  .detail-product-ctas button {
    width: 100%;
    justify-content: center;
  }

  .detail-spec-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-input-capsule {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 12px;
    gap: 10px;
  }

  .hero-input-capsule input {
    width: 100%;
    padding: 6px 4px;
  }

  .hero-input-capsule .btn-submit {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-box {
    padding: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   SUBPAGE HELPERS & GENERAL UTILITIES (Luxury Maroon)
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb {
  padding: 108px 0 14px;
  font-size: 0.88rem;
  color: var(--c-text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: var(--c-text-soft);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--c-maroon);
}

.breadcrumb .sep {
  color: var(--c-text-light);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-maroon-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-media {
  border-radius: var(--radius-sm);
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #FFFFFF;
  background: linear-gradient(145deg, var(--c-maroon) 0%, #470C19 100%);
  box-shadow: var(--shadow-xs);
}

.card-media.alt2 {
  background: linear-gradient(145deg, #8B1E38 0%, #B82B4D 100%);
}

.card-media.alt3 {
  background: linear-gradient(145deg, #420B17 0%, #75152A 100%);
}

.card-media.alt4 {
  background: linear-gradient(145deg, #A82C48 0%, #E89874 100%);
}

.card h3 {
  margin-bottom: 10px;
}

.card .card-desc {
  font-size: 0.94rem;
  color: var(--c-text-soft);
  margin-bottom: 16px;
}

.card-link {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-maroon);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-link:hover {
  color: var(--c-maroon-hover);
  gap: 10px;
}

.answer-box {
  background: var(--c-bg-alt);
  border-left: 4px solid var(--c-maroon);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  font-size: 1.02rem;
  color: var(--c-maroon-dark);
  margin: 22px 0 36px;
  box-shadow: var(--shadow-xs);
}

.answer-box strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-maroon);
  margin-bottom: 6px;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--c-maroon-border);
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-maroon-border);
}

.info-table th {
  color: var(--c-maroon);
  background: var(--c-bg-alt);
  font-family: var(--f-display);
  font-weight: 700;
  width: 220px;
}

.price-note {
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--c-text-soft);
  border: 1px solid var(--c-maroon-border);
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS (Smooth & Elegant)
   ========================================================= */

/* State dasar saat Scroll Reveal Engine aktif & elemen belum masuk viewport */
html.reveal-ready .reveal-item:not(.is-revealed) {
  opacity: 0;
  transform: translateY(32px);
  will-change: opacity, transform;
}

html.reveal-ready .reveal-item.reveal-left:not(.is-revealed) {
  transform: translateX(-36px);
}

html.reveal-ready .reveal-item.reveal-right:not(.is-revealed) {
  transform: translateX(36px);
}

html.reveal-ready .reveal-item.reveal-scale:not(.is-revealed) {
  transform: scale(0.92) translateY(18px);
}

html.reveal-ready .reveal-item.reveal-fade:not(.is-revealed) {
  transform: none;
}

/* Transisi halus saat muncul */
html.reveal-ready .reveal-item {
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* State setelah muncul di viewport */
html.reveal-ready .reveal-item.is-revealed {
  opacity: 1;
  transform: none;
}

/* Accessibility: Hormati preferensi reduced motion */
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal-item:not(.is-revealed) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================================================
   SUBPAGE & ABOUT HERO SECTION (LUXURY MAROON THEME)
   ========================================================= */
.subpage-hero-maroon,
.about-hero-maroon {
  position: relative;
  min-height: clamp(540px, 66vh, 680px);
  padding-top: clamp(120px, 14vw, 150px);
  padding-bottom: clamp(60px, 8vw, 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1A050B;
  color: #FFFFFF;
}

.subpage-hero-bg,
.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  z-index: 1;
  pointer-events: none;
}

.subpage-hero-overlay,
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(217, 56, 91, 0.28) 0%, rgba(107, 20, 38, 0.45) 45%, rgba(26, 5, 11, 0.94) 88%),
    linear-gradient(180deg, rgba(26, 5, 11, 0.88) 0%, rgba(43, 8, 16, 0.65) 45%, rgba(26, 5, 11, 0.96) 92%, #FAF7F7 100%);
  z-index: 2;
  pointer-events: none;
}

.subpage-hero-glow-1,
.about-hero-glow-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(217, 56, 91, 0.18) 0%, rgba(107, 20, 38, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 2;
  pointer-events: none;
  animation: cardAmbientFloatA 8s ease-in-out infinite;
}

.subpage-hero-glow-2,
.about-hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255, 107, 139, 0.16) 0%, rgba(107, 20, 38, 0.08) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
  animation: cardAmbientFloatB 9s ease-in-out infinite;
}

.subpage-hero-container,
.about-hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphic Breadcrumb */
.subpage-hero-breadcrumb,
.about-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
  transition: all 0.25s ease;
}

.subpage-hero-breadcrumb:hover,
.about-hero-breadcrumb:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 139, 163, 0.3);
}

.subpage-hero-breadcrumb a,
.about-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.subpage-hero-breadcrumb a:hover,
.about-hero-breadcrumb a:hover {
  color: #FF8BA3;
}

.subpage-hero-breadcrumb .sep,
.about-hero-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
}

.subpage-hero-breadcrumb .current,
.about-hero-breadcrumb .current {
  color: #FF8BA3;
  font-weight: 600;
}

/* Hero Grid Layout */
.subpage-hero-grid,
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.subpage-hero-copy,
.about-hero-copy {
  max-width: 620px;
}

/* Eyebrow Tag */
.subpage-hero-eyebrow,
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF8BA3;
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(217, 56, 91, 0.15);
  border: 1px solid rgba(217, 56, 91, 0.28);
  border-radius: var(--radius-pill);
}

.subpage-hero-eyebrow .pulse-dot,
.about-hero-eyebrow .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B8B;
  box-shadow: 0 0 10px #FF6B8B;
  animation: badgeGlowPulse 2s infinite ease-in-out;
}

/* Hero Heading */
.subpage-hero-title,
.about-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.14;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.subpage-hero-highlight,
.about-hero-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #FF94AB 0%, #FF6B8B 50%, #E89874 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Description */
.subpage-hero-desc,
.about-hero-desc {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

/* Value Highlights / Tags */
.subpage-hero-tags,
.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.subpage-hero-tag,
.about-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: all 0.25s ease;
}

.subpage-hero-tag:hover,
.about-hero-tag:hover {
  background: rgba(217, 56, 91, 0.18);
  border-color: rgba(217, 56, 91, 0.35);
  transform: translateY(-2px);
}

.subpage-hero-tag svg,
.about-hero-tag svg {
  width: 16px;
  height: 16px;
  color: #FF8BA3;
  flex-shrink: 0;
}

/* Action Buttons */
.subpage-hero-actions,
.about-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero-maroon-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #D9385B 0%, #A81C38 100%);
  color: #FFFFFF !important;
  font-family: var(--f-display);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(217, 56, 91, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-hero-maroon-primary:hover {
  background: linear-gradient(135deg, #E64568 0%, #BA2241 100%);
  box-shadow: 0 12px 30px rgba(217, 56, 91, 0.55);
  transform: translateY(-2px) scale(1.02);
}

.btn-hero-maroon-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn-hero-maroon-primary:hover svg {
  transform: translateX(3px);
}

.btn-hero-maroon-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF !important;
  font-family: var(--f-display);
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-maroon-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 139, 163, 0.4);
  color: #FF8BA3 !important;
  transform: translateY(-2px);
}

/* Glass Profile Card (Right Column) */
.subpage-hero-card,
.about-hero-card {
  position: relative;
  background: rgba(43, 8, 16, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 139, 163, 0.22);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: cardAmbientFloatA 7s ease-in-out infinite;
}

.subpage-hero-card-header,
.about-hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.subpage-hero-card-badge,
.about-hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FF8BA3;
  padding: 4px 10px;
  background: rgba(217, 56, 91, 0.2);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217, 56, 91, 0.35);
}

.subpage-hero-card-title,
.about-hero-card-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.subpage-hero-card-desc,
.about-hero-card-desc {
  font-size: 0.94rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

/* 3-Col Stats Grid Inside Card */
.subpage-hero-stats,
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 14px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.subpage-hero-stat-item,
.about-hero-stat-item {
  position: relative;
}

.subpage-hero-stat-item:not(:last-child)::after,
.about-hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -6px;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.subpage-hero-stat-num,
.about-hero-stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  color: #FF8BA3;
  line-height: 1.1;
  margin-bottom: 3px;
}

.subpage-hero-stat-label,
.about-hero-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.25;
}

/* Quote Strip */
.subpage-hero-quote,
.about-hero-quote {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #D9385B;
  border-radius: 0 12px 12px 0;
  font-size: 0.84rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.subpage-hero-quote svg,
.about-hero-quote svg {
  width: 18px;
  height: 18px;
  color: #FF8BA3;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Subpage Body Layout Enhancements */
.subpage-body-section,
.about-body-section {
  padding: clamp(50px, 7vw, 90px) 0;
  background-color: var(--c-bg);
}

.subpage-section-header,
.about-section-header {
  margin-bottom: 40px;
}

.subpage-card-luxury,
.about-card-luxury {
  background: var(--c-surface);
  border: 1px solid var(--c-maroon-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.subpage-card-luxury:hover,
.about-card-luxury:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 56, 91, 0.3);
}

.subpage-card-icon-wrap,
.about-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 56, 91, 0.12), rgba(107, 20, 38, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-maroon);
  font-size: 1.4rem;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 56, 91, 0.2);
}

/* Responsive Media Queries */
@media (max-width: 991px) {

  .subpage-hero-grid,
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .subpage-hero-copy,
  .about-hero-copy {
    max-width: 100%;
  }

  .subpage-hero-card,
  .about-hero-card {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {

  .subpage-hero-maroon,
  .about-hero-maroon {
    padding-top: 110px;
    padding-bottom: 50px;
  }

  .subpage-hero-title,
  .about-hero-title {
    font-size: 2.1rem;
  }

  .subpage-hero-actions,
  .about-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-maroon-primary,
  .btn-hero-maroon-secondary {
    width: 100%;
  }

  .subpage-hero-card,
  .about-hero-card {
    padding: 24px 20px;
  }

  .subpage-hero-stats,
  .about-hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .subpage-hero-stat-item:not(:last-child)::after,
  .about-hero-stat-item:not(:last-child)::after {
    display: none;
  }
}

/* =========================================================
   ABOUT US ENHANCED BODY SECTIONS (LUXURY MAROON & REAL IMAGES)
   ========================================================= */

/* Visual Frame with Real Image & Floating Chips */
.about-visual-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(43, 8, 16, 0.16);
  border: 1px solid var(--c-maroon-border);
  background: #FFFFFF;
}

.about-visual-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual-frame:hover .about-visual-img {
  transform: scale(1.04);
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 8, 16, 0.1) 0%, rgba(43, 8, 16, 0.65) 100%);
  pointer-events: none;
}

.about-badge-floating {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(43, 8, 16, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 139, 163, 0.28);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.about-badge-floating svg {
  width: 16px;
  height: 16px;
  color: #FF8BA3;
  flex-shrink: 0;
}

.about-badge-floating--top {
  top: 20px;
  left: 20px;
}

.about-badge-floating--bottom {
  bottom: 20px;
  right: 20px;
}

/* Feature List with SVG Icon Boxes */
.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-maroon-border);
  border-radius: 18px;
  transition: all 0.25s ease;
}

.about-feature-item:hover {
  background: #FFFFFF;
  border-color: rgba(217, 56, 91, 0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-xs);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(217, 56, 91, 0.15) 0%, rgba(107, 20, 38, 0.08) 100%);
  border: 1px solid rgba(217, 56, 91, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-maroon);
  flex-shrink: 0;
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-feature-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin: 0 0 4px;
}

.about-feature-content p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.55;
}

/* Vision & Mission High-End Cards */
.about-vm-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-maroon-border);
  border-radius: 28px;
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 56, 91, 0.35);
}

.about-vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D9385B 0%, #6B1426 100%);
}

.about-vm-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.about-vm-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6B1426 0%, #2B0810 100%);
  border: 1px solid rgba(255, 139, 163, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF8BA3;
  box-shadow: 0 6px 18px rgba(107, 20, 38, 0.25);
  flex-shrink: 0;
}

.about-vm-icon svg {
  width: 26px;
  height: 26px;
}

.about-vm-title {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin: 0;
}

.about-vm-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 20px;
}

.about-mission-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.about-mission-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--c-text);
}

.about-mission-item svg {
  width: 18px;
  height: 18px;
  color: var(--c-accent-rose);
  flex-shrink: 0;
  margin-top: 3px;
}

/* 4-Column Keunggulan Cards with Real Thumbnails */
.about-advantage-card {
  background: var(--c-surface);
  border: 1px solid var(--c-maroon-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 56, 91, 0.35);
}

.about-advantage-thumb {
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.about-advantage-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-advantage-card:hover .about-advantage-thumb img {
  transform: scale(1.08);
}

.about-advantage-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(43, 8, 16, 0.7) 100%);
}

.about-advantage-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(43, 8, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 139, 163, 0.3);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-advantage-badge svg {
  width: 14px;
  height: 14px;
  color: #FF8BA3;
}

.about-advantage-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-advantage-body h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 10px;
}

.about-advantage-body p {
  font-size: 0.9rem;
  color: var(--c-text-soft);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   PACKAGE CATALOG LUXURY CARDS (NO EMOJIS & REAL IMAGES)
   ========================================================= */

.package-cat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-maroon-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 56, 91, 0.35);
}

.package-cat-header {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.package-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-cat-card:hover .package-cat-img {
  transform: scale(1.06);
}

.package-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(43, 8, 16, 0.8) 100%);
}

.package-cat-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(43, 8, 16, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 139, 163, 0.35);
  border-radius: var(--radius-pill);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-cat-badge svg {
  width: 14px;
  height: 14px;
  color: #FF8BA3;
}

.package-cat-badge--subcount {
  left: auto;
  right: 18px;
  background: rgba(217, 56, 91, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}

.package-cat-title-wrap {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
}

.package-cat-title {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.package-cat-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-cat-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--c-text-soft);
  margin-bottom: 20px;
}

.package-sublist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.package-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(217, 56, 91, 0.05);
  border: 1px solid rgba(217, 56, 91, 0.15);
  border-radius: 12px;
  color: var(--c-maroon-dark);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.package-sublink:hover {
  background: rgba(217, 56, 91, 0.12);
  border-color: rgba(217, 56, 91, 0.35);
  transform: translateX(3px);
  color: var(--c-maroon);
}

.package-sublink svg {
  width: 14px;
  height: 14px;
  color: var(--c-accent-rose);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.package-sublink:hover svg {
  transform: translateX(3px);
}

.package-cat-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-maroon-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.btn-package-cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2B0810 0%, #520D1D 100%);
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 139, 163, 0.25);
  transition: all 0.25s ease;
}

.btn-package-cat:hover {
  background: linear-gradient(135deg, #D9385B 0%, #A81C38 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 56, 91, 0.35);
}

.btn-package-cat svg {
  width: 15px;
  height: 15px;
}

.btn-package-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-maroon);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-package-wa:hover {
  color: var(--c-accent-rose);
}

.btn-package-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Green WhatsApp Action Button for Package Cards */
.btn-package-wa-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-package-wa-green:hover {
  background: linear-gradient(135deg, #2ae772 0%, #15a392 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
  color: #FFFFFF !important;
}

.btn-package-wa-green svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .package-sublist {
    grid-template-columns: 1fr;
  }

  .package-cat-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn-package-cat {
    justify-content: center;
  }

  .btn-package-wa-green {
    justify-content: center;
  }
}

/* =========================================================
   LUXURY PRODUCT / PACKAGE DETAIL EXPERIENCE
   ========================================================= */

.product-detail-section {
  padding: 24px 0 80px;
}

@media (max-width: 768px) {
  .product-detail-section {
    padding: 12px 0 36px;
  }
}

@media (max-width: 576px) {
  .product-detail-section {
    padding: 8px 0 28px;
  }
}

/* Breadcrumb Navigation Placed Directly Above Card */
.prod-breadcrumb {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--c-text-soft, #64748B);
  margin-bottom: 20px;
  line-height: 1.45;
  position: relative;
  z-index: 20;
}

@media (max-width: 768px) {
  .prod-breadcrumb {
    font-size: 0.80rem;
    gap: 6px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .prod-breadcrumb {
    font-size: 0.76rem;
    gap: 5px;
    margin-bottom: 8px;
  }
}

.prod-breadcrumb a {
  color: var(--c-text-soft, #64748B);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  padding: 3px 2px;
  display: inline-flex;
  align-items: center;
}

.prod-breadcrumb a:hover {
  color: var(--c-maroon, #6B1426);
  text-decoration: underline;
}

.prod-breadcrumb .sep {
  opacity: 0.45;
  color: var(--c-text-soft, #94A3B8);
  user-select: none;
}

.prod-breadcrumb .current {
  color: var(--c-maroon, #6B1426) !important;
  font-weight: 700;
  padding: 3px 2px;
}

/* 2-Column Hero Showcase */
.prod-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 16px 48px rgba(43, 8, 16, 0.06);
}

@media (max-width: 992px) {
  .prod-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .prod-hero-grid {
    padding: 16px 14px;
    gap: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(43, 8, 16, 0.04);
  }
}

/* Gallery Column */
.prod-gallery-col {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 992px) {
  .prod-gallery-col {
    position: static;
    top: auto;
  }
}

.prod-main-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #1a080d;
  box-shadow: 0 10px 30px rgba(43, 8, 16, 0.12);
  border: 1px solid rgba(107, 20, 38, 0.12);
}

@media (max-width: 576px) {
  .prod-main-frame {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
  }
}

.prod-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: center center;
}

.prod-main-frame:hover .prod-main-img {
  transform: scale(1.04);
}

.prod-gallery-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(43, 8, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 576px) {
  .prod-gallery-overlay-badge {
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 0.66rem;
  }
}

.prod-gallery-tag-bottom {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-maroon-dark);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Gallery Navigation Arrows */
.prod-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(107, 20, 38, 0.15);
  color: var(--c-maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
  opacity: 0;
}

.prod-main-frame:hover .prod-nav-arrow {
  opacity: 1;
}

@media (hover: none), (max-width: 768px) {
  .prod-nav-arrow {
    opacity: 0.92;
    width: 34px;
    height: 34px;
  }
}

.prod-nav-arrow:hover {
  background: #FFFFFF;
  color: var(--c-maroon);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 18px rgba(107, 20, 38, 0.25);
}

.prod-nav-arrow.prev {
  left: 10px;
}

.prod-nav-arrow.next {
  right: 10px;
}

.prod-nav-arrow svg {
  width: 18px;
  height: 18px;
}

/* Thumbnail Carousel Strip */
.prod-thumbs-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 576px) {
  .prod-thumbs-wrapper {
    gap: 6px;
  }
}

.prod-thumb-btn {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2.5px solid transparent;
  background: var(--c-bg-subtle);
  padding: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

@media (max-width: 576px) {
  .prod-thumb-btn {
    border-radius: 6px;
    border-width: 2px;
  }
}

.prod-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
}

.prod-thumb-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 20, 38, 0.35);
}

.prod-thumb-btn:hover img {
  filter: brightness(1);
}

.prod-thumb-btn.is-active {
  border-color: var(--c-maroon);
  box-shadow: 0 0 0 3px rgba(107, 20, 38, 0.2), 0 4px 12px rgba(107, 20, 38, 0.15);
}

.prod-thumb-btn.is-active img {
  filter: brightness(1.05);
}

/* Key Feature Badges under Gallery */
.prod-trust-pills-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}

@media (max-width: 576px) {
  .prod-trust-pills-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .prod-trust-pills-row {
    grid-template-columns: 1fr;
  }
}

.prod-trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--c-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 20, 38, 0.07);
}

@media (max-width: 576px) {
  .prod-trust-pill {
    padding: 8px 10px;
    gap: 8px;
  }
}

.prod-trust-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(107, 20, 38, 0.08);
}

@media (max-width: 576px) {
  .prod-trust-pill-icon {
    width: 28px;
    height: 28px;
  }
}

.prod-trust-pill-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

@media (max-width: 576px) {
  .prod-trust-pill-icon svg {
    width: 14px;
    height: 14px;
  }
}

.prod-trust-pill-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.25;
}

@media (max-width: 576px) {
  .prod-trust-pill-text {
    font-size: 0.74rem;
  }
}

.prod-trust-pill-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--c-text-soft);
  line-height: 1.2;
}

@media (max-width: 576px) {
  .prod-trust-pill-sub {
    font-size: 0.66rem;
  }
}

/* Info & Configurator Column */
.prod-info-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 576px) {
  .prod-info-col {
    gap: 14px;
  }
}

.prod-eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.prod-badge-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-maroon-soft);
  color: var(--c-maroon);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-maroon-border);
}

@media (max-width: 576px) {
  .prod-badge-category {
    font-size: 0.72rem;
    padding: 4px 10px;
  }
}

.prod-rating-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--c-text);
  font-weight: 600;
}

@media (max-width: 576px) {
  .prod-rating-score {
    font-size: 0.78rem;
    gap: 4px;
  }
}

.prod-stars {
  color: #F59E0B;
  display: inline-flex;
  gap: 2px;
  font-size: 0.95rem;
}

.prod-title {
  font-family: var(--f-display);
  font-size: clamp(1.45rem, 3.8vw, 2.35rem);
  font-weight: 800;
  color: var(--c-maroon-dark);
  line-height: 1.22;
  margin: 0;
  word-break: break-word;
}

.prod-desc-short {
  font-size: 0.94rem;
  color: var(--c-text);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 576px) {
  .prod-desc-short {
    font-size: 0.88rem;
    line-height: 1.52;
  }
}

/* Price & Offer Box */
.prod-price-box {
  background: linear-gradient(135deg, rgba(107, 20, 38, 0.04) 0%, rgba(217, 56, 91, 0.06) 100%);
  border-left: 4px solid var(--c-maroon);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 576px) {
  .prod-price-box {
    padding: 12px 14px;
    gap: 8px;
  }
}

.prod-price-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-soft);
  margin-bottom: 2px;
}

.prod-price-val {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
}

@media (max-width: 576px) {
  .prod-price-val {
    font-size: 1.25rem;
  }
}

.prod-price-tag-sub {
  font-size: 0.78rem;
  color: var(--c-maroon);
  font-weight: 600;
  background: rgba(107, 20, 38, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Configurator Sections */
.prod-config-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px;
  background: var(--c-bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 20, 38, 0.09);
}

@media (max-width: 576px) {
  .prod-config-section {
    padding: 14px 12px;
    gap: 13px;
    border-radius: 14px;
  }
}

.config-row-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 4px;
}

@media (max-width: 576px) {
  .config-row-title {
    font-size: 0.82rem;
    margin-bottom: 6px;
  }
}

.config-selected-val {
  font-size: 0.82rem;
  color: var(--c-maroon);
  font-weight: 600;
}

@media (max-width: 576px) {
  .config-selected-val {
    font-size: 0.78rem;
  }
}

.config-pill-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 576px) {
  .config-pill-options {
    gap: 6px;
  }
}

.config-pill-opt {
  padding: 7px 13px;
  background: var(--c-surface);
  border: 1.5px solid rgba(107, 20, 38, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  text-align: center;
}

@media (max-width: 576px) {
  .config-pill-opt {
    padding: 6px 11px;
    font-size: 0.77rem;
  }
}

.config-pill-opt:hover {
  border-color: var(--c-maroon);
  color: var(--c-maroon);
  background: var(--c-maroon-soft);
}

.config-pill-opt.is-selected {
  background: var(--c-maroon);
  color: #FFFFFF;
  border-color: var(--c-maroon);
  box-shadow: 0 4px 12px rgba(107, 20, 38, 0.25);
}

/* Dynamic Live Summary */
.config-live-summary {
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px dashed rgba(107, 20, 38, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 576px) {
  .config-live-summary {
    padding: 10px 12px;
  }
}

.config-live-summary-icon {
  width: 26px;
  height: 26px;
  color: var(--c-maroon);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.config-live-summary-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.config-live-summary-text {
  font-size: 0.82rem;
  color: var(--c-text);
  line-height: 1.45;
}

@media (max-width: 576px) {
  .config-live-summary-text {
    font-size: 0.76rem;
    line-height: 1.4;
  }
}

.config-live-summary-text strong {
  color: var(--c-maroon-dark);
}

/* CTAs */
.prod-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.btn-prod-order-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

@media (max-width: 576px) {
  .btn-prod-order-wa {
    padding: 13px 18px;
    font-size: 0.92rem;
    gap: 8px;
  }
}

.btn-prod-order-wa:hover {
  background: linear-gradient(135deg, #2ae772 0%, #15a392 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  color: #FFFFFF !important;
}

.btn-prod-order-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .btn-prod-order-wa svg {
    width: 20px;
    height: 20px;
  }
}

.btn-prod-secondary-proposal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--c-surface);
  color: var(--c-maroon) !important;
  border: 1.5px solid var(--c-maroon);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-prod-secondary-proposal:hover {
  background: var(--c-maroon-soft);
  transform: translateY(-2px);
}

.btn-prod-secondary-proposal svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Social Share & Copy Link */
.prod-share-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(107, 20, 38, 0.12);
  margin-top: 4px;
}

@media (max-width: 576px) {
  .prod-share-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.prod-share-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-text-soft);
}

.prod-share-label svg {
  width: 15px;
  height: 15px;
  stroke: var(--c-maroon);
}

.prod-share-btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .prod-share-btns {
    width: 100%;
    justify-content: flex-start;
  }
}

.prod-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c-bg);
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 20, 38, 0.1);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.prod-share-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.prod-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(107, 20, 38, 0.15);
}

.prod-share-btn.wa:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

.prod-share-btn.fb:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
}

.prod-share-btn.x:hover {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.prod-share-btn.in:hover {
  background: #0A66C2;
  color: #FFFFFF;
  border-color: #0A66C2;
}

.prod-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-bg);
  border: 1px solid rgba(107, 20, 38, 0.12);
  color: var(--c-maroon);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (max-width: 576px) {
  .prod-copy-btn {
    margin-left: auto;
  }
}

.prod-copy-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.prod-copy-btn:hover {
  background: var(--c-maroon-soft);
  border-color: var(--c-maroon);
  transform: translateY(-1px);
}

.prod-copy-btn.copied {
  background: #E8F7EE;
  color: #10B981;
  border-color: #10B981;
}

/* =========================================================
   INTERACTIVE TABBED PRODUCT CONTENT
   ========================================================= */

.prod-details-container {
  margin-top: 48px;
}

@media (max-width: 768px) {
  .prod-details-container {
    margin-top: 24px;
  }
}

.prod-tabs-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid rgba(107, 20, 38, 0.1);
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.prod-tabs-header::-webkit-scrollbar {
  display: none;
}

/* Sembunyikan navigasi tab di mode mobile karena hanya menampilkan Contoh Rundown */
@media (max-width: 768px) {
  .prod-tabs-header {
    display: none !important;
  }
}

.prod-tab-trigger {
  padding: 12px 18px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--f-display);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--c-text-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.prod-tab-trigger:hover {
  color: var(--c-maroon);
}

.prod-tab-trigger.is-active {
  color: var(--c-maroon);
  border-bottom-color: var(--c-maroon);
}

.prod-tab-content-wrapper {
  padding: 32px 0 10px;
}

@media (max-width: 768px) {
  .prod-tab-content-wrapper {
    padding: 12px 0 10px;
  }
}

.prod-tab-pane {
  display: none;
  animation: fadeInPane 0.35s ease forwards;
}

.prod-tab-pane.is-active {
  display: block;
}

/* Mode Mobile: Hanya tampilkan Contoh Rundown, sembunyikan 3 tab lainnya */
@media (max-width: 768px) {
  #tab-overview,
  #tab-modules,
  #tab-inclusions {
    display: none !important;
  }

  #tab-rundown {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes fadeInPane {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab 1: Overview & Methodology */
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 992px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.overview-card-box {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 10px 30px rgba(43, 8, 16, 0.04);
}

@media (max-width: 576px) {
  .overview-card-box {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

.overview-card-box h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin-bottom: 14px;
}

@media (max-width: 576px) {
  .overview-card-box h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 600px) {
  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.pillar-item {
  padding: 16px;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 20, 38, 0.06);
  transition: transform 0.2s ease;
}

@media (max-width: 576px) {
  .pillar-item {
    padding: 14px;
  }
}

.pillar-item:hover {
  transform: translateY(-2px);
  border-color: rgba(107, 20, 38, 0.2);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  color: var(--c-maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 12px rgba(107, 20, 38, 0.08);
  border: 1px solid rgba(107, 20, 38, 0.1);
}

@media (max-width: 576px) {
  .pillar-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
  }
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@media (max-width: 576px) {
  .pillar-icon svg {
    width: 16px;
    height: 16px;
  }
}

.pillar-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 4px;
}

@media (max-width: 576px) {
  .pillar-title {
    font-size: 0.86rem;
  }
}

.pillar-desc {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  line-height: 1.45;
}

/* Sidebar Info Cards */
.spec-table-card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 8px 24px rgba(43, 8, 16, 0.04);
}

@media (max-width: 576px) {
  .spec-table-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

.spec-table-card h4 {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(107, 20, 38, 0.08);
}

@media (max-width: 576px) {
  .spec-table-card h4 {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(107, 20, 38, 0.08);
  gap: 10px;
}

@media (max-width: 576px) {
  .spec-row {
    font-size: 0.8rem;
    padding-bottom: 6px;
  }
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--c-text-soft);
  font-weight: 500;
  flex-shrink: 0;
}

.spec-val {
  color: var(--c-maroon-dark);
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

/* Tab 2: Activity Modules Grid */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 992px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .modules-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.module-card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 8px 24px rgba(43, 8, 16, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 576px) {
  .module-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(107, 20, 38, 0.1);
  border-color: rgba(107, 20, 38, 0.2);
}

.module-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-maroon-soft);
  color: var(--c-maroon);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 12px;
}

@media (max-width: 576px) {
  .module-step-badge {
    font-size: 0.68rem;
    padding: 3px 8px;
    margin-bottom: 10px;
  }
}

.module-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .module-title {
    font-size: 1.02rem;
  }
}

.module-desc {
  font-size: 0.86rem;
  color: var(--c-text);
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

@media (max-width: 576px) {
  .module-desc {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

.module-games-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.game-tag {
  background: var(--c-bg-subtle);
  color: var(--c-text);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

@media (max-width: 576px) {
  .game-tag {
    font-size: 0.7rem;
    padding: 2px 7px;
  }
}

/* Tab 3: Facilities / Inclusions */
.inclusions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 800px) {
  .inclusions-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.inclusion-box {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 8px 24px rgba(43, 8, 16, 0.04);
}

@media (max-width: 576px) {
  .inclusion-box {
    padding: 18px 16px;
    border-radius: 16px;
  }
}

.inclusion-box.is-included {
  border-top: 4px solid var(--c-maroon);
}

.inclusion-box.is-optional {
  border-top: 4px solid var(--c-accent-gold);
}

.inclusion-box h3 {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 576px) {
  .inclusion-box h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
}

.inclusion-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 576px) {
  .inclusion-check-list {
    gap: 10px;
  }
}

.inclusion-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.45;
}

@media (max-width: 576px) {
  .inclusion-check-item {
    font-size: 0.82rem;
    gap: 10px;
  }
}

.inclusion-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E8F7EE;
  color: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.inclusion-icon.plus {
  background: #FEF3C7;
  color: #D97706;
}

/* Tab 4: Timeline Rundown */
.rundown-timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.rundown-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 110px;
  width: 2px;
  background: rgba(107, 20, 38, 0.15);
}

@media (max-width: 640px) {
  .rundown-timeline::before {
    left: 14px;
  }
}

.rundown-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}

@media (max-width: 640px) {
  .rundown-item {
    flex-direction: column;
    gap: 4px;
    padding-left: 32px;
  }
}

.rundown-time {
  width: 95px;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-maroon);
  text-align: right;
  padding-top: 4px;
}

@media (max-width: 640px) {
  .rundown-time {
    width: auto;
    text-align: left;
    font-size: 0.84rem;
    padding-top: 0;
  }
}

.rundown-dot {
  position: absolute;
  left: 105px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-maroon);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 3px rgba(107, 20, 38, 0.2);
  z-index: 2;
}

@media (max-width: 640px) {
  .rundown-dot {
    left: 9px;
    top: 4px;
  }
}

.rundown-card {
  flex-grow: 1;
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 4px 14px rgba(43, 8, 16, 0.03);
}

@media (max-width: 576px) {
  .rundown-card {
    padding: 12px 14px;
    border-radius: 12px;
  }
}

.rundown-card-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 3px;
}

@media (max-width: 576px) {
  .rundown-card-title {
    font-size: 0.88rem;
  }
}

.rundown-card-desc {
  font-size: 0.84rem;
  color: var(--c-text-soft);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 576px) {
  .rundown-card-desc {
    font-size: 0.78rem;
  }
}

/* Tab 5: Venue Recommendations */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.venue-card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 8px 24px rgba(43, 8, 16, 0.04);
  transition: transform 0.25s ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(107, 20, 38, 0.1);
}

.venue-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.venue-card-body {
  padding: 18px;
}

@media (max-width: 576px) {
  .venue-card-body {
    padding: 14px;
  }
}

.venue-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--c-maroon);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.venue-title {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 6px;
}

.venue-desc {
  font-size: 0.82rem;
  color: var(--c-text-soft);
  line-height: 1.45;
  margin-bottom: 10px;
}

.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.venue-feat-pill {
  background: var(--c-bg);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--c-text);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.venue-feat-pill svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
}

/* =========================================================
   TESTIMONIALS & TRUST SECTION
   ========================================================= */

.prod-testi-section {
  padding: 50px 0;
  background: var(--c-bg-alt);
  border-radius: var(--radius-lg);
  margin: 50px 0;
  border: 1px solid rgba(107, 20, 38, 0.06);
}

@media (max-width: 768px) {
  .prod-testi-section {
    padding: 32px 14px;
    margin: 36px 0;
    border-radius: 18px;
  }
}

.testi-header-center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

@media (max-width: 768px) {
  .testi-header-center {
    margin-bottom: 24px;
  }
}

.testi-header-center h2 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin-bottom: 8px;
}

.testi-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .testi-cards-grid {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 14px;
  }
}

.prod-testi-card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 8px 20px rgba(43, 8, 16, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .prod-testi-card {
    padding: 16px;
    border-radius: 14px;
  }
}

.testi-quote {
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 16px;
}

.testi-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-maroon-soft);
}

.testi-author-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin: 0;
}

.testi-author-info p {
  font-size: 0.76rem;
  color: var(--c-text-soft);
  margin: 0;
}

/* =========================================================
   ACCORDION FAQ DETAIL
   ========================================================= */

.prod-faq-section {
  max-width: 840px;
  margin: 50px auto 30px;
}

@media (max-width: 768px) {
  .prod-faq-section {
    margin: 36px auto 20px;
  }
}

.prod-faq-header {
  text-align: center;
  margin-bottom: 24px;
}

.prod-faq-header h2 {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--c-maroon-dark);
}

.prod-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prod-faq-item {
  background: var(--c-surface);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 20, 38, 0.08);
  overflow: hidden;
  transition: all 0.2s ease;
}

.prod-faq-item[open] {
  border-color: rgba(107, 20, 38, 0.25);
  box-shadow: 0 6px 20px rgba(107, 20, 38, 0.06);
}

.prod-faq-summary {
  padding: 16px 20px;
  font-family: var(--f-display);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 12px;
}

@media (max-width: 576px) {
  .prod-faq-summary {
    padding: 13px 15px;
    font-size: 0.88rem;
  }
}

.prod-faq-summary::-webkit-details-marker {
  display: none;
}

.prod-faq-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.prod-faq-item[open] .prod-faq-icon {
  transform: rotate(180deg);
  color: var(--c-maroon);
}

.prod-faq-body {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.6;
}

@media (max-width: 576px) {
  .prod-faq-body {
    padding: 0 15px 14px;
    font-size: 0.82rem;
    line-height: 1.5;
  }
}

/* =========================================================
   RELATED PRODUCTS / SIMILAR PACKAGES
   ========================================================= */

.prod-related-section {
  margin: 60px 0 30px;
}

@media (max-width: 768px) {
  .prod-related-section {
    margin: 40px 0 20px;
  }
}

.prod-related-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.prod-related-header h2 {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin: 0;
}

.prod-related-header a {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-maroon);
  text-decoration: none;
}

.prod-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {
  .prod-related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.prod-related-card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(107, 20, 38, 0.08);
  box-shadow: 0 8px 24px rgba(43, 8, 16, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.prod-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(107, 20, 38, 0.12);
  border-color: rgba(107, 20, 38, 0.2);
}

.prod-related-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .prod-related-img {
    height: 160px;
  }
}

.prod-related-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

@media (max-width: 576px) {
  .prod-related-body {
    padding: 14px;
  }
}

.prod-related-cat {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--c-maroon);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.prod-related-title {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.prod-related-desc {
  font-size: 0.84rem;
  color: var(--c-text-soft);
  line-height: 1.45;
  margin-bottom: 14px;
  flex-grow: 1;
}

.prod-related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--c-maroon);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.prod-related-link:hover {
  gap: 9px;
  color: var(--c-maroon-hover);
}

/* =========================================================
   FLOATING WHATSAPP & MOBILE ACTION
   Standard floating WA button is active on mobile just like all other pages
   ========================================================= */

.prod-sticky-bottom-bar {
  display: none !important;
}

/* =========================================================
   LUXURY ADVENTURE GALLERY CARDS (User Reference Style)
   ========================================================= */

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(107, 20, 38, 0.15);
  color: var(--c-maroon-dark);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.gallery-filter-btn:hover {
  background: var(--c-maroon-soft);
  border-color: var(--c-maroon);
  color: var(--c-maroon);
  transform: translateY(-2px);
}

.gallery-filter-btn.is-active {
  background: var(--c-maroon);
  border-color: var(--c-maroon);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(107, 20, 38, 0.28);
}

.gallery-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.gallery-dest-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  box-shadow: 0 14px 36px rgba(43, 8, 16, 0.16);
  text-decoration: none;
  background-color: var(--c-maroon-dark);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease, opacity 0.35s ease;
}

.gallery-dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(43, 8, 16, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.gallery-dest-card.is-hidden {
  display: none;
}

.gallery-dest-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-dest-card:hover .gallery-dest-bg {
  transform: scale(1.08);
}

.gallery-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 4, 8, 0.96) 0%, rgba(35, 7, 14, 0.72) 42%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.gallery-dest-card:hover .gallery-dest-overlay {
  background: linear-gradient(to top, rgba(20, 4, 8, 0.98) 0%, rgba(55, 10, 20, 0.75) 45%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.05) 100%);
}

.gallery-dest-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.gallery-dest-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-dest-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent-gold);
}

.gallery-dest-title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.22;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-dest-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.52;
  margin: 0 0 18px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-dest-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-dest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFFFFF;
  color: #2B0810;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.gallery-dest-card:hover .gallery-dest-btn {
  background: var(--c-accent-rose);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 56, 91, 0.4);
}

/* =========================================================
   LIGHTBOX MODAL PREVIEW & DETAIL POPUP
   ========================================================= */

.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 3, 6, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-container {
  position: relative;
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  background: linear-gradient(135deg, #2B0810 0%, #1A050A 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox-modal.is-open .gallery-lightbox-container {
  transform: scale(1) translateY(0);
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-lightbox-close:hover {
  background: #E11D48;
  border-color: #E11D48;
  transform: rotate(90deg) scale(1.08);
}

.gallery-lightbox-img-wrap {
  position: relative;
  background: #0D0205;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
}

.gallery-lightbox-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
}

.gallery-lightbox-nav:hover {
  background: var(--c-maroon);
  border-color: var(--c-maroon);
  transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-nav.prev {
  left: 14px;
}

.gallery-lightbox-nav.next {
  right: 14px;
}

.gallery-lightbox-details {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.gallery-lightbox-tag {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-accent-gold);
  margin-bottom: 8px;
}

.gallery-lightbox-title {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0 0 14px 0;
}

.gallery-lightbox-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

.gallery-lightbox-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.gallery-lightbox-feat-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.gallery-lightbox-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gallery-lightbox-price-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-lightbox-price-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
}

.gallery-lightbox-price-val span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.gallery-lightbox-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #D9385B 0%, #A81C38 100%);
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(217, 56, 91, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.gallery-lightbox-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 56, 91, 0.65);
}

@media (max-width: 1024px) {
  .gallery-dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 840px) {
  .gallery-lightbox-container {
    grid-template-columns: 1fr;
    max-height: 88vh;
    border-radius: 20px;
  }

  .gallery-lightbox-img-wrap {
    min-height: 240px;
    max-height: 280px;
  }

  .gallery-lightbox-details {
    padding: 24px 20px;
  }

  .gallery-lightbox-title {
    font-size: 1.5rem;
  }

  .gallery-lightbox-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .gallery-lightbox-cta-btn {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .gallery-dest-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-dest-card {
    min-height: 440px;
    padding: 24px 20px;
  }

  .gallery-dest-title {
    font-size: 1.45rem;
  }
}

/* =========================================================
   EDITORIAL NEWS PORTAL & MAGAZINE STYLES (blog.html)
   ========================================================= */

.news-portal-section {
  padding: 48px 0 80px 0;
  background-color: #FAFAFA;
  overflow-x: hidden;
  width: 100%;
}

/* 1. TOP NEWS MOSAIC GRID (1 Large + 4 Sub-featured) */
.news-mosaic-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
  margin-bottom: 52px;
  width: 100%;
  min-width: 0;
}

.news-mosaic-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  text-decoration: none;
  background-color: var(--c-maroon-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.news-mosaic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(43, 8, 16, 0.22);
}

.news-mosaic-main {
  min-height: 460px;
  padding: 36px 30px;
}

.news-mosaic-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.news-mosaic-sub {
  min-height: 222px;
  padding: 18px 16px;
}

.news-mosaic-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-mosaic-item:hover .news-mosaic-bg {
  transform: scale(1.08);
}

.news-mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 3, 6, 0.95) 0%, rgba(20, 5, 8, 0.65) 45%, rgba(0, 0, 0, 0.2) 75%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 2;
  transition: background 0.3s ease;
}

.news-mosaic-item:hover .news-mosaic-overlay {
  background: linear-gradient(to top, rgba(20, 4, 8, 0.98) 0%, rgba(35, 7, 14, 0.72) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.news-mosaic-content {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
}

.news-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.news-badge.badge-maroon {
  background: var(--c-maroon);
}

.news-badge.badge-gold {
  background: #D97706;
}

.news-badge.badge-blue {
  background: #2563EB;
}

.news-badge.badge-emerald {
  background: #059669;
}

.news-badge.badge-rose {
  background: #E11D48;
}

.news-mosaic-title-main {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.28;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-mosaic-title-sub {
  font-family: var(--f-display);
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.32;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-meta {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
}

.news-meta span.dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* 2. MAIN 2-COLUMN EDITORIAL LAYOUT */
.news-body-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  width: 100%;
  min-width: 0;
}

.news-main-feed {
  min-width: 0;
  width: 100%;
}

.news-sidebar {
  min-width: 0;
  width: 100%;
}

/* 3. NEWS BLOCK CATEGORY SECTIONS */
.news-block {
  margin-bottom: 48px;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.news-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #F1F1F1;
  padding-bottom: 12px;
  margin-bottom: 24px;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.news-block-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: wrap;
}

.news-block-title-wrap h3 {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  margin: 0;
  color: var(--c-maroon-dark);
  font-family: var(--f-display);
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-block-badge {
  background: var(--c-maroon);
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-block-filter-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.news-block-filter-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.news-block-filter-links a:hover,
.news-block-filter-links a.active {
  color: var(--c-maroon);
}

/* Block 1 Grid (1 Big Featured + 4 Compact List) */
.news-block-grid-1-2 {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  min-width: 0;
  width: 100%;
}

.news-feat-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.news-feat-thumb-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  height: 220px;
  width: 100%;
}

.news-feat-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-feat-card:hover .news-feat-thumb {
  transform: scale(1.05);
}

.news-feat-title {
  font-family: var(--f-display);
  font-size: clamp(1.08rem, 2.4vw, 1.25rem);
  font-weight: 700;
  color: var(--c-maroon-dark);
  line-height: 1.35;
  margin: 0 0 8px 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-feat-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-feat-title a:hover {
  color: var(--c-maroon);
}

.news-feat-meta {
  font-size: 0.78rem;
  color: #888888;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 10px;
}

.news-feat-excerpt {
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
}

/* Vertical Compact Articles List */
.news-compact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.news-compact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding-bottom: 14px;
  border-bottom: 1px solid #F3F3F3;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.news-compact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-compact-thumb-wrap {
  position: relative;
  width: 90px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-compact-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-compact-item:hover .news-compact-thumb {
  transform: scale(1.08);
}

.news-compact-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.news-compact-title {
  font-family: var(--f-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  line-height: 1.35;
  margin: 0 0 4px 0;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-compact-item:hover .news-compact-title {
  color: var(--c-maroon);
}

.news-compact-date {
  font-size: 0.72rem;
  color: #999999;
}

/* Block 2 (2 Sub-Columns Side-by-Side) */
.news-block-subgrid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-width: 0;
  width: 100%;
}

.news-subcol-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  text-decoration: none;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.news-subcol-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
}

.news-subcol-card:hover .news-subcol-card-bg {
  transform: scale(1.08);
}

.news-subcol-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 3, 6, 0.92) 0%, rgba(20, 5, 8, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

.news-subcol-card-title {
  position: relative;
  z-index: 3;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 4. EDITORIAL SIDEBAR WIDGETS */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
  width: 100%;
}

.news-widget {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.news-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #F1F1F1;
  padding-bottom: 10px;
  margin-bottom: 18px;
  min-width: 0;
}

.news-widget-badge {
  background: var(--c-maroon);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Widget Promo E-Katalog / Ad-Box Style */
.news-widget-ad-box {
  background: linear-gradient(135deg, #2B0810 0%, #4A0C1A 100%);
  border-radius: 16px;
  padding: 30px 24px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: 0 10px 25px rgba(43, 8, 16, 0.2);
  border: 1px solid rgba(255, 139, 163, 0.2);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.news-widget-ad-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--c-accent-gold);
  margin-bottom: 8px;
}

.news-widget-ad-title {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 0 0 10px 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-widget-ad-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  margin-bottom: 18px;
  overflow-wrap: break-word;
}

.news-widget-ad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D9385B 0%, #A81C38 100%);
  color: #FFFFFF !important;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(217, 56, 91, 0.4);
  transition: all 0.3s ease;
  max-width: 100%;
}

.news-widget-ad-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 56, 91, 0.6);
}

/* Widget Video Highlight */
.news-widget-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 170px;
  margin-bottom: 12px;
  width: 100%;
}

.news-widget-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-widget-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(217, 56, 91, 0.9);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(217, 56, 91, 0.6);
  transition: transform 0.3s ease, background 0.3s ease;
}

.news-widget-video-wrap:hover .news-widget-video-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: #E11D48;
}

.news-widget-video-title {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  line-height: 1.35;
  margin: 0 0 6px 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-widget-video-desc {
  font-size: 0.8rem;
  color: var(--c-text-soft);
  line-height: 1.45;
  margin: 0;
  overflow-wrap: break-word;
}

/* Widget Trending Top 5 (Numbered List) */
.news-trending-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.news-trending-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  padding-bottom: 12px;
  border-bottom: 1px solid #F3F3F3;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.news-trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-trending-num {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-maroon);
  line-height: 1;
  width: 24px;
  flex-shrink: 0;
}

.news-trending-item > div {
  min-width: 0;
  flex: 1;
}

.news-trending-title {
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  line-height: 1.35;
  margin: 0 0 4px 0;
  transition: color 0.2s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}

.news-trending-item:hover .news-trending-title {
  color: var(--c-maroon);
}

.news-trending-date {
  font-size: 0.7rem;
  color: #999999;
}

/* Widget Categories List */
.news-cat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.news-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  background: #F8F8F8;
  transition: all 0.2s ease;
  min-width: 0;
}

.news-cat-item:hover {
  background: var(--c-maroon-soft);
  color: var(--c-maroon);
  transform: translateX(4px);
}

.news-cat-count {
  font-size: 0.75rem;
  color: #888888;
  background: #FFFFFF;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid #EAEAEA;
  flex-shrink: 0;
}

/* Comprehensive Responsive Breakpoints for Blog & News */
@media (max-width: 1024px) {
  .news-mosaic-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .news-body-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .news-portal-section {
    padding: 32px 0 60px 0;
  }

  .news-block-grid-1-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-block-subgrid-2col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-mosaic-subgrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-mosaic-main {
    min-height: 320px;
    padding: 24px 18px;
  }

  .news-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .news-block-title-wrap {
    width: 100%;
  }

  .news-block-filter-links {
    width: 100%;
    padding-top: 6px;
    border-top: 1px dashed #F0F0F0;
    gap: 10px 14px;
  }
}

@media (max-width: 576px) {
  .news-portal-section {
    padding: 24px 0 48px 0;
  }

  .news-block {
    padding: 18px 14px;
    border-radius: 14px;
    margin-bottom: 24px;
  }

  .news-mosaic-main {
    min-height: 280px;
    padding: 18px 14px;
    border-radius: 14px;
  }

  .news-mosaic-sub {
    min-height: 180px;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .news-mosaic-title-main {
    font-size: 1.18rem;
    line-height: 1.3;
  }

  .news-mosaic-title-sub {
    font-size: 0.94rem;
  }

  .news-feat-thumb-wrap {
    height: 180px;
    border-radius: 10px;
  }

  .news-subcol-card {
    height: 160px;
    padding: 14px;
    border-radius: 10px;
  }

  .news-widget {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .news-widget-ad-box {
    padding: 22px 16px;
    border-radius: 14px;
  }

  .news-widget-ad-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 420px) {
  .news-compact-item {
    gap: 10px;
    padding-bottom: 12px;
  }

  .news-compact-thumb-wrap {
    width: 72px;
    height: 58px;
    border-radius: 6px;
  }

  .news-compact-title {
    font-size: 0.84rem;
  }

  .news-block-badge {
    font-size: 0.74rem;
    padding: 4px 10px;
  }
}

/* Editorial CTA Band Styles */
.cta-band--editorial {
  margin-top: 64px;
  background: linear-gradient(135deg, #2B0810 0%, #520D1D 50%, #6B1426 100%);
  color: #FFFFFF;
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 139, 163, 0.2);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .cta-band--editorial {
    margin-top: 40px;
    padding: 32px 20px !important;
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-band--editorial h2 {
    font-size: 1.45rem;
  }

  .cta-band--editorial p {
    font-size: 0.92rem;
  }

  .cta-band--editorial .btn-wa {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   SINGLE ARTICLE / BLOG POST LAYOUT STYLES (ELEGANT & EDITORIAL)
   ========================================================= */

.article-breadcrumb-bar {
  background: #2B0810;
  padding: 110px 0 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-breadcrumb-bar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.article-breadcrumb-bar nav::-webkit-scrollbar {
  display: none;
}

.article-breadcrumb-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.article-breadcrumb-bar a:hover {
  color: #FFFFFF;
}

.article-page-main {
  background: #FAFAFA;
  padding: 48px 0 80px 0;
}

.article-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.article-main {
  min-width: 0;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px 46px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.035);
  box-sizing: border-box;
}

.article-header {
  margin-bottom: 28px;
}

.news-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  line-height: 1;
  margin-bottom: 12px;
}

.news-badge.badge-maroon {
  background: rgba(107, 20, 38, 0.08);
  color: var(--c-maroon);
  border: 1px solid rgba(107, 20, 38, 0.2);
}

.news-badge.badge-gold {
  background: rgba(217, 119, 6, 0.08);
  color: #B45309;
  border: 1px solid rgba(217, 119, 6, 0.22);
}

.news-badge.badge-blue {
  background: rgba(37, 99, 235, 0.08);
  color: #1D4ED8;
  border: 1px solid rgba(37, 99, 235, 0.22);
}

.article-header h1 {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 3.6vw, 2.45rem);
  font-weight: 800;
  line-height: 1.28;
  color: #1F050B;
  letter-spacing: -0.02em;
  margin: 10px 0 18px 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F0F0F0;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-accent-gold);
  box-shadow: 0 2px 10px rgba(217, 119, 6, 0.2);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.author-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.author-name {
  font-weight: 800;
  color: var(--c-maroon-dark);
  font-size: 0.95rem;
}

.meta-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #B45309;
  background: #FEF3C7;
  border: 1px solid rgba(217, 119, 6, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.meta-verified-badge i {
  color: #D97706;
}

.post-meta-details,
.post-date {
  font-size: 0.78rem;
  color: #64748B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  line-height: 1.4;
}

.post-meta-details i,
.post-date i {
  color: var(--c-maroon);
}

.meta-separator {
  color: #CBD5E1;
}

.article-featured-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 10px 30px rgba(43, 8, 16, 0.1);
}

.article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.caption {
  font-size: 0.86rem;
  color: #64748B;
  font-style: italic;
  margin: 0 0 32px 0;
  line-height: 1.55;
  background: #FDFBFC;
  border-left: 3px solid var(--c-accent-gold);
  border-radius: 0 10px 10px 0;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-left-width: 3px;
}

/* Article Summary Box */
.article-summary {
  background: linear-gradient(135deg, #FAF4F5 0%, #FFF8F9 100%);
  border: 1px solid rgba(107, 20, 38, 0.12);
  border-left: 4px solid var(--c-maroon);
  border-radius: 18px;
  padding: 26px 30px;
  margin-bottom: 34px;
  box-shadow: 0 4px 18px rgba(43, 8, 16, 0.03);
}

.article-summary h3 {
  font-family: var(--f-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-summary ul {
  margin: 0;
  padding-left: 20px;
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.7;
}

.article-summary li {
  margin-bottom: 8px;
}

.article-summary li:last-child {
  margin-bottom: 0;
}

/* Table of Contents (TOC) */
.toc-wrapper {
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 18px;
  margin-bottom: 38px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.toc-header {
  padding: 18px 24px;
  background: linear-gradient(180deg, #FAF8F9 0%, #F5F1F2 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #EFEFEF;
  transition: background 0.2s ease;
}

.toc-header:hover {
  background: #F2EBED;
}

.toc-header h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-header .fa-chevron-down {
  transition: transform 0.3s ease;
  color: var(--c-maroon);
}

.toc-header.active .fa-chevron-down {
  transform: rotate(180deg);
}

.toc-body {
  padding: 20px 24px 24px 24px;
  display: none;
}

.toc-body.open {
  display: block;
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.toc-list li a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.toc-list li a:hover {
  color: var(--c-maroon);
  font-weight: 700;
  padding-left: 4px;
}

.toc-list li.toc-h3 {
  padding-left: 22px;
  font-size: 0.86rem;
  color: #64748B;
}

/* Article Body Content */
.article-content {
  font-size: 1.04rem;
  line-height: 1.82;
  color: #334155;
  word-break: break-word;
  overflow-wrap: break-word;
}

.article-content h2 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3.5vw, 1.68rem);
  font-weight: 700;
  color: var(--c-maroon-dark);
  line-height: 1.3;
  margin: 44px 0 18px 0;
  padding-top: 10px;
  border-bottom: 2px solid #FAF0F2;
  padding-bottom: 10px;
}

.article-content h3 {
  font-family: var(--f-display);
  font-size: clamp(1.12rem, 2.6vw, 1.3rem);
  font-weight: 700;
  color: var(--c-maroon);
  line-height: 1.38;
  margin: 30px 0 14px 0;
}

.article-content p {
  margin-bottom: 22px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 0;
  padding-left: 26px;
}

.article-content li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}

.article-content a {
  color: var(--c-maroon);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.2s ease;
}

.article-content a:hover {
  color: var(--c-maroon-hover);
}

/* Answer-First Callout */
.answer-first-box.callout-card-maroon {
  background: linear-gradient(135deg, #FAF0F2 0%, #FFF5F7 100%);
  border: 1px solid rgba(107, 20, 38, 0.16);
  border-left: 5px solid var(--c-maroon);
  border-radius: 18px;
  padding: 28px 30px;
  margin: 30px 0 34px 0;
  box-shadow: 0 6px 20px rgba(43, 8, 16, 0.04);
}

.text-slate-lead {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--c-maroon-dark);
  margin: 0;
}

/* Baca Juga Box */
.baca-juga-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 16px;
  padding: 16px 20px;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.035);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.baca-juga-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(43, 8, 16, 0.08);
  border-color: var(--c-maroon-border);
}

.baca-juga-box .icon {
  font-size: 1.5rem;
  color: var(--c-maroon);
  flex-shrink: 0;
}

.baca-juga-box .thumb {
  width: 95px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.baca-juga-box .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.baca-juga-box .content {
  flex: 1;
  min-width: 0;
}

.baca-juga-box .content .label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-maroon);
  letter-spacing: 0.8px;
}

.baca-juga-box .content h4 {
  font-family: var(--f-display);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 3px 0 5px 0;
  line-height: 1.35;
}

.baca-juga-box .content h4 a {
  color: var(--c-maroon-dark);
  text-decoration: none;
}

.baca-juga-box .content h4 a:hover {
  color: var(--c-maroon);
}

.baca-juga-box .content p {
  font-size: 0.82rem;
  color: #64748B;
  margin: 0;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Supporting Image */
.supporting-image {
  margin: 32px 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.supporting-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* =========================================================
   CLEAN & USER-FRIENDLY COMPARISON TABLE
   ========================================================= */

.table-responsive {
  width: 100%;
  margin: 20px 0 32px 0;
  border-radius: 16px;
  border: 1px solid #ECECEC;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(43, 8, 16, 0.04);
  overflow: hidden;
}

.table-custom {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: left;
}

.table-custom th {
  background: linear-gradient(135deg, #2B0810 0%, #4A0C1A 100%);
  color: #FFFFFF;
  padding: 15px 18px;
  text-align: left;
  font-weight: 800;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border: none;
}

.table-custom td {
  padding: 15px 18px;
  border-bottom: 1px solid #F0EAEB;
  line-height: 1.55;
  color: #334155;
  vertical-align: top;
  font-size: 0.88rem;
}

.table-custom td strong {
  color: var(--c-maroon-dark);
}

.table-custom td a {
  color: var(--c-maroon);
  font-weight: 700;
  text-decoration: underline;
}

.table-custom td a:hover {
  color: var(--c-maroon-hover);
}

.table-custom tr:nth-child(even) td {
  background: #FDF9FA;
}

.table-custom tr:hover td {
  background: #FAF0F2;
}

.table-custom tr:last-child td {
  border-bottom: none;
}

/* Promo WA Box */
.promo-wa-box {
  background: linear-gradient(135deg, #1F050B 0%, #3B0713 50%, #520D1D 100%);
  color: #FFFFFF;
  border-radius: 22px;
  padding: 36px 32px;
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 26px;
  box-shadow: 0 16px 40px rgba(31, 5, 11, 0.28);
  border: 1px solid rgba(255, 139, 163, 0.25);
}

.promo-wa-box .icon {
  font-size: 2.8rem;
  color: #25D366;
  flex-shrink: 0;
}

.promo-wa-box .content {
  flex: 1;
  min-width: 0;
}

.promo-wa-box .content h3 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.promo-wa-box .content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 6px 0;
}

.promo-wa-box a.btn-wa {
  background: #25D366;
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 0.94rem;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.promo-wa-box a.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
}

/* Conclusion Box */
.conclusion-box {
  background: linear-gradient(135deg, #FAF4F5 0%, #FFF8F9 100%);
  border: 1px solid rgba(107, 20, 38, 0.12);
  border-left: 4px solid var(--c-maroon);
  border-radius: 18px;
  padding: 28px 32px;
  margin: 40px 0;
}

.conclusion-box h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin: 0 0 12px 0;
}

.conclusion-box p {
  font-size: 0.96rem;
  color: #334155;
  line-height: 1.68;
  margin: 0 0 14px 0;
}

.conclusion-box ul {
  margin: 0;
  padding-left: 22px;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.65;
}

.conclusion-box li {
  margin-bottom: 8px;
}

.conclusion-box li:last-child {
  margin-bottom: 0;
}

/* FAQ Accordion */
.faq-section {
  margin: 40px 0;
}

.faq-section h3 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid #ECECEC;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--c-maroon);
  box-shadow: 0 6px 20px rgba(43, 8, 16, 0.06);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: #FDFBFC;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.faq-q-badge {
  font-size: 1.15rem;
  color: var(--c-maroon);
  flex-shrink: 0;
}

.faq-q-text {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--c-maroon-dark);
  flex: 1;
}

.faq-toggle-badge {
  color: var(--c-maroon);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-badge {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #FFFFFF;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 18px 22px 22px 22px;
  font-size: 0.94rem;
  color: #334155;
  line-height: 1.7;
  border-top: 1px solid #F1F1F1;
}

/* Author Bio Card */
.author-bio {
  display: flex;
  gap: 22px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F9 100%);
  border: 1px solid #ECECEC;
  border-radius: 20px;
  padding: 28px 30px;
  margin: 40px 0;
  align-items: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.03);
}

.author-bio .avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--c-accent-gold);
  box-shadow: 0 0 12px rgba(217, 119, 6, 0.25);
  flex-shrink: 0;
}

.author-bio .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-bio .info h4 {
  margin: 0 0 3px 0;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
}

.author-bio .role {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-maroon);
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.author-bio p {
  font-size: 0.88rem;
  color: #64748B;
  margin: 0;
  line-height: 1.55;
}

/* Social Share Bar */
.share-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
  margin: 36px 0;
}

.share-section .label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin-right: 6px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn.whatsapp {
  background: #25D366;
}

.share-btn.facebook {
  background: #1877F2;
}

.share-btn.twitter {
  background: #0F1419;
}

.share-btn.linkedin {
  background: #0A66C2;
}

.share-btn.copy {
  background: var(--c-maroon);
}

/* Sidebar Elements (Sticky Desktop) */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: sticky;
  top: 90px;
  align-self: start;
}

.sidebar-related {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 26px 22px;
  border: 1px solid #ECECEC;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.035);
}

.sidebar-related h3 {
  font-family: var(--f-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--c-maroon-dark);
  margin: 0 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-maroon-soft);
}

.related-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F3F3F3;
}

.related-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.related-item .thumb {
  width: 82px;
  height: 66px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-item:hover .thumb img {
  transform: scale(1.08);
}

.related-item .content {
  flex: 1;
  min-width: 0;
}

.related-item .content h4 {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 4px 0;
}

.related-item .content h4 a {
  color: var(--c-maroon-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-item .content h4 a:hover {
  color: var(--c-maroon);
}

.related-item .content p {
  font-size: 0.78rem;
  color: #64748B;
  margin: 0 0 4px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item .readmore {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--c-maroon);
  text-decoration: none;
}

.sidebar-hero {
  background: linear-gradient(135deg, #1F050B 0%, #3B0713 50%, #4A0C1A 100%);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(31, 5, 11, 0.22);
  border: 1px solid rgba(255, 139, 163, 0.22);
}

.hero-category {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--c-accent-gold);
  margin-bottom: 10px;
}

.sidebar-hero h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.sidebar-hero h4 a {
  color: #FFFFFF;
  text-decoration: none;
}

.sidebar-hero p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.52;
  margin: 0 0 18px 0;
}

.btn-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #D9385B 0%, #A81C38 100%);
  color: #FFFFFF !important;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(217, 56, 91, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 56, 91, 0.6);
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #FFFFFF !important;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Product Recommendation Strip Under Article */
.recommendations.grid-240 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.recommend-item {
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(43, 8, 16, 0.08);
}

.recommend-item .thumb {
  height: 170px;
  overflow: hidden;
}

.recommend-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recommend-item:hover .thumb img {
  transform: scale(1.06);
}

.recommend-item .body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-cat-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-maroon);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.recommend-item .body h4 {
  font-family: var(--f-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.recommend-item .body h4 a {
  color: var(--c-maroon-dark);
  text-decoration: none;
}

.recommend-item .body h4 a:hover {
  color: var(--c-maroon);
}

.recommend-item .body p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.52;
  margin: 0 0 16px 0;
  flex: 1;
}

.prod-card-link-auto {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--c-maroon);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================
   ARTICLE RESPONSIVE MEDIA QUERIES (MOBILE & TABLET EXCELLENCE)
   ========================================================= */

@media (max-width: 1024px) {
  .article-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .article-main {
    padding: 38px 32px;
  }

  .recommendations.grid-240 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-breadcrumb-bar {
    padding: 96px 0 16px 0;
  }

  .article-page-main {
    padding: 28px 0 60px 0;
  }

  .article-main {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .article-header h1 {
    font-size: 1.38rem;
    line-height: 1.28;
    margin: 8px 0 14px 0;
  }

  .article-meta {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .post-meta-details,
  .post-date {
    font-size: 0.74rem;
    gap: 4px 6px;
  }

  /* NO HORIZONTAL SCROLL FOR TABLE - FITS 100% WIDTH */
  .table-responsive {
    overflow-x: hidden !important;
    overflow: hidden !important;
    width: 100% !important;
    margin: 16px 0 24px 0;
    border-radius: 12px;
    border: 1px solid #EAE2E4;
  }

  .table-custom {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    font-size: 0.78rem;
  }

  .table-custom th {
    padding: 10px 6px;
    font-size: 0.72rem;
    line-height: 1.25;
    white-space: normal;
    text-align: left;
    word-break: break-word;
  }

  .table-custom td {
    padding: 9px 6px;
    font-size: 0.75rem;
    line-height: 1.38;
    word-break: break-word;
    border-bottom: 1px solid #F0EAEB;
  }

  .table-custom tr th:first-child,
  .table-custom tr td:first-child {
    width: 32%;
    font-weight: 700;
    color: var(--c-maroon-dark);
    background: #FAF4F5;
  }

  .table-custom tr th:nth-child(2),
  .table-custom tr td:nth-child(2) {
    width: 34%;
  }

  .table-custom tr th:nth-child(3),
  .table-custom tr td:nth-child(3) {
    width: 34%;
  }

  /* 4-column matrix on cara-memilih-vendor-outbound */
  .table-custom.table-4col tr th,
  .table-custom.table-4col tr td {
    width: 25% !important;
    padding: 8px 4px;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .article-breadcrumb-bar {
    padding: 90px 0 14px 0;
  }

  .article-breadcrumb-bar nav {
    font-size: 0.76rem;
    gap: 6px;
  }

  .article-page-main {
    padding: 18px 0 48px 0;
  }

  .article-main {
    padding: 20px 14px;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  }

  .article-header {
    margin-bottom: 18px;
  }

  .news-badge {
    font-size: 0.68rem;
    padding: 5px 12px;
    margin-bottom: 8px;
  }

  .article-header h1 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin: 8px 0 14px 0;
  }

  .article-meta {
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
  }

  .author-name {
    font-size: 0.88rem;
  }

  .meta-verified-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  .post-meta-details,
  .post-date {
    font-size: 0.72rem;
    gap: 4px 6px;
    line-height: 1.35;
  }

  .article-featured-image {
    border-radius: 14px;
    margin-bottom: 10px;
  }

  .caption {
    font-size: 0.78rem;
    padding: 9px 12px;
    margin: 0 0 22px 0;
    border-radius: 0 8px 8px 0;
  }

  .article-summary,
  .answer-first-box.callout-card-maroon,
  .conclusion-box {
    padding: 16px 14px;
    border-radius: 14px;
    margin: 22px 0;
  }

  .article-summary h3,
  .conclusion-box h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .article-summary ul,
  .conclusion-box ul {
    padding-left: 16px;
    font-size: 0.86rem;
    line-height: 1.58;
  }

  .text-slate-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .toc-wrapper {
    border-radius: 14px;
    margin-bottom: 26px;
  }

  .toc-header {
    padding: 13px 16px;
  }

  .toc-header h3 {
    font-size: 0.9rem;
  }

  .toc-body {
    padding: 14px 16px 16px 16px;
  }

  .toc-list li {
    font-size: 0.84rem;
    margin-bottom: 8px;
  }

  .article-content {
    font-size: 0.96rem;
    line-height: 1.74;
  }

  .article-content h2 {
    font-size: 1.22rem;
    margin: 28px 0 12px 0;
    padding-bottom: 6px;
  }

  .article-content h3 {
    font-size: 1.08rem;
    margin: 20px 0 10px 0;
  }

  .article-content p {
    margin-bottom: 16px;
  }

  .article-content ul,
  .article-content ol {
    padding-left: 18px;
    margin-bottom: 18px;
  }

  .article-content li {
    font-size: 0.92rem;
    margin-bottom: 7px;
    line-height: 1.58;
  }

  .baca-juga-box {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    margin: 22px 0;
  }

  .baca-juga-box .icon {
    display: none;
  }

  .baca-juga-box .thumb {
    width: 72px;
    height: 58px;
    border-radius: 8px;
  }

  .baca-juga-box .content .label {
    font-size: 0.66rem;
    margin-bottom: 2px;
  }

  .baca-juga-box .content h4 {
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
  }

  .baca-juga-box .content p {
    display: none;
  }

  .supporting-image {
    border-radius: 14px;
    margin: 22px 0;
  }

  /* Table on mobile: 100% fit, no swipe needed */
  .table-responsive {
    margin: 14px 0 22px 0;
    border-radius: 10px;
  }

  .table-custom {
    font-size: 0.74rem;
  }

  .table-custom th {
    padding: 8px 5px;
    font-size: 0.68rem;
  }

  .table-custom td {
    padding: 8px 5px;
    font-size: 0.72rem;
    line-height: 1.32;
  }

  .table-custom.table-4col tr th,
  .table-custom.table-4col tr td {
    padding: 6px 3px;
    font-size: 0.66rem;
    line-height: 1.25;
  }

  .promo-wa-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
    gap: 16px;
    border-radius: 18px;
    margin: 28px 0;
  }

  .promo-wa-box .icon {
    font-size: 2.3rem;
  }

  .promo-wa-box .content h3 {
    font-size: 1.22rem;
    margin-bottom: 6px;
  }

  .promo-wa-box .content p {
    font-size: 0.85rem;
  }

  .promo-wa-box a.btn-wa {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.88rem;
    box-sizing: border-box;
  }

  .faq-section {
    margin: 32px 0;
  }

  .faq-section h3 {
    font-size: 1.18rem;
    margin-bottom: 14px;
  }

  .faq-question {
    padding: 13px 16px;
    gap: 10px;
  }

  .faq-q-badge {
    font-size: 1rem;
  }

  .faq-q-text {
    font-size: 0.88rem;
  }

  .faq-answer-inner {
    padding: 12px 16px 16px 16px;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .author-bio {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    border-radius: 16px;
    gap: 12px;
    margin: 28px 0;
  }

  .author-bio .avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto;
  }

  .author-bio .info h4 {
    font-size: 1.05rem;
  }

  .author-bio .role {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }

  .author-bio p {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .share-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 16px 0;
    margin: 24px 0;
  }

  .share-section .label {
    grid-column: 1 / -1;
    font-size: 0.82rem;
    margin-bottom: 2px;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.78rem;
    min-height: 36px;
  }

  .share-btn.copy {
    grid-column: 1 / -1;
  }

  .recommendations.grid-240 {
    grid-template-columns: 1fr;
  }

  .sidebar-related {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .sidebar-hero {
    padding: 22px 18px;
    border-radius: 16px;
  }
}