* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  overflow-x: hidden;
}
.navbar {
  background-color: #f8f9f8;
  padding: 5px 0;
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

.logo img {
  height: 90px;
  width: auto;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  z-index: 50;
}
.overlay.show {
  display: block;
}

/* NAV MENU - desktop */
.nav-menu {
  display: flex;
  gap: 30px;
  background: transparent;
  position: static;
  justify-content: center;
  align-items: center;
}

.nav-menu a {
  color: #005073;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: blue;
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}
  .nav-menu a:hover {
    color: #FF7F50;
  }

/* Button umum */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background-color: #b7a0fa;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}


.btn:hover {
  background-color: #7655d1;
  color: black;
  transform: translateY(-2px);
}

/* Tampilkan tombol desktop */
.desktop-btn {
  display: inline-block;
}

/* Sembunyikan tombol di dalam menu di desktop */
.mobile-btn {
  display: none;
}


/* Hamburger menu */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: #005073;
  cursor: pointer;
  /* padding: 0; */
  background: transparent;
  border: none;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  /* Atur ulang kontainer */
  .navbar-container {
    justify-content: space-between;
  }

  /* Hamburger tampil */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 100;
  }

  /* Nav menu jadi dropdown */
  .nav-menu {
    display: none;
    flex-direction: column;
    background: rgba(50,50,100, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 60%;
    height: auto;
    padding: 20px;
    border-radius: 12px 0 0 12px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
    z-index: 99;
  }

  .nav-menu.show {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  .nav-menu a {
    color: white;
    margin: 12px 0;
    font-weight: 500;
  }

  .nav-menu a:hover {
    color: #ffc107;
  }

  /* Tombol dalam menu mobile tampil */
  .mobile-btn {
    display: block;
    margin-top: 20px;
    align-self: flex-start;
    width: 100%;
  }

  /* Tombol desktop disembunyikan */
  .desktop-btn {
    display: none;
  }
}

/* bagian iklan */
.carousel {
  width: 100%;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.carousel-blur-bg {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 900px;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: -1;
  transition: background-image 7s ease-in-out;
}

.carousel-container {
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  display: flex;
  transition: transform 5s ease-in-out;
  width: 100%; /* 3 slides */
  /* overflow: hidden; */
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* filter: blur(2px);     */
  opacity: 0.7;           /* Default: agak transparan */
  transform: scale(0.95); /* Default: sedikit kecil */
  transition: all 0.7s ease;
}

.slide.active {
  filter: blur(0);          /* Aktif: tajam */
  opacity: 1;               /* Aktif: full opacity */
  transform: scale(1.05);   /* Aktif: sedikit lebih besar */
  z-index: 2;
}

/* Gambar umum */
.slide img {
  width: 80%;
  max-width: 90%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.5s, box-shadow 0.5s;
}

/* Gambar yang aktif */
.slide.active img {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}


.carousel-indicators {
  text-align: center;
  margin-top: 20px;
}

.carousel-indicators .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #ccc;
  border-radius: 100%;
  margin: 0 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicators .dot.active {
  background-color: #005073;
}

/*Bagian Banner Iklan*/
.gradient-banner {
  background: linear-gradient(90deg, #7c3aed, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  /* opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out forwards; */
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  font-size: 34px;
  max-width: 100%;
}
.wifi-highlights {
  background: #f5faff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.wifi-highlights .main-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333333;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 300px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-item i {
  font-size: 36px;
  color: #1976d2;
  margin-bottom: 10px;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d47a1;
}

.feature-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Bagian Promosi */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #333;
}

.prom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 5px;
}

.prom-content {
  display: flex;
  flex-direction: row;
  max-width: 1000px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: linear-gradients(135deg, #ffffff00 30%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 12px;
}

.image img {
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text {
  flex: 1;
  text-align: left;
  padding: 0 10px;
  max-width: 600px;
}

.text h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  font-style: justify;
}
.katalink {
  background: linear-gradient(90deg, #007cf0, #00dfd8); /* biru ke toska */
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.text p {
  font-size: 1rem;
  color: #2c3e50;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify ;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #002d9c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .image img {
    width: 80%; /* Supaya tetap fleksibel di mobile */
  }
}

/*Bagian About*/
.about-section {
  background: linear-gradient(to bottom right, #e3f2fd, #bbdefb);
  padding: 60px 20px;
  color: #0d47a1;
  font-family: 'Segoe UI', sans-serif;
}
.about-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}
.desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #0d47a1;
}

.vision-mission {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.vision, .mission {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  flex: 1 1 400px;
  max-width: 500px;
  color: #0d47a1;
  transition: transform 0.3s ease;
}

.vision:hover, .mission:hover {
  transform: translateY(-5px);
}

.vision h3, .mission h3 {
  font-size: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vision i, .mission i {
  color: #1976d2;
}

.mission ul {
  padding-left: 20px;
  list-style: none;
}

.mission li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/*Bagian List Paket Harga*/
.paket-section {
  background-color: #f0f0f0; 
  /* padding-top: 30px;  */
}
.paket-title-wrapper h2{
  padding: 60px 0 10px 0;
  font-size: 32px;
  color: #005073;
  text-align: center;
}
.paket-title-wrapper p{
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}
.card-container-paket {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* gap: 24px; */
  padding: 20px;
  max-width: 1100px;
  margin: auto;
  justify-items: center;
  align-items: center;
}
.card {
  flex: 0 0 50px;
  background: #f4f4f4;
  padding: 20px;
  border-radius: 15px;
  min-height: 180px;
  text-align: center;
  /* box-shadow: 0 0 1px rgba(0,0,0,3); */
}

.nav {
  background: #007BFF;
  color: white;
  border: none;
  font-size: 32px;
  padding: 3px 15px;
  align-items: center;
  cursor: pointer;
  border-radius: 180%;
  z-index: 6;
}

.left {
  position: absolute;
  left: 0;
}

.right {
  position: absolute;
  margin-top: 300px;
  right: 0;
}
.row-paket {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap; /* biar tetap responsif di layar kecil */
}

.card-paket {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  width: 300px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* agar garis tidak tertutup */
}
/* Hover effect */
.card-paket:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.card-paket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  justify-content: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 1;
}
/*Warna Gradiasi Tepi Garis Atas berbeda*/
.card-paket.satu::before {
  background: linear-gradient(to right, #2193b0, #6dd5ed);
}
.card-paket.dua::before {
  background: linear-gradient(to right, #56ab2f, #a8e063);
}
.card-paket.tiga::before {
  background: linear-gradient(to right, #f7971e, #ffd200);
}
.card-paket.empat::before {
  background: linear-gradient(to right, #8e2de2, #4a00e0);
}
.card-paket.lima::before {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
}
/*Warna Text*/
.price-rp.satu{
  background: linear-gradient(to right, #2193b0, #6dd5ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-rp.dua{
  background: linear-gradient(to right, #56ab2f, #a8e063);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-rp.tiga{
  background: linear-gradient(to right, #f7971e, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-rp.empat{
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-rp.lima{
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*Warna Button*/
/* Tombol berbeda warna */
.subscribe-btn.satu-btn {
  background: linear-gradient(to right, #2193b0, #6dd5ed);
}
.subscribe-btn.dua-btn {
  background: linear-gradient(to right, #56ab2f, #a8e063);
}
.subscribe-btn.tiga-btn {
  background: linear-gradient(to right, #f7971e, #ffd200);
}
.subscribe-btn.empat-btn {
  background: linear-gradient(to right, #8e2de2, #4a00e0);
}
.subscribe-btn.lima-btn {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
}

.subscribe-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
  transition: 0.3s;
}
.card-header-img {
  width: 70%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}
/* Responsif */
/* @media (max-width: 900px) {
  .card-container-paket {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 600px) {
  .card-container-paket {
    grid-template-columns: 1fr;
  }
} */
.subtitle {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-bottom: 8px;
}
.speed {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
  font-weight: bold;
}

.price {
  font-size: 28px;
  font-weight: bold;
  color: #1976d2;
  margin-bottom: 4px;
}
.price-rp {
  color: #1976d2; /* warna hitam atau sesuai selera */
  font-weight: bold;
}

.price-month {
  color: #888888; /* warna abu-abu atau beda */
  font-size: 13px; /* sedikit lebih kecil */
  margin-left: 1px; /* jarak antara harga dan /Bulan */
}

.note {
  font-size: 11px;
  color: #888;
  margin-bottom: 12px;
}

.subscribe-btn {
  /* background: #1976d2; */
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 12px;
  width: 100%;
}

.subscribe-btn:hover {
  background: #1256a0;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  color: #444;
  font-size: 14px;
  overflow-y: auto;
  max-height: 180px;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  overflow-y: auto;
  max-height: 180px;
}
.keuntungan{
  /* display: flex; */
  /* gap: 8px; */
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: left;
  color: #333333;
  font-size: 16px;
  /* font-weight: bold; */
  /* padding-left: 0px; */
}
.icon {
  font-size: 16px;
}

/*Bagian Tertarik layanan*/
/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #007bff 0%, #5bc0de 100%);
  color: white;
  position: relative;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-primary-large {
  padding: 14px 28px;
  font-size: 1rem;
  background-color: #fff;
  color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  background-color: #e6e6e6;}

  /*Bagian Syarat dan Ketentuan*/
.terms-header{
  padding: 40px 0 10px 110px;
}
.terms-content ul {
  padding: 0 30px 20px 150px;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}
.terms-content ul li {
  margin-bottom: 10px;
}


/*Bagian Partner*/
.partners {
  background-color: #fff;
  text-align: center;
  padding: 60px 30px;
  overflow: hidden;
}
.gradient-partners {
  color: #005073;
  font-weight: 700;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 20px;
}


.partner-marquee {
  width: 100%;
  overflow: hidden;
  position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  /* padding-left: 0px; */
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 300px; /* Lebih lega */
  animation: marquee 30s linear infinite;
}

.marquee-track img {
  height: 60px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.3s ease;
}

.marquee-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*Bagian Statistik*/
.stats-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.stats-title {
  font-size: 32px;
  color: #005073;
  margin-bottom: 10px;
}

.stats-subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-box {
    /* background: #bbdefb; */
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.stat-box h3 {
  font-size: 2rem;
  /* color: #3a3a3a; */
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 0.95rem;
  color: #2c3e50 ;
}
/* Gradien untuk tulisan angka (h3.count) */
/* Warna polos */
.color-green {
  color: #27ae60; /* hijau polos */
}
.gradient-green{
  background: linear-gradient(90deg, #f7971e, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Gradien biru */
.gradient-blue {
  background: linear-gradient(90deg, #2193b0, #6dd5ed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradien merah */
.gradient-red {
  background: linear-gradient(90deg, #e52d27, #b31217);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradien kuning */
.gradient-yellow {
  background: linear-gradient(90deg, #f7971e, #ffd200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*Bagian Footer*/
footer.footer {
  background: #0d47a1;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  padding: 60px 20px 30px;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg width="100%" height="60" viewBox="0 0 1440 60" xmlns="http://www.w3.org/2000/svg"><path fill="%230d47a1" fill-opacity="1" d="M0,30 C360,0 1080,60 1440,30 L1440,60 L0,60 Z"></path></svg>') no-repeat;
  background-size: cover;
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-left h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: white;
  margin-left: 0;
  margin-right: 222px;
}

.footer-center h3,
.footer-right h3 {
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #1976d2;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-center ul li {
  margin-bottom: 8px;
}

.footer-center ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-center ul li a:hover {
  color: #fff;
}

.footer-right p {
  margin: 6px 0;
}y

.social-icons {
  margin-top: 12px;
}

.social-icons a {
  color: #bbb;
  margin-right: 15px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1976d2;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .footer-left, .footer-center, .footer-right {
    min-width: auto;
  }
}

/*Bagian LOKASI*/
.cek-lokasi {
  background: linear-gradient(to right, #e3f2fd, #ffffff);
  padding: 30px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 0 auto;
  max-width: 1990px;
}

.lokasi-header h2 {
  font-size: 28px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.lokasi-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.lokasi-map iframe {
  border-radius: 10px;
  width: 100%;
  height: 600px;
}

/*BAGIAN LOKASI LANGGANAN SEKRANG*/
.wa-float {
  position: fixed;
  top: 15%;
  right: 0;
  transform: translateY(-50%);
  background-color: #25D366;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  height: 50px;
  width: 60px; /* Awalnya hanya icon */
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  justify-content: 25px;
  padding: 0 14px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: width 0.4s ease;
  z-index: 999;
}

.wa-float:hover {
  width: 240px; /* Membesar saat hover */
  justify-content: flex-start;
}

.wa-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-label {
  color: white;
  font-weight: bold;
  margin-left: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease 0.1s;
  pointer-events: none;
}

.wa-float:hover .wa-label {
  opacity: 1;
}

/*BAGIAN MAPS*/
*, *::before, *::after {
  box-sizing: border-box;
}

.access-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; /* supaya kiri-kanan gak turun ke bawah saat zoom */
  gap: 2rem;
  padding: 2rem;
  background-color: #fff;
  max-width: 1200px;
  margin: 4rem auto 0;
}
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  color: #333333;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 2;
}

.map-wrapper:hover .map-overlay {
  opacity: 1;
  background-color: rgba(108, 118, 145, 0.25);
}

.map-overlay span {
  background: white;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.map-section,
.info-section {
  flex: 0 0 45%; /* fix 50% lebar masing-masing, tetap sejajar */
  min-width: 500px; /* batas aman agar tetap dua kolom saat zoom */
  padding-top: 10px;
}

.map-section iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 10px;
}

.info-section {
  padding-left: 2rem;
  padding-top: 0;
}

.info-section h2 {
  font-size: 2rem;
  color: #005073;
  margin-bottom: 1.5rem;
  margin-right: 200px;
}

.info-item {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  /* gap: 1rem; */
  color: #333;
}
.info-item i {
  margin-right: 10px;
  margin-left: 33px;
  font-size: 1.2rem;
  color: #005073;
  width: 24px;
  text-align: center;
}

.info-pair {
  display: flex;
  /* gap: 30px; */
  flex-wrap: wrap;
}
.service-section{
  padding-top: 0;
}
.service-section h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #333;
  padding-top: 0%;
}
.service-section h3 i{
  color: #005073;
  margin-left: 30px;
  width: 28px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
  justify-content: flex-start;
}

.service-card {
  background: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 14px 15px rgba(0, 0, 0, 0.1);
  width: 182px;
  height: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
}

.service-card i {
  font-size: 1rem;
  color: #0077b6;
  margin-bottom: 4px;
}

.service-card h4 {
  font-size: 0.8rem;
  color: #333;
  margin: 0;
  text-align: center;
}

.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 26px;
  justify-content: flex-start;
  align-items: center;
}
.title-with-rating {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  /* text-transform: uppercase; */
  line-height: 1.2; /* penting untuk jarak */
  margin-left: 10px;
  margin-right: 30%;
}

.rating-below {
  margin-top: 4px;
  font-size: 18px;
  display: flex;
  align-items: center;
  /* gap: 6px; */
  margin-left: 20px;
}

.stars {
  color: #f5a623; /* warna kuning bintang */
}

.half {
  color: #f5a623;
}

.review-text {
  color: #888; /* abu-abu */
  font-size: 12px;
  font-weight: 500;
}


.btn-primary {
  background-color: #0077b6;
  color: white;
  padding: 12px 24px;
  min-width: 180px;
  height: 40px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 10px;
}

.btn-primary:hover {
  background-color: #005f8a;
}

.btn-disabled {
  /* background-color: #e0e0e0; */
  color: #666;
  padding: 12px 50px;
  border: none;
  border-radius: 6px;
  opacity: 0.9;
      /* cursor: not-allowed; */
}

@media (max-width: 768px) {
.access-container {
  flex-direction: column;
  padding: 20px;
}

.info-section {
  padding: 10px 0;
}

.info-pair {
  flex-direction: column;
  gap: 10px;
}
.service-cards{
  flex-direction: column;
        /* align-items: center; */
  }
}

/*METODE PEMBAYARAN*/
.payment-slider {
  overflow: hidden;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  padding: 10px 0;
}

.payment-track {
  display: flex;
  width: calc(200%); /* karena ada duplikat */
  animation: scroll-left 20s linear infinite;
}

.payment-card {
  flex: 0 0 auto;
  width: 120px;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.payment-card img {
  max-width: 100px;
  height: auto;
}

.payment-card:hover {
  transform: scale(1.1);
  z-index: 10;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*BAGIAN FORM LANGGANAN*/
.form-wrapper {
  display: flex;
  justify-content: center; /* Center secara horizontal */
  align-items: flex-start; /* Atur vertical alignment */
  gap: 20px; /* Jarak antar elemen */
  flex-wrap: wrap; /* Agar responsif di mobile */
  padding: 2rem;
}

/* STATUS PANEL */
.status-panel {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 260px;
  position: sticky;
  top: 20px;
  flex-shrink: 0;
}

/* FORM CONTAINER */
.form-container {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1200px;
}

/* RESPONSIF DI LAYAR KECIL */
@media (max-width: 768px) {
  .form-container {
    width: 90vw;
    max-width: none;
    margin: 1rem auto; 
    padding: 1.5rem 1rem;
  }

  .status-panel {
    display: none;
  }

  .form-heading {
    font-size: 1.3rem;
  }
}
.checkbox-wrapper {
  margin: 1rem 0;
}
.status-panel h3 {
  margin-bottom: 1rem;
  color: #007bff;
}

.status-panel ul {
  list-style: none;
  padding: 0;
}

.status-panel li {
  font-size: 1rem;
  margin: 0.6rem 0;
}

.status-panel span {
  display: inline-block;
  width: 1.5rem;
  text-align: center;
}
.form-container {
      background: #fff;
      padding: 2rem 2.5rem;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      max-width: 1500px;
      width: 60%;
    }
.form-heading {
  font-size: 1.6rem;
  color: #005073;
  text-align: center;
  margin-bottom: 20px;
}
.btn-primary {
  background-color: #007BFF;
  border: none;
  padding: 0.7rem 1.5rem;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.btn-primary:hover {
  background-color: #0056b3;
}
.divider-gradient {
  height: 4px;
  width: 100%;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, #0077b6, #00b4d8, #90e0ef);
  border-radius: 2px;
}
    .warning-box {
      background-color: #fff3cd;
      color: #856404;
      border: 1px solid #ffeeba;
      padding: 1rem;
      border-radius: 8px;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .section-title-form {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
      color: #333;
    }

    .section-description {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 1.2rem;
    }

    h2 {
      text-align: center;
      color: #333;
      margin-bottom: 1.5rem;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #444;
    }
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Jarak antara checkbox dan teks */
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
#status-list span {
    color: green;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
    input[type="text"],
    select {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1.2rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }

    input[type="submit"] {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 0.9rem;
      width: 100%;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    input[type="submit"]:hover {
      background: #0056b3;
    }