:root {
  --void: #0a0a0c;
  --ink: #131316;
  --ink-2: #1b1b1f;
  --bone: #edeae2;
  --bone-dim: #9c978c;
  --gold: #c9a227;
  --gold-bright: #e4c15a;
  --brass: #8a6f3d;
  --hairline: #2a2a2e;
  --hairline-soft: #1e1e22;

  --display: "Chakra Petch", sans-serif;
  --body: "Space Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

::selection {
  background: var(--gold);
  color: var(--void);
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- texture ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: repeating-linear-gradient(
    0deg,
    #fff 0px,
    transparent 1px,
    transparent 2px,
    #fff 3px
  );
  mix-blend-mode: overlay;
}

/* ---------- folio spine (signature element) ---------- */
.spine {
  position: fixed;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--hairline);
  z-index: 50;
  display: none;
}
.spine-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), var(--brass));
  box-shadow: 0 0 8px rgba(201, 162, 39, 0.6);
  transition: height 0.08s linear;
}
.spine-label {
  position: fixed;
  left: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--bone-dim);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 51;
  transition:
    color 0.3s ease,
    opacity 0.3s ease;
}

@media (min-width: 1100px) {
  .spine,
  .spine-label {
    display: block;
  }
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hairline-soft);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 70px;
}

.logo {
  position: relative;
  height: 70px; /* penting */
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
  transform: translateY(-25px); /* lebih smooth dari margin */
}
/* ---------- X motif (signature element) ---------- */
.x-cut {
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% 100%,
    14px 100%,
    0 calc(100% - 14px)
  );
}
.x-mark {
  position: relative;
  width: 1em;
  height: 1em;
  display: inline-block;
}
.x-divider {
  position: relative;
  height: 64px;
  margin: 0 auto;
}
.x-divider::before,
.x-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 2px;
  background: var(--gold);
}
.x-divider::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.x-divider::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.x-watermark {
  position: absolute;
  top: 50%;
  right: -4%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 700;
  font-size: min(60vw, 900px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--hairline);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav-links a {
  color: var(--bone-dim);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover {
  color: var(--bone);
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--void) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--bone);
  display: block;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: var(--void);
    border-bottom: 1px solid var(--hairline-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 40px 36px;
    gap: 22px;
    transform: translateY(-130%);
    transition: transform 0.35s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-toggle {
    display: flex;
  }
}

/* ---------- eyebrow / folio marker ---------- */
.folio {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.folio::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}

section {
  position: relative;
  z-index: 2;
  padding: 130px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
  font-weight: 700;
}
.hero p.lede {
  margin-top: 26px;
  font-size: 18px;
  color: var(--bone-dim);
  max-width: 480px;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn-primary {
  background: var(--gold);
  color: var(--void);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: var(--hairline);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* manuscript panel signature visual */
.manuscript {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(201, 162, 39, 0.05), transparent 40%),
    var(--ink);
  padding: 30px;
  overflow: hidden;
  clip-path: polygon(
    0 0,
    calc(100% - 36px) 0,
    100% 36px,
    100% 100%,
    36px 100%,
    0 calc(100% - 36px)
  );
}
.manuscript::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 1px solid var(--hairline-soft);
  pointer-events: none;
}
.manuscript::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  background:
    linear-gradient(
      45deg,
      transparent 46%,
      var(--gold) 46%,
      var(--gold) 54%,
      transparent 54%
    ),
    linear-gradient(
      -45deg,
      transparent 46%,
      var(--gold) 46%,
      var(--gold) 54%,
      transparent 54%
    );
  opacity: 0.85;
}
.manuscript-head {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--bone-dim);
  letter-spacing: 0.08em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline-soft);
}
.manuscript-body {
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.m-line {
  height: 9px;
  background: var(--hairline-soft);
  border-radius: 1px;
  position: relative;
  overflow: hidden;
}
.m-line.gold {
  background: rgba(201, 162, 39, 0.22);
}
.m-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.06),
    transparent
  );
  animation: sheen 3.2s ease-in-out infinite;
}
@keyframes sheen {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.manuscript-cap {
  display: block;
  width: 100%;
  height: 56px;
  margin-bottom: 8px;
  position: relative;
}
.manuscript-cap::before,
.manuscript-cap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  width: 44px;
  height: 3px;
  background: var(--gold);
}
.manuscript-cap::before {
  transform: translateY(-50%) rotate(45deg);
}
.manuscript-cap::after {
  transform: translateY(-50%) rotate(-45deg);
}
.manuscript-foot {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--brass);
  letter-spacing: 0.1em;
}

/* ---------- stats strip ---------- */
.stats {
  padding: 60px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat b {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  color: var(--gold-bright);
  display: block;
}
.stat span {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- section headers ---------- */
.section-head {
  max-width: 640px;
  margin-bottom: 70px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  color: var(--bone);
  text-transform: uppercase;
}
.section-head p {
  margin-top: 18px;
  color: var(--bone-dim);
  font-size: 16px;
  max-width: 520px;
}

/* ---------- chapters (services) ---------- */
.chapters {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chapter {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--hairline-soft);
  transition: background 0.3s ease;
}
.chapter:hover {
  background: rgba(255, 255, 255, 0.012);
}
.chapter-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chapter-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.chapter-title h3 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}
.chapter-desc p {
  color: var(--bone-dim);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 360px;
}
.chapter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chapter-list div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14.5px;
  color: var(--bone);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline-soft);
}
.chapter-list div::before {
  content: "×";
  color: var(--gold);
  font-family: var(--mono);
  font-weight: 700;
}

@media (max-width: 860px) {
  .chapter {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ---------- process (folios) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
}
.folio-card {
  background: var(--void);
  padding: 34px 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
  position: relative;
}
.folio-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 16px 0;
  border-color: transparent var(--hairline) transparent transparent;
  transition: border-color 0.3s ease;
}
.folio-card:hover::after {
  border-color: transparent var(--gold) transparent transparent;
}
.folio-card:hover {
  background: var(--ink);
}
.folio-card .fnum {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.folio-card h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  margin-top: 60px;
  text-transform: uppercase;
}
.folio-card p {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--bone-dim);
  line-height: 1.6;
}

@media (max-width: 960px) {
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- case studies ---------- */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-soft);
  border: 1px solid var(--hairline-soft);
}
.case-card {
  background: var(--ink);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 280px;
}
.case-sector {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.case-metric {
  font-family: var(--display);
  font-size: 46px;
  color: var(--gold-bright);
  font-weight: 400;
}
.case-desc {
  color: var(--bone-dim);
  font-size: 14.5px;
  line-height: 1.7;
  margin-top: auto;
}

@media (max-width: 860px) {
  .cases {
    grid-template-columns: 1fr;
  }
}

/* ---------- testimonial ---------- */
.testimonial {
  max-width: 780px;
}
.testimonial blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  color: var(--bone);
}
.testimonial cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--bone-dim);
}
.testimonial cite b {
  color: var(--gold);
}

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  border-bottom: none;
}
.cta h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 4.2vw, 52px);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.25;
  text-transform: uppercase;
}
.cta h2 em {
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 700;
}
.cta p {
  margin: 24px auto 40px;
  color: var(--bone-dim);
  max-width: 460px;
}
.cta .hero-actions {
  justify-content: center;
}

/* ---------- footer ---------- */
footer {
  padding: 70px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.foot-logo {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 16px;
}
.foot-logo .mark {
  color: var(--gold);
  font-style: italic;
}
.foot-col p {
  color: var(--bone-dim);
  font-size: 14px;
  max-width: 260px;
  line-height: 1.7;
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  color: var(--bone);
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.25s ease;
}
.foot-col a:hover {
  color: var(--gold);
}
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--bone-dim);
}

@media (max-width: 800px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.8s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .wrap {
    padding: 0 24px;
  }
  section {
    padding: 80px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero {
    padding-top: 130px;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }
  nav {
    padding: 18px 24px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */

header {
  position: sticky;
  top: 0;
  z-index: 999;
}

nav {
  height: 80px;
  padding: 0 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Logo */

.logo img {
  width: 130px;
  display: block;
}

/* Menu */

nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

/* underline animation */

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #f9a825;
  transition: 0.35s;
}

nav ul li a:hover {
  color: #fff;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: #fff;
}

/* Button */

.nav-btn {
  padding: 12px 22px;
  border-radius: 40px;

  background: #f9a825;
  color: #111;
  text-decoration: none;
  font-weight: 600;

  transition: 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: #ffd54f;
  box-shadow: 0 8px 20px rgba(249, 168, 37, 0.35);
}

/* Hamburger */

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  nav ul {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;

    background: #111;

    flex-direction: column;
    align-items: center;

    padding: 25px 0;

    display: none;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    margin: 15px 0;
  }
}

/* Hero */
.hero {
  height: 90vh;
  background: linear-gradient(to right, #111, #333);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Section */
.section {
  padding: 60px 50px;
}

/* Card */
.card-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

/* Footer */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
}
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  display: block;
  padding: 50px;
  border: 1px solid var(--hairline);
  background: var(--ink);
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: #16161a;
}

.service-number {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--bone-dim);
  max-width: 500px;
  line-height: 1.7;
}

/* efek garis pojok */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 25px 25px 0;
  border-style: solid;
  border-color: transparent var(--hairline) transparent transparent;
  transition: 0.3s;
}

.service-card:hover::after {
  border-color: transparent var(--gold) transparent transparent;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.sub-card {
  padding: 40px;
  border: 1px solid var(--hairline);
  background: var(--ink);
  transition: all 0.3s ease;
  position: relative;
  min-height: 220px;
}

.sub-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: #16161a;
}

.sub-card h3 {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sub-card p {
  color: var(--bone-dim);
  font-size: 14px;
  line-height: 1.7;
}

.sub-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 20px 20px 0;
  border-style: solid;
  border-color: transparent var(--hairline) transparent transparent;
  transition: 0.3s;
}

.sub-card:hover::after {
  border-color: transparent var(--gold) transparent transparent;
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: white;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }

  nav ul.active {
    display: flex;
  }
}
.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}
.contact {
  padding: 120px 40px 60px;
  text-align: center;
}

.contact h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact p {
  color: #aaa;
  margin-bottom: 40px;
}

/* CONTAINER */
.contact-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* MAP */
.contact-map {
  flex: 1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 10px;
}

/* KANAN */
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FORM */
.contact-form {
  background: #111;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: white;
}

/* BUTTON */
.contact-form button {
  padding: 12px;
  background: #d4af37;
  border: none;
  border-radius: 6px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #f1c40f;
}

/* INFO */
.contact-info {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  color: #bbb;
  text-align: left;
}

.contact-info h3 {
  color: #fff;
  margin-bottom: 8px; /* kecilin jarak judul */
}

.contact-info p {
  margin: 4px 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
.portfolio-page {
  padding: 120px 40px;
  text-align: center;
}

.portfolio-page h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.portfolio-page p {
  color: #aaa;
  margin-bottom: 30px;
}

/* FILTER BUTTON */
.portfolio-filter {
  margin-bottom: 40px;
}

.portfolio-filter button {
  background: #111;
  color: #aaa;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .portfolio-filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }

  .portfolio-filter button {
    width: 100%;
    padding: 10px 6px;
    font-size: 11px;
    text-align: center;
  }
}
.portfolio-filter button:hover,
.portfolio-filter .active {
  background: #d4af37;
  color: black;
}

/* GRID */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ITEM */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* IMAGE */
.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

/* OVERLAY */
.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  text-align: left;
}

/* HOVER EFFECT */
.portfolio-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 992px) {
  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-container {
    grid-template-columns: 1fr;
  }
}
.portfolio-page {
  padding: 120px 40px;
  min-height: 100vh; /* penting biar full layar */
  text-align: center;
}
/* =========================
   FOOTER
========================= */
footer {
  background: #111;
  color: #ddd;
  margin-top: 80px;
  padding: 70px 8% 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
}

/* Heading */
.footer-grid h4 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 10px;
}

.footer-grid h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #f9a825;
  border-radius: 10px;
}

/* =========================
   BRAND
========================= */

.footer-brand img {
  width: 120px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #999;
  line-height: 1.8;
  font-size: 14px;
}

/* =========================
   LINKS
========================= */

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f9a825;
  padding-left: 6px;
}

/* =========================
   CONTACT
========================= */

.footer-contact p {
  margin-bottom: 12px;
  color: #999;
  line-height: 1.7;
  font-size: 14px;
}

.footer-contact a {
  color: #bbb;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f9a825;
}

/* =========================
   SOCIAL
========================= */

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1d1d1d;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9a825;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social a:hover i {
  background: #f9a825;
  color: #111;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  color: #888;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-grid h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social a {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
/* =========================
   BREADCRUMB
========================= */

.breadcrumb {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: var(--mono);
  font-size: 13px;

  background: none;
  border: none;
  padding: 0;
}

.breadcrumb a {
  color: var(--bone-dim);
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .separator {
  color: #555;
  font-size: 10px;
}

.breadcrumb .current {
  color: var(--gold);
  font-weight: 500;
}

.breadcrumb i {
  font-size: 11px;
}
.contact-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  margin-top: 60px;
}

.contact-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
  height: 100%;
}

.contact-card h3 {
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 35px;
  color: #aaa;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item i {
  color: #d4af37;
  font-size: 20px;
  margin-top: 5px;
  width: 25px;
}

.contact-item h4 {
  margin-bottom: 5px;
}

.contact-item span {
  color: #999;
  font-size: 14px;
}

.contact-form {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #d4af37;
  color: #000;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #fff;
}

.contact-map {
  margin-top: 50px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 6px;
}
/* =========================
   FLOATING WHATSAPP
========================= */

.floating-wa {
  position: fixed;
  right: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;

  border-radius: 60px;

  background: #25d366;
  color: #fff;

  text-decoration: none;

  font-weight: 600;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

  transition: 0.3s;

  z-index: 9999;
}

.floating-wa i {
  font-size: 28px;
}

.floating-wa:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .floating-wa {
    width: 60px;
    height: 60px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-wa span {
    display: none;
  }
}
/* ==========================
   CONTACT RESPONSIVE
========================== */

@media (max-width: 768px) {
  .contact-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .contact-card,
  .contact-form {
    padding: 25px;
    border-radius: 16px;
  }

  .contact-map {
    margin-top: 30px;
  }

  .contact-map iframe {
    height: 280px;
  }
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item i {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1b1b1b;
  border-radius: 50%;

  color: #d4af37;

  font-size: 18px;
}
.text-wa {
  display: inline-block;
  margin-top: 8px;
  color: #e4c15a;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.text-wa:hover {
  color: #d4b14a;
  transform: translateX(5px);
}
.about-hero {
  padding: 120px 40px 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero p {
  color: #aaa;
}

/* ABOUT CONTENT */
.about-section {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-section img {
  width: 100%;
  border-radius: 12px;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* VISI MISI */
.visi-misi {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
}

.card h3 {
  color: #e4c15a;
  margin-bottom: 10px;
}

.card p {
  color: #ccc;
}

/* KEUNGGULAN */
.keunggulan {
  padding: 60px 40px;
  text-align: center;
}

.keunggulan h2 {
  margin-bottom: 30px;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.box {
  background: #111;
  padding: 20px;
  border-radius: 12px;
}

.box h3 {
  color: #e4c15a;
  margin-bottom: 10px;
}

.box p {
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-section,
  .visi-misi {
    grid-template-columns: 1fr;
  }

  .box-container {
    grid-template-columns: 1fr;
  }
}
.hero-layanan {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;

  background: url("../img/hero-layanan.jpg") center/cover no-repeat;
}

/* overlay biar teks kebaca */
.hero-layanan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 24, 0.75); /* dark overlay */
}

.hero-layanan .wrap {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

/* styling tambahan */
.hero-layanan h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 10px 0;
}

.hero-layanan p {
  color: #cad5e2;
}

.folio {
  color: #e4c15a;
  letter-spacing: 2px;
  font-size: 14px;
}

/* breadcrumb */
.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb .current {
  color: #e4c15a;
}
