/* styles-clean-blue.css (CLEANED) */

/* === Global Font Setup === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* === Root font setting === */
body {
  font-family: 'Inter', system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: #0b2433;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  color: #04314a;
}

/* Typography Consistency */
.section-title,
.title,
.services-title,
.vision-title,
.about-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.section-subtitle,
.about-desc,
.vision-subtitle,
.v-body,
.svc-desc,
.doc-summary,
.doc-meta,
.small-text,
.footer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}


/* CTA Buttons & Nav */
.cta-btn,
.nav-links a,
.btn-primary,
.secondary-btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}


/* ---------- Variables & Base Reset ---------- */
:root{
  --bg-1: #ffffff;
  --bg-2: #f3f9ff;
  --text: #0b2433;
  --muted: #647389;
  --accent1: #007bff; /* Biru Dinamis */
  --accent2: #00b0ff; /* Biru Muda */
  --surface: #ffffff;
  --card-border: rgba(7,34,51,0.06);
  --radius-lg: 24px;
  --radius: 12px;
  --max-w: 1280px;
  --transition: 300ms;
  --nav-height-tall: 80px;
  --nav-height-scrolled: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-1);
  color: var(--text);
  padding-top: var(--nav-height-tall);
}
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
/* ======= NAVBAR: Modern centered nav + mobile drawer (replace previous navbar block) ======= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12000;
  height: var(--nav-height-tall);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 30px rgba(6,30,50,0.06);
  transition: background var(--transition), height var(--transition), box-shadow var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* keep content centered with three columns: left/center/right */
.nav-inner {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  height: 100%;
}

/* left: brand */
.brand {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
}
.brand img { height:38px; display:block; }

/* center: menu (horizontal) - centered visually */
.nav-center {
  justify-self: center;
  display:flex;
  gap:28px;
  align-items:center;
}
.nav-links { display:flex; gap:28px; align-items:center; }
.nav-links a {
  color:var(--text);
  font-weight:600;
  text-decoration:none;
  padding:8px 6px;
  border-radius:8px;
  transition: color var(--transition), transform var(--transition);
}
.nav-links a:hover { color: var(--accent2); transform: translateY(-2px); }
.nav-links a.active { color: var(--accent1); }

/* right: ctAs */
.nav-right { justify-self: end; display:flex; gap:12px; align-items:center; justify-content:flex-end; }
.cta-btn { display:inline-flex; align-items:center; gap:8px; padding:10px 16px; border-radius:999px; text-decoration:none; font-weight:700; background: linear-gradient(90deg,var(--accent1),var(--accent2)); color:#fff; box-shadow:0 10px 30px rgba(0,123,255,0.14); }

/* subtle thin separator under nav on desktop */
.navbar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0.06));
}

/* HAMBURGER - appears on small screens */
.hamburger { display:none; background:none; border:0; padding:10px; cursor:pointer; border-radius:10px; }
.hamburger span { display:block; width:22px; height:2.5px; background:var(--text); margin:4px 0; border-radius:3px; transition: transform 220ms, opacity 220ms; }
.hamburger.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* MOBILE DRAWER: slide-in from left */
.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  width: min(360px, 92%);
  max-width: 420px;
  background: linear-gradient(180deg,#ffffff,#f7fbff);
  box-shadow: 0 30px 80px rgba(6,30,50,0.22);
  z-index: 13000;
  transition: left 300ms cubic-bezier(.2,.9,.25,1), transform 300ms;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.mobile-drawer.open { left: 0; }

/* drawer header */
.mobile-drawer .drawer-header {
  display:flex; align-items:center; justify-content:space-between; padding:16px 18px; border-bottom:1px solid rgba(6,49,66,0.04);
}
.drawer-brand { display:flex; gap:12px; align-items:center; }
.drawer-brand img { height:38px; }

/* drawer nav items */
.mobile-drawer .drawer-nav { display:flex; flex-direction:column; gap:6px; padding:14px; }
.mobile-drawer .drawer-nav a {
  display:block; padding:14px 12px; border-radius:12px; color:#032832; text-decoration:none; font-weight:700;
}
.mobile-drawer .drawer-nav a:hover { background: linear-gradient(90deg,#eef7ff,#e6f6ff); transform: translateX(6px); }

/* drawer footer CTA */
.mobile-drawer .drawer-footer { margin-top:auto; padding:18px; border-top:1px solid rgba(6,49,66,0.04); }
.mobile-drawer .drawer-footer .cta-btn { width:100%; display:inline-flex; justify-content:center; }

/* overlay backdrop that darkens page and closes drawer on click */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6,16,28,0.46);
  z-index: 12900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }

/* responsive rules */
@media (max-width: 980px) {
  .nav-links, .nav-center { display:none; }        /* hide center menu */
  .desktop-cta { display:none; }                  /* hide desktop CTA */
  .hamburger { display:inline-flex; }            /* show hamburger */
  .brand img { height:34px; }
  .nav-inner { grid-template-columns: auto 1fr auto; } /* keep brand left, hamburger right */
}

/* CTA Button */
.cta-btn { background: linear-gradient(45deg,var(--accent1),var(--accent2)); color:#fff; padding:10px 18px; border-radius:999px; font-weight:700; box-shadow:0 8px 25px rgba(0,123,255,0.2); text-decoration:none; display:inline-block; }
.cta-btn:hover { transform: translateY(-2px); }

/* Mobile */
.hamburger { display:none; background:none; border:0; padding:8px; cursor:pointer; z-index:10001; }
.hamburger span{ display:block; width:24px; height:2px; background:var(--text); border-radius:3px; margin:5px 0; transition:all 300ms; }
.hamburger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); -webkit-transform:translateY(-7px) rotate(-45deg); -moz-transform:translateY(-7px) rotate(-45deg); -ms-transform:translateY(-7px) rotate(-45deg); -o-transform:translateY(-7px) rotate(-45deg); }
body.no-scroll{ overflow:hidden; }

/* ---------- HERO (kept minimal relevant parts) ---------- */
.hero-section{ padding:64px 20px; background: linear-gradient(180deg,#fffaf9 0%, #fdfdfd 100%); color:#000000; }
.hero-grid{ max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 520px; gap:28px; align-items:center; padding:6px 16px; }
.hero-title{ font-family:'Poppins', Inter, Arial, sans-serif; font-size:48px; line-height:1.02; margin:0 0 18px 0; color:#072233; font-weight:700; }

/* ---------- ABOUT (cleaned) ---------- */
.about-section{ padding:72px 18px; background:transparent; }
.about-container{ max-width:1200px; margin:0 auto; display:flex; gap:32px; align-items:center; padding:12px; box-sizing:border-box; flex-wrap:wrap; }

/* IMAGE CARD */
.about-image-card{ flex:1 1 44%; min-width:280px; position:relative; border-radius:18px; overflow:hidden; box-shadow:0 10px 30px rgba(18,30,54,0.06); background:#fff; }
.about-image{ width:100%; height:100%; display:block; object-fit:cover; min-height:320px; }

/* community pill overlay */
.community-pill{ position:absolute; left:18px; bottom:18px; background:#fff; padding:10px 14px; border-radius:14px; display:flex; align-items:center; gap:10px; box-shadow:0 6px 18px rgba(18,30,54,0.08); }
.community-pill .avatars{ display:flex; gap:-8px; }
.community-pill .avatars img{ border-radius:50%; border:2px solid #fff; }
.pill-text{ display:flex; align-items:center; gap:10px; font-size:13px; color:#111; }
.pill-badge{ background:#4f46e5; color:#fff; padding:6px 8px; border-radius:999px; font-weight:600; font-size:12px; }

/* CONTENT CARD */
.about-content-card{ flex:1 1 52%; min-width:320px; background:#f7fbff; border-radius:18px; padding:34px; box-shadow:0 6px 22px rgba(10,20,40,0.03); }
.eyebrow{ display:block; font-size:13px; color:#6b7280; margin-bottom:8px; font-weight:600; }
.about-title{ font-size:28px; line-height:1.08; margin:0 0 12px; color:#0f172a; font-weight:700; }
.about-desc{ color:#374151; margin:0 0 18px; font-size:15px; line-height:1.6; }

/* CTA */
.cta-row{ margin:14px 0 22px; }
.btn-primary{ display:inline-block; padding:10px 18px; border-radius:999px; background:#4f46e5; color:#fff; text-decoration:none; font-weight:600; box-shadow:0 6px 18px rgba(79,70,229,0.14); }

/* FEATURES GRID */
.features-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:6px; }
.feature{ display:flex; gap:12px; align-items:flex-start; background:#fff; padding:14px; border-radius:12px; box-shadow:0 6px 18px rgba(15,23,42,0.03); }
.feature-icon{ width:44px; height:44px; border-radius:8px; display:flex; align-items:center; justify-content:center; background:rgba(79,70,229,0.08); flex-shrink:0; }
.feature-icon svg{ width:22px; height:22px; fill:#4f46e5; }
.feature-body h4{ margin:0; font-size:15px; color:#0f172a; }
.feature-body p{ margin:6px 0 0; font-size:13px; color:#6b7280; line-height:1.4; }

/* ---------- REVEAL / ANIMATIONS (single clean block) ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-pop, .reveal.in-view, .reveal-pop.in-view {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.reveal, .reveal-pop {
  opacity: 0 !important;
  transform: translateY(12px) scale(.995) !important;
  will-change: opacity, transform;
  transition: opacity 520ms cubic-bezier(.2,.9,.25,1) !important;
  transition-property: opacity, transform !important;
  transition-duration: 520ms !important;
  transition-timing-function: cubic-bezier(.2,.9,.25,1) !important;
}
.reveal-pop { transform: translateY(6px) scale(.995) !important; transition-duration: 420ms !important; }
.reveal.in-view, .reveal-pop.in-view { opacity:1 !important; transform: translateY(0) scale(1) !important; }
.about-image.reveal.in-view { transform: translateY(0) scale(1.01) !important; transition-duration: 680ms !important; }

/* ---------- VISION - Blue & White theme (clean) ---------- */
.vision-modern-section { --v-accent-1: #0ea5e9; --v-accent-2: #0369a1; position:relative; overflow:hidden; padding:96px 0; background:linear-gradient(180deg,#f8fbff 0%, #ffffff 100%); color:#063240; }
.vision-bg { position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(3,105,161,0.06), transparent 28%), radial-gradient(circle at 80% 80%, rgba(14,165,233,0.045), transparent 28%); animation: floatBg 16s infinite alternate ease-in-out; z-index:0; }
@keyframes floatBg{ from{transform:translateY(0)} to{transform:translateY(28px)} }
.vision-wrapper { position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; gap:56px; text-align:center; padding:0 12px; max-width:1200px; margin:0 auto; }
.vision-header { max-width:820px; }
.vision-title { font-size:34px; font-weight:800; color:#04314a; margin:0 0 10px; }
.vision-subtitle { font-size:15px; color:#375b6a; margin:0 auto; line-height:1.6; }
.vision-core { max-width:820px; padding:26px 20px; }
.vision-line { width:4px; height:84px; margin:0 auto 18px; border-radius:4px; background: linear-gradient(180deg,var(--v-accent-1), var(--v-accent-2)); box-shadow:0 6px 22px rgba(3,105,161,0.08); animation: glowLineV 4.2s ease-in-out infinite alternate; }
@keyframes glowLineV { from{box-shadow:0 0 8px rgba(14,165,233,0.18)} to{box-shadow:0 0 20px rgba(3,105,161,0.22)} }
.vision-statement h3 { font-size:20px; color:#0b3441; font-weight:600; margin:0; line-height:1.5; }
.values-container { display:grid; grid-template-columns:repeat(auto-fit, minmax(220px, 1fr)); gap:22px; width:100%; max-width:1100px; }
.value-glass { background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,253,255,0.85)); border-radius:14px; padding:22px 18px; border:1px solid rgba(3,105,161,0.06); box-shadow:0 8px 30px rgba(6,49,66,0.04); backdrop-filter: blur(8px); transition: transform 420ms cubic-bezier(.2,.9,.25,1), box-shadow 420ms; text-align:center; }
.value-glass:hover, .value-glass:focus { transform: translateY(-10px) scale(1.02); box-shadow:0 22px 50px rgba(3,105,161,0.12); outline:none; }
.value-icon { width:72px; height:72px; margin:0 auto 12px; border-radius:50%; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg, var(--v-accent-1), var(--v-accent-2)); box-shadow:0 10px 30px rgba(3,105,161,0.12); }
.value-icon svg { width:36px; height:36px; display:block; }
.value-glass h4 { margin:8px 0 6px; font-size:16px; color:#042e3f; font-weight:700; }
.value-glass p { margin:0; font-size:13.5px; color:#375b6a; line-height:1.6; }
.rotate svg { animation: spinIcon 18s linear infinite; transform-origin:center center; }
@keyframes spinIcon{ from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* Responsive */
@media (max-width:900px){
  .vision-title { font-size:28px; }
  .vision-core { padding:18px; }
  .value-icon { width:64px; height:64px; }
}
@media (max-width:520px){
  .vision-wrapper { gap:36px; }
  .vision-title { font-size:22px; }
}
/* ===== VISION FEATURES (left text, right vertical 4 items) ===== */
.vision-features-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  color: var(--text);
}
.vision-inner {
  display: grid;
  grid-template-columns: 56% 44%;
  gap: 32px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

/* LEFT TEXT */
.v-title {
  font-size: 38px;
  margin: 0 0 12px;
  color: #04314a;
  font-weight: 800;
  line-height: 1.02;
}
.v-intro {
  color: #375b6a;
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 1.7;
}
.v-body { color:#556a71; font-size:14.5px; line-height:1.7; margin:0; }

/* RIGHT FEATURES */
.features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,253,255,0.98));
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(3,105,161,0.06);
  box-shadow: 0 12px 30px rgba(6,49,66,0.04);
  overflow: hidden;
  transform-origin: left center;
  transition: transform 360ms cubic-bezier(.2,.9,.25,1), box-shadow 360ms, opacity 360ms;
}

/* hover */
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(3,105,161,0.12);
}

/* icon circle */
.feature-icon {
  width:56px;
  height:56px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, var(--accent2), var(--accent1));
  box-shadow: 0 10px 30px rgba(3,105,161,0.12);
  flex-shrink: 0;
  transform: translateZ(0);
}
.feature-icon .num{
  color: #fff;
  font-weight:800;
  font-size:16px;
}

/* text */
.feature-body { flex:1; }
.feature-title { margin:0 0 6px; font-size:15px; color:#063240; font-weight:800; line-height:1.06; }
.feature-desc { margin:0; font-size:13.5px; color:#4b6b72; line-height:1.45; }

/* visual hook: subtle vertical stroke on left of feature list (like in reference) */
.features-list::before {
  content: "";
  position: absolute;
  left: calc(56% + 8px); /* aligned between columns */
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(180deg, rgba(3,105,161,0.06), rgba(3,105,161,0.12));
  pointer-events:none;
  border-radius:1px;
  transform: translateX(-50%);
  display: none; /* hidden on smaller screens */
}

/* reveal animation specifics (cards slide + fade) */
.feature-item { opacity:0; transform: translateX(28px) scale(.995); }
.feature-item.in-view { opacity:1; transform: translateX(0) scale(1); transition: transform 520ms cubic-bezier(.2,.9,.25,1), opacity 520ms; }

/* small icon pop when visible */
.feature-item.in-view .feature-icon { transform: scale(1.04); transition: transform 520ms cubic-bezier(.2,.9,.25,1); }

/* responsive */
@media (max-width: 980px) {
  .vision-inner { grid-template-columns:1fr; }
  .features-list::before { display: none; }
  .v-title { font-size:28px; text-align:left; }
}

/* ===== SERVICES (blue background, 3 cards) ===== */
.services-blue-section {
  background: linear-gradient(180deg, #e6f6ff 0%, #dff3ff 40%, #f7fdff 100%);
  padding: 72px 0;
  color: #042e3f;
}
.services-inner { max-width:1200px; margin:0 auto; padding:0 16px; position:relative; }

/* header */
.services-head { text-align:center; max-width:900px; margin: 0 auto 32px; }
.services-title { font-size:34px; font-weight:800; margin:0 0 8px; color:#042e3f; }
.services-sub { margin:0; color:#15506a; font-size:15px; line-height:1.7; }

/* row of cards */
.services-row { display:flex; gap:20px; justify-content:center; align-items:stretch; flex-wrap:wrap; }

/* card base */
.svc-card {
  width: 360px;
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 18px 48px rgba(3,105,161,0.06);
  border: 1px solid rgba(3,105,161,0.06);
  display:flex;
  flex-direction:column;
  gap:12px;
  transition: transform 360ms cubic-bezier(.2,.9,.25,1), box-shadow 360ms, filter 360ms;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(22px) scale(.997);
}

/* center on small screens */
@media (max-width: 1120px) {
  .svc-card { width: 320px; }
}
@media (max-width: 880px) {
  .services-row { flex-direction:column; align-items:center; gap:18px; }
  .svc-card { width: 92%; }
}

/* badge (icon circle) */
.svc-badge {
  width:48px; height:48px; border-radius:12px;
  background: linear-gradient(180deg, var(--accent2), var(--accent1));
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 28px rgba(3,105,161,0.12);
  transform: translateZ(0);
}

/* title & desc */
.svc-title { margin: 0; font-size:18px; color:#032832; font-weight:800; line-height:1.08; }
.svc-desc { margin: 0; color:#375b6a; font-size:14px; line-height:1.55; }

/* read more */
.svc-more {
  margin-top:10px; align-self:flex-start; font-weight:700; text-decoration:none;
  color:var(--accent2); font-size:13px;
  background:transparent; border-radius:999px; padding:6px 8px;
}
.svc-more:hover { text-decoration: underline; }

/* hover */
.svc-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 36px 90px rgba(3,105,161,0.16);
  filter: saturate(1.03);
}

/* decorative gloss */
.svc-card::after{
  content:"";
  position:absolute; right:-10px; top:0; width:72px; height:100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.85));
  transform: translateX(10px);
  transition: transform 360ms;
}
.svc-card:hover::after { transform: translateX(0); }

/* subtle thumb floating via badge (animation) */
@keyframes badgeFloat { 0%{transform:translateY(0)} 50%{transform:translateY(-6px)} 100%{transform:translateY(0)} }
.svc-badge { animation: badgeFloat 6.5s ease-in-out infinite; }

/* reveal in-view state (works with global reveal observer) */
.svc-card.in-view { opacity:1; transform: translateY(0) scale(1); transition: transform 560ms cubic-bezier(.2,.9,.25,1), opacity 560ms; }

/* accessibility focus */
.svc-card:focus-visible { outline: 3px solid rgba(3,105,161,0.12); outline-offset:6px; }

/* small responsive tweaks */
@media (max-width:520px) {
  .services-inner { padding: 0 12px; }
  .services-title { font-size:26px; }
}

/* ===== Clients & Partners (redesign) ===== */
.clients-section { padding:72px 0; background: linear-gradient(180deg,#f6fbff 0%, #ffffff 100%); color:var(--text); }
.clients-head h2 { font-size:32px; margin:0 0 6px; color:#000000; font-weight:800; }
.clients-head p { margin:0 0 18px; color:#000000; }

/* logos */
.clients-logos { display:flex; gap:22px; justify-content:center; align-items:center; flex-wrap:wrap; margin:12px 0 28px; padding:8px 12px; }
.logo-item { width:120px; height:64px; display:flex; align-items:center; justify-content:center; background:linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,253,255,0.96)); border-radius:10px; border:1px solid rgba(3,105,161,0.05); box-shadow:0 8px 20px rgba(6,49,66,0.04); padding:8px; transition: transform 300ms, box-shadow 300ms; }
.logo-item img { max-width:100%; max-height:48px; object-fit:contain; filter: saturate(0.98); }
.logo-item:hover { transform: translateY(-6px) scale(1.02); box-shadow:0 20px 48px rgba(3,105,161,0.10); }

/* grid columns */
.clients-grid { display:grid; grid-template-columns: 1fr 460px; gap:28px; align-items:start; max-width:1200px; margin:0 auto; }
@media (max-width:980px) { .clients-grid { grid-template-columns: 1fr; } }

/* FAQ (left) */
.clients-faq h3 { margin:0 0 12px; font-size:20px; color:#032832; }
.accordion .ac-item { border-radius:10px; overflow:hidden; margin-bottom:10px; border:1px solid rgba(3,105,161,0.06); }
.ac-button { width:100%; text-align:left; padding:12px 14px; background:transparent; border:0; font-weight:700; font-size:15px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; }
.ac-button .ac-icon { display:inline-block; width:28px; height:28px; border-radius:8px; background:linear-gradient(180deg,var(--accent2),var(--accent1)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; }
.ac-panel { padding:12px 14px; background:linear-gradient(180deg, rgba(255,255,255,0.98), #f9feff); color:#405d64; line-height:1.6; }

/* Testimonials (right) */
.clients-testimonials { position:relative; }
.testimonials { background: linear-gradient(180deg,#ffffff, #f7fdff); border-radius:12px; padding:12px; border:1px solid rgba(3,105,161,0.06); box-shadow:0 18px 48px rgba(6,49,66,0.05); overflow:hidden; }
.testimonial-track { display:flex; gap:18px; transition: transform 560ms cubic-bezier(.2,.9,.25,1); }
.testimonial-card { min-width:320px; max-width:360px; background:transparent; padding:12px; border-radius:8px; }
.testimonial-card p { margin:0 0 12px; color:#08303a; }
.testimonial-meta { display:flex; gap:12px; align-items:center; }
.testimonial-meta img { width:44px; height:44px; border-radius:999px; object-fit:cover; }

/* controls */
.testimonial-controls { display:flex; gap:8px; position:absolute; right:12px; bottom:12px; }
.testimonial-controls button { background:rgba(3,105,161,0.08); border:0; width:36px; height:36px; border-radius:999px; display:flex; align-items:center; justify-content:center; cursor:pointer; }

/* reveal compatibility */
.clients-section .reveal { will-change: opacity, transform; }

/* small responsive */
@media (max-width:720px){
  .logo-item { width:96px; height:56px; }
  .testimonial-card { min-width:92%; }
}

/* Variabel Warna Dominan */
:root {
    --primary-blue: #007BFF; /* Biru Primer */
    --light-blue: #EBF5FF;   /* Biru Sangat Terang */
    --text-color: #333333;   /* Abu-abu Gelap untuk Teks */
    --logo-color-filter: grayscale(100%) brightness(50%); /* Filter Awal Logo (Monokrom) */
}

/* Bagian Klien Secara Keseluruhan */
.clients-showcase {
    padding: 60px 0;
    background-color: #FFFFFF; /* Latar Belakang Putih */
    border-top: 5px solid var(--light-blue); /* Aksen Garis Biru Tipis */
    text-align: center;
}

.section-title {
    color: var(--primary-blue);
    font-size: 2.5em;
    margin-bottom: 10px;
    /* Efek teks kecil: text-shadow: 1px 1px 2px rgba(0, 123, 255, 0.2); */
}

.section-subtitle {
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 1.1em;
}

/* Wrapper Carousel (Viewport) */
.logo-carousel-wrapper {
    overflow: hidden; /* Penting: menyembunyikan logo di luar batas */
    position: relative;
    padding: 20px 0;
}

/* Efek Visual Khas: Fade Effect Biru-Putih di Sisi Kiri & Kanan */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px; /* Lebar area memudar */
    height: 100%;
    z-index: 2; /* Pastikan di atas logo */
}

.logo-carousel-wrapper::before {
    left: 0;
    /* Gradient: Putih (di luar) ke Transparan (di dalam) */
    background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-carousel-wrapper::after {
    right: 0;
    /* Gradient: Transparan (di dalam) ke Putih (di luar) */
    background: linear-gradient(to left, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

/* Track Animasi */
.logo-track {
    display: flex;
    white-space: nowrap; /* Mencegah baris baru */
    /* Menerapkan Animasi Scroll */
    animation: scroll-left 40s linear infinite; /* 40s durasi, linear, tak terbatas */
    width: fit-content; /* Penting untuk menampung logo duplikat */
}

/* Menghentikan Animasi Saat Hover */
.logo-carousel-wrapper:hover .logo-track {
    animation-play-state: paused;
}

/* Definisi Keyframes Animasi Scroll */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Geser 50% untuk loop sempurna */
}

/* Logo Item */
.client-logo-group {
    display: flex;
    align-items: center;
    gap: 80px; /* Jarak antar logo */
}

.client-logo {
    max-height: 80px; /* Tinggi maksimum logo */
    width: auto;
    object-fit: contain;
    padding: 10px;
    /* Efek Visual Khas: Biru-Putih & Transisi */
    filter: var(--logo-color-filter); /* Ubah logo menjadi monokrom/biru gelap */
    opacity: 0.6; /* Sedikit transparan */
    transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
}

/* Efek Hover Logo (Visual Aktif) */
.client-logo:hover {
    filter: none; /* Kembali ke warna asli logo */
    opacity: 1; /* Penuh */
    transform: scale(1.1); /* Sedikit membesar */
    cursor: pointer;
}

/* Tombol Aksi */
.action-area {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3; /* Biru yang lebih gelap saat hover */
    transform: translateY(-2px); /* Efek sedikit terangkat */
}

/* Variabel Warna Dominan */
:root {
    --primary-cyan: #00A896; /* Cyan Primer (Diambil dari tombol referensi) */
    --light-cyan: #D4F4F3;   /* Cyan Sangat Terang */
    --text-color: #333333;
    --light-bg: #F8F8F8;     /* Latar Belakang Sedikit Abu-abu */
}

/* Base Section Style */
.legal-showcase {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 0.9em;
    color: var(--primary-cyan);
    font-weight: 500;
    border-bottom: 2px solid var(--light-cyan);
    display: inline-block;
    padding-bottom: 2px;
}

.title {
    font-size: 2.8em;
    color: var(--text-color);
    margin-top: 5px;
}

/* Main Legal Card (The large top card in the reference) */
.main-legal-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* CTA Block (Inspired by the envelope card in the reference) */
.cta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 20px 30px;
    background-color: var(--light-cyan);
    border-radius: 8px;
    border-left: 5px solid var(--primary-cyan);
}

.cta-text {
    max-width: 70%;
    color: var(--text-color);
    margin: 0;
}

/* Document Grid */
.legal-documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dua kolom */
    gap: 20px;
}

/* Document Card Style (Main card look) */
.document-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.doc-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.doc-details {
    flex-grow: 1;
}

.document-card h3 {
    color: var(--primary-cyan);
    font-size: 1.4em;
    margin: 0 0 5px 0;
}

.doc-meta span {
    display: inline-block;
    font-size: 0.9em;
    color: #888;
    margin-right: 15px;
}
/* Variabel Warna Dominan Direvisi: Biru Gradasi */
:root {
    --primary-blue: #1976D2; /* Biru Gelap (Primary Blue) */
    --hover-blue: #1565C0;   /* Biru Lebih Gelap untuk Hover */
    --light-blue: #BBDEFB;   /* Biru Muda (Light Blue) */
    --very-light-blue: #E3F2FD; /* Background Section */
    --dark-text: #4a4a4a;    /* Teks Gelap */
    --card-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Base Section Style */
.legal-showcase {
    padding: 80px 0;
    background-color: var(--very-light-blue); /* Latar Belakang Biru Muda */
}

/* Header Section */
.section-header {
    text-align: left;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 0.9em;
    color: var(--primary-blue); /* Biru Primary */
    font-weight: 500;
    margin-bottom: 5px;
}

.title {
    font-size: 2.8em;
    color: var(--dark-text);
    margin-top: 5px;
}

/* Grid Layout Utama */
.legal-grid-layout {
    display: grid;
    /* Grid 2 kolom: 1 kolom besar untuk kartu kiri, 1 kolom untuk grid kanan */
    grid-template-columns: 1.5fr 1fr; 
    gap: 20px;
}

/* Style Dasar Kartu */
.document-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* 1. KARTU UTAMA KIRI */
.main-doc-card {
    padding: 0;
}
.doc-content-wrapper {
    display: flex;
    height: 100%;
}
.doc-details {
    padding: 30px;
    flex: 1;
}

.doc-details h3 {
    color: var(--dark-text);
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 5px;
}

.doc-summary {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 15px;
}

.doc-meta {
    font-size: 0.8em;
    color: #999;
    margin-bottom: 20px;
}
.doc-meta span {
    margin-right: 15px;
}

/* Thumbnail Kiri */
.doc-thumbnail.doc-left {
    flex-shrink: 0;
    width: 180px;
    height: 100%;
    background-color: var(--light-blue); /* Biru Muda */
    position: relative;
}
.doc-preview {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: #EEE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    color: #AAA;
    border-right: 3px solid var(--primary-blue); /* Aksen Biru Primary */
}

.doc-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 0.7em;
}

/* Daftar Aksi */
.doc-actions {
    list-style: none;
    padding: 0;
}

.doc-actions li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--dark-text);
    font-size: 0.9em;
}

.doc-actions li i {
    color: var(--primary-blue); /* Aksen Biru Primary */
    font-size: 1.2em;
    margin-right: 10px;
    /* Ganti dengan ikon font/SVG Anda */
}


/* 2. GRID KANAN (2x2) */
.right-column-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

/* ======================================================
   --- sections/legal.css ---
   Versi Ringkas (Compact) dan Galeri Tumpuk Tengah
   ====================================================== */

/* ----------------------------
   1. Variabel Global & Setup Dasar
   ---------------------------- */
:root {
    --primary-blue: #1976D2;
    --hover-blue: #1565C0;
    --light-blue: #BBDEFB;
    --very-light-blue: #E3F2FD;
    --card-bg: #FFFFFF;
    --dark-text: #333;
    --gray-text: #888;
    --border-gray: #E0E0E0;
    /* Shadow diperkecil untuk tampilan yang lebih ringan */
    --card-shadow-light: 0 4px 15px rgba(16, 24, 40, 0.04);
    --card-shadow-hover: 0 8px 25px rgba(16, 24, 40, 0.06);
    --border-radius: 10px; /* Border radius sedikit diperkecil */
}

/* --- Pengaturan Section Utama --- */
.legal-showcase {
    /* Padding section diperkecil dari 80px */
    padding: 60px 0; 
    background-color: var(--very-light-blue);
    font-family: Arial, sans-serif;
}

/* --- Header Section --- */
.section-header {
    text-align: left;
    margin-bottom: 30px;
}
.subtitle {
    font-size: 0.85em; /* Font subtitle diperkecil */
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 5px;
}
.title {
    font-size: 2.2em; /* Font title diperkecil */
    color: var(--dark-text);
    margin-top: 5px;
}

/* --- Layout Grid Utama --- */
.legal-grid-layout {
    display: grid;
    /* Proporsi grid tetap 1.5fr 1fr */
    grid-template-columns: 1.5fr 1fr;
    gap: 15px; /* Gap diperkecil */
}

/* --- Style Kartu Dasar (Default) --- */
.document-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow-light);
    /* Padding diperkecil dari 30px */
    padding: 20px; 
    position: relative;
    overflow: hidden; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.document-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}


/* -------------------------------------------
   2. KARTU UTAMA KIRI (AKREDITASI)
   ------------------------------------------- */
.main-doc-card {
    padding: 0;
}
.doc-content-wrapper {
    display: flex;
    height: 100%;
}
.doc-details {
    /* Padding diperkecil dari 30px */
    padding: 20px; 
    flex: 1;
}

.doc-details h3 {
    color: var(--dark-text);
    /* Font size diperkecil dari 1.6em */
    font-size: 1.4em; 
    margin-top: 0;
    margin-bottom: 5px;
}
.doc-summary {
    /* Font size diperkecil dari 0.95em */
    font-size: 0.9em; 
    color: var(--gray-text);
    margin-bottom: 12px;
    line-height: 1.5;
}
.doc-meta {
    font-size: 0.8em;
    color: #999;
    margin-bottom: 15px;
}

/* Thumbnail Kiri (Ukuran Kecil) */
.doc-thumbnail.doc-left {
    flex-shrink: 0;
    /* Dikecilkan dari 180px menjadi 150px (seperti permintaan sebelumnya) */
    width: 150px; 
    height: 100%;
    position: relative;
    cursor: pointer;
}
.doc-preview {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-right: 3px solid var(--primary-blue);
}
.doc-meta-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px; /* Padding overlay diperkecil */
    font-size: 0.65em;
}

/* Daftar Aksi (Link) di Kartu Kiri */
.doc-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}
.doc-actions li {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Jarak antar list diperkecil */
    color: var(--dark-text);
    font-size: 0.85em;
}
.doc-actions li i {
    color: var(--primary-blue);
    font-size: 1.1em;
    margin-right: 8px;
    width: 18px;
    text-align: center;
}


/* -------------------------------------------
   3. GRID KOLOM KANAN (2x2)
   ------------------------------------------- */
.right-column-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px; /* Gap diperkecil */
}


/* -------------------------------------------
   4. KARTU SNI / ISO (KANAN ATAS)
   ------------------------------------------- */
.small-doc-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow-light);
    /* Padding diperkecil dari 24px menjadi 18px */
    padding: 18px; 
    position: relative;
    overflow: visible; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.small-doc-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
}

.small-doc-card h3 {
    /* Font size diperkecil dari 1.2rem */
    font-size: 1.1rem; 
    color: var(--dark-text);
    margin: 0 0 4px 0;
    font-weight: 700;
}
.small-doc-card .doc-meta {
    font-size: 0.85rem;
    color: #9aa0a6;
    margin-bottom: 8px;
}

/* Aksi ikon kecil */
.icon-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.action-icon {
    width: 28px; /* Ukuran ikon diperkecil */
    height: 28px;
    font-size: 0.8rem;
}

/* --- Galeri Thumbnail Kanan Card (Tetap rapi dan kecil) --- */
.doc-thumbnail.doc-right {
    position: absolute;
    /* Posisikan lebih rapat ke tepi kanan */
    right: 15px; 
    top: 50%;
    transform: translateY(-50%);
    /* Ukuran area galeri diperkecil */
    width: 130px; 
    height: 110px; 
    pointer-events: none;
}
.gallery-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: auto;
}

/* Gaya tiap thumbnail (Ukuran kecil) */
.small-thumb {
    /* Ukuran dipertahankan kecil (60px x 90px) */
    width: 60px; 
    height: 90px;
    border-radius: 6px;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(12, 20, 32, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Posisi tumpukan (logika translate tetap) */
.gallery-wrapper .small-thumb:nth-child(1) {
    transform: translate(-100%, -50%) rotate(-7deg);
    z-index: 10;
}
.gallery-wrapper .small-thumb:nth-child(2) {
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 20;
}
.gallery-wrapper .small-thumb:nth-child(3) {
    transform: translate(0%, -50%) rotate(7deg);
    z-index: 30;
}

/* Hover efek: gambar naik ke depan */
.small-thumb:hover {
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
    z-index: 60 !important;
    box-shadow: 0 10px 20px rgba(12, 20, 32, 0.15);
    border-color: var(--primary-blue);
}


/* -------------------------------------------
   5. KARTU AKSI/INFORMASI (KANAN BAWAH)
   ------------------------------------------- */
.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Padding diperkecil dari 20px */
    padding: 15px; 
    text-align: center;
}
.action-icon-envelope {
    margin: 0 auto 8px;
    width: 35px; /* Ukuran ikon diperkecil */
    height: 35px;
    line-height: 35px;
    border-radius: 6px;
    font-size: 1.3em;
}

.action-card h4 {
    margin: 0 0 4px 0;
    color: var(--dark-text);
}
.action-card .small-text {
    font-size: 0.8em;
    color: #888;
    margin-bottom: 12px;
}

/* Tombol Aksi */
.cta-button {
    display: inline-block;
    /* Padding tombol diperkecil */
    padding: 8px 20px; 
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85em; /* Font tombol diperkecil */
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.secondary-btn {
    background-color: var(--primary-blue);
    color: white;
}
.secondary-btn:hover {
    background-color: var(--hover-blue);
    transform: translateY(-1px);
}


/* -------------------------------------------
   6. RESPONSIVE DESIGN (TABLET & MOBILE)
   ------------------------------------------- */
@media (max-width: 992px) {

    /* --- Penyesuaian Layout Utama --- */
    .legal-grid-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .right-column-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 15px;
    }

    /* --- Penyesuaian Kartu Kiri (Akreditasi) --- */
    .main-doc-card .doc-content-wrapper {
        flex-direction: column;
    }
    .doc-thumbnail.doc-left {
        width: 100%;
        height: 120px; /* Tinggi di mobile diperkecil */
        border-right: none;
        border-bottom: 3px solid var(--primary-blue);
    }
    .doc-details {
        padding: 15px; /* Padding di mobile diperkecil */
    }
    .doc-details h3 {
        font-size: 1.3em;
    }

    /* --- Penyesuaian Kartu Kanan Atas (SNI/ISO) --- */
    .doc-thumbnail.doc-right {
        position: relative;
        transform: none;
        top: 0;
        right: 0;
        width: 100%;
        height: auto;
        margin-top: 10px;
        padding: 6px 10px;
        justify-content: flex-start;
        pointer-events: auto; 
    }
    .gallery-wrapper {
        width: 100%;
        display: flex;
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 6px;
        align-items: flex-start; 
    }
    .gallery-wrapper .small-thumb {
        position: relative;
        transform: none !important;
        z-index: auto !important;
        top: 0;
        left: 0;
        width: 70px; 
        height: 100px;
        margin: 0;
        flex: 0 0 auto;
    }
    
    .small-thumb:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(12, 20, 32, 0.1);
        border-color: #fff;
    }

    /* Scrollbar minimalis untuk mobile */
    .gallery-wrapper::-webkit-scrollbar {
        height: 7px;
    }
    .gallery-wrapper::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background: rgba(0, 0, 0, 0.08);
    }
}

/* 3. KARTU AKSI/INFORMASI (KANAN BAWAH) */
.action-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #FFFFFF;
}

.action-content {
    text-align: center;
    padding-bottom: 10px;
}

.action-icon-envelope {
    margin: 0 auto 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    background-color: var(--light-blue); /* Biru Muda */
    color: var(--primary-blue); /* Ikon Biru Primary */
    font-size: 1.5em;
}

.action-card h4 {
    margin: 0 0 5px 0;
    color: var(--dark-text);
}

.action-card .small-text {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 15px;
}

/* Tombol Aksi */
.cta-button {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 50px; 
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.primary-btn {
    background-color: var(--primary-blue);
    color: white;
    margin-top: 30px;
}

.primary-btn:hover {
    background-color: var(--hover-blue);
    transform: translateY(-1px);
}

.secondary-btn {
    background-color: var(--primary-blue);
    color: white;
    font-size: 0.9em;
}
.secondary-btn:hover {
    background-color: var(--hover-blue);
}

.full-width-cta {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .legal-grid-layout {
        grid-template-columns: 1fr;
    }
    .right-column-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    .main-doc-card .doc-content-wrapper {
        flex-direction: column;
    }
    .doc-thumbnail.doc-left {
        width: 100%;
        height: 150px;
        border-right: none;
        border-bottom: 3px solid var(--primary-blue); /* Biru Primary */
    }
    .doc-thumbnail.doc-right {
        right: 10px;
        top: 20px;
        transform: none;
    }
}


/* ===== Contact - Light layout (from reference) ===== */
.contact-light-section { background: #f7fbff; color: #05323b; padding-bottom: 60px; }
.contact-hero { background: url('assets/hero-light.jpg') center/cover no-repeat; padding: 48px 0 28px; }
.contact-hero .hero-inner { text-align: center; color: #052a33; }
.hero-title { font-size: 34px; margin: 6px 0 4px; font-weight:800; color:#052a33; }
.hero-sub { color:#4b6b72; margin:0 0 6px; }

/* main card */
.contact-card-wrap { margin-top: -36px; margin-bottom: 34px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(8,40,50,0.06);
  border: 1px solid rgba(3,105,161,0.04);
  overflow: hidden;
}
@media (max-width: 980px) {
  .contact-card { grid-template-columns: 1fr; padding: 20px; }
  .contact-hero { padding: 36px 0 16px; }
}

/* left */
.cc-left { padding-right: 26px; display:flex; flex-direction:column; gap:16px; }
.cc-left h3 { margin:0 0 6px; font-size:20px; color:#032832; }
.cc-left .muted { color:#547b82; font-size:14px; margin:0 0 8px; }

/* contact items list */
.contact-items { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.contact-items li { display:flex; gap:12px; align-items:flex-start; }
.ci-icon { width:44px; height:44px; border-radius:8px; background: linear-gradient(180deg,#cfefff,#b6e7ff); display:flex; align-items:center; justify-content:center; color:#036b93; font-size:18px; box-shadow:0 8px 20px rgba(3,105,161,0.06); flex-shrink:0; }
.contact-items strong { display:block; color:#033642; font-weight:800; font-size:14px; }
.contact-items div { color:#5e7f85; font-size:14px; }

/* social */
.social-row { display:flex; gap:10px; margin-top:6px; }
.sbtn { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:8px; background: #eef8ff; color:#036b93; text-decoration:none; font-weight:700; box-shadow:0 8px 20px rgba(3,105,161,0.04); transition: transform .22s, background .22s; }
.sbtn:hover { transform: translateY(-4px); background: linear-gradient(90deg,#dff6ff,#bfeeff); }

/* right (form) */
.cc-right { padding-left: 26px; border-left: 1px solid rgba(3,105,161,0.04); }
@media (max-width:980px){ .cc-right { border-left:none; padding-left:0; } }

.cc-right h3 { margin:0 0 10px; color:#032832; font-size:20px; }

/* form fields (floating label) */
.contact-form .row-2 { display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-bottom:8px; }
@media (max-width:600px){ .contact-form .row-2{ grid-template-columns:1fr; } }

.field { position: relative; display:block; }
.field input, .field textarea {
  width:100%; padding:12px 12px; border-radius:8px; border:1px solid rgba(3,105,161,0.08);
  background: #fbfeff; font-size:14px; color:#05323b; transition: box-shadow .18s, border-color .18s;
}
.field textarea { min-height:110px; resize:vertical; }
.field span {
  position:absolute; left:12px; top:50%; transform:translateY(-50%); color:#7b9aa0; pointer-events:none;
  background: transparent; padding:0 6px; transition: all .18s ease;
}
.field input:focus, .field textarea:focus { outline:none; border-color:#57c1ff; box-shadow:0 8px 22px rgba(5,115,160,0.08); }
.field input:focus + span, .field textarea:focus + span,
.field input:not(:placeholder-shown) + span, .field textarea:not(:placeholder-shown) + span {
  top:-10px; left:10px; font-size:12px; color:#057bb0; background:#ffffff;
}

/* actions */
.form-actions { display:flex; gap:12px; align-items:center; margin-top:8px; }
.btn-primary { background: linear-gradient(90deg,#0096d6,#2bb7f0); color:#fff; padding:10px 18px; border-radius:8px; border:none; font-weight:700; cursor:pointer; box-shadow:0 12px 30px rgba(27,140,200,0.12); transition: transform .18s; }
.btn-primary:hover { transform: translateY(-3px); }

/* map */
.map-wrap { margin-top:18px; }
.map-wrap iframe { border-radius:10px; box-shadow: 0 12px 40px rgba(8,40,50,0.06); border:0; }

/* reveal base (works with your initRevealStagger) */
.contact-light-section .reveal { will-change: opacity, transform; }


.client-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}


/* ---- Certifications: reference-like layout (blue background + white card) ---- */
.cert-section { padding:72px 0; }
.cert-wrapper { display:grid; grid-template-columns: 1fr 1fr; gap:28px; align-items:center; max-width:1200px; margin:0 auto; }
@media (max-width:920px){ .cert-wrapper { grid-template-columns: 1fr; } }

/* LEFT textual area */
.cert-left { padding:12px 20px; }
.kicker { color:#0aa3c7; font-weight:700; margin-bottom:8px; }
.cert-title { font-family:'Poppins', sans-serif; font-size:32px; margin:0 0 12px; color:#042e3f; }
.cert-desc { color:#496e73; max-width:520px; margin-bottom:12px; line-height:1.6; }
.meta-row { color:#6b8b8f; margin-bottom:18px; }
.meta-item { margin-right:12px; }

/* CTA buttons */
.cta-row { display:flex; gap:12px; margin-top:6px; }
.cta-btn { padding:10px 16px; border-radius:10px; font-weight:700; text-decoration:none; display:inline-flex; gap:8px; align-items:center; }
.cta-btn.primary { background:linear-gradient(90deg,#007bff,#00b0ff); color:#fff; box-shadow:0 14px 40px rgba(0,123,255,0.12); }
.cta-btn.outline { background:transparent; border:1px solid rgba(3,105,161,0.08); color:#036b93; }

/* RIGHT panel: blue background with white card */
.blue-panel { background:linear-gradient(180deg,#0d86d6 0%, #0a7fce 35%, #0f9fe3 100%); padding:42px; border-radius:14px; position:relative; overflow:visible; }
@media (max-width:920px){ .blue-panel { padding:28px; } }

.panel-inner { display:flex; align-items:center; gap:20px; justify-content:space-between; position:relative; min-height:360px; }

/* big decorative text on left in panel */
.panel-left-deco { position:absolute; left:36px; top:40px; font-size:120px; font-weight:800; color:rgba(255,255,255,0.06); letter-spacing:8px; transform:translateZ(0); user-select:none; pointer-events:none; }

/* white card */
.card-wrap { flex:0 0 54%; display:flex; justify-content:center; align-items:center; }
.card { background:#fff; border-radius:14px; padding:28px; box-shadow: 0 30px 80px rgba(2,20,30,0.15); display:flex; align-items:center; justify-content:center; max-width:520px; width:100%; }
.card img { width:100%; height:auto; max-height:520px; object-fit:contain; display:block; border-radius:6px; }

/* right controls (vertical) */
.panel-controls { display:flex; flex-direction:column; align-items:center; gap:12px; min-width:86px; }
.ctrl-arrow { background:transparent; border:1px solid rgba(255,255,255,0.12); color:#fff; padding:10px 12px; border-radius:8px; font-size:20px; cursor:pointer; }
.index-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.index-item { color:rgba(255,255,255,0.7); background:transparent; padding:6px 10px; border-radius:6px; font-weight:700; cursor:pointer; }
.index-item.active { background:#fff; color:#007bff; box-shadow:0 8px 18px rgba(0,123,255,0.12); transform:translateX(4px); }

/* responsive tweaks */
@media (max-width:720px){
  .panel-left-deco { display:none; }
  .panel-controls { flex-direction:row; gap:8px; margin-top:10px; justify-content:center; }
  .index-list { flex-direction:row; }
  .card-wrap { order:2; width:100%; }
  .cert-left { order:1; margin-bottom:18px; }
  .panel-inner { flex-direction:column; min-height:auto; }
}

/* === PERBAIKAN RESPONSIVE TAMBAHAN === */

/* 1. Membuat features-grid di section 'about' menjadi 1 kolom di mobile */
@media (max-width: 768px) {
  .about-section .features-grid {
    grid-template-columns: 1fr;
    gap: 10px; /* Sedikit mengurangi jarak di mobile */
  }
}

/* 2. Perbaikan untuk carousel klien di mobile */
@media (max-width: 768px) {
  .clients-showcase .section-title {
    font-size: 1.9em; /* Perkecil font judul (dari 2.5em) */
  }

  .clients-showcase .section-subtitle {
    font-size: 1em;
    padding: 0 12px; /* Agar tidak menempel di tepi layar */
  }

  /* Perkecil lebar fade agar logo terlihat */
  .logo-carousel-wrapper::before,
  .logo-carousel-wrapper::after {
    width: 50px; /* Perkecil dari 150px */
  }

  .client-logo-group {
    gap: 40px; /* Kurangi jarak antar logo (dari 80px) */
  }

  .client-logo {
    max-height: 50px; /* Perkecil tinggi logo (dari 80px) */
  }
}

/* Override gradient hero title -> tampil solid hitam */
.hero-section h1#hero-title {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #000000 !important;
  /* jika masih terlihat transparan, reset fill dan force color */
  -webkit-text-fill-color: unset !important;
  -webkit-text-stroke: 0 !important;
}

/* Override warna judul Klien Kami */
.clients-head h2,
.clients-showcase .section-title {
  color: #000000 !important;
}
