* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}
html, body {
  background: #0b0b0b;
  color: #fff;
  width: 100%;
  overflow: hidden;
}
body::-webkit-scrollbar {
    width: 0;                  /* Chrome, Safari, Opera */
}
/* =========================
   LOGO
========================= */
.logo-img {
    height: 39px;
    cursor: pointer;
    display: block;
}
/* =========================
   NAVBAR BASE
========================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
	
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px);
}
/* =========================
   NAVBAR BACKGROUND
   (PURE TRANSPARENT)
========================= */
.textured-nav {
    position: relative;
    background: rgba(0, 0, 0, 0.25); /* transparent biasa */
    backdrop-filter: blur(16px); 
}

/* =========================
   CONTAINER
========================= */
.nav-container {
    max-width: 1200px;
    margin: auto;
    height: 72px;
    padding: 0 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* =========================
   LOGO (CENTER PERFECT)
========================= */
.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;               /* ADD */
    transform: translate(-50%, -50%);  /* UPDATE */

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   LEFT NAV
========================= */
.nav-left {
    display: flex;
    gap: 22px;
    align-items: center;   /* ADD THIS */
}

.nav-left a {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0.6;
    position: relative;
    transition: opacity 0.3s ease;
}

/* hover */
.nav-left a:hover {
    opacity: 1;
}

/* ACTIVE PAGE */
.nav-left a.active {
    opacity: 1;
}
/* underline glow */
.nav-left a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255,255,255,0.9);
}
/* =========================
   RIGHT NAV
========================= */
.nav-right {
	justify-content: flex-end;
    display: flex;
    gap: 18px;
}
.nav-right a {
    color: #ffffff;
    font-size: 21px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* hover effect */
.nav-right a:hover {
    opacity: 1;
    transform: scale(1.15);
}
.nav-left,
.nav-right {
    flex: 1;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .nav-left {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }
}
.hero-logo {
  width: 700px;
  margin-bottom: 30px;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

/* ================= SNAP ================= */
.snap-container {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.snap-section {
  height: 100vh;
  scroll-snap-align: start;
  position: relative;

  display: grid;
  place-items: center;   /* 🔥 PERFECT CENTER */
}

/* ================= HERO ================= */

.hero-1 {
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/bg2.png') center/cover no-repeat;
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  width: 90%;
}

.hero-inner h2 {
  font-family: 'Teko', sans-serif;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
  transform: skewX(-8deg);   /* 🔥 bagi effect italic sporty */
}
.hero-inner h3 {
  font-family: 'Teko', sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
  transform: skewX(-8deg);   /* 🔥 bagi effect italic sporty */
}

.hero-inner p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.7;
  opacity: 0.85;
  margin-top: 18px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}


/* ================= BUTTON ================= */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;   /* 🔥 INI YANG PENTING */
  align-items: center;
}
@media (max-width: 600px) {
  .hero-logo {
    width: 90px;
  }
}

/* ================================
   KATALOG PREMIUM BUTTON
================================ */
.btn-katalog-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 50px;
  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  white-space: nowrap;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.35);

  backdrop-filter: blur(8px);

  box-shadow:
    0 10px 28px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.08);

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

/* hover katalog */
.btn-katalog-premium:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);

  box-shadow:
    0 18px 45px rgba(0,0,0,0.65),
    inset 0 0 0 1px rgba(255,255,255,0.25);
}

/* click */
.btn-katalog-premium:active {
  transform: translateY(-1px) scale(0.97);
}

/* ================================
   WHATSAPP PREMIUM BUTTON
================================ */
.btn-whatsapp-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 28px;
  border-radius: 999px;

  background: #128C7E;
  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.btn-whatsapp-premium i {
  font-size: 18px;
}

.btn-whatsapp-premium:hover {
  transform: translateY(-3px);
  background: #0c0c0c;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.12);
}

.btn-whatsapp-premium:active {
  transform: translateY(-1px) scale(0.98);
}

/* ================================
   MOBILE STACK
================================ */
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .btn-katalog-premium,
  .btn-whatsapp-premium {
    width: 100%;
    justify-content: center;
  }
}
/* ================= CLIENT SECTION ================= */
.clients-section {
 background: linear-gradient(
  180deg,
  #4f7236 0%,
  #3a5a29 30%,
  #2a431f 60%,
  #162912 100%
);
  color: #fff;
  padding: 100px 10px;
}

.clients-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.clients-main-title {
 font-family: 'Teko', sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
  transform: skewX(-8deg);   /* 🔥 bagi effect italic sporty */
  margin-bottom: 20px;   /* kecilkan jarak bawah */

}

/* sub title */
.clients-sub-title {
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: 600;
  color: #fff;
}

/* IMAGE CONTAINER */
.clients-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* LOGO IMAGE */
.clients-image {
  max-width: 1100px;
  width: 100%;
  object-fit: contain;

  /* bagi nampak lebih smooth */
  filter: brightness(0.95) contrast(1.05);

  transition: transform 0.4s ease, filter 0.4s ease;
}

/* HOVER EFFECT (optional tapi nampak premium) */
.clients-image:hover {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .clients-main-title {
    font-size: 28px;
  }

  .clients-image {
    max-width: 100%;
  }
}
/* ================= VALUE ================= */
.hero-3 {
 background: linear-gradient(
  180deg,
  #4f7236 0%,
  #3a5a29 30%,
  #2a431f 60%,
  #162912 100%
);
}
.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* =========================
   FEATURE CARD (DEFAULT PUTIH)
========================= */
.feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 48px 42px;
  min-height: 460px;

  border: 1px solid #e5e8ee;

  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

/* icon bulat */
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #111;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  margin-bottom: 28px;
}

/* nombor besar */
.feature-no {
  position: absolute;
  top: 36px;
  right: 40px;
  font-size: 56px;
  font-weight: 700;
  color: rgba(0,0,0,0.08);
}

/* text */
.feature-card h3 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 14px;
  color: #111;
}

.feature-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.feature-card .muted {
  margin-top: 16px;
  color: #777;
}

/* =========================
   HOVER / ACTIVE (JADI GELAP)
========================= */
.feature-card:hover,
.feature-card:focus-within {
  background: #1f2225;
  transform: translateY(-2px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .muted {
  color: #ffffff;
}

.feature-card:hover .feature-no {
  color: rgba(255,255,255,0.15);
}

.feature-card:hover .feature-icon {
  background: #ffffff;
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .feature-card {
    min-height: auto;
  }
}
/* ================= CTA ================= */
.hero-4 {
  background: linear-gradient(
  180deg,
  #4f7236 0%,
  #3a5a29 30%,
  #2a431f 60%,
  #162912 100%
);
}
/* ================= GALLERY ================= */
.gallery-section {
  padding: 160px 20px;
  text-align: center;
}

.gallery-title {
  font-family: 'Teko', sans-serif;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
  transform: skewX(-8deg);   /* 🔥 bagi effect italic sporty */
  margin-bottom: 40px;   /* kecilkan jarak bawah */
  margin-top: -40px;     /* 🔥 tolak naik */
}

/* SLIDER */
.gallery-slider {
  position: relative;
  max-width: 1200px;
  height: 550px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

/* TRACK */
.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* IMAGE */
.gallery-track img {
  width: 100%;
  height: 550px;
  flex-shrink: 0;
  object-fit: cover;
}
/* DOT CONTAINER */
.slider-dots {
  position: absolute;
  bottom: 20px;              /* LETAK BAWAH */
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  flex-direction: row;       /* HORIZONTAL */
  gap: 10px;
}

/* DOT */
.slider-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

/* ACTIVE DOT */
.slider-dots span.active {
  width: 24px;
  height: 8px;
  border-radius: 10px;
  background: #fff;
}
/* BUTTON */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.slide-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 44px;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===============================
   PAGE FADE EFFECT
   =============================== */

.fade-page {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-page.show {
  opacity: 1;
  transform: translateY(0);
}
/* BACKGROUND MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ACTIVE STATE */
.modal.show {
  display: block;
  opacity: 1;
}

/* CENTER CONTENT */
.modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  transition: all 0.3s ease;
}

/* IMAGE */
.modal-inner img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ZOOM EFFECT */
.modal.show .modal-inner {
  transform: translate(-50%, -50%) scale(1);
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 35px;
  color: white;
  cursor: pointer;
}
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 130px;

    background-color: #25D366;
    color: #fff;
    border-radius: 50px;

    padding: 10px 18px;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center; /* ✅ center semua */
    gap: 10px;

    font-size: 14px;
    font-weight: 600; /* bagi nampak solid */

    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999;

    transition: 0.3s;
}

/* icon */
.whatsapp-float i {
    font-size: 20px;
}

/* text */
.wa-text {
    font-weight: 500;
	position: center;
}

/* hover effect */
.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}