/* ===============================
   RESET DASAR
================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4f8;
  color: #333;
  line-height: 1.6;
}

/* ===============================
   HEADER & NAV BAR #fff background: linear-gradient(to right, #0077cc, #00aaff)
================================== */
header {
  background: linear-gradient(to right, #ffffff, #ffffff);
  color: #ffffff;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  width: 180px;
  height: auto;
}

/* NAVIGATION */
.nav-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-bar a:hover {
  color: #f5a22d;
}


/* ===============================
   HERO SECTION (DENGAN SLIDESHOW)
================================== */
.hero {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
}

.hero-slide {
  display: none;
  position: relative;
}

.hero-slide.active {
  display: block;
  animation: fadeEffect 1s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  font-size: 2.5em;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 25px;
  border-radius: 10px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-size: 30px;
  transition: 0.3s;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
  border-radius: 50%;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.6);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #fff;
}

@keyframes fadeEffect {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* ===============================
   SECTION UMUM
================================== */
.section {
  padding: 50px 20px;
  background-color: #fff;
}

.section h2 {
  text-align: center;
  color: #0077cc;
  margin-bottom: 10px;
}

/* ===============================
   Package Feature
================================== */
.packages1 {
  display: flex;
  justify-content: center;
  gap: 70px;
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

.feature {
  max-width: 250px;
}

.feature img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 24px;
  color: #333;
  line-height: 1.4;
}

/* ===============================
   PAKET INTERNET
================================== */
.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.package {
  background: #e9f5ff;
  border: 1px solid #cfe8ff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 200px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.package:hover {
  transform: translateY(-5px);
}

.package img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

/* ===============================
   FORM PENDAFTARAN
================================== */
.form-pelanggan {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-pelanggan input,
.form-pelanggan textarea,
.form-pelanggan select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
}

.form-pelanggan button {
  padding: 12px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.form-pelanggan button:hover {
  background-color: #005fa3;
}

/* ===============================
   KONTAK & FOOTER
================================== */
.kontak-info {
  text-align: center;
  font-size: 1.2em;
}

footer {
  background-color: #0077cc;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}

/* ===============================
   WHATSAPP FLOATING BUTTON
================================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
  z-index: 1000;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}

.jabodetabek {
  bottom: 80px; /* jarak dari bawah untuk tombol pertama */
}

.semarang {
  bottom: 20px; /* tombol kedua lebih bawah */
}


/* ===============================
   RESPONSIVE DESIGN - TABLET
================================== */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px)
  and (orientation: portrait) {
  .hero h1,
  .hero-text {
    font-size: 1.5rem;
    padding: 10px 20px;
  }
.hero-slide img {
  width: 100%;
  height: 35vh;
  object-fit: cover;
}
.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.package {
  background: #e9f5ff;
  border: 1px solid #cfe8ff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 180px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.package:hover {
  transform: translateY(-5px);
}

.package img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

  nav a {
    display: inline-block;
    margin: 10px 8px;
  }
}

/* ===============================
   RESPONSIVE DESIGN - SMARTPHONE
================================== */
@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-bar {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }

  .nav-bar a:hover {
    color: #f5a22d;
  }

  .logo {
    width: 140px;
  }

  .hero-slide img {
    height: 25vh;
    object-fit: cover;
  }

  .hero-text {
  font-size: 0.1em;
    bottom: 15%;
    left: 5%;
    padding: 3px 10px;
  }

  .prev,
  .next {
    font-size: 24px;
    padding: 10px;
  }

  .dots {
    bottom: 5%;
  }

  .dot {
    width: 12px;
    height: 12px;
  }
}

/* ===============================
   RESPONSIVE DESIGN - EXTRA SMALL
================================== */
@media (max-width: 480px) {
  header .logo {
    width: 120px;
  }

  .hero {
    height: auto;
  }

  .hero-text {
    font-size: 0.7rem;
    padding: 6px 12px;
    bottom: 12%;
    left: 4%;
  }

  .package {
    width: 90%;
  }

  .prev,
  .next {
    font-size: 20px;
    padding: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
    margin: 0 3px;
  }

.packages1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  background-color: #fff;
}

.feature {
  max-width: 100px;
}

.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 12px;
  color: #333;
  line-height: 1.4;
}

.kontak-info {
  text-align: center;
  font-size: 0.5em;
}

footer {
  background-color: #0077cc;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 1.2em;
}
}