/* ============================================================
   CV BERLIAN ARTHA ABADI — Global Stylesheet
   Theme: Light — Warm White + Navy + Gold
   Design System: Variables → Reset → Base → Layout →
   Components → Utilities → Pages → Responsive
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Backgrounds — Light */
  --bg-primary: #F8F7F3;
  /* Warm off-white */
  --bg-secondary: #F1F0EB;
  /* Slightly deeper warm */
  --bg-card: #FFFFFF;
  /* Pure white cards */
  --bg-footer: #0D1B3E;
  /* Deep navy footer */
  --bg-navy: #0F2248;
  /* Navy hero/CTA areas */
  --bg-navy-mid: #162B5A;
  /* Slightly lighter navy */

  /* Gold Accent */
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A8883A;
  --gold-dim: rgba(201, 168, 76, 0.10);
  --gold-dim-strong: rgba(201, 168, 76, 0.18);
  --gold-glow: rgba(201, 168, 76, 0.25);
  --gold-glow-strong: rgba(201, 168, 76, 0.40);

  /* Navy Accent */
  --navy: #0F2248;
  --navy-dim: rgba(15, 34, 72, 0.07);
  --navy-dim-mid: rgba(15, 34, 72, 0.12);

  /* Text */
  --text-primary: #0F2248;
  /* Deep navy */
  --text-secondary: #374151;
  /* Dark slate */
  --text-muted: #6B7280;
  /* Medium gray */
  --text-on-navy: #E8E8F0;
  /* Text on navy bg */
  --text-muted-navy: rgba(232, 232, 240, 0.60);
  /* Muted text on navy */

  /* Borders */
  --border: rgba(15, 34, 72, 0.10);
  --border-mid: rgba(15, 34, 72, 0.16);
  --border-hover: rgba(201, 168, 76, 0.55);
  --border-navy: rgba(201, 168, 76, 0.18);
  /* Border on navy bg */

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --text-base: 16px;
  --line-height: 1.7;

  /* Layout */
  --container-width: 1200px;
  --section-padding: 100px 0;
  --card-radius: 12px;
  --border-radius: 8px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Shadows — light theme */
  --shadow-sm: 0 1px 4px rgba(15, 34, 72, 0.06);
  --shadow-card: 0 4px 20px rgba(15, 34, 72, 0.08), 0 1px 4px rgba(15, 34, 72, 0.04);
  --shadow-card-hover: 0 12px 40px rgba(15, 34, 72, 0.12), 0 4px 12px rgba(15, 34, 72, 0.06);
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.18);
  --shadow-gold-strong: 0 0 32px rgba(201, 168, 76, 0.35);

  /* Z-index */
  --z-navbar: 1000;
  --z-overlay: 900;
  --z-modal: 1100;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--text-base);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: var(--line-height);
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--text-secondary);
  line-height: var(--line-height);
}

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

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

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

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

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

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--bg-secondary);
}

/* Section Divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.30);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-title span {
  color: var(--gold-dark);
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Grid Helpers */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

/* Flex Helpers */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.align-start {
  align-items: flex-start;
}

.gap-8 {
  gap: 8px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

/* ============================================================
   5. COMPONENTS — BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

/* Primary — Gold fill */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #FFFFFF;
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: var(--shadow-gold-strong);
  transform: translateY(-2px);
  color: #0F2248;
}

/* Outline — Navy border */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* Outline on navy bg */
.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.90);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.10);
  transform: translateY(-2px);
}

/* Small */
.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Button Group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* ============================================================
   6. COMPONENTS — CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.card:hover .card-icon {
  background: var(--gold-dim-strong);
  border-color: var(--gold);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================================
   7. COMPONENTS — BADGE / TAG
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: var(--gold-dim);
  color: var(--gold-dark);
  border: 1px solid rgba(201, 168, 76, 0.30);
}

.badge-tag {
  background: var(--navy-dim);
  color: var(--text-muted);
  border: 1px solid var(--border);
  font-weight: 500;
}

/* ============================================================
   8. COMPONENTS — NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-navbar);
  padding: 20px 0;
  transition: all var(--transition-base);
  background: rgba(248, 247, 243, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(15, 34, 72, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--bg-navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Nav Links */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  border-radius: var(--border-radius);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link.active {
  color: var(--gold-dark);
  font-weight: 600;
}

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

/* Navbar CTA */
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #FFFFFF;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all var(--transition-base);
}

.btn-whatsapp:hover {
  box-shadow: var(--shadow-gold-strong);
  transform: translateY(-1px);
  color: #0F2248;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius);
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: var(--navy-dim);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

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

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

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

/* Mobile Nav Panel */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: calc(var(--z-navbar) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform var(--transition-slow);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 12px 32px;
  text-align: center;
  color: var(--navy);
}

.mobile-nav .nav-link::after {
  bottom: 8px;
  left: 32px;
  right: 32px;
}

.mobile-nav-cta {
  margin-top: 24px;
}

/* ============================================================
   MODIFIKASI NAVBAR TRANSPARAN KHUSUS HALAMAN INDEX
   ============================================================ */
.navbar-transparent-top {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Ubah teks logo dan tautan menjadi putih saat di atas (sebelum di-scroll) */
.navbar-transparent-top:not(.scrolled) .logo-title,
.navbar-transparent-top:not(.scrolled) .logo-subtitle,
.navbar-transparent-top:not(.scrolled) .nav-link {
  color: #F8F7F3 !important;
  /* Warna putih gading */
}

/* Berikan efek hover putih terang saat di atas */
.navbar-transparent-top:not(.scrolled) .nav-link:hover,
.navbar-transparent-top:not(.scrolled) .nav-link.active {
  color: #C9A84C !important;
  /* Warna Gold */
}

/* Ubah garis hamburger menu menjadi putih saat di atas */
.navbar-transparent-top:not(.scrolled) .hamburger span {
  background-color: #F8F7F3;
}

/* Ubah border tombol WhatsApp saat transparan */
.navbar-transparent-top:not(.scrolled) .btn-whatsapp {
  background-color: rgba(255, 255, 255, 0.1);
  color: #F8F7F3;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-transparent-top:not(.scrolled) .btn-whatsapp:hover {
  background-color: #25D366;
  /* Warna asli WA saat di-hover */
  border-color: #25D366;
}

/* SAAT DI-SCROLL: Kembali ke desain asli (terang) */
.navbar-transparent-top.scrolled {
  background-color: var(--bg-primary);
  /* Warna terang bawaan Anda */
  box-shadow: var(--shadow-sm);
  border-bottom: none;
}

/* ============================================================
   9. COMPONENTS — HERO (Navy bg — contrast element)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  background: var(--bg-navy);
}

/* Navy radial accents */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 65%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 80% at 60% 20%, rgba(22, 43, 90, 0.80) 0%, transparent 70%);
}

/* Geometric accent shapes */
.hero-geo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-geo::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -80px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(201, 168, 76, 0.10);
  border-radius: 50%;
  animation: geoRotate 30s linear infinite;
}

.hero-geo::after {
  content: '';
  position: absolute;
  top: -80px;
  right: 60px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  animation: geoRotate 20s linear infinite reverse;
}

.hero-geo-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.25), transparent);
}

@keyframes geoRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.30);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.hero-title .highlight {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-on-navy);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 620px;
  opacity: 0.85;
}

/* Trust Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.hero-badge-label {
  font-size: 0.75rem;
  color: var(--text-muted-navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-badge-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  transition: all var(--transition-base);
}

.trust-badge:hover {
  border-color: rgba(201, 168, 76, 0.40);
  color: var(--gold-light);
}

.trust-badge i {
  color: var(--gold);
  font-size: 0.875rem;
}

/* Update Hero Container for Grid Layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  justify-content: flex-end;
}

.hero-img-main {
  width: 85%;
  border-radius: 16px;
  box-shadow: var(--shadow-gold-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

/* Floating element to add depth */
.hero-img-float {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(15, 34, 72, 0.5);
  border: 4px solid var(--bg-navy);
  animation: float 6s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-visual {
    display: none;
    /* Hide complex composition on mobile for simplicity */
  }
}

/* ============================================================
   10. COMPONENTS — STATS COUNTER
   ============================================================ */
.stats-section {
  padding: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

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

.stat-item {
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: background var(--transition-base);
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: var(--border);
}

.stat-item:last-child::after {
  display: none;
}

.stat-item:hover {
  background: var(--gold-dim);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================================
   11. COMPONENTS — SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.40);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
  opacity: 1;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.6;
}

/* ============================================================
   12. COMPONENTS — WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.why-item:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.why-check {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.why-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   13. COMPONENTS — CLIENT MARQUEE
   ============================================================ */
.clients-section {
  overflow: hidden;
  padding: 80px 0;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 35s linear infinite;
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-right: 1px solid var(--border);
  min-width: 180px;
}

.client-logo-item:last-child {
  border-right: none;
}

.client-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  cursor: default;
}

.client-logo-box:hover {
  border-color: rgba(201, 168, 76, 0.30);
  background: var(--gold-dim);
}

.client-logo-name {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition-base);
  letter-spacing: 0.02em;
}

.client-logo-box:hover .client-logo-name {
  color: var(--gold-dark);
}

.marquee-logo {
  max-width: 140px;
  /* Batasi lebar maksimal logo */
  max-height: 50px;
  /* Batasi tinggi maksimal agar seragam */
  width: auto;
  height: auto;
  object-fit: contain;
  /* Memastikan logo tidak melar (distorsi) */

  /* Efek Grayscale agar tampilan lebih seragam dan elegan (Opsional tapi disarankan) */
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Mengembalikan warna asli logo saat kursor diarahkan (Hover) */
.client-logo-item:hover .marquee-logo {
  filter: grayscale(0%) opacity(1);
}

/* ============================================================
   14. COMPONENTS — CTA SECTION (Navy bg — contrast)
   ============================================================ */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--bg-navy);
}

.cta-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* CTA text on navy */
.cta-section .cta-title {
  color: #FFFFFF;
}

.cta-section .cta-subtitle {
  color: var(--text-on-navy);
  opacity: 0.80;
}

.cta-section .section-label {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.30);
  color: var(--gold-light);
}

.cta-title {
  margin-bottom: 16px;
}

.cta-subtitle {
  max-width: 540px;
  margin: 0 auto 36px;
}

/* ============================================================
   15. COMPONENTS — FOOTER (Navy bg)
   ============================================================ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.90);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

/* Logo icon on footer — inverted */
.footer .logo-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-footer);
}

.footer-company-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gold-light);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted-navy);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer .btn-whatsapp {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted-navy);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.875rem;
  color: var(--text-muted-navy);
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--gold);
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

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

.footer-cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted-navy);
}

.footer-cert-item i {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
}

.footer-copyright span {
  color: var(--gold-light);
  font-weight: 600;
}

/* ============================================================
   16. COMPONENTS — PAGE HERO (Light bg inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 5% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 35% 60% at 95% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold-dark);
}

.breadcrumb-sep {
  color: var(--border-mid);
}

.breadcrumb-current {
  color: var(--gold-dark);
  font-weight: 600;
}

.page-hero-title {
  margin-bottom: 16px;
}

.page-hero-subtitle {
  max-width: 600px;
  color: var(--text-secondary);
}

/* ============================================================
   17. COMPONENTS — PRODUCT CARDS
   ============================================================ */
.product-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-dim);
  color: var(--gold-dark);
  border-color: rgba(201, 168, 76, 0.35);
}

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

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

.product-card:hover {
  border-color: rgba(201, 168, 76, 0.40);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.product-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.product-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bg-card));
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-cat {
  margin-bottom: 12px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.product-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  background: var(--navy-dim);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ============================================================
   18. COMPONENTS — ABOUT / TENTANG
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.about-stat-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: var(--shadow-gold);
}

.about-stat-card .stat-number {
  font-size: 2.25rem;
}

.about-text-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-text-content p:last-child {
  margin-bottom: 0;
}

/* Vision Mission */
.visi-misi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.vm-card:hover {
  border-color: rgba(201, 168, 76, 0.40);
  box-shadow: var(--shadow-card-hover);
}

.vm-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
}

.vm-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.vm-text {
  color: var(--text-secondary);
  line-height: 1.75;
}

.vm-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vm-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.vm-list-item i {
  color: var(--gold-dark);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  border-color: rgba(201, 168, 76, 0.40);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin: 0 auto 20px;
  transition: all var(--transition-base);
}

.value-card:hover .value-icon {
  background: var(--gold-dim-strong);
  border-color: var(--gold);
  transform: scale(1.05);
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.value-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Legalitas */
.legalitas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.legalitas-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.legalitas-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: var(--shadow-card-hover);
}

.legalitas-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.125rem;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.20);
}

.legalitas-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.legalitas-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Certification */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.cert-card:hover {
  border-color: rgba(201, 168, 76, 0.40);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.cert-logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.cert-logo-card {
  max-height: 68px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.cert-card:hover .cert-logo-card {
  transform: scale(1.05);
}

.about-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.about-badge-img {
  width: 140px;
  height: 140px;
  opacity: 0.92;
  filter: drop-shadow(0 4px 16px rgba(201, 168, 76, 0.20));
}

.cert-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   19. COMPONENTS — PROJECTS / CLIENTS PAGE
   ============================================================ */
.clients-sector {
  margin-bottom: 56px;
}

.sector-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
  width: 100%;
}

.sector-label i {
  font-size: 1rem;
  color: var(--gold-dark);
}

.clients-grid-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.client-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.client-item:hover {
  border-color: rgba(201, 168, 76, 0.40);
  box-shadow: var(--shadow-card-hover);
  transform: translateX(4px);
}

.client-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy-dim);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--navy);
  flex-shrink: 0;
}

.client-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.3;
}

.client-sector-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Logo Mosaic Grid */
.logo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.logo-mosaic-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition-base);
  cursor: default;
  box-shadow: var(--shadow-sm);
}

.logo-mosaic-item:hover {
  border-color: rgba(201, 168, 76, 0.40);
  background: var(--gold-dim);
  box-shadow: var(--shadow-card-hover);
}

.logo-mosaic-name {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition-base);
  line-height: 1.4;
}

.logo-mosaic-item:hover .logo-mosaic-name {
  color: var(--gold-dark);
}

.logo-mosaic-img {
  max-width: 110px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.logo-mosaic-item:hover .logo-mosaic-img {
  filter: grayscale(0%) opacity(1);
}

/* ============================================================
   20. COMPONENTS — CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
}

.contact-info-value a {
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--gold-dark);
}

.contact-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 40px 36px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-card);
}

.contact-cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-cta-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-wa-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #1DAA58, #25D366);
  color: #fff;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-base);
}

.btn-wa-large:hover {
  box-shadow: 0 0 28px rgba(29, 170, 88, 0.30);
  transform: translateY(-2px);
}

.btn-email-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-base);
}

.btn-email-large:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.contact-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--border-radius);
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-note i {
  color: var(--gold-dark);
  margin-top: 1px;
  flex-shrink: 0;
}

/* Map */
.map-area {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.map-area iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: grayscale(15%);
}

/* ============================================================
   21. UTILITIES
   ============================================================ */
.text-center {
  text-align: center;
}

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

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

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-64 {
  margin-top: 64px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.hidden {
  display: none !important;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

.gold-line-left {
  margin: 16px 0 0;
}

/* ============================================================
   22. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

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

  50% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   23. RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .services-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-mosaic {
    grid-template-columns: repeat(3, 1fr);
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legalitas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-cta-card {
    position: static;
  }
}

/* ============================================================
   24. RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Navbar */
  .navbar-nav, .navbar-cta .btn-whatsapp {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-cta {
    gap: 8px;
  }

  /* Hero */
  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 64px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-badge-divider {
    display: none;
  }

  .trust-badges-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }

  .stat-item {
    padding: 32px 20px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Visi Misi */
  .visi-misi-grid {
    grid-template-columns: 1fr;
  }

  /* Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Legalitas */
  .legalitas-grid {
    grid-template-columns: 1fr;
  }

  /* Certs */
  .cert-grid {
    grid-template-columns: 1fr;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Clients */
  .clients-grid-list {
    grid-template-columns: 1fr;
  }

  /* Logo mosaic */
  .logo-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Map */
  .map-area iframe {
    height: 280px;
  }

  /* Grid helpers */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Page hero */
  .page-hero {
    padding: 120px 0 60px;
  }

  /* About stats */
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Buttons */
  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-cta-buttons .btn-wa-large,
  .contact-cta-buttons .btn-email-large {
    width: 100%;
  }

  /* CTA flex center override on mobile */
  .flex-center.btn-group {
    align-items: stretch;
  }
}

/* ============================================================
   25. PRINT
   ============================================================ */
@media print {
  .navbar, .footer, .cta-section, .marquee-wrapper {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .page-hero, .section {
    padding: 32px 0;
  }
}

/* ============================================================
   STYLING LOGO SERTIFIKASI & PLATFORM
   ============================================================ */
/* Logo di dalam Trust Badge (Hero Section) */
.badge-logo {
  height: 16px;
  /* Menyesuaikan dengan tinggi font */
  width: auto;
  object-fit: contain;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Logo di dalam Footer & Halaman Tentang Kami */
.cert-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* Opsional: Membuat logo di footer menjadi grayscale/putih agar elegan di background gelap */
.footer-cert-item .cert-logo {
  filter: grayscale(100%) brightness(200%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-cert-item:hover .cert-logo {
  opacity: 1;
}