/* ============================================================
   CHATURA INDONESIA — Design System
   Corporate consulting website unified stylesheet
   ============================================================ */
/* @import "tailwindcss"; */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

:root {
  /* === COLOR SYSTEM === */
  --color-brand-green: #004D34;
  --color-emerald-300: #6ee7b7;
  --color-text-body: #374151;
  --color-text-muted: #6B7280;
  --color-text-light: #9CA3AF;
  --color-bg-white: #FFFFFF;
  --color-bg-gray: #F9FAFB;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;

  /* === TYPOGRAPHY SYSTEM === */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --text-display-xl: 3rem;
  --text-display-lg: 2.5rem;
  --text-h1: 2rem;
  --text-h2: 1.75rem;
  --text-h3: 1.5rem;
  --text-h4: 1.25rem;
  --text-h5: 1.125rem;
  --text-body-lg: 1.125rem;
  --text-body: 1.0625rem;
  --text-body-sm: 1rem;
  --text-caption: 0.875rem;
  --text-legal: 0.75rem;
  --text-micro: 0.6875rem;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-body: 1.75;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* === SPACING SYSTEM === */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* === MOTION SYSTEM === */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 600ms;
  --ease-elastic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* === FOCUS SYSTEM === */
  --focus-ring: 0 0 0 3px rgba(0, 77, 52, 0.45);

  /* === SHADOW SYSTEM === */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* === RADIUS SYSTEM === */
  --radius-md: 0.5rem;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

/* ===== SECTION HIDES DON'T TOUCH, DON'T DELETE, DON'T CHANGES ===== */
#open-positions,
#modal-location,
#contact-loc-title,
#contact-loc-list {
  display: none;
}


/* ===== SECTION SNAP SCROLL DOTS ===== */
.snap-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.snap-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #004D34;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.snap-dot:hover {
  background: #004D34;
  transform: scale(1.3);
}

.snap-dot.active {
  background: #004D34;
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(0, 77, 52, 0.2);
}

@media (max-width: 768px) {
  .snap-dots {
    right: 10px;
    gap: 10px;
  }

  .snap-dot {
    width: 8px;
    height: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .snap-dot {
    transition: none;
  }
}

img,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* Lucide injects SVGs with a default 24x24 size. Shrink the dropdown chevron
   so it matches the text and keeps nav items aligned. */
.lucide-chevron-down {
  height: 0.75rem;
  width: 0.75rem;
  flex-shrink: 0;
  vertical-align: middle;
}


/* --- Skip Link (A11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 10000;
  padding: var(--space-3) var(--space-5);
  background: var(--color-brand-green);
  color: #fff;
  font-weight: var(--weight-semibold);
  font-size: var(--text-body-sm);
  border-radius: 0 0 6px 6px;
  transition: top var(--duration-fast) var(--ease-smooth);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* --- Focus States (Clean & Subtle) --- */
:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: none;
}

*:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* --- Reduced Motion (WCAG 2.2 AA) --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }

  .reveal-up,
  .reveal-fade,
  .fm-hidden,
  .fm-visible {
    opacity: 1;
    transform: none;
  }
}

/* --- Touch Targets (44x44px minimum) --- */
a[href],
button:not([disabled]),
input:not([disabled]),
select:not([disabled]),
textarea:not([disabled]) {
  min-height: 44px;
}

.nav a,
.filter-tab-btn,
#lang-selector a,
#lang-selector-mobile a,
footer a {
  min-height: auto;
  display: inline-flex;
  align-items: center;
}

#navbar-sticky>.container>nav>a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.25;
}

/* --- Tailwind utility compatibility layer --- */
/* Brand color utilities are now expressed directly with Tailwind classes such as bg-[#004D34] and text-[#004D34]. */

/* ==========================================================================
   LOGO SIZING (NAVBAR & FOOTER)
   ========================================================================== */

.nav-logo img,
header img[src*="chatura"] {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo,
footer img[src*="chatura-footer"][alt="Chatura Indonesia"] {
  display: block;
  margin-bottom: 1.5rem;
  height: 144px;
  width: auto;
  object-fit: contain;
}

footer img[src*="chatura-footer"][alt="Chatura"] {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {

  .nav-logo img,
  header img[src*="chatura"] {
    height: 32px;
  }

  .footer-logo,
  footer img[src*="chatura-footer"][alt="Chatura Indonesia"] {
    height: 144px;
  }
}

/* ==========================================================================
   COMPONENT SYSTEM — Tailwind-first utility layer
   ========================================================================== */

/* Keep only the small shared helpers that are not practical in Tailwind utilities. */

/* --- Divider helper --- */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-light);
  font-size: var(--text-legal);
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* --- Link with icon alignment --- */
a:has(> svg[data-lucide]),
a:has(> i[data-lucide]),
button:has(> svg[data-lucide]),
button:has(> i[data-lucide]) {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ============================================================
   ENTERPRISE STICKY NAVBAR SYSTEM (Global Component)
   ============================================================ */
#navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 320ms cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-backdrop-filter 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar-sticky.scrolled {
  background-color: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border-bottom: 1px solid rgba(0, 77, 52, 0.08) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 77, 52, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03) !important;
}

#navbar-spacer {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

#navbar-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: padding 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar-sticky.scrolled #navbar-inner {
  padding-top: 0.625rem !important;
  /* 10px */
  padding-bottom: 0.625rem !important;
  /* 10px */
}

#navbar-logo {
  height: 2.5rem;
  /* 40px */
  width: auto;
  transition: height 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar-sticky.scrolled #navbar-logo {
  height: 2rem !important;
  /* 32px */
}

/* Integrated Reading Progress Bar Edge */
.nav-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

#navbar-sticky.scrolled .nav-progress-wrap {
  opacity: 1 !important;
}

.nav-progress-bar {
  height: 100%;
  width: 0%;
  background-color: #004D34;
  transform-origin: left center;
}

@media (prefers-reduced-motion: reduce) {

  #navbar-sticky,
  #navbar-inner,
  #navbar-logo,
  .nav-progress-wrap,
  .nav-progress-bar {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   ENTERPRISE STANDARDIZED HERO SYSTEM (Max Screen Height Standard)
   ============================================================ */
.hero-section,
#hero,
#hero-industry,
#hero-services,
#hero-service,
#hero-people,
#hero-insights,
#hero-career,
#hero-contact,
#hero-business,
#hero-about,
#hero-transfer,
#hero-case,
#hero-careers,
section[id*="hero"],
section[class*="hero"] {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  margin-top: 0 !important; /* CRITICAL FIX: Overrides -mt-32 negative margin pull bug */
}

@media (min-width: 768px) {
  .hero-section,
  #hero,
  #hero-industry,
  #hero-services,
  #hero-service,
  #hero-people,
  #hero-insights,
  #hero-career,
  #hero-contact,
  #hero-business,
  #hero-about,
  #hero-transfer,
  #hero-case,
  #hero-careers,
  section[id*="hero"],
  section[class*="hero"] {
    min-height: 100vh !important;
    max-height: 100vh !important;
    height: 100vh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-section > .container,
  #hero > .container,
  #hero-industry > .container,
  #hero-services > .container,
  #hero-service > .container,
  #hero-people > .container,
  #hero-insights > .container,
  #hero-career > .container,
  #hero-contact > .container,
  #hero-business > .container,
  #hero-about > .container,
  #hero-transfer > .container,
  #hero-case > .container,
  #hero-careers > .container,
  section[id*="hero"] > .container,
  section[class*="hero"] > .container {
    padding-top: 5.5rem !important; /* Clears fixed navbar height cleanly */
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 767px) {
  .hero-section,
  #hero,
  #hero-industry,
  #hero-services,
  #hero-service,
  #hero-people,
  #hero-insights,
  #hero-career,
  #hero-contact,
  #hero-business,
  #hero-about,
  #hero-transfer,
  #hero-case,
  #hero-careers,
  section[id*="hero"],
  section[class*="hero"] {
    min-height: 100vh;
    max-height: none;
    height: auto;
    padding-top: 6.5rem !important;
    padding-bottom: 3.5rem !important;
  }
}

/* --- Language Selector --- */
#lang-selector {
  display: flex;
  align-items: center;
  gap: 0;
  background-color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  padding: 2px;
  box-shadow: none;
  transition: background-color var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth);
}

#lang-selector-mobile {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid var(--color-border);
  padding: 2px;
  background-color: var(--color-bg-white);
  border-radius: var(--radius-full);
}

/* Shared toggle styling for both desktop and mobile selectors */
#lang-selector .lang-active,
#lang-selector-mobile .lang-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brand-green);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: var(--text-micro);
  font-weight: var(--weight-bold);
  min-height: 1.5rem;
  padding: 0 0.625rem;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: background-color var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth);
}

#lang-selector .lang-inactive,
#lang-selector-mobile .lang-inactive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: var(--text-micro);
  font-weight: var(--weight-medium);
  border-radius: var(--radius-full);
  min-height: 1.5rem;
  padding: 0 0.625rem;
  line-height: 1;
  letter-spacing: 0.04em;
  transition: background-color var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth);
}

#lang-selector .lang-inactive:hover,
#lang-selector-mobile .lang-inactive:hover {
  background-color: var(--color-bg-gray);
  color: var(--color-text-body);
}

#navbar-sticky.scrolled #lang-selector {
  background-color: var(--color-bg-white);
  border-color: var(--color-brand-green);
}

#navbar-sticky.scrolled #lang-selector .lang-active {
  background-color: var(--color-brand-green);
  color: #fff;
}

#navbar-sticky.scrolled #lang-selector .lang-inactive {
  color: var(--color-text-body);
}

#navbar-sticky.scrolled #lang-selector .lang-inactive:hover {
  color: var(--color-text-muted);
}

/* --- Nav Dropdown (Services sub-menu) --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-smooth),
    visibility var(--duration-fast) var(--ease-smooth);
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 180px;
}

/* Tailwind md:hidden override */
@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: var(--text-caption);
  color: var(--color-text-body);
  border-radius: var(--radius-md);
  transition: background-color var(--duration-fast) var(--ease-smooth),
    color var(--duration-fast) var(--ease-smooth);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background-color: var(--color-bg-gray);
  color: var(--color-brand-green);
}

.nav-dropdown-menu a.active {
  color: var(--color-brand-green);
  font-weight: var(--weight-semibold);
}

/* --- Mobile Nav Accordion --- */
.mobile-nav-group-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: background-color 0.15s ease, color 0.15s ease;
  text-align: left;
  min-height: 44px;
}

.mobile-nav-group-btn:hover {
  background-color: var(--color-bg-gray);
}

.mobile-nav-group-btn.is-active-parent {
  color: var(--color-brand-green);
  font-weight: var(--weight-semibold);
}

.mobile-nav-group-btn svg,
.mobile-nav-group-btn i,
.mobile-nav-group-btn .lucide {
  transition: transform 0.3s var(--ease-smooth);
  flex-shrink: 0;
}

.mobile-nav-group.open .mobile-nav-group-btn svg,
.mobile-nav-group.open .mobile-nav-group-btn i,
.mobile-nav-group.open .mobile-nav-group-btn .lucide {
  transform: rotate(180deg);
}

.mobile-nav-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth);
}

.mobile-nav-group.open .mobile-nav-submenu {
  max-height: 800px;
}

.mobile-nav-submenu a {
  display: block;
  padding: 0.5rem 1rem 0.5rem 2rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border-radius: 0.375rem;
  transition: background-color 0.15s ease, color 0.15s ease;
  min-height: 36px;
  line-height: 2;
}

.mobile-nav-submenu a:hover {
  background-color: var(--color-bg-gray);
  color: #111827;
}

.mobile-nav-submenu a.is-active-sub {
  color: var(--color-brand-green);
  font-weight: var(--weight-semibold);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-submenu {
    transition: none;
  }

  .mobile-nav-group-btn svg,
  .mobile-nav-group-btn i,
  .mobile-nav-group-btn .lucide {
    transition: none;
  }
}

/* --- Filter Tabs --- */
.filter-tab-btn[aria-selected="true"] {
  background-color: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #fff;
}

/* --- Listing Filter Tabs --- */
.listing-filter-btn[aria-selected="true"] {
  background-color: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #fff;
}

/* --- Reveal Animations --- */
.fm-hidden {
  opacity: 0;
  transform: translateY(50px);
}

.fm-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--duration-slower) ease-out,
    transform var(--duration-slower) ease-out;
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Service Image Composition Motion --- */
@keyframes si-float {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--si-rot, 0deg)) scale(1);
  }

  25% {
    transform: translate3d(var(--si-x, 0px), -6px, 0) rotate(var(--si-rot, 0deg)) scale(1.008);
  }

  50% {
    transform: translate3d(0, 0, 0) rotate(var(--si-rot, 0deg)) scale(1);
  }

  75% {
    transform: translate3d(calc(var(--si-x, 0px) * -0.6), 3px, 0) rotate(var(--si-rot, 0deg)) scale(0.995);
  }
}

@keyframes si-shadow {

  0%,
  100% {
    box-shadow: 0 10px 30px -6px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  }

  50% {
    box-shadow: 0 16px 40px -4px rgba(0, 0, 0, 0.11), 0 6px 16px -1px rgba(0, 0, 0, 0.06);
  }
}

@keyframes si-slide-from-right {
  0% {
    opacity: 0;
    transform: translateX(120px);
  }

  45% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes si-slide-from-left {
  0% {
    opacity: 0;
    transform: translateX(-120px);
  }

  45% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.si-float {
  animation: si-float var(--si-dur, 12s) cubic-bezier(.45, .05, .55, .95) infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.si-shadow {
  animation: si-shadow var(--si-sh-dur, 10s) ease-in-out infinite;
  will-change: box-shadow;
  transition: transform 400ms cubic-bezier(.22, .61, .36, 1), box-shadow 400ms cubic-bezier(.22, .61, .36, 1);
}

.si-shadow:hover {
  transform: scale(1.015);
  box-shadow: 0 20px 48px -4px rgba(0, 0, 0, 0.14), 0 8px 20px -2px rgba(0, 0, 0, 0.07);
}

.si-shadow.si-slide-from-right,
.si-shadow.si-slide-from-left {
  animation: si-shadow var(--si-sh-dur, 10s) ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .si-float {
    animation: none !important;
    transform: none !important;
  }

  .si-shadow {
    animation: none !important;
  }

  .si-shadow:hover {
    transform: scale(1.01);
  }

  .si-shadow.si-slide-from-right,
  .si-shadow.si-slide-from-left {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.reveal-fade {
  opacity: 0;
}

/* --- Related Content Highlight --- */
.related-highlight {
  box-shadow: 0 0 0 2px var(--color-brand-green),
    0 8px 20px -6px rgba(0, 77, 52, 0.35);
}

/* --- Touch Action --- */
@media (hover: none) and (pointer: coarse) {
  * {
    touch-action: manipulation;
  }
}

/* --- WhatsApp Widget --- */
.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
}

.wa-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
  transition: transform var(--duration-normal) var(--ease-smooth),
    box-shadow var(--duration-normal) var(--ease-smooth);
  position: relative;
}

.wa-launcher:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37, 211, 102, .55);
}

.wa-launcher .wa-icon {
  width: 26px;
  height: 26px;
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wa-pulse-ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse-ring {
  0% {
    transform: scale(1);
    opacity: .6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.wa-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  pointer-events: none;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.wa-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-header {
  background: #075E54;
  color: #fff;
  padding: 20px 20px 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.wa-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  opacity: .7;
  margin-bottom: 2px;
}

.wa-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.wa-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.wa-close:hover {
  background: rgba(255, 255, 255, .15);
}

.wa-intro {
  padding: 16px 20px 12px;
  font-size: 13px;
  color: #667;
  line-height: 1.5;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}

.wa-options {
  padding: 8px 12px;
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background var(--duration-fast) var(--ease-smooth);
}

.wa-option:hover {
  background: #f0faf4;
}

.wa-option-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e8f5ee;
  color: #075E54;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-option-content {
  flex: 1;
  min-width: 0;
}

.wa-option-content strong {
  display: block;
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 600;
}

.wa-option-content span {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.wa-arrow {
  font-size: 16px;
  color: #25D366;
  font-weight: 600;
  flex-shrink: 0;
}

.wa-notice {
  padding: 12px 20px;
  background: #f8f9fa;
  border-top: 1px solid #f0f0f0;
  font-size: 11px;
  color: #888;
  text-align: center;
}

.wa-notice strong {
  display: block;
  color: #555;
  font-size: 10px;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

@media (max-width: 400px) {
  .wa-popup {
    width: calc(100vw - 2rem);
    right: -0.5rem;
  }
}

/* --- Marquee: now driven by JS requestAnimationFrame (see index.html) --- */

/* --- Marquee Float Animation --- */
@keyframes float {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 0.1;
  }

  50% {
    transform: translateY(-53%) scale(1.03);
    opacity: 0.2;
  }

  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.1;
  }
}

.animate-floating {
  animation: float 10s ease-in-out infinite;
}

@keyframes particleSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.06);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg) scale(1);
  }
}

.animate-particle-spin {
  animation: particleSpin 20s linear infinite;
  will-change: transform;
}

/* --- Insight Card Animations --- */
.insight-card {
  transition: transform var(--duration-normal) var(--ease-elastic),
    box-shadow var(--duration-normal) var(--ease-elastic),
    border-color var(--duration-normal) var(--ease-smooth);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.insight-card:hover .card-image {
  transform: scale(1.05);
}

.insight-card:hover .card-title {
  color: var(--color-brand-green);
}

.card-image {
  transition: transform var(--duration-slow) var(--ease-elastic);
}

.card-title {
  transition: color var(--duration-normal) var(--ease-smooth);
}

.featured-card {
  transition: transform var(--duration-normal) var(--ease-elastic),
    box-shadow var(--duration-normal) var(--ease-smooth);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.featured-card:hover .featured-image {
  transform: scale(1.05);
}

.featured-card:hover .featured-content-bg {
  background-color: #004D34 !important;
}

.featured-card:hover .featured-badge {
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

.featured-card:hover .featured-title {
  color: #ffffff !important;
}

.featured-card:hover .featured-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

.featured-card:hover .featured-meta-text {
  color: rgba(255, 255, 255, 0.7) !important;
}

.featured-card:hover .featured-author-name {
  color: #ffffff !important;
}

.featured-card:hover .featured-divider {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.featured-card:hover .featured-cta {
  color: #ffffff !important;
}

.featured-card:hover .featured-cta svg,
.featured-card:hover .featured-cta i,
.featured-card:hover .featured-cta [data-lucide] {
  transform: translateX(6px) !important;
}

.featured-cta svg,
.featured-cta i,
.featured-cta [data-lucide] {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.featured-image {
  transition: transform var(--duration-slower) var(--ease-elastic);
}

.insight-featured-card {
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.insight-featured-card:hover {
  transform: translateY(-4px);
}

.insight-featured-card:hover .insight-featured-img {
  transform: scale(1.05);
}

.insight-featured-img {
  transition: transform var(--duration-slower) var(--ease-smooth);
}

.insight-side-card {
  transition: transform var(--duration-normal) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth);
}

.insight-side-card:hover {
  transform: translateX(6px);
  border-color: var(--color-brand-green);
}

.insight-side-card:hover .insight-side-img {
  transform: scale(1.08);
}

.insight-side-img {
  transition: transform var(--duration-slow) var(--ease-smooth);
}

/* --- Expert Card Animations --- */
.expert-item {
  transition: transform var(--duration-normal) var(--ease-smooth);
}

.expert-item:hover {
  transform: translateY(-8px);
}

.expert-item:hover .expert-name {
  color: var(--color-brand-green);
}

.expert-item:hover .expert-social {
  opacity: 1;
  transform: translateY(0);
}

.expert-social {
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.experts-row {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.experts-row::-webkit-scrollbar {
  display: none;
}

@media (max-width: 640px) {
  .experts-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 1rem;
  }

  .expert-item {
    flex: 0 0 260px;
    scroll-snap-align: center;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .experts-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1025px) {
  .experts-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }

  .expert-item {
    flex: 0 0 calc(25% - 2.25rem);
  }
}

/* --- Listing Card Animation --- */
.listing-card {
  transition: all var(--duration-normal) var(--ease-elastic);
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* --- Search Input --- */
.search-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 77, 52, 0.1);
  border-color: var(--color-brand-green);
}

.search-clear {
  display: none;
}

.search-input:not(:placeholder-shown)~.search-clear {
  display: flex;
}

/* --- Newsletter Block --- */
.newsletter-block {
  transition: all var(--duration-normal) var(--ease-smooth);
}

.newsletter-block:focus-within {
  box-shadow: 0 0 0 4px rgba(0, 77, 52, 0.08);
}

/* --- Empty State --- */
.empty-state {
  opacity: 0;
  transform: translateY(8px);
  animation: emptyFadeIn var(--duration-slow) var(--ease-smooth) forwards;
}

@keyframes emptyFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Modal --- */
#loginModal.active {
  opacity: 1;
  pointer-events: auto;
}

#loginModal.active .modal-body {
  transform: scale(1);
}

/* ==========================================================================
   GLOBAL UI/UX & TYPOGRAPHY ENHANCEMENTS (Modern Elegant Corporate)
   ========================================================================== */

/* --- Base Typography Overrides --- */
body {
  font-size: 15px;
  line-height: 1.8;
}

p {
  font-size: 15px;
  line-height: 1.8;
}

.text-base {
  font-size: 15px;
  line-height: 1.8;
}

.text-sm {
  font-size: 14.5px;
  line-height: 1.6;
}

.text-lg {
  font-size: 19px;
  line-height: 1.7;
}

/* --- Premium Glassmorphism & Borders --- */

.nav-dropdown-menu {
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(0, 77, 52, 0.08);
  transition: opacity var(--duration-fast) var(--ease-smooth),
    visibility var(--duration-fast) var(--ease-smooth),
    border-color var(--duration-normal) var(--ease-smooth);
}

.nav-dropdown-menu:hover {
  border-color: rgba(0, 77, 52, 0.25);
}

#lang-selector,
#lang-selector-mobile {
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  border: 1px solid rgba(0, 77, 52, 0.12);
  transition: border-color var(--duration-normal) var(--ease-smooth);
}

#lang-selector:hover,
#lang-selector-mobile:hover {
  border-color: var(--color-brand-green);
}

/* Glassmorphic Cards & Hover Borders */
.insight-card,
.featured-card,
.listing-card,
.insight-featured-card,
.insight-side-card {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(0, 77, 52, 0.06);
  transition: transform var(--duration-normal) var(--ease-elastic),
    box-shadow var(--duration-normal) var(--ease-elastic),
    border-color var(--duration-normal) var(--ease-smooth);
}

.insight-card:hover,
.featured-card:hover,
.listing-card:hover,
.insight-featured-card:hover,
.insight-side-card:hover {
  border-color: rgba(0, 77, 52, 0.35);
  box-shadow: 0 12px 30px -10px rgba(0, 77, 52, 0.15);
}
/* --- Hamburger Menu Desktop Hide Fallback --- */
@media (min-width: 768px) {

  button[aria-label="Open menu"],
  button[data-i18n-aria-label="aria.open_menu"] {
    display: none !important;
  }
}

/* --- Print Styles --- */
@media print {

  *,
  *::before,
  *::after {
    background: transparent;
    color: #000;
    box-shadow: none;
    text-shadow: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    page-break-after: avoid;
  }

  img {
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  #navbar-sticky,
  .wa-widget,
  .skip-link {
    display: none;
  }

  @page {
    margin: 2cm;
  }
}

/* ===== PROCESS LINE FOR WORKFLOW COMPONENT ===== */
.process-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

@media (max-width: 768px) {
  .process-line {
    display: none;
  }
}

/* ===== FAQ ACCORDION COMPONENT ===== */
.faq-item {
  transition: border-color var(--duration-normal) var(--ease-smooth), box-shadow var(--duration-normal) var(--ease-smooth);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(0.16, 1, 0.3, 1), padding 350ms cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: 0;
  padding-bottom: 0;
}

.faq-item.open .faq-content {
  max-height: 600px;
  padding-bottom: 1.5rem;
}

.faq-icon {
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-item.open {
  border-color: rgba(0, 77, 52, 0.3);
  box-shadow: 0 4px 16px rgba(0, 77, 52, 0.06);
}

/* ============================================================================
   BCG / MCKINSEY ENTERPRISE CTA ARROW RE-ARRANGEMENT LOOPING STANDARD
   Normal: | Teks -> |
   Hover:  | -> Teks |
   ============================================================================ */

/* CTA Container */
a:has(.cta-arrow),
button:has(.cta-arrow),
a:has(.cta-text),
button:has(.cta-text),
.featured-cta,
.latest-cta,
.group\/cta,
.group\/btn,
.group\/navbtn {
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

/* 1. Text Label Container - Absolute Anchor for Left Arrow */
.cta-text,
a:has(.cta-arrow) > span,
button:has(.cta-arrow) > span {
  position: relative !important;
  display: inline-block !important;
  transform: translateX(0) !important;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), color 300ms ease !important;
}

/* 2. Left Arrow (::before) - Vertically Centered to Text Line-Height */
.cta-text::before,
a:has(.cta-arrow) > span::before,
button:has(.cta-arrow) > span::before,
a:has(.cta-arrow)::before,
button:has(.cta-arrow)::before {
  content: '' !important;
  position: absolute !important;
  left: -20px !important;
  top: 50% !important;
  width: 14px !important;
  height: 14px !important;
  background-color: currentColor !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") no-repeat center / contain !important;
  opacity: 0 !important;
  transform: translateY(-50%) translateX(-16px) !important;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), opacity 350ms ease !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* 3. Right Arrow (.cta-arrow or svg/i) */
.cta-arrow,
a:has(.cta-arrow) > i[data-lucide*="arrow"],
a:has(.cta-arrow) > svg[data-lucide*="arrow"],
button:has(.cta-arrow) > i[data-lucide*="arrow"],
button:has(.cta-arrow) > svg[data-lucide*="arrow"] {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease !important;
}

/* ============================================================================
   HOVER STATE: | -> Teks |
   ============================================================================ */

/* Step 2 & 3: Left Arrow slides in and stays 100% vertically centered */
a:hover .cta-text::before,
button:hover .cta-text::before,
a:hover:has(.cta-arrow) > span::before,
button:hover:has(.cta-arrow) > span::before,
a:hover::before,
button:hover::before,
.featured-card:hover .cta-text::before,
.insight-card:hover .cta-text::before,
.latest-card:hover .cta-text::before,
.featured-cta:hover .cta-text::before,
.latest-cta:hover .cta-text::before,
.group\/cta:hover .cta-text::before,
.group\/btn:hover .cta-text::before,
.group\/navbtn:hover .cta-text::before {
  opacity: 1 !important;
  transform: translateY(-50%) translateX(0) !important;
}

/* Step 2 & 3: Text label shifts right to sit after the incoming left arrow */
a:hover .cta-text,
button:hover .cta-text,
.featured-card:hover .cta-text,
.insight-card:hover .cta-text,
.latest-card:hover .cta-text,
.featured-cta:hover .cta-text,
.latest-cta:hover .cta-text,
.group\/cta:hover .cta-text,
.group\/btn:hover .cta-text,
.group\/navbtn:hover .cta-text,
a:hover:has(.cta-arrow) > span,
button:hover:has(.cta-arrow) > span {
  transform: translateX(20px) !important;
}

/* Step 2 & 3: Right Arrow slides out right edge and fades out */
a:hover .cta-arrow,
button:hover .cta-arrow,
.featured-card:hover .cta-arrow,
.insight-card:hover .cta-arrow,
.latest-card:hover .cta-arrow,
.featured-cta:hover .cta-arrow,
.latest-cta:hover .cta-arrow,
.group\/cta:hover .cta-arrow,
.group\/btn:hover .cta-arrow,
.group\/navbtn:hover .cta-arrow,
a:hover:has(.cta-arrow) > i[data-lucide*="arrow"],
a:hover:has(.cta-arrow) > svg[data-lucide*="arrow"],
button:hover:has(.cta-arrow) > i[data-lucide*="arrow"],
button:hover:has(.cta-arrow) > svg[data-lucide*="arrow"] {
  opacity: 0 !important;
  transform: translateX(24px) !important;
}

/* ===== MOBILE MENU FULLSCREEN FIX ===== */
#mobileMenu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  height: 100vh !important;
  min-height: -webkit-fill-available !important;
  max-height: 100dvh !important;
  z-index: 999999 !important;
  background-color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

#mobileMenu:not(.hidden) {
  display: flex !important;
  flex-direction: column !important;
}

#mobileMenu nav {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding-bottom: 3rem !important;
}