body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  padding-top: 56px;
  box-sizing: border-box;
}

.hero-section {
  background-color: #f8f9fa;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 0 15%;
}

.hero-content h1 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.hero-content p {
  color: #6c757d;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.hero-content .btn-primary {
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 50px;
}

.hero-image-left,
.hero-image-right {
  position: absolute;
  width: 300px;
  transform: rotate(-10deg);
  z-index: 1;
}

.hero-image-left {
  left: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
}

.hero-image-right {
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
}

/* Responsivitas */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-image-left,
  .hero-image-right {
    display: none; /* Hilangkan gambar pada layar kecil */
  }
}

.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center; /* Ratakan item secara horizontal */
  align-items: center;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  margin: 20px auto;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  height: 560px;
  box-sizing: border-box;
  border: 0.1px solid #8c85ff;
}
@media (max-width: 768px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .card {
    flex: 1 1 100%;
  }
}
.card h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.card h4 {
  font-size: 2em;
  color: #6a5acd;
  margin: 10px 0;
}
.card del {
  color: #ff0000;
  font-size: 1em;
}
.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: left;
}

.check-icon {
  color: #4caf50;
  margin-right: 10px;
  font-size: 1.2em;
}
.cross-icon {
  color: #ff0000;
  margin-right: 10px;
  font-size: 1.2em;
}
.card ul li {
  margin: 10px 0;
}
.card button {
  border: 2px solid #5025d1;
  padding: 10px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  width: 100%;
}

.card button:hover {
  background: #5025d1;
  color: #fff;
}
.recommended {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 320px;
  height: 620px;
  border: 2px solid #8c85ff;
}

.button-recommended {
  background: #5025d1;
  color: #fff;
}
.button-recommended:hover {
  background: #adadad;
  color: #fff;
}
.recommended::after {
  content: "PALING LARIS";
  position: absolute;
  top: -10px;
  right: -10px;
  background: #8c85ff;
  padding: 10px 20px;
  font-size: 0.8em;
  border-radius: 5px;
}

/* CONTACT */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  padding: 10px 10px;
  max-width: 1200px;
}

.contact-card {
  /* background: #377dff; */
  border: 1px solid #000;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  color: #000;
  text-align: left;
}

.contact-icon {
  background-color: #ffc107;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
}

.contact-content {
  flex: 1;
  min-width: 250px;
}

.contact-content h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-content p {
  margin: 0;
  font-size: 1rem;
}

.contact-btn {
  background-color: #25d366;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
  margin-top: 15px;
  flex-shrink: 0;
}

.contact-btn:hover {
  background-color: #1da955;
  transform: translateY(-2px);
}

.contact-btn i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-icon {
    margin-bottom: 10px;
  }
  .contact-btn {
    margin-top: 20px;
    align-self: flex-start;

    width: 100%;
  }
}

.footer {
  background: #fff;
}

.theme-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.theme-card img {
  width: 100%;
  height: auto;
}

.theme-card-body {
  padding: 15px;
}

.theme-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.theme-card-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-primary {
  background-color: #5025d1;
  border-color: #5025d1;
}

.btn-primary:hover {
  background-color: #8c85ff;
  border-color: #8c85ff;
}

.btn-outline {
  border: 1px solid #fd7e14;
  color: #fd7e14;
}

.btn-outline:hover {
  background-color: #fd7e14;
  color: white;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-item:hover {
  background-color: #f1f1f1;
  color: #000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-item i {
  font-size: 1.2rem;
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px; /* Jarak dari bawah */
  right: 20px; /* Jarak dari kanan */
  background-color: #25d366; /* Hijau WhatsApp */
  color: white;
  font-weight: bold;
  border-radius: 50px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Pastikan tombol berada di atas elemen lainnya */
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.floating-whatsapp:hover {
  background-color: #1da955; /* Warna hijau lebih gelap untuk hover */
  transform: scale(1.05); /* Efek zoom saat hover */
  text-decoration: none;
}

.floating-whatsapp i {
  margin-right: 10px;
  font-size: 1.2rem;
}
/* TOOGLE PAKET */
.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.toggle-switch {
  display: flex;
  align-items: center;
  background-color: #ff6600;
  border-radius: 50px;
  padding: 5px;
  width: 300px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toggle-option {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.toggle-option.active {
  background-color: white;
  color: #ff6600;
}

.toggle-option:not(.active) {
  color: white;
}

.card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  display: none;
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.card.active {
  display: block;
}

button {
  color: #5025d1;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

/* OPEN SLIDER */

.slider {
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  animation: scroll 15s linear infinite;
}

.slide {
  width: 400px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  border-radius: 10px;
  padding: 5px;
  height: auto;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * var(--num-visible-slides)));
  }
}

/* FAQ */
/* Hilangkan semua efek biru dan default Bootstrap */
.accordion-button {
  background-color: transparent; /* Latar belakang transparan */
  border: none; /* Hilangkan border */
  box-shadow: none; /* Hilangkan shadow */
  outline: none; /* Hilangkan outline */
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease; /* Animasi untuk perubahan */
}

/* Tidak ada garis biru pada saat fokus */
.accordion-button:focus {
  box-shadow: none; /* Hilangkan efek shadow biru */
  outline: none; /* Hilangkan outline biru */
}

/* Tambahkan border default pada accordion-item */
.accordion-item {
  border: 1px solid #ddd; /* Garis pembatas default untuk dropdown lainnya */
  border-radius: 5px; /* Tambahkan sudut membulat */
  transition: border-color 0.3s ease; /* Animasi untuk perubahan warna */
}

/* Tambahkan garis hitam saat dropdown terbuka */
.accordion-item.show {
  border-color: #000; /* Garis hitam di seluruh elemen */
}

/* Hilangkan warna biru di dalam isi dropdown */
.accordion-collapse {
  border-top: none; /* Pastikan tidak ada garis tambahan di atas */
  box-shadow: none; /* Hilangkan shadow */
}

/* Efek untuk tombol yang sedang terbuka */
.accordion-button:not(.collapsed) {
  border: none; /* Hilangkan border pada tombol */
  background-color: transparent; /* Pastikan transparan */
}

/* ALASAN */
.why-section {
  display: flex;
  align-items: center; /* Pastikan gambar di tengah secara vertikal */
  justify-content: space-between;
  gap: 30px;
  padding: 50px 50px;
  background: #fff;
  border-radius: 10px;
  flex-wrap: wrap; /* Membuat elemen wrap pada layar kecil */
}

.why-content {
  flex: 1;
  max-width: 60%;
  text-align: left;
}

.why-content h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.why-content h1 span {
  color: #2650f4; /* Warna oranye */
}

.why-content ul {
  list-style: none;
  padding: 0;
}

.why-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.why-content ul li i {
  color: #000;
  font-size: 1.2rem;
  margin-right: 10px;
}

.why-image {
  flex: 1;
  max-width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-image img {
  max-width: 100%;
  height: auto; /* Menjaga proporsi gambar */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
  .why-section {
    flex-direction: column;
    text-align: left;
  }

  .why-content {
    max-width: 100%;
  }

  .why-image {
    max-width: 100%;
    margin-top: 20px;
  }
}

/* INFO */
.excellence-section {
  padding: 50px 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.excellence-text {
  flex: 1;
  max-width: 35%;
}

.excellence-text span {
  display: inline-block;
  background: #e0f7fa;
  color: #0dcaf0;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 10px;
}

.excellence-cards {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.excellence-card {
  border-radius: 15px;
  padding: 20px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.excellence-card h5 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.excellence-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-excellence {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
}

.card-orange {
  border: 5px solid #e0f7fa;
}

.card-purple {
  border: 5px solid #e0f7fa;
}

.card-blue {
  border: 5px solid #e0f7fa;
}

.card-yellow {
  background: #fff9e6;
}

@media (max-width: 768px) {
  .excellence-section {
    flex-direction: column;
  }

  .excellence-text {
    max-width: 100%;
    text-align: center;
  }

  .excellence-cards {
    grid-template-columns: 1fr;
  }

  .btn-excellence {
    width: 100%;
  }
}

.nav-item a {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #000;
}

.navbar-nav .nav-link.active {
  color: #2650f4 !important;
}

.navbar img {
  max-width: 190px;
  height: auto;
}

.navbar {
  background-color: #fff !important;
}

.navbar .btn-penawaran {
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar .btn-penawaran i {
  font-size: 12px; /* Ukuran ikon lebih kecil */
}

.navbar .btn-penawaran:hover {
  background-color: #333;
  color: #fff;
}

.top-info-container {
  height: 50px; /* Sesuai tinggi promo agar navbar tidak tertutup */
}

/* Informasi tetap di atas saat scroll dengan desain menarik */
.top-info {
  /* background: linear-gradient(90deg, #ff416c, #ff4b2b);  */
  background-color: #1a1a40; /* Warna gelap */
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px 5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1050;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Ikon promo tetap terlihat */
.promo-icon {
  font-size: 24px;
  animation: pulse 1.5s infinite alternate;
}

/* Efek animasi glow */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Container teks berjalan */
.marquee-container {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 60%;
}

/* Efek animasi berjalan */
.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Efek animasi berjalan dari kanan ke kiri */
@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Navbar bergeser ke bawah karena ada informasi di atasnya */
.nav-custom {
  margin-top: 55px; /* Menyesuaikan tinggi informasi di atasnya */
}

.search {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 4px;
  border-radius: 30px;
  background: none; /* Menghapus background form */
  overflow: hidden;
}

.search button {
  background: none; /* Menghapus background tombol */
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.search button i {
  font-size: 16px;
  color: #333; /* Warna ikon */
}

.search input {
  border: none;
  outline: none;
  padding: 8px;
  font-size: 16px;
  flex: 1;
  background: none; /* Menghapus background input */
}

/* PRICING */

.pricing-header {
  text-align: left; /* Mengubah posisi teks ke kiri */
  margin: 40px 20px;
}

.pricing-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.pricing-header p {
  font-size: 1rem;
  color: #ccc;
}

.pricing-cards {
  display: flex;
  justify-content: center;

  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  width: 300px;
  background-color: white;
  color: black;
  border: 5px solid #e0f7fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.pricing-card .price {
  font-size: 2rem;
  margin: 15px 0;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.pricing-card ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-card ul li .tersedia {
  color: #1c9b59;
  margin-right: 10px;
}
.pricing-card ul li .tidak-tersedia {
  color: #b61616;
  margin-right: 10px;
}

.pricing-card button {
  border: 1px solid #000;
  color: #000;
  background: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
}

.save-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background-color: #e0f7fa;
  color: #000;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
}

.footer-pricing {
  background-color: white;
  color: black;
  border: 5px solid #e0f7fa;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 20px;
  margin-top: 40px;
  width: calc(300px * 3 + 40px);
  margin: 40px auto;
}

.footer-pricing h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-pricing p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-pricing {
    width: 90%;
  }
}

.card-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 50px;
  background-color: #fff;
}

.hero-image-container {
  flex: 0 0 40%;
  max-width: 40%;
  text-align: center;
}

.hero-image {
  max-width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.hero-text-container {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 20px;
}

.hero-text {
  text-align: left;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #6c757d;
}

.hero-text .btn-primary {
  background-color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: bold;
}

.hero-text .btn-primary:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
  }

  .hero-image-container,
  .hero-text-container {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.faq-section {
  padding: 50px;
  text-align: center;
}

.faq-section h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Mengatur tombol accordion */
.accordion-button {
  border: none !important; /* Hapus border bawaan */
  font-weight: bold;
  outline: none;
  box-shadow: none !important;
  border-radius: 8px !important; /* Pastikan sudut tetap melengkung */
}

/* Saat accordion terbuka */
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #000;
  border-radius: 8px 8px 0 0 !important; /* Lengkungan atas */
}

/* Pastikan panah berubah warna saat accordion terbuka */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1); /* Membuat panah menjadi putih */
}

/* Menghapus efek hover & focus yang mengganggu */
.accordion-button:focus,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
}

/* Mengatur setiap item accordion */
.accordion-item {
  border: 1px solid #000 !important; /* Pastikan border tetap hitam */
  border-radius: 8px !important; /* Membuat sudut lebih lembut */
  overflow: hidden !important;
  margin-bottom: 15px !important;
}
.accordion-body {
  text-align: left !important;
}

/* Mengatur isi accordion */
.accordion-collapse {
  transition: none;
  border-top: none !important;
}

/* Warna latar belakang saat isi accordion terbuka */
.accordion-collapse.show {
  background-color: #000;
  color: #fff;
  border-color: #000;
  border-radius: 0 0 8px 8px !important; /* Pastikan lengkungan bawah tetap */
}

/* Menghilangkan shadow default Bootstrap */
.accordion-button {
  box-shadow: none !important;
}
.custom-hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /* padding: 50px ; */
  text-align: left;
  height: 70vh;
}
.custom-hero-text {
  max-width: 50%;
}
.custom-hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.custom-hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.custom-btn-primary {
  background-color: black;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
}
.custom-btn-secondary {
  background-color: white;
  border: 1px solid black;
  padding: 10px 20px;
  font-size: 1rem;
  color: #000;
}
.custom-btn-smooth {
  background-color: white;
  border: 2px solid #ccebef;
  padding: 10px 20px;
  font-size: 1rem;
  color: #000;
}
.custom-hero-image {
  margin-top: 20px;
  flex: 1;
  text-align: right;
}
.custom-hero-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .custom-hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 20px;
    height: auto;
  }
  .custom-hero-text {
    max-width: 100%;
    text-align: center;
  }
  .custom-hero-image {
    text-align: center;
  }
}
