* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

.header-nav {
  background: linear-gradient(to right, #1e3c72, #2a5298);
  padding: 20px 20px;
  margin-bottom: 1px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.images-bnetfit a {
  text-decoration: none;
}


.images-bnetfit img {
  height: 60px; /* Ukuran tinggi logo */
  width: auto; /* Biar proporsional */
  display: block;

}
.nav-links a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}


.nav-links a:hover {
  text-decoration: underline;
}

/* Tombol hamburger default disembunyikan */
.hamburger {
  display: none;
  font-size: 26px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
}

.hamburger i {
  color: white;
  font-size: 28px;
}


/* Default menu (laptop/tablet) */
.nav-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  /* Tampilkan hamburger di HP */
  .hamburger {
    display: block;
  }

  /* Sembunyikan menu di HP */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #0c1a32;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
    width: 200px;
  }

  /* Tampilkan saat dibuka */
  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    color: white;
    padding: 10px 0;
    border-bottom: 1px solid #1e2e4d;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}


.hero {
  padding: 4rem 2rem;
  text-align: center;
}

.hero h2 {
  font-size: 2.2rem;
  color: #2a5298;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
}

.Hero {
  Padding : 1rem 1rem;
  text-align: center;
}

.Hero h2 {
  font-size: 2rem;
  color: #2a5298;
  margin-bottom: 1rem;
}



.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolom di laptop */
  gap: 2rem;
  padding: 4rem 2rem;
}

.card {
  background-color: #dcdcdc;
  border: 1px solid #333;
  border-radius: 15px;
  padding: 2rem;
  width: 100%;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(59, 1, 249, 0.3);
}

.card h3 {
  color: black;
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  margin: 0.5rem 0;
  color: black;
}

.card .price {
  font-size: 1.8rem;
  margin-top: 1rem;
  font-weight: bold;
  color: #fff;
}

.card button {
  background: #00c853;
  border: none;
  padding: 10px 15px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.whatsapp {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.whatsapp a {
  background-color: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.whatsapp a:hover {
  background-color: #2a5298;
}

.footer-bnetfit {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  font-family: sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 300px;
  margin: 10px 20px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 10px;
}

.footer-column h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.whatsapp {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.whatsapp-icon img {
  width: 50px;
  height: 50px;
  background-color: #6ec1e4;
  padding: 10px;
  border-radius: 8px;
  margin-right: 10px;
}

.wa-label {
  color: #6ec1e4;
  font-weight: bold;
}

.price {
  color: black !important;
  font-weight: bold;
  font-size: 28px;
  margin-top: 10px;
}

.harga-depan {
  font-size: 40px;
  text-decoration: underline;
}

.harga-belakang {
  font-size: 26px;
}

.harga-depan, .harga-belakang {
  transition: all 0.3s ease;
}

.cta-daftar {
  text-align: center;
  margin: 40px 0;
}

.cta-daftar a {
  background-color: #007bff;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-daftar a:hover {
  background-color: #0056b3;
}




@media (max-width: 768px) {
  .packages {
    flex-direction: column;
    align-items: center;
  }
}


.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 600px; /* bisa diubah sesuai kebutuhan */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}


.slides img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* atau "contain" kalau mau seluruh gambar keliatan */
  flex-shrink: 0;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
  border-radius: 10px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.nav:hover {
  background-color: rgba(0,0,0,0.7);
}

/* Di HP (414px ke atas), jadi 2 kolom */
@media (max-width: 768px) {
  .packages {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Di HP kecil (di bawah 414px), jadi 1 kolom */
@media (max-width: 414px) {
  .packages {
    grid-template-columns: 1fr;
  }
}

body.light-mode {
  background-color: #ffffff;
  color: #000000;
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6,
body.light-mode p,
body.light-mode label,
body.light-mode a,
body.light-mode span,
body.light-mode li,
body.light-mode button,
body.light-mode input,
body.light-mode select,
body.light-mode textarea {
  color: #000000 !important;
}

/* Card background terang */
body.light-mode .card {
  background-color: #f2f2f2;
  border-color: #cccccc;
}

/* Link navbar dan lainnya */
body.light-mode .nav-links a {
  color: white !important;
  font-weight: bold;
}

/* Hero section */
body.light-mode .hero h2,
body.light-mode .Hero h2 {
  color: #000000;
}

/* Footer */
body.light-mode .footer-bnetfit {
  background-color: #eaeaea;
  color: #000000;
}

/* Tombol */
body.light-mode .theme-toggle-btn {
  background-color: #ddd;
  color: #000;
  border: 1px solid #bbb;
}

.theme-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #ccc;
  color: #ccc;
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
  border-color: #fff;
  color: #fff;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  width: 300px;
  color: var(--text-color);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.03);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-card h4 {
  text-align: right;
  font-weight: normal;
  color: var(--accent-color, #00bcd4);
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
  border: 2px solid var(--accent-color, #00bcd4);
}



#faq h2 {
  font-size: 28px;
  color: var(--text-color);
}

.faq-item {
  margin-bottom: 20px;
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--accent-color, #00bcd4);
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
}

.faq-question {
  font-size: 18px;
  cursor: pointer;
  color: var(--accent-color, #00bcd4);
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  font-size: 16px;
  margin-top: 8px;
  color: var(--text-color);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Live Chat Styles */
#live-chat {
  position: fixed;
  bottom: 100px; /* agar di atas tombol dark mode */
  right: 20px;
  z-index: 999;
}

#chat-toggle {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#chat-box {
  background: white;
  color: black;
  width: 250px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-top: 10px;
  display: none;
  position: relative;
}

#chat-box h4 {
  margin-top: 0;
}

#chat-box a {
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
}

.light-mode #chat-box {
  background: #f0f0f0;
  color: #111;
}

.coverage-section {
  padding: 60px 20px;
  text-align: center;
}

.coverage-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.coverage-section p {
  font-size: 1em;
  margin-bottom: 20px;
}

.coverage-list {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.coverage-list li {
  margin: 10px 0;
  font-weight: 500;
}

.map-container {
  margin-top: 30px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
}









