/* === Navbar Menu Mobile === */
.nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
  padding-top: 0;
}

@media only screen and (max-width: 600px) {
  #welcome-section h2 {
    font-size: 22px;
  }
  #welcome-section p {
    font-size: 12px;
  }
}

/* === Global Reset & Section === */
section {
  text-align: center;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

.absolute-top-left {
  top: 1rem;
  left: 1rem;
}

.absolute-top-right {
  top: 1rem;
  right: 1rem;
}

/* === Card Paket Internet === */
.cardButton {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #3498db;
  color: #ffffff;
  padding: 0.75rem;
  margin-top: 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s;
}

.cardButton:hover {
  background-color: #0ea6cf;
  transform: scale(1.05);
}

.cardContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.text-paket {
  color: #41b8d5;
}

.max-w-card {
  max-width: 100%;
}

.max-w-sm {
  transition: box-shadow 0.3s;
}

.max-w-sm:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* === Tombol Hubungi Kami Mengambang === */
#hubungi-kami {
  position: fixed;
  bottom: 20px;
  right: -150px;
  background-color: #3498db;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: right 1s;
  z-index: 1000;
}

#hubungi-kami:hover {
  background-color: #2980b9;
}

/* === Container Paket Internet === */
.container1 {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.header {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.header h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
}

.header p {
  margin: 10px 0 0;
  font-size: 20px;
  font-weight: 600;
  color: #cce0ff;
}

.info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  font-size: 16px;
  gap: 12px;
}

.info div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f1f8ff;
  padding: 10px 18px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.paket {
  background: #f5faff;
  padding: 25px 0;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.card {
  background: #fff;
  border-radius: 20px;
  margin: 18px 25px;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.card-left {
  background: #00b6e8;
  color: #fff;
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  min-width: 110px;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.card-left h2 {
  margin: 0;
  font-size: 30px;
}

.card-left p {
  margin: 0;
  font-size: 14px;
}

.card-right {
  text-align: right;
  flex: 1;
  margin-left: 20px;
}

.card-right h3 {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: #003366;
}

.card-right p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #444;
}

/* === Testimoni Slider === */
#testimoni {
  text-align: center;
  padding: 40px 20px;
  background: #f9fafb;
}

#testimoni h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 30px 20px;
}

.slide img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slide p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Tombol navigasi */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.6);
}
