/* Reset & Base Style */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #030712;
  font-family: "Roboto", sans-serif;
  height: 150vh; /* Sengaja dibuat tinggi agar halaman bisa di-scroll untuk uji coba JS */
}

/* --- NAVBAR CONTAINER --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #090d16 0%, #020408 100%);
  padding: 0 50px;
  height: 80px; /* Tinggi awal sedikit lebih besar */
  border-bottom: 2px solid #0056b3;
  box-shadow: 0 4px 20px rgba(0, 86, 179, 0.15);
  position: fixed; /* Agar navbar menempel di atas saat di-scroll */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.4s ease; /* Transisi halus saat mengecil */
}

/* Class tambahan dari JS ketika di-scroll ke bawah */
.navbar.scrolled {
  height: 60px;
  background: #040810;
  box-shadow: 0 4px 25px rgba(0, 234, 255, 0.1);
}

/* --- LOGO STYLE --- */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-icon {
  position: relative;
  width: 34px;
  height: 34px;
}

.circle {
  width: 100%;
  height: 100%;
  border: 4px solid #334155;
  border-radius: 50%;
  border-top-color: #00eaff;
  border-right-color: #00eaff;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 4px rgba(0, 234, 255, 0.5));
}

.arrow {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid #00eaff;
  transform: rotate(45deg);
}

.logo-text {
  font-family: "Rajdhani", sans-serif;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.logo-text .highlight {
  color: #ff7b00;
  text-shadow: 0 0 15px rgba(255, 123, 0, 0.4);
}

/* --- NAV LINKS --- */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
}

.nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
  color: #00eaff;
  background: rgba(0, 234, 255, 0.03);
}

.icon-arrow {
  font-size: 11px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* --- TOMBOL HOME --- */
.btn-home {
  background: linear-gradient(180deg, #0084ff 0%, #0044cc 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  border: 1px solid #002b80;
  box-shadow:
    0 4px 15px rgba(0, 68, 204, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.2s ease;
  margin-right: 10px;
}

.btn-home:hover {
  background: linear-gradient(180deg, #0095ff 0%, #0055ff 100%);
  transform: translateY(-1px);
}

/* --- DROPDOWN STYLE --- */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: #090d16;
  border: 1px solid #1e293b;
  border-top: 3px solid #00eaff;
  list-style: none;
  min-width: 180px;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  display: block;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(0, 234, 255, 0.05);
  color: #00eaff;
  padding-left: 25px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown:hover .icon-arrow {
  transform: rotate(-180deg);
  color: #00eaff;
}

/* --- HAMBURGER MENU (HIDDEN BY DEFAULT) --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- RESPONSIVE STYLE (MEDIA QUERIES) --- */
@media screen and (max-width: 1024px) {
  .navbar {
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mengubah menu horizontal menjadi vertical sidebar untuk HP */
  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%; /* Bersembunyi di sebelah kanan layar */
    width: 70%;
    height: calc(100vh - 80px);
    background-color: #060a12;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.1, 1, 0.1, 1);
    border-left: 1px solid #1e293b;
  }

  .navbar.scrolled .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }

  /* Ketika class 'active' dipicu oleh JS, menu bergeser masuk */
  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    height: auto;
  }

  .nav-item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #111827;
  }

  .btn-home {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: #0b111e;
    border: none;
    border-left: 2px solid #00eaff;
    margin-left: 15px;
    display: none; /* Akan diatur buka-tutup di HP jika diperlukan */
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  /* Animasi Hamburger menjadi tanda silang (X) saat diklik */
  .menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #00eaff;
  }
  .menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #00eaff;
  }
}
/* --- BANNER CONTAINER --- */
.hero-slider {
  top: 5%;
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 320px; /* Sesuai rasio memanjang pada gambar banner */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #1e293b;
}

.slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

/* --- ANIMASI & PENGATURAN SLIDE --- */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  transition:
    opacity 0.6s ease-in-out,
    visibility 0.6s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Latar Belakang Gradasi Luxury */
.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    #020713 0%,
    #061533 35%,
    #0c2b66 70%,
    #030d22 100%
  );
  z-index: -1;
}

/* Efek lingkaran cahaya abstrak di latar belakang */
.slide-background::before {
  content: "";
  position: absolute;
  right: 15%;
  top: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 149, 255, 0.2) 0%,
    transparent 70%
  );
  z-index: -1;
}

/* --- KONTEN TEKS (KIRI) --- */
.slide-content {
  max-width: 55%;
  z-index: 5;
}

.welcome-text {
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.main-title {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- TOMBOL CTA (CALL TO ACTION) --- */
.cta-buttons {
  display: flex;
  gap: 15px;
}

.cta-buttons a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-align: center;
}

/* Tombol Daftar (Oranye Glossy) */
.btn-register {
  background: linear-gradient(180deg, #ff8c00 0%, #e66000 100%);
  color: #ffffff;
  border: 1px solid #cc5200;
  box-shadow:
    0 4px 15px rgba(230, 96, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-register:hover {
  background: linear-gradient(180deg, #ff9d24 0%, #ff6c02 100%);
  transform: translateY(-1px);
}

/* Tombol Login (Biru Glossy) */
.btn-login {
  background: linear-gradient(180deg, #0066cc 0%, #004499 100%);
  color: #ffffff;
  border: 1px solid #003377;
  box-shadow:
    0 4px 15px rgba(0, 68, 153, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
  background: linear-gradient(180deg, #1a85ff 0%, #0055cc 100%);
  transform: translateY(-1px);
}

/* --- GRAFIS ILUSTRASI (KANAN) --- */
.slide-graphic {
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}

/* Placeholder visual untuk menggantikan karakter game dan koin mas */
.graphic-placeholder {
  width: 100%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 80%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-badge {
  background: linear-gradient(180deg, #ffe066 0%, #cc9900 100%);
  color: #2b1d00;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 8px 20px;
  border-radius: 4px;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
}

/* --- TOMBOL NAVIGASI SLIDER (PANAH KANAN KIRI) --- */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn {
  left: 0;
  border-radius: 0 4px 4px 0;
}
.next-btn {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

/* --- INDIKATOR SLIDER (GARIS HORIZON DI BAWAH) --- */
.slider-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 24px;
  height: 4px;
  background-color: #475569; /* Abu-abu redup untuk status tidak aktif */
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: #ff8c00; /* Warna Oranye menyala saat aktif sesuai gambar asli */
  width: 32px; /* Lebih panjang sedikit untuk efek fokus */
}

/* --- RESPONSIVE UNTUK LAYAR KECIL/HP --- */
@media screen and (max-width: 768px) {
  .hero-slider {
    height: auto;
    min-height: 220px;
  }
  .slide {
    flex-direction: column;
    justify-content: center;
    padding: 30px 40px;
    text-align: center;
  }
  .slide-content {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .main-title {
    font-size: 22px;
  }
  .cta-buttons {
    justify-content: center;
  }
  .slide-graphic {
    display: none; /* Menyembunyikan dekorasi kanan pada layar HP agar tidak sempit */
  }
  .nav-btn {
    width: 30px;
    height: 45px;
  }
}
/* --- CONTAINER UTAMA SECTION --- */
.features-section {
  top: 5%;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  width: 100%;
  position: relative;
}

/* Kotak Pembungkus Utama (Kiri & Kanan) */
.promo-box,
.games-box {
  background-color: rgba(3, 10, 24, 0.8);
  border: 2px solid #0d2142;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.promo-box {
  flex: 4; /* Proporsi ukuran kolom kiri */
  display: flex;
  flex-direction: column;
}

.games-box {
  flex: 5; /* Proporsi ukuran kolom kanan (lebih lebar sedikit) */
}

/* --- TAB HEADER UTAMA --- */
.tab-header {
  display: flex;
  border-bottom: 2px solid #0d2142;
  margin-bottom: 15px;
}

.tab-item {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tab-item.active {
  color: #ffffff;
  background: linear-gradient(180deg, #0f2447 0%, #061329 100%);
  border: 1px solid #1e3a66;
  border-bottom: 1px solid transparent;
  position: relative;
  bottom: -2px;
}

/* --- KONTEN BANNER PROMOSI (KIRI) --- */
.promo-content {
  background: linear-gradient(135deg, #05050d 0%, #0c0f1d 100%);
  border-radius: 6px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  border: 1px solid #111827;
  text-align: center;
  gap: 12px;
  /* Efek tekstur dinding bata halus di latar belakang banner */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Teks Efek Neon Biru */
.neon-text-blue {
  font-family: "Montserrat", sans-serif;
  color: #00f0ff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow:
    0 0 10px rgba(0, 240, 255, 0.6),
    0 0 20px rgba(0, 240, 255, 0.3);
}

/* Teks Efek Neon Pink/Magenta */
.neon-text-pink {
  font-family: "Montserrat", sans-serif;
  color: #ff2a85;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(255, 42, 133, 0.6),
    0 0 20px rgba(255, 42, 133, 0.3);
}

/* --- GRID & KARTU PERMAINAN (KANAN) --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(
    4,
    1fr
  ); /* Membagi rata menjadi 4 kolom kartu */
  gap: 12px;
}

.game-card {
  position: relative;
  border-radius: 6px;
  height: 180px;
  overflow: hidden;
  border: 1px solid #1e293b;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: #00f0ff;
}

/* Gambar Latar Belakang Kartu */
.card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.game-card:hover .card-image {
  transform: scale(1.08); /* Efek zoom tipis saat hover */
}

/* Lapisan Gelap & Teks di Atas Gambar */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    360deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 8px;
}

.game-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Tombol Mainkan Sekarang */
.btn-play {
  width: 100%;
  background: linear-gradient(180deg, #1d4ed8 0%, #1e40af 100%);
  color: #ffffff;
  border: 1px solid #1d4ed8;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 2px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease;
}

.btn-play:hover {
  background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* --- RESPONSIF LAYAR (MEDIA QUERIES) --- */
@media screen and (max-width: 1024px) {
  .features-section {
    flex-direction: column; /* Menumpuk vertikal jika dibuka di layar tablet/HP */
  }
  .games-grid {
    grid-template-columns: repeat(2, 1fr); /* Menjadi 2 kolom di tablet */
  }
}

@media screen and (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr; /* Menjadi 1 kolom penuh di HP kecil */
  }
  .neon-text-blue {
    font-size: 20px;
  }
  .neon-text-pink {
    font-size: 18px;
  }
}
/* --- PEMBUNGKUS UTAMA FOOTER --- */
.oplet-main-footer {
  width: 100%;
  background-color: #030812;
}

/* Pembatas Kontainer agar Sejajar di Tengah */
.footer-max-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- ---------------- ZONE 1: ATAS (GELAP) ---------------- --- */
.footer-upper-zone {
  padding: 20px 0;
  border-bottom: 1px solid #0d1e36;
}

.footer-upper-zone .footer-max-container {
  display: flex;
  gap: 30px;
}

.payment-block {
  flex: 4;
}
.testimonial-block {
  flex: 5;
  overflow: hidden;
}

.section-block-title {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* Grid Kartu Bank */
.bank-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.bank-card {
  background-color: #060e1a;
  border: 1px solid #1d4ed8;
  border-radius: 6px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.bank-card img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0px 0px 1px rgb(13, 151, 133));
}

/* Kartu Bank BNI Spesifik (Oranye) */
.bank-card.orange-glow {
  border-color: #ea580c;
}

/* Hover Efek Bersinar */
.bank-card:hover {
  transform: translateY(-2px);
  border-color: #00f0ff;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* Testimonial Slider Marquee */
.testimonial-slider-container {
  width: 100%;
  overflow: hidden;
}

.testimonial-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.testi-card {
  background-color: #060e1a;
  border: 1px solid #1e293b;
  border-radius: 6px;
  width: 230px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.avatar-icon {
  font-size: 32px;
  color: #94a3b8;
  display: flex;
  align-items: center;
}

.avatar-icon.blue-user {
  color: #38bdf8;
}

.testi-text-wrapper {
  display: flex;
  flex-direction: column;
}

.quote {
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 3px;
}

.stars-rating {
  color: #f59e0b;
  font-size: 10px;
  display: flex;
  gap: 1px;
}

/* --- ---------------- ZONE 2: BAHAW (TEKSTUR KAYU) ---------------- --- */
.footer-wood-zone {
  /* Menggunakan overlay warna gelap di atas gambar pola tekstur serat kayu */
  background:
    linear-gradient(rgba(11, 7, 4, 0.88), rgba(11, 7, 4, 0.88)),
    url("https://images.unsplash.com/photo-1541123437800-1bb1317badc2?q=80&w=1000")
      center/cover;
  border-top: 2px solid #27180c;
  padding: 35px 0 15px 0;
}

.wood-flex-layout {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* Tata Letak Sebelah Kiri */
.wood-left-side {
  display: flex;
  gap: 60px;
  flex: 4;
}

/* Desain Komponen Logo Besar */
.footer-logo-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-graphic {
  position: relative;
  width: 55px;
  height: 55px;
}

.brand-circle {
  width: 100%;
  height: 100%;
  border: 5px solid #475569;
  border-radius: 50%;
  border-top-color: #00eaff;
  border-right-color: #00eaff;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 6px rgba(0, 234, 255, 0.4));
}

.brand-arrow {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #00eaff;
  transform: rotate(45deg);
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand-name .orange-text {
  color: #ff7b00;
}

/* Menu Kolom Teks Tautan */
.wood-menu-column h4 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.wood-menu-column a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.wood-menu-column a:hover {
  color: #00eaff;
}

/* Tata Letak Sebelah Kanan */
.wood-right-side {
  flex: 6;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-social-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.horizontal-links {
  display: flex;
  gap: 20px;
}

/* Desain Bulatan Tombol Media Sosial */
.footer-social-medias {
  display: flex;
  gap: 10px;
}

.sm-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: transform 0.2s ease;
}

.sm-btn:hover {
  transform: scale(1.1);
}
.sm-btn.facebook {
  background-color: #3b5998;
}
.sm-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.sm-btn.telegram {
  background-color: #0088cc;
}

/* Grid Blok Penghitung Statistik */
.statistics-counters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.counter-card-box {
  background: rgba(3, 10, 24, 0.75);
  border: 1px solid #102a54;
  border-radius: 6px;
  padding: 10px 14px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
}

.counter-label {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
}

.number-display {
  color: #ffffff;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Copyright Teks Paling Bawah */
.footer-copyright-bar {
  text-align: center;
  color: #475569;
  font-size: 11px;
  font-weight: 500;
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 15px;
}

/* --- RESPONSIF DISPLAY (MOBILE/HP) --- */
@media screen and (max-width: 1024px) {
  .footer-upper-zone .footer-max-container,
  .wood-flex-layout {
    flex-direction: column;
    gap: 30px;
  }
  .wood-left-side {
    flex-direction: column;
    gap: 25px;
  }
  .statistics-counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .bank-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .statistics-counters-grid {
    grid-template-columns: 1fr;
  }
  .contact-social-row {
    flex-direction: column;
    gap: 20px;
  }
}
