:root {
  --bg: #05070b;
  --card: rgba(14, 18, 28, 0.88);
  --text: #758ef1;
  --muted: #aab4c8;

  --primary: #B7D3FF;
  --primary-dark: #223B66;

  --accent-blue: #9FC4FF;
  --accent-blue-strong: #B7D3FF;
  --accent-blue-dark: #1A2D4D;
  --accent-blue-deep: #223B66;
  --accent-blue-soft: rgba(159, 196, 255, 0.18);

  --soft: rgba(37, 53, 88, 0.42);
  --cream: rgba(18, 24, 38, 0.92);
  --dark: #020305;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(24, 44, 84, 0.58), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(10, 29, 68, 0.42), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(18, 32, 58, 0.28), transparent 34%),
    linear-gradient(180deg, #030406 0%, #05070b 45%, #08101c 100%);
}

a {
  color: inherit;
}

.page {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

/* =====================================================
   CLEANED & FIXED NAVBAR (FLEXBOX INLINE)
===================================================== */
.navbar {
  position: sticky;
  top: 14px;
  z-index: 100;
  margin: 22px auto 0;
  width: 100%;
  padding: 12px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 13, 20, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid rgba(159, 196, 255, 0.32);
  box-shadow: 0 8px 20px rgba(80, 130, 220, 0.22);
}

.brand-name {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  text-decoration: none;
  color: #d9e6fb; 
  font-size: 15px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #B7D3FF;
}

.nav-order {
  min-width: 100px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1A2D4D, #223B66);
  color: #f5f8ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(159, 196, 255, 0.22);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.nav-order:hover {
  background: linear-gradient(135deg, #223B66, #2E4D84);
  transform: translateY(-1px);
}

/* Hide unused old wrappers */
.brand-logo-wrap, .nav-button, .order-btn, .nav-cta {
  display: none !important;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  min-height: calc(100vh - 90px);
  padding: 62px 0 42px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 54px;
}

.badge,
.section-heading span,
.cta span,
.mini-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 9px 14px;
  border: 1px solid rgba(159, 196, 255, 0.22);
  border-radius: 999px;
  background: rgba(20, 28, 43, 0.82);
  color: #9FC4FF;
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 8vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 900;
  color: #ffffff;
}

.hero h1 span {
  display: block;
  color: var(--accent-blue);
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn:hover,
.service-card:hover,
.step-card:hover,
.cta a:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #8fb6ff, #3d63a8);
  color: #ffffff;
  box-shadow: none;
  border: 1px solid rgba(183, 211, 255, 0.22);
}

.btn-secondary {
  background: rgba(18, 24, 38, 0.92);
  border: 1px solid var(--line);
  color: #eef3ff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(16, 21, 33, 0.88);
  border: 1px solid var(--line);
  color: #d7e0ef;
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  display: grid;
  place-items: center;
  padding-top: 4px;
}

.phone-mockup {
  width: min(340px, 100%);
  padding: 14px;
  border: 10px solid var(--dark);
  border-radius: 44px;
  background: #fff7f3;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 96px;
  height: 8px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: var(--dark);
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 768 / 1662;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(33, 23, 20, 0.08);
}

.phone-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.phone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.phone-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.phone-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.slide-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(33, 23, 20, 0.12);
}

.slide-caption b {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.slide-caption span {
  margin-top: 4px;
  color: #B8C6DE;
  font-size: 11px;
  line-height: 1.45;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--dark);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 10px 26px rgba(33, 23, 20, 0.16);
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 82px;
  z-index: 6;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 21, 18, 0.28);
  cursor: pointer;
}

.slider-dots button.active {
  width: 18px;
  background: var(--primary);
}

/* =====================================================
   SECTIONS & PRODUCTS
===================================================== */
.section {
  padding: 56px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.cta h2,
.why-card h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.section-heading p,
.cta p,
.why-card p {
  margin: 16px 0 0;
  color:  #9FC4FF;
  font-size: 17px;
  line-height: 1.8;
}

.product-section {
  padding-top: 56px;
}

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

.product-card {
  position: relative;
  min-height: 390px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(159, 196, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(70, 110, 205, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(14, 22, 38, 0.96), rgba(8, 14, 24, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 42px rgba(0, 0, 0, 0.2);
  transition: 0.22s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(159, 196, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 52px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(80, 130, 220, 0.06);
}

.featured-product {
  background:
    radial-gradient(circle at top right, rgba(122, 160, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(19, 32, 58, 0.98), rgba(8, 14, 24, 0.96));
  border-color: rgba(159, 196, 255, 0.2);
}

.product-label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(159, 196, 255, 0.12);
  color: #9fc4ff;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(159, 196, 255, 0.18);
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a2d4d, #2e4d84);
  font-size: 28px;
  box-shadow: 0 12px 24px rgba(60, 104, 180, 0.16);
}

.product-card small {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(22, 29, 43, 0.95);
  color: #9fc4ff;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(159, 196, 255, 0.12);
}

.product-card h3 {
  margin: 22px 0 12px;
  color: #ffffff;
  font-size: 24px;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  color: #b7c6df;
  line-height: 1.7;
  font-size: 15px;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 24px;
  color: #d9e6fb;
  font-size: 14px;
  font-weight: 800;
}

.product-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9fc4ff;
  font-weight: 900;
}

.product-card a {
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1a2d4d, #223b66);
  color: #f5f8ff;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(159, 196, 255, 0.18);
  transition: 0.2s ease;
}

.product-card a:hover {
  background: linear-gradient(135deg, #223b66, #2e4d84);
  transform: translateY(-2px);
}

/* =====================================================
   WHY KADOLINK
===================================================== */
.why-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.why-card {
  padding: 42px 46px;
  border: 1px solid rgba(159, 196, 255, 0.08);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(14, 22, 38, 0.96), rgba(11, 18, 31, 0.94));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 34px;
  align-items: center;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  align-content: center;
}

.why-list div {
  position: relative;
  min-height: 108px;
  padding: 22px 20px 22px 62px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(14, 26, 46, 0.96), rgba(8, 14, 24, 0.96));
  border: 1px solid rgba(159, 196, 255, 0.10);
  color: #eef5ff;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  display: flex;
  align-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.18);
  transition: 0.22s ease;
}

/* =====================================================
   STEPS ORDER
===================================================== */
.order-section {
  padding-top: 46px;
}

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

.step-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 18, 28, 0.88);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.24);
  transition: 0.2s ease;
}

.step-card b {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(24, 36, 58, 0.95);
  color: #9FC4FF;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.05em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* =====================================================
   CTA BOTTOM SECTION
===================================================== */
.cta {
  margin-top: 26px;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(88, 130, 220, 0.22), transparent 30%),
    radial-gradient(circle at center right, rgba(45, 78, 150, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(24, 46, 88, 0.16), transparent 28%),
    linear-gradient(135deg, #03050a 0%, #08101c 42%, #102347 75%, #18345f 100%);
  color: white;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(159, 196, 255, 0.08);
}

.cta h2 {
  max-width: 760px;
}

.cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.68);
}

.cta a,
.cta a:link,
.cta a:visited {
  flex: 0 0 auto;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue-dark), var(--accent-blue-deep));
  color: #F5F8FF;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  border: 1px solid rgba(159, 196, 255, 0.20);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.cta a:hover {
  background: linear-gradient(135deg, #223B66, #2E4D84);
  color: #ffffff;
  transform: translateY(-2px);
}

.cta a:active {
  transform: translateY(0);
}

.footer {
  padding: 30px 0 40px;
  color: #9aa7be;
  text-align: center;
}

/* =====================================================
   MEDIA QUERIES / RESPONSIVE RESPONSES
===================================================== */
@media (max-width: 980px) {
  .nav-menu {
    display: none; /* Menyembunyikan menu di tablet/mobile standar */
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .phone-mockup {
    width: min(330px, 100%);
  }

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

  .why-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 28px;
  }

  .why-list {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta a {
    width: 100%;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 16px;
    margin-top: 14px;
    border-radius: 999px;
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav-order {
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .page {
    width: calc(100% - 20px);
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone-mockup {
    width: min(300px, 100%);
  }

  .steps, .product-grid, .why-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }

  .why-card, .cta {
    padding: 26px;
  }

  .why-list div {
    min-height: auto;
    padding: 18px 16px 18px 56px;
    font-size: 16px;
    border-radius: 22px;
  }

  .cta {
    margin-top: 18px;
    padding: 28px 22px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    text-align: left;
  }

  .cta a {
    width: 100%;
  }

  .footer {
    padding: 28px 16px 36px;
    font-size: 13px;
  }
}
/* =====================================================
   FITUR HAMBURGER MENU (GARIS 3) UNTUK HP
===================================================== */

/* Secara default tombol garis 3 disembunyikan di laptop/desktop */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Animasi Merubah Garis 3 Menjadi Huruf 'X' saat diklik */
.menu-toggle.active .hamburger {
  background: transparent;
}
.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* KETIKA DIBUKA DI HANDPHONE (Responsive Viewport) */
@media (max-width: 980px) {
  .navbar {
    padding: 12px 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Mengatur urutan posisi elemen di HP */
  .brand {
    order: 1 !important; /* Logo tetap nomor 1 di paling kiri */
    margin-right: auto !important; /* Dorong elemen lain ke kanan */
  }

  .menu-toggle {
    display: block !important; /* Memunculkan tombol garis 3 */
    order: 2 !important; /* Posisi setelah logo */
    margin-right: 8px !important; /* Memberikan sedikit jarak ke tombol order */
  }
  
  .nav-cta-wrapper {
    display: block !important;
    order: 3 !important; /* Tombol order di paling kanan */
  }

  .nav-order {
    height: 38px !important;      /* Sedikit diperkecil agar pas di HP */
    min-width: 80px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }

  /* Membuat Menu Tautan Sembunyi dan Menjadi Dropdown saat di HP */
  .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 12px !important;
    right: 12px !important;
    margin-top: 10px !important;
    padding: 24px !important;
    background: rgba(10, 14, 24, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    gap: 20px !important;
    align-items: center !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
    
    /* Kondisi Awal: Disembunyikan sebelum diklik */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 99 !important;
  }

  /* Memunculkan menu dropdown ketika class active dipicu */
  .nav-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
}
/* =====================================================
   SISTEM NAVIGASI RESPONSIF & HAMBURGER (GARIS 3)
===================================================== */

/* Default Desktop: Sembunyikan tombol garis 3 */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 110;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: background 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Animasi Tombol Garis 3 menjadi silang (X) saat diklik */
.menu-toggle.active .hamburger {
  background: transparent;
}
.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* KETIKA DIBUKA DI HANDPHONE (Responsive Viewport) */
@media (max-width: 980px) {
  .navbar {
    padding: 12px 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
  }

  /* Mengatur urutan posisi elemen di HP */
  .brand {
    order: 1 !important; /* Logo tetap nomor 1 di paling kiri */
    margin-right: auto !important; /* Dorong elemen lain ke kanan */
  }

  .menu-toggle {
    display: block !important; /* Memunculkan tombol garis 3 */
    order: 2 !important; /* Posisi setelah logo */
    margin-right: 8px !important; /* Memberikan sedikit jarak ke tombol order */
  }
  
  .nav-cta-wrapper {
    display: block !important;
    order: 3 !important; /* Tombol order di paling kanan */
  }

  .nav-order {
    height: 38px !important;      /* Sedikit diperkecil agar pas di HP */
    min-width: 80px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
  }

  /* Membuat Menu Tautan Sembunyi dan Menjadi Dropdown saat di HP */
  .nav-menu {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 12px !important;
    right: 12px !important;
    margin-top: 10px !important;
    padding: 24px !important;
    background: rgba(10, 14, 24, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    gap: 20px !important;
    align-items: center !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6) !important;
    
    /* Kondisi Awal: Disembunyikan sebelum diklik */
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.3s ease !important;
    z-index: 99 !important;
  }

  /* Memunculkan menu dropdown ketika class active dipicu */
  .nav-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
}