/* ==========================================================================
   PT PANCA LINGGA PERKASA - MAIN STYLESHEET
   Aesthetics: Humanist Engineering, Warm Authority, Modern Precision & Whitespace
   ========================================================================== */

:root {
  /* Primary Colors (Navy & Slate Blue) */
  --color-primary: #0f2744;
  --color-primary-light: #1e3e62;
  --color-primary-dark: #071526;
  
  /* Accent Warmth (Warm Amber / Gold - Humanist & Craftsmanship) */
  --color-amber: #d97706;
  --color-amber-light: #fef3c7;
  --color-amber-hover: #b45309;

  /* Accent Technology / Water (Emerald & Teal - GreenPrima & Ecology) */
  --color-emerald: #059669;
  --color-emerald-light: #d1fae5;
  --color-teal: #0d9488;

  /* Neutral Surface Colors (Abundant Whitespace & Smooth Tones) */
  --bg-body: #ffffff;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #091422;
  --bg-dark-card: #112236;

  /* Text Colors */
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-color: #e2e8f0;
  --border-dark: #1e2e42;
  --shadow-sm: 0 2px 4px rgba(15, 39, 68, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 39, 68, 0.08), 0 8px 10px -6px rgba(15, 39, 68, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 39, 68, 0.12), 0 10px 15px -5px rgba(15, 39, 68, 0.06);
  --shadow-glow: 0 0 30px rgba(217, 119, 6, 0.25);

  /* Layout Variables */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Dark Theme Overrides ([data-theme="dark"])
   High Contrast, Crisp Typography, Premium Authority Aesthetics
   ========================================================================== */
[data-theme="dark"] {
  --color-primary: #60a5fa;
  --color-primary-light: #93c5fd;
  --color-primary-dark: #3b82f6;
  
  --bg-body: #070d19;
  --bg-light: #0d1728;
  --bg-card: #13223b;
  --bg-dark: #050a12;
  --bg-dark-card: #13223b;

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border-color: #223758;
  --border-dark: #2d4974;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 35px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-dark {
  background-color: var(--bg-dark);
}

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

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

.text-center {
  text-align: center;
}

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

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

.text-blue {
  color: #3b82f6;
}

/* Icons */
.icon-xs {
  width: 15px;
  height: 15px;
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

.icon-md {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

/* Section Headings */
.section-head {
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background-color: var(--color-amber-light);
  color: var(--color-amber-hover);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-tag.green-tag {
  background-color: var(--color-emerald-light);
  color: var(--color-emerald);
}

.section-tag.tag-dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Modern Dual-Pill Mode Switcher (Siang / Malam)
   ========================================================================== */
.theme-switch-container {
  display: inline-flex;
  align-items: center;
  margin-right: 0.75rem;
}

.theme-mode-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 3px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  user-select: none;
}

.theme-mode-toggle:hover {
  border-color: var(--color-amber);
}

.mode-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
  color: var(--text-muted);
}

.mode-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: var(--radius-full);
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
  z-index: 1;
}

/* Light Mode Active State */
:root:not([data-theme="dark"]) .light-pill {
  color: #b45309;
}

:root:not([data-theme="dark"]) .light-pill i {
  color: #f59e0b;
}

:root:not([data-theme="dark"]) .mode-slider {
  transform: translateX(0);
  background: #ffffff;
  border: 1px solid #fde68a;
}

/* Dark Mode Active State */
[data-theme="dark"] .dark-pill {
  color: #ffffff;
}

[data-theme="dark"] .dark-pill i {
  color: #60a5fa;
}

[data-theme="dark"] .mode-slider {
  transform: translateX(100%);
  background: #1e3a68;
  border: 1px solid #3b82f6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.mobile-theme-container {
  margin: 0 auto 1rem auto;
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--color-amber);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--color-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Announcement Bar & Header
   ========================================================================== */
.top-bar {
  background-color: var(--color-primary-dark);
  color: #cbd5e1;
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-info .divider {
  color: rgba(255, 255, 255, 0.2);
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-contact a:hover {
  color: var(--color-amber);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 1.5rem;
  transition: var(--transition);
}

.site-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.site-logo-img:hover {
  transform: scale(1.02);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-amber);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-amber);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.5rem;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #f0f6fc 0%, #ffffff 100%);
  padding: 5rem 0 4.5rem 0;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-emerald);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--color-emerald);
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 1.4rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-subtitle strong {
  color: var(--color-primary);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
}

.visual-card-wrapper {
  position: relative;
}

.main-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #ffffff;
}

.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.visual-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--border-color);
  animation: float 4s ease-in-out infinite;
}

.visual-floating-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.visual-floating-badge p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.badge-top {
  top: 20px;
  left: -20px;
}

.badge-bottom {
  bottom: 25px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Partners & Client Logos Showcase
   ========================================================================== */
.partners-section {
  padding: 3.5rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-header {
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
}

.partners-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--color-amber-hover);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.partners-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

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

.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1.2rem 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.marquee-track .client-logo-card {
  width: 210px;
  flex-shrink: 0;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.marquee-track .client-logo-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--color-amber);
}

.client-logo-img-box {
  height: 75px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0.4rem;
}

.client-logo-img {
  max-height: 68px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.08));
  transition: var(--transition);
}

.client-logo-card:hover .client-logo-img {
  transform: scale(1.08);
}

.client-logo-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  width: 100%;
  border-top: 1px dashed var(--border-color);
  padding-top: 0.75rem;
}

.client-logo-info strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.client-logo-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Additional Delightful Micro-Animations */
.badge-dot {
  position: relative;
}

.badge-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color-emerald);
  opacity: 0.6;
  animation: pulseBeacon 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes pulseBeacon {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

.service-card:hover .service-icon-box {
  transform: scale(1.12) rotate(6deg);
  background-color: var(--color-amber) !important;
  color: #ffffff !important;
}

.service-icon-box {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}

.stag, .w-item {
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.stag:hover, .w-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-amber) !important;
}

.floating-wa-btn {
  animation: waWiggle 5s ease-in-out infinite;
}

@keyframes waWiggle {
  0%, 85%, 100% { transform: rotate(0deg) scale(1); }
  88% { transform: rotate(-12deg) scale(1.08); }
  92% { transform: rotate(12deg) scale(1.08); }
  96% { transform: rotate(-6deg) scale(1.04); }
}

/* Dark Mode Overrides for Client Logos */
[data-theme="dark"] .partners-section {
  background-color: #070d19 !important;
  border-color: #1a2c47 !important;
}

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

[data-theme="dark"] .partners-desc {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .marquee-track .client-logo-card {
  background-color: #13223b !important;
  border-color: #223758 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .marquee-track .client-logo-card:hover {
  border-color: #60a5fa !important;
  box-shadow: 0 6px 20px rgba(96, 165, 250, 0.25) !important;
}

[data-theme="dark"] .client-logo-img-box {
  background-color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

[data-theme="dark"] .client-logo-info {
  border-top-color: #223758 !important;
}

[data-theme="dark"] .client-logo-info strong {
  color: #ffffff !important;
}

[data-theme="dark"] .client-logo-info span {
  color: #94a3b8 !important;
}



/* ==========================================================================
   About Us (Storytelling & Humanist Approach)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.story-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.story-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1.2rem;
}

.vision-mission-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.vm-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.vm-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-amber-light);
  color: var(--color-amber-hover);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vm-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.highlight-quote {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-amber);
  font-style: italic;
  margin-bottom: 0.35rem;
}

.vm-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 !important;
}

.strategy-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.stag {
  font-size: 0.9rem;
  color: var(--text-main);
  background: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.human-highlight-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.img-frame {
  position: relative;
  height: 280px;
}

.human-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-caption-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(15, 39, 68, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.human-content {
  padding: 1.8rem;
}

.human-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.human-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.workshop-badges {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.w-item {
  font-size: 0.875rem;
  color: var(--text-main);
  background-color: var(--bg-light);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-amber);
}

.human-mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.mini-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-light);
}

.thumb-img {
  width: 100%;
  height: 95px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mini-thumb:hover .thumb-img {
  transform: scale(1.08);
}

.mini-thumb span {
  display: block;
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 0.35rem 0.5rem;
  text-align: center;
  background-color: #ffffff;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

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

.service-card.featured {
  border: 2px solid var(--color-amber) !important;
  background: linear-gradient(180deg, #fffcf6 0%, #ffffff 100%);
  position: relative;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.12);
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 4;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  background-color: #f1f5f9;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background-color: var(--color-primary);
  color: #ffffff;
}

.service-icon {
  width: 28px;
  height: 28px;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  border-top: 1px dashed var(--border-color);
  padding-top: 1.2rem;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li i {
  color: var(--color-emerald);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-amber-hover);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover {
  color: var(--color-amber);
  transform: translateX(4px);
}

/* ==========================================================================
   Grand Brand Switcher & Product Catalog
   ========================================================================== */
.brand-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.brand-switcher-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

.brand-switcher {
  display: inline-flex;
  background-color: var(--bg-light);
  padding: 0.4rem;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  gap: 0.6rem;
  max-width: 100%;
}

.brand-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-muted);
  text-align: left;
}

.brand-flag {
  font-size: 1.7rem;
  line-height: 1;
}

.brand-tab-text {
  display: flex;
  flex-direction: column;
}

.brand-tab-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.brand-tab-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.brand-tab:hover {
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.6);
}

.brand-tab.active {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 39, 68, 0.25);
}

.brand-tab.active .brand-tab-title {
  color: #ffffff;
}

.brand-tab.active .brand-tab-sub {
  color: #93c5fd;
}

/* Brand Info Bar */
.brand-info-bar {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.6rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
  .brand-info-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

.brand-info-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}

.brand-info-left p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  max-width: 620px;
}

.badge-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--color-emerald);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* Product Filters */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.filter-btn {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  background-color: #ffffff;
  color: var(--color-amber-hover);
  border-color: var(--color-amber);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff;
  border-color: #d97706;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .brand-switcher {
    flex-direction: column;
    width: 100%;
  }

  .brand-tab {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-info-bar {
    padding: 1.2rem 1rem;
    gap: 1.2rem;
  }

  .product-filters {
    width: 100%;
    gap: 0.5rem;
  }

  .filter-btn {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-emerald);
}

.product-img-wrap {
  position: relative;
  height: 230px;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  overflow: hidden;
}

.product-img {
  max-height: 190px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(15, 39, 68, 0.9);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.product-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 0.8rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  font-size: 0.825rem;
  color: var(--text-main);
}

.product-specs span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-specs i {
  color: var(--color-emerald);
}

.distributor-callout {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #064e3b 0%, #0f766e 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-lg);
}

.distributor-callout-text {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.callout-icon {
  width: 48px;
  height: 48px;
  color: #6ee7b7;
  flex-shrink: 0;
}

.distributor-callout-text h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.distributor-callout-text p {
  font-size: 0.95rem;
  color: #a7f3d0;
  margin: 0;
}

/* ==========================================================================
   Portfolio / Jejak Langkah Section
   ========================================================================== */
.portfolio-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.port-filter-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.port-filter-btn:hover, .port-filter-btn.active {
  background-color: var(--color-amber);
  color: #ffffff;
  border-color: var(--color-amber);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-amber);
  box-shadow: var(--shadow-md);
}

.portfolio-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

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

.portfolio-card:hover .portfolio-img {
  transform: scale(1.08);
}

.port-client-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(15, 39, 68, 0.92);
  backdrop-filter: blur(6px);
  color: #fef08a;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.portfolio-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.portfolio-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.port-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

[data-theme="dark"] .port-title {
  color: #ffffff;
}

.port-story {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.port-highlight-pill {
  font-size: 0.825rem;
  color: var(--color-emerald);
  background-color: var(--color-emerald-light);
  border: 1px solid rgba(5, 150, 105, 0.25);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

[data-theme="dark"] .port-highlight-pill {
  background-color: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.why-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.why-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.why-icon-wrap.icon-amber { background-color: #fef3c7; color: var(--color-amber-hover); }
.why-icon-wrap.icon-emerald { background-color: #d1fae5; color: var(--color-emerald); }
.why-icon-wrap.icon-blue { background-color: #dbeafe; color: #2563eb; }
.why-icon-wrap.icon-purple { background-color: #ede9fe; color: #7c3aed; }
.why-icon-wrap.icon-teal { background-color: #ccfbf1; color: var(--color-teal); }
.why-icon-wrap.icon-rose { background-color: #ffe4e6; color: #e11d48; }

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Legality & Transparency Section
   ========================================================================== */
.legality-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.legality-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.legality-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.legal-badge-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.legal-icon {
  color: var(--color-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.legal-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.auth-certificate-card {
  background: linear-gradient(135deg, #0f2744 0%, #1e3e62 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.cert-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.2rem;
}

.cert-icon {
  width: 44px;
  height: 44px;
  color: #fbbf24;
}

.cert-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #93c5fd;
  display: block;
}

.cert-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.cert-body p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cert-tags span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
}

.cert-footer {
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}

/* ==========================================================================
   Contact & Consultation Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--text-main);
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-amber);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quick-callout-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #fcd34d;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.callout-icon-circle {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: var(--color-amber-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.quick-callout-box h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #78350f;
  margin-bottom: 0.2rem;
}

.quick-callout-box p {
  font-size: 0.85rem;
  color: #92400e;
  margin-bottom: 0.4rem;
}

.contact-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #78350f;
  letter-spacing: 0.5px;
}

.contact-number:hover {
  color: #000000;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loc-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.loc-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.loc-header strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.badge-loc {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.loc-address {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.email-link {
  color: var(--color-primary-light);
  font-weight: 700;
  text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-primary-dark);
  color: #94a3b8;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 2.7fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-logo-img {
  height: 58px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
}

.footer-motto {
  color: #fbbf24;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-col a:hover {
  color: var(--color-amber);
  padding-left: 4px;
}

.footer-contact-item {
  font-size: 0.875rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-craft {
  color: #94a3b8;
}

/* ==========================================================================
   Interactive Product Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 39, 68, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background-color: #fee2e2;
  color: #ef4444;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #ecfdf5;
  color: var(--color-emerald);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.modal-subheading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.modal-spec-grid {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.spec-cell {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 0.4rem;
}

.spec-cell:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-k {
  font-weight: 600;
  color: var(--text-muted);
}

.spec-v {
  font-weight: 700;
  color: var(--color-primary);
  text-align: right;
}

/* Floating WhatsApp Widget */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.wa-icon {
  width: 32px;
  height: 32px;
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background-color: #0f2744;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  right: 78px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-container, .about-grid, .legality-wrapper, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.85rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .mobile-toggle {
    display: block;
  }
  .hide-mobile {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: 100%;
  }
  .nav-cta-mobile {
    display: block;
    margin-top: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .distributor-callout {
    flex-direction: column;
    text-align: center;
  }
  .distributor-callout-text {
    flex-direction: column;
  }
}

/* ==========================================================================
   Comprehensive Dark Mode High-Contrast Overrides
   ========================================================================== */

/* 1. Halaman Awal (Top Bar, Header, Logo, Hero Section, & Stats) */
[data-theme="dark"] .top-bar {
  background-color: #040810 !important;
  border-bottom: 1px solid #1a2c47 !important;
  color: #94a3b8 !important;
}

[data-theme="dark"] .top-bar a {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .top-bar a:hover {
  color: #60a5fa !important;
}

[data-theme="dark"] .site-header {
  background-color: rgba(7, 13, 25, 0.96) !important;
  border-bottom-color: #223758 !important;
}

[data-theme="dark"] .brand-logo {
  background-color: rgba(255, 255, 255, 0.96);
  padding: 5px 12px;
  border-radius: 8px;
  margin-right: 1.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(180deg, #070d19 0%, #0d1728 100%) !important;
}

[data-theme="dark"] .hero-badge {
  background-color: #13223b !important;
  color: #60a5fa !important;
  border-color: #223758 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

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

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

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

[data-theme="dark"] .hero-stats {
  border-top-color: #223758 !important;
}

[data-theme="dark"] .stat-number {
  color: #ffffff !important;
}

[data-theme="dark"] .stat-label {
  color: #94a3b8 !important;
}

/* 2. Global Headings, Body Text, and Elements */
[data-theme="dark"] .section-title,
[data-theme="dark"] .service-title,
[data-theme="dark"] .product-name,
[data-theme="dark"] .why-card h3,
[data-theme="dark"] .port-title,
[data-theme="dark"] .about-text h3,
[data-theme="dark"] .pillar-card h4,
[data-theme="dark"] .legality-card h4,
[data-theme="dark"] .human-content h4,
[data-theme="dark"] .vm-item h4,
[data-theme="dark"] .contact-card h4,
[data-theme="dark"] .modal-title,
[data-theme="dark"] .brand-tab-title {
  color: #ffffff !important;
}

[data-theme="dark"] .section-desc,
[data-theme="dark"] .service-desc,
[data-theme="dark"] .product-desc,
[data-theme="dark"] .why-desc,
[data-theme="dark"] .port-story,
[data-theme="dark"] .pillar-desc,
[data-theme="dark"] .human-content p,
[data-theme="dark"] .vm-text,
[data-theme="dark"] .brand-info-left p,
[data-theme="dark"] .brand-tab-sub {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .service-features li,
[data-theme="dark"] .product-specs span,
[data-theme="dark"] .spec-list li,
[data-theme="dark"] .portfolio-meta,
[data-theme="dark"] .why-features li {
  color: #e2e8f0 !important;
}

[data-theme="dark"] .stag,
[data-theme="dark"] .w-item,
[data-theme="dark"] .mini-thumb span {
  background-color: #162642 !important;
  color: #f1f5f9 !important;
  border-color: #2b436a !important;
}

[data-theme="dark"] .service-icon-box {
  background-color: #1a2d4e !important;
  color: #60a5fa !important;
}

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

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: #60a5fa;
}

[data-theme="dark"] .btn-secondary {
  background-color: #13223b;
  color: #ffffff;
  border-color: #223758;
}

[data-theme="dark"] .btn-secondary:hover {
  background-color: #1a2d4e;
  border-color: #60a5fa;
}

[data-theme="dark"] .btn-outline {
  border-color: #60a5fa;
  color: #60a5fa;
}

[data-theme="dark"] .btn-outline:hover {
  background-color: #60a5fa;
  color: #070d19;
}

[data-theme="dark"] .human-highlight-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .portfolio-card,
[data-theme="dark"] .brand-info-bar {
  background-color: #13223b !important;
  border-color: #223758 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .service-card.featured {
  background: linear-gradient(180deg, #182b49 0%, #101d32 100%) !important;
  border: 2px solid #f59e0b !important;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.25) !important;
}

[data-theme="dark"] .popular-badge {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #0b1320 !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.5) !important;
}

[data-theme="dark"] .product-img-wrap {
  background-color: #0d1728 !important;
  border-bottom-color: #223758 !important;
}

/* 3. Halaman Akhir (Contact Form, Callout Box, Location Cards, & Footer) */
[data-theme="dark"] .contact-section {
  background-color: #070d19 !important;
}

[data-theme="dark"] .contact-form-card {
  background-color: #13223b !important;
  border-color: #223758 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
}

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

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

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

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
  background-color: #0d1728 !important;
  color: #ffffff !important;
  border-color: #223758 !important;
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
  border-color: #60a5fa !important;
  background-color: #0d1728 !important;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2) !important;
}

[data-theme="dark"] .quick-callout-box {
  background: linear-gradient(135deg, #1e3a68 0%, #0f2744 100%) !important;
  border-color: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .quick-callout-box h4 {
  color: #93c5fd !important;
}

[data-theme="dark"] .quick-callout-box p {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .quick-callout-box .contact-number {
  color: #fbbf24 !important;
}

[data-theme="dark"] .callout-icon-circle {
  background-color: #13223b !important;
  color: #fbbf24 !important;
  border: 1px solid #2563eb !important;
}

[data-theme="dark"] .loc-card {
  background-color: #13223b !important;
  border-color: #223758 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .loc-header strong {
  color: #ffffff !important;
}

[data-theme="dark"] .loc-address {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .site-footer {
  background-color: #040810 !important;
  border-top: 1px solid #1a2c47 !important;
  color: #94a3b8 !important;
}

[data-theme="dark"] .footer-heading {
  color: #ffffff !important;
}

[data-theme="dark"] .footer-about-text {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .footer-col a {
  color: #94a3b8 !important;
}

[data-theme="dark"] .footer-col a:hover {
  color: #60a5fa !important;
}

[data-theme="dark"] .footer-bottom {
  border-top-color: #1a2c47 !important;
  color: #64748b !important;
}

/* 4. Product Modal in Dark Mode */
[data-theme="dark"] .modal-card {
  background-color: #13223b !important;
  border: 1px solid #223758 !important;
}

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

[data-theme="dark"] .modal-description {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .modal-subheading {
  color: #93c5fd !important;
}

[data-theme="dark"] .modal-spec-grid {
  background-color: #0d1728 !important;
  border-color: #223758 !important;
}

[data-theme="dark"] .spec-cell {
  border-bottom-color: #223758 !important;
}

[data-theme="dark"] .spec-k {
  color: #94a3b8 !important;
}

[data-theme="dark"] .spec-v {
  color: #ffffff !important;
}

[data-theme="dark"] .modal-close {
  background-color: #1a2d4e;
  color: #cbd5e1;
  border-color: #223758;
}

[data-theme="dark"] .modal-close:hover {
  background-color: #2d4b7c;
  color: #ffffff;
}

/* ==========================================================================
   Interactive Animation Suite (Scroll Reveal, Hover Shimmers, Parallax)
   ========================================================================== */

/* 1. Scroll Reveal Entrance */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* 2. Interactive Card Hover Shimmer & Lift */
.service-card,
.product-card,
.portfolio-card,
.why-card,
.pillar-card,
.client-logo-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.product-card::before,
.portfolio-card::before,
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card:hover::before,
.product-card:hover::before,
.portfolio-card:hover::before,
.why-card:hover::before {
  left: 100%;
}

.service-card:hover,
.product-card:hover,
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(15, 39, 68, 0.12);
}

[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .product-card:hover,
[data-theme="dark"] .portfolio-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.2) !important;
  border-color: #3b82f6 !important;
}

/* 3. Hero Visual Image Continuous Parallax Float */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.badge-top {
  animation: float 4.5s ease-in-out infinite;
}

.badge-bottom {
  animation: float 4s ease-in-out infinite 1.5s;
}

/* 4. Button Shine & Micro-interactions */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  transform: rotate(30deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: rotate(30deg) translateX(100%);
}

/* 5. Back To Top Floating Rocket Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--color-primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.back-to-top:hover {
  background-color: var(--color-amber);
  color: #ffffff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.back-to-top .progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
  pointer-events: none;
}

.back-to-top .progress-ring-circle {
  transition: stroke-dashoffset 0.15s ease;
}

[data-theme="dark"] .back-to-top {
  background-color: #13223b;
  color: #ffffff;
  border-color: #223758;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .back-to-top:hover {
  background-color: #2563eb;
  color: #ffffff;
}

/* 6. Smooth Ambient Glow Blobs in Hero */
.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  animation: float 8s ease-in-out infinite alternate;
}

.hero-section::after {
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
  animation: float 9s ease-in-out infinite alternate 2s;
}

[data-theme="dark"] .hero-section::before {
  opacity: 0.25;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
}

[data-theme="dark"] .hero-section::after {
  opacity: 0.18;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
}



