@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Berkshire+Swash&family=Cinzel:wght@400..900&family=Forum&family=Great+Vibes&family=Luckiest+Guy&family=Mea+Culpa&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sanchez:ital@0;1&family=Science+Gothic:wght@100..900&family=ZCOOL+XiaoWei&display=swap');

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bg-app: #0d0b09;
  /* Sleek, dark warm charcoal/brown-black */
  --text-primary: #f2e9e1;
  /* Soft cream text */
  --text-secondary: #bcaea0;
  /* Muted warm grey */
  --text-muted: #7e7062;
  /* Darker muted warm text */
  --text-accent: #fca311;
  /* Vibrant gold/amber accent */
  --on-accent: #0d0b09;
  /* Dark text on gold accent */
  --bg-accent: rgba(252, 163, 17, 0.1);
  /* Subtle gold tint */
  --bg-success: rgba(46, 204, 113, 0.15);
  --text-success: #2ecc71;
  --fill-accent: #fca311;
  --surface-1: #161310;
  --surface-2: #211c17;
  --border: #2b231c;
  --border-strong: #3d3127;
  --border-accent: #fca311;
  --radius: 8px;
  --nav-yellow-start: #ffd54a;
  --nav-yellow-end: #fca311;
  --nav-on-yellow: #2b2204;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-app);
  overflow-x: hidden;
}

section[id],
.hero[id],
.contact-section[id],
.product-card[id] {
  scroll-margin-top: 92px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

/* ===== Hero Section ===== */
.hero-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  /* Full-bleed: break out of the .container max-width */
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
}

.magic-rings-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* pointer-events handled via JS on the hero-wrapper */
}

.magic-rings-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  /* canvas itself never blocks clicks */
}

.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
  max-width: 760px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-accent);
  background: var(--bg-accent);
  border: 1px solid rgba(252, 163, 17, 0.2);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-accent);
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0 auto 1.5rem;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* Hero stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(22, 19, 16, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px) saturate(140%);
  padding: 1.25rem 2rem;
  margin: 0 auto 3rem;
  max-width: 680px;
  width: calc(100% - 2rem);
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0.25rem 0.75rem;
}

.hero-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-accent);
  letter-spacing: -0.01em;
}

.hero-stat-lbl {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

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

  .hero-stat {
    flex: 0 0 45%;
  }
}



.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--fill-accent);
  color: var(--on-accent);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 0.5px solid var(--border-strong);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 2rem;
}

.stat {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat-num {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-accent);
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 200px;

  /* MagicBento Custom Properties */
  --glow-color: 252, 163, 17;
  /* Gold color matching theme */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 170px;

  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Border glow effect */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: radial-gradient(var(--glow-radius) circle at var(--glow-x) var(--glow-y),
      rgba(var(--glow-color), var(--glow-opacity-1, 0)) 0%,
      rgba(var(--glow-color), var(--glow-opacity-2, 0)) 30%,
      transparent 60%);
  border-radius: inherit;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  /* intensity is controlled via JS opacity variables */
  transition: opacity 0.3s ease;
  z-index: 10;
}

.product-card:hover {
  border-color: var(--border-accent);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(var(--glow-color), 0.15);
}

/* Star particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
}

.particle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: rgba(var(--glow-color), 0.2);
  border-radius: 50%;
  z-index: -1;
}

/* Global spotlight styles */
.global-spotlight {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform, opacity;
  z-index: 200 !important;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.bento-section {
  position: relative;
}

.prod-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  gap: 8px;
  z-index: 1;
}

.prod-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  color: var(--nav-on-yellow);
  padding: 4px 12px;
  border-radius: 6px;
  width: fit-content;
  letter-spacing: 0.02em;
}

.prod-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.prod-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.prod-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-accent);
  text-decoration: none;
  padding: 7px 16px;
  border: 1.5px solid var(--border-accent);
  border-radius: 8px;
  width: fit-content;
  margin-top: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}

.prod-cta:hover {
  background: var(--fill-accent);
  color: var(--on-accent);
}

.prod-img-wrap {
  position: relative;
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* Subtle gradient overlay blending image into card background */
.prod-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, var(--surface-2) 0%, transparent 40%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-card {
    flex-direction: column;
    min-height: auto;
  }

  .prod-img-wrap {
    flex: none;
    max-width: 100%;
    height: 180px;
    order: -1;
  }

  .prod-img-wrap::before {
    background: linear-gradient(to top, var(--surface-2) 0%, transparent 40%);
  }

  .prod-content {
    padding: 1.25rem;
  }
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.step {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--bg-accent);
  color: var(--text-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  margin: 0 auto 10px;
}

.step-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.why-card {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.why-icon {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-accent);
}

.why-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.why-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.testi-stars {
  color: #EF9F27;
  font-size: 13px;
  margin-bottom: 8px;
}

.testi-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-accent);
  color: var(--text-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
}

.author-name {
  font-size: 12px;
  font-weight: 500;
}

.author-role {
  font-size: 11px;
  color: var(--text-muted);
}

/* Contact Section — Split Layout */
.contact-section {
  padding: 1rem 0;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  overflow: hidden;
}

.contact-heading {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0.75rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.contact-subtext {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  font-size: 18px;
  color: var(--text-accent);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  color: var(--nav-on-yellow);
  border-color: transparent;
}

.contact-info-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1px;
}

.contact-info-value {
  font-size: 12.5px;
  color: var(--text-secondary);
}

.contact-right {
  display: flex;
}

.contact-map-wrap {
  width: 100%;
  min-height: 340px;
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--border);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .contact-map-wrap {
    min-height: 250px;
  }

  .contact-map-wrap iframe {
    min-height: 250px;
  }
}

/* FAQ — Split Layout with Accordion */
.faq-section {
  padding: 1rem 0;
}

.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.02em;
}

.faq-heading-accent {
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.faq-subtext {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 340px;
}

.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(252, 163, 17, 0.25);
}

.faq-item.active {
  border-color: rgba(252, 163, 17, 0.35);
  box-shadow: 0 4px 20px rgba(252, 163, 17, 0.06);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--text-accent);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  color: var(--nav-on-yellow);
  font-size: 16px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  box-shadow: 0 2px 12px rgba(252, 163, 17, 0.3);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 1.25rem;
}

.faq-item.active .faq-a {
  max-height: 200px;
  padding: 0 1.25rem 1.1rem;
}

.faq-a p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-left {
    position: static;
    text-align: center;
  }

  .faq-subtext {
    max-width: 100%;
  }

  .faq-heading {
    font-size: 1.5rem;
  }
}

.divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 2rem 0;
}

.footer {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  padding: 2rem 1rem 1rem;
  border-top: 1px solid var(--border-soft);
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
}



.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background-color: var(--nav-yellow-start);
  color: var(--bg-main);
  transform: translateY(-3px);
  border-color: var(--nav-yellow-start);
  box-shadow: 0 10px 20px -5px rgba(234, 179, 8, 0.3);
}

.footer-copyright {
  font-size: 13px;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 14px;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 10px 6px 20px;
  max-width: calc(100% - 0px);
  background: rgba(22, 19, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  height: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border: none;
  /* Menghilangkan background abu-abu gelap agar menjadi transparan */
  mix-blend-mode: screen;
  filter: brightness(1.1) drop-shadow(0 0 2px rgba(252, 163, 17, 0.4));
  flex-shrink: 0;
  display: block;
}

.nav-logo span {
  color: var(--text-accent);
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 4px;
}

.nav-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 163, 17, 0.15), rgba(252, 163, 17, 0) 72%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 1;
}

.nav-pill:hover .nav-glow {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  position: relative;
  z-index: 2;
}

.nav-links>li {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

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

.nav-link.active {
  color: var(--nav-on-yellow);
}

.nav-link.active:hover {
  color: var(--nav-on-yellow);
}

.nav-indicator {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  box-shadow: 0 4px 16px rgba(252, 163, 17, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  /* hidden until calculated by JS */
}

.nav-link .ti-chevron-down {
  font-size: 13px;
  transition: transform 0.15s;
}

.nav-dropdown:hover .nav-link .ti-chevron-down,
.nav-dropdown.open .nav-link .ti-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 230px;
  background: rgba(22, 19, 16, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 10px;
}

.nav-dropdown-menu a:hover {
  background: rgba(252, 163, 17, 0.15);
  color: var(--text-accent);
}

.nav-cta {
  background: linear-gradient(135deg, var(--nav-yellow-start), var(--nav-yellow-end));
  color: var(--nav-on-yellow);
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(255, 179, 0, 0.4);
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-primary);
  cursor: pointer;
  flex-shrink: 0;
}

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

@media (max-width: 1024px) {
  .nav-pill {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-inner {
    padding: 6px 8px 6px 16px;
  }

  .nav-mobile-panel {
    display: block;
    position: fixed;
    top: 74px;
    left: 1rem;
    right: 1rem;
    background: rgba(22, 19, 16, 0.95);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 0.5rem 1.1rem 1.1rem;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s;
  }

  .navbar.open .nav-mobile-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-mobile-link {
    display: block;
    padding: 13px 4px;
    font-size: 15px;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 0.5px solid var(--border);
  }

  .nav-mobile-link.active {
    color: var(--text-accent);
    font-weight: 600;
  }

  .nav-mobile-group-label {
    padding: 13px 4px 6px;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-mobile-sub {
    padding: 2px 4px 10px 16px;
    display: flex;
    flex-direction: column;
    border-bottom: 0.5px solid var(--border);
  }

  .nav-mobile-sub a {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
  }

  .nav-mobile-cta {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
  }
}

@media (max-width: 480px) {
  .nav-cta-top {
    display: none;
  }
}

/* ===== Tentang Kami ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
}

.about-value-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-accent);
  color: var(--text-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-value-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ScrollVelocity Banner ===== */
.sv-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 3rem;
  overflow: hidden;
  padding: 0.9rem 0;
  background: transparent;
}

.sv-row {
  position: relative;
  overflow: hidden;
  display: flex;
}

.sv-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  align-items: center;
}

.sv-track span {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 0.15em 0;
  color: var(--text-accent);
  user-select: none;
  opacity: 0.7;
}

.sv-logo {
  height: clamp(1.1rem, 2.5vw, 1.6rem);
  width: auto;
  margin-top: -4px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 2px rgba(252, 163, 17, 0.4));
  user-select: none;
}

/* Glare Hover Effect */
.glare-hover {
  position: relative;
  overflow: hidden;
}

.glare-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--gh-angle, -45deg),
      hsla(0, 0%, 0%, 0) 60%,
      var(--gh-rgba, rgba(255, 255, 255, 0.5)) 70%,
      hsla(0, 0%, 0%, 0),
      hsla(0, 0%, 0%, 0) 100%);
  transition: var(--gh-duration, 650ms) ease;
  background-size:
    var(--gh-size, 250%) var(--gh-size, 250%),
    100% 100%;
  background-repeat: no-repeat;
  background-position:
    -100% -100%,
    0 0;
  pointer-events: none;
}

.glare-hover:hover::before {
  background-position:
    100% 100%,
    0 0;
}

.glare-hover--play-once::before {
  transition: none;
}

.glare-hover--play-once:hover::before {
  transition: var(--gh-duration, 650ms) ease;
  background-position:
    100% 100%,
    0 0;
}

/* =========================================
   Portfolio Detail Page Styles
   ========================================= */
.portfolio-page {
  padding: 2rem 0;
}

.portfolio-container {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
  align-items: start;
}

.portfolio-sidebar {
  position: sticky;
  top: 100px;
}

.portfolio-sidebar .breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.portfolio-sidebar .breadcrumbs a {
  color: var(--text-accent);
  text-decoration: none;
}

.portfolio-sidebar .breadcrumbs .divider {
  margin: 0 8px;
}

.portfolio-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.portfolio-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.portfolio-tags {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

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

.portfolio-gallery {
  width: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .portfolio-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .portfolio-sidebar {
    position: static;
  }
}

/* =========================================
   Portfolio Main Page Styles (with Filters)
   ========================================= */
.portfolio-header {
  text-align: center;
  padding: 4rem 1rem 3rem;
  background: var(--surface-2);
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 3rem;
}

.portfolio-main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.portfolio-divider {
  width: 60px;
  height: 3px;
  background: var(--fill-accent);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.portfolio-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.portfolio-filter-container {
  text-align: center;
  margin-bottom: 3rem;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0 1rem;
}

.portfolio-filter {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 10px;
  list-style: none;
  justify-content: flex-start;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 5px;
  text-align: left;
}

/* Hide scrollbar for cleaner look */
.portfolio-filter::-webkit-scrollbar {
  display: none;
}

.portfolio-filter {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



.filter-btn {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--text-accent);
  color: var(--text-accent);
}

.filter-btn.active {
  background: var(--fill-accent);
  color: var(--on-accent);
  border-color: var(--fill-accent);
}

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

.portfolio-grid-item {
  /* For GSAP animations */
  transform-origin: center center;
}

.portfolio-card {
  display: block;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.portfolio-info {
  padding: 1.5rem;
  text-align: center;
}

.portfolio-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.portfolio-item-cat {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}