* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}/* HEADER */
.navbar {
  background-color: #faf8f8;
  padding: 10px 0;
  backdrop-filter: blur(4px);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}
.logo img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

/* Overlay */
.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: 16px;
  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;
}
.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);
}

.desktop-btn {
  display: inline-block;
}
.mobile-btn {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #005073;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .navbar-container {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 100;
  }

  .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;
  }

  .mobile-btn {
    display: block;
    margin-top: 20px;
    align-self: flex-start;
    width: 100%;
  }
  .desktop-btn {
    display: none;
  }
  .logo img {
    height: 38px;
  }

  .nav-menu a {
    font-size: 16px;
  }
}


/* bagian iklan */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
  border-radius: 2rem;
  padding: 4rem 2rem 8rem;
  margin: 2.5rem auto;
  max-width: 75rem;
  overflow: visible;
  color: white;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 90% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 38rem;
  text-align: left;
  padding-left: 1.5rem;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-content h1 .highlight {
  color: #facc15;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0f2fe;
  line-height: 1.6;
}

.cta-button-promo {
  background: linear-gradient(135deg, #016cb1, #023b94);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.cta-button-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}


.cta-button-promo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(215, 230, 249, 0.3);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.cta-button-promo:hover::before {
  left: 100%;
}

.hero-image {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 1.5rem;
}

.hero-image img {
  max-width: 28rem;
  width: 100%;
  height: auto;
  animation: floatImage 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.3));
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.promo-card {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 90%;
  max-width: 60rem;
  padding: 1.5rem 2rem;
  border-radius: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  z-index: 10;
  flex-wrap: wrap;
  border-top: 4px solid #0ea5e9;
}

.feature-item {
  text-align: center;
  color: #333;
  flex: 1 1 200px;
  padding: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2.4rem;
  color: #0ea5e9;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .hero-section { padding: 35px 1.5rem 2rem; }
  .hero-content h1 { font-size: 3rem; }
  .hero-content p { font-size: 1.1rem; }
  .hero-image img { max-width: 24rem; }
  .promo-card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1rem;
    bottom: -5rem;
  }  .feature-item { flex: 1 1 100px; }
  .feature-item i { font-size: 2rem; }
  .feature-item h4 { font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .hero-wrapper { flex-direction: column; text-align: center; gap: 2rem; }
  .hero-section { padding: 35px 1.5rem 8rem; }
  .hero-content { text-align: center; padding-left: 0; max-width: 100%; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1rem; }
  .hero-image { padding-right: 0; }
  .hero-image img { max-width: 20rem; }
  .promo-card {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 1rem;
    bottom: -9rem;
  }  
  .feature-item { flex: 1 1 150px; }
  .feature-item i { font-size: 2rem; }
  .feature-item h4 { font-size: 1rem; }
}

/*Bagian About*/
  .about-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    color: #343a40;
    font-family: 'Nunito', sans-serif;
  }

  .about-section .container {
    max-width: 1100px; 
    margin: 0 auto; 
  }

  .about-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0d0d0e;
  }

  .about-title i {
    margin-right: 15px;
    color: #007bff;
  }

  .section-divider {
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border: none;
    margin: 0 auto 50px auto;
    border-radius: 2px;
  }

  .about-section .desc {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .vision-mission {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .vision-mission .vision,
  .vision-mission .mission {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .vision-mission .vision:hover,
  .vision-mission .mission:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .vision-mission h3 {
    font-size: 1.8rem;
    color: #0d0d0e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
  }

  .vision-mission h3 i {
    margin-right: 15px;
    font-size: 2.2rem;
    color: #007bff;
  }

  .vision-mission p,
  .vision-mission ul {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
  }

  .vision-mission ul {
    list-style: none;
    padding: 0;
  }

  .vision-mission ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
  }

  .vision-mission ul li i {
    margin-right: 12px;
    color: #007bff;
    font-size: 1.3rem;
    margin-top: 3px;
  }

  @media (max-width: 768px) {
    .about-section {
      padding: 40px 15px;
    }

    .about-title {
      font-size: 2.2rem;
    }

    .about-section .desc {
      font-size: 1rem; 
      margin-bottom: 40px;
    }

    .vision-mission {
      flex-direction: column; 
      gap: 25px;
    }

    .vision-mission .vision,
    .vision-mission .mission {
      padding: 30px; 
      min-width: unset;
    }

    .vision-mission h3 {
      font-size: 1.6rem;
    }

    .vision-mission h3 i {
      font-size: 2rem;
    }

    .vision-mission p,
    .vision-mission ul {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .about-title {
      font-size: 1.8rem;
    }

    .about-title i {
      font-size: 1.8rem;
    }

    .vision-mission h3 {
      font-size: 1.4rem;
    }

    .vision-mission h3 i {
      font-size: 1.8rem;
    }
  }

/*Bagian Keuntungan*/
.main-services {
    margin-top: 4rem;
    padding: 80px 20px;
    background-color: #f8f9fa; 
    color: #333333;
    text-align: center;
    overflow: hidden;
}

.main-services .section-title {
    font-size: 32px;
    font-weight: 700;
    /* margin-bottom: 20px; */
    color: #212529;
    letter-spacing: -0.04em; 
}

.main-services .section-title .katalink {
    color: #007bff;
    font-weight: 800;
}

.section-description-sub {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto; 
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
    opacity: 0.95;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; 
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 2cqi;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05); 
    padding: 35px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0; 
    background: linear-gradient(90deg, #007bff, #00c7e6);
    transition: height 0.3s ease-out;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}


.service-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #007bff;
}

.service-card:hover::before {
    height: 5px;
}

.service-card .icon-large {
    font-size: 35px; 
    color: #007bff;
    margin-bottom: 25px; 
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .icon-large {
    transform: scale(1.05);
    color: #0056b3;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    font-size: 15px;
    color: #5a6268; 
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

/* Media Queries untuk Opsi 1 */
@media (max-width: 1024px) {
    .main-services .section-title {
        font-size: 38px;
        /* bottom: -10rem; */
    }
    .section-description-sub {
        font-size: 18px;
        margin-bottom: 50px;
    }
    .service-card {
        padding: 30px;
        min-height: 240px;
    }
    .service-card .icon-large {
        font-size: 50px;
        margin-bottom: 20px;
    }
    .service-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .main-services {
        /* padding: 9rem 20px; */
      padding-top: 9rem;
      padding-bottom: 2rem;
      padding-left: 20px;
      padding-right: 20px;

        /* bottom: -10rem; */
    }
    .main-services .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .section-description-sub {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .service-card {
        min-height: 220px;
        max-width: 400px;
        margin: 0 auto;
        padding: 25px;
    }
    .service-card .icon-large {
        font-size: 45px;
    }
    .service-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .main-services {
        padding: 40px 10px;
    }
    .main-services .section-title {
        font-size: 28px;
    }
    .section-description-sub {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .service-card {
        min-height: 200px;
        padding: 20px;
    }
    .service-card .icon-large {
        font-size: 40px;
    }
    .service-card h3 {
        font-size: 18px;
    }
    .service-card p {
        font-size: 14px;
    }
}

/*Bagian Paket Internet*/
.card-section {
  position: center;
  width: 100%;
  padding-left: 60px;
  overflow: hidden;
}
.promo-title-wrapper {
  text-align: center;
  margin-left: 20px;
  margin-bottom: 50px;
  padding-left: 12px;
}

.promo-title {
  font-size: 32px;
  color: #005073;
  font-weight: bold;
  margin: 0;
  padding-top: 20px;
  text-align: center;
}

.promo-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
  text-align: center;
  margin-bottom: 15px;
}
.text-bebas{
  color: #005073;
  background-clip: text;
  font-weight: bold;
}
.card-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 50px;
  justify-content: center;
  scrollbar-width: none; 
  margin-bottom: 10px;
  padding-top: 15px;
}

.card-container::-webkit-scrollbar {
  display: none;
}

.card {
  position: relative;
  overflow: hidden;
  min-width: 340px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
  flex-shrink: 0;
  transition: transform 0.9s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}
.card:first-child {
  margin-left: 350px;
}
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.card:hover .card-overlay {
  opacity: 1;
}

.card-overlay .contact-btn {
  background: #1976d2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.card-overlay .contact-btn:hover {
  background: #145db2;
}
.card:hover {
  transform: translateY(-6px);
}

.card img.card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.features {
  list-style: none;
  padding: 0;
  font-size: 13px;
  color: #444;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffffaa;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 0;
  transition: background 0.3s;
}

.left-btn {
  left: 50;
}

.right-btn {
  right: 10;
}

.scroll-btn:hover {
  background: #ffffff;
}

@media (max-width: 1024px) {
  .promo-title {
    font-size: 38px;
  }
  .promo-subtitle {
    font-size: 17px;
  }
  .card-container {
    padding: 15px 0;
    gap: 25px;
    padding-left: 10px;
    margin-left: -5px;
  }
  .card {
    min-width: 280px;
    max-width: 300px;
    padding: 18px;
  }
  .scroll-btn {
    padding: 10px 15px;
    font-size: 26px;
  }
  .left-btn {
    left: 10px;
  }
  .right-btn {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .card-section {
    padding: 0 10px;
  }
  .promo-title {
    font-size: 32px;
  }
  .promo-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .card-container {
    gap: 20px;
    padding: 10px 0;
    justify-content: center;
    /* padding-left: 70px; */
    /* margin-left: -5px; */
  }
  .card {
    min-width: 260px;
    max-width: 100%;
    padding: 15px;
    margin-left: 0;
  }
  .card-image {
    height: 180px;
  }
  .scroll-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .promo-title {
    font-size: 28px;
  }
  .promo-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .card-container {
    padding: 5px 0;
    justify-content: center;
    flex-wrap: nowrap;
    padding-left: 60px;
    margin-left: -5px;
  }
  .card {
    min-width: 240px;
    padding: 12px;
  }
  .card-image {
    height: 160px;
  }
  .card-overlay .contact-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/*Bagian List Paket Harga*/
.paket-section {
  background-color: #f0f7ff; 
}
.paket-title-wrapper h2{
  padding: 60px 0 10px 0;
  font-size: 32px;
  color: #005073;
  text-align: center;
  font-weight: bold;
}
.paket-title-wrapper p{
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
}
.card-container-paket {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 20px;
  max-width: 1500px;
  margin: auto;
  justify-items: center;
  align-items: center;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
}

.card-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 25px;
}

.card-slider::-webkit-scrollbar {
  display: none;
}

.card {
  flex: 0 0 50px;
  background: #f4f4f4;
  padding: 20px;
  border-radius: 15px;
  min-height: 180px;
  text-align: center;
}

.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;
}

.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;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
/* 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%;
  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*/
.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: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.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;
  font-weight: bold;
}

.price-month {
  color: #888888;
  font-size: 13px;
  margin-left: 1px;
}

.note {
  font-size: 11px;
  color: #888;
  margin-bottom: 12px;
}

.subscribe-btn {
  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{
  margin-top: 5px;
  margin-bottom: 10px;
  text-align: left;
  color: #333333;
  font-size: 16px;
}
.icon {
  font-size: 23px;
}
/*Bagian Responsive*/
@media (max-width: 1200px) {
    .card-paket {
        flex: 0 0 240px; /* Lebih ramping */
        padding: 16px;
        min-height: 440px;
    }
    .card-header-img {
        height: 140px;
    }
    .subtitle {
        font-size: 12px;
    }
    .speed {
        font-size: 1rem;
    }
    .price {
        font-size: 1.6rem;
    }
    .subscribe-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
    .benefits li {
        font-size: 13px;
    }
    .note {
        font-size: 12px;
    }
    .icon {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .card-paket {
        flex: 0 0 220px;
        padding: 14px;
        min-height: 420px;
    }
    .card-header-img {
        height: 130px;
    }
    .speed {
        font-size: 14px;
    }
    .price {
        font-size: 20px;
    }
    .subscribe-btn {
        font-size: 14px;
        padding: 10px 14px;
    }
    .benefits li {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .card-paket {
        flex: 0 0 200px;
        padding: 10px;
        min-height: 400px;
    }
    .card-header-img {
        height: 120px;
    }
    .price {
        font-size: 2rem;
    }
    .subscribe-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
    .benefits li {
        font-size: 11px;
    }
    .icon {
        font-size: 12px;
    }
}


/*Bagian Tertarik layanan*/
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #007bff 0%, #5bc0de 100%);
  color: white;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-content-tertarik h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content-tertarik p {
  font-size: 1.2rem;
  text-align: center;
  max-width: 600px;
  margin-bottom: 30px;
}

.btn-primary-large {
  padding: 14px 32px;
  font-size: 1rem;
  background-color: #ffffff;
  color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary-large:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero {
    padding: 80px 20px;
  }

  .hero-content-tertarik h1 {
    font-size: 2.2rem;
  }

  .hero-content-tertarik p {
    font-size: 1.1rem;
  }

  .btn-primary-large {
    padding: 13px 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }

  .hero-content-tertarik h1 {
    font-size: 1.8rem;
  }

  .hero-content-tertarik p {
    font-size: 1rem;
  }

  .btn-primary-large {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 50px 10px;
  }

  .hero-content-tertarik h1 {
    font-size: 1.5rem;
  }

  .hero-content-tertarik p {
    font-size: 0.95rem;
  }

  .btn-primary-large {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


  /*Bagian Syarat dan Ketentuan*/
.terms-section {
  padding: 20px 20px;
  background: linear-gradient(to right, #f0f4f8, #e0f7fa);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* min-height: 30vh; */
  font-family: 'Nunito', sans-serif;
}

.terms-card-static {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 40px 50px;
  max-width: 1800px;
  width: 100%;
  backdrop-filter: blur(10px);
}

.terms-header-static {
  margin-bottom: 20px;
}

.terms-header-static h3 {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
}

.header-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00c7e6);
  margin-bottom: 30px;
  border-radius: 10px;
}

.terms-content-static ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-content-static li {
  font-size: 16px;
  color: #34495e;
  margin-bottom: 20px;
  padding-left: 36px;
  position: relative;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.terms-content-static li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #28a745;
  background-color: #e9fbe7;
  border-radius: 50%;
  padding: 6px;
  font-size: 12px;
  position: absolute;
  left: 0;
  top: 7px;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 12px;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.3);
  transition: transform 0.2s ease;
}

.terms-content-static li:hover::before {
  transform: scale(1.1);
}

.terms-content-static li strong {
  color: #007bff;
  font-weight: 700;
}

/* Responsif Tablet */
@media (max-width: 768px) {
  .terms-section {
    padding: 24px 14px;
  }

  .terms-card-static {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .terms-header-static h3 {
    font-size: 18px;
  }

  .header-divider {
    width: 60px;
    height: 2.5px;
    margin-bottom: 16px;
  }

  .terms-content-static li {
    font-size: 13.5px;
    padding-left: 28px;
    margin-bottom: 12px;
  }

  .terms-content-static li::before {
    top: 5px;
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 20px 10px;
  }

  .terms-card-static {
    padding: 20px 14px;
    border-radius: 12px;
  }

  .terms-header-static h3 {
    font-size: 17px;
  }

  .header-divider {
    width: 50px;
    height: 2.5px;
    margin-bottom: 16px;
  }

  .terms-content-static li {
    font-size: 13px;
    padding-left: 26px;
    margin-bottom: 10px;
  }

  .terms-content-static li::before {
    font-size: 10px;
    width: 16px;
    height: 16px;
    top: 4px;
  }
}



/*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;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 300px;
  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%); }
}
@media (max-width: 1024px) {
    .partners {
        padding: 70px 15px;
    }
    .gradient-partners {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .partner-marquee {
        margin-top: 35px;
        padding: 10px 0;
    }
    .marquee-track {
        gap: 100px; /* Mengurangi gap untuk tablet */
        animation-duration: 40s; /* Memperlambat animasi di tablet */
    }
    .marquee-track img {
        height: 60px; /* Ukuran logo lebih kecil untuk tablet */
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 50px 10px;
    }
    .gradient-partners {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .gradient-partners::after {
        width: 50px;
        height: 3px;
    }
    .partner-marquee {
        margin-top: 30px;
        padding: 8px 0;
    }
    .marquee-track {
        gap: 70px; /* Gap lebih kecil lagi untuk mobile */
        animation-duration: 50s; /* Memperlambat animasi secara signifikan di HP */
    }
    .marquee-track img {
        height: 50px; /* Ukuran logo lebih kecil lagi untuk HP */
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .partners {
        padding: 40px 5px; /* Padding lebih kecil lagi */
    }
    .gradient-partners {
        font-size: 27px;
        margin-bottom: 10px;
    }
    .gradient-partners::after {
        width: 40px;
    }
    .partner-marquee {
        margin-top: 20px;
        padding: 5px 0;
    }
    .marquee-track {
        gap: 50px; /* Gap minimal */
        animation-duration: 60s; /* Animasi super lambat di layar sangat kecil */
    }
    .marquee-track img {
        height: 40px; /* Ukuran logo paling kecil */
        max-width: 120px;
    }
}


/*Bagian Statistik*/
.stats-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.stats-title {
  font-size: 32px;
  color: #005073;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: bold;
}

.stats-subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 40px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.stat-box {
    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;
  margin-bottom: 5px;
  font-weight: bold;
}

.stat-box p {
  font-size: 0.95rem;
  color: #2c3e50 ;
}
.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;
}

/*Responsive Bagian Tampilan HP*/
@media (max-width: 1024px) {
    .stats-section {
        padding: 70px 15px; /* Padding lebih kecil untuk layar tablet/laptop kecil */
    }
    .stats-title {
        font-size: 22px; /* Ukuran judul lebih kecil */
    }
    .stats-subtitle {
        font-size: 15px; /* Ukuran subtitle lebih kecil */
        margin-bottom: 40px;
    }
    .stats-container {
        /* Dengan auto-fit dan minmax, ini akan otomatis menjadi 2 kolom jika ada ruang */
        gap: 25px; /* Jarak antar box sedikit dikurangi */
    }
    .stat-box {
        padding: 30px 20px; /* Padding box sedikit dikurangi */
        min-height: 170px;
    }
    .stat-box h3 {
        font-size: 22px; /* Ukuran angka lebih kecil */
    }
    .stat-box p {
        font-size: 15px; /* Ukuran teks deskripsi lebih kecil */
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 10px; /* Padding lebih kecil untuk layar mobile */
    }
    .stats-title {
        font-size: 27px; /* Ukuran judul mobile */
        margin-bottom: 10px;
    }
    .stats-subtitle {
        font-size: 13px; /* Ukuran subtitle mobile */
        margin-bottom: 30px;
    }
    .stats-container {
        grid-template-columns: 1fr; /* **Hanya 1 kolom di layar HP** */
        gap: 20px; /* Jarak antar box mobile */
    }
    .stat-box {
        padding: 25px 20px;
        min-height: 150px;
        max-width: 350px; /* Batasi lebar box agar tidak terlalu lebar di mobile */
        margin: 0 auto; /* Pusatkan box saat 1 kolom */
        border-radius: 12px; /* Lebih kecil */
    }
    .stat-box h3 {
        font-size: 29px;
    }
    .stat-box p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 40px 5px; /* Padding terkecil */
    }
    .stats-title {
        font-size: 1.8rem;
    }
    .stats-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    .stats-container {
        gap: 15px; /* Jarak paling kecil */
    }
    .stat-box {
        padding: 20px 15px;
        min-height: 130px;
        border-radius: 10px;
    }
    .stat-box h3 {
        font-size: 1.8rem;
    }
    .stat-box p {
        font-size: 0.85rem;
    }
}


/*POP UP LIVE CHAT*/
.wa-popup-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-left: 5px solid #25D366;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 999;
  width: 260px;
  animation: slideUp 0.4s ease;
  font-family: sans-serif;
}

.popup-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 12px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 15px;
  font-size: 14px;
}

.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 18px;
  cursor: pointer;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


/*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; 
  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;
}
@media (max-width: 768px) {
  .wa-float {
    height: 55px;
    width: 55px;
    padding: 0 10px;
  }

  .wa-float:hover {
    width: 200px;
  }

  .wa-icon {
    width: 24px;
    height: 24px;
  }

  .wa-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .wa-float {
    height: 50px;
    width: 50px;
  }

  .wa-float:hover {
    width: 180px;
  }

  .wa-icon {
    width: 22px;
    height: 22px;
  }

  .wa-label {
    font-size: 0.85rem;
  }
}

/*BAGIAN MAPS*/
*, *::before, *::after {
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* --- Container MAP--- */
.access-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px;
  background-color: #ffffff;
  max-width: 1220px;
  margin: 24px auto;
  border-radius: 8px;
  box-shadow:  0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.access-container:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* --- Map Section --- */
.map-section {
  flex: 1;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 470px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-wrapper:hover {
  box-shadow:0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-overlay {
  position: absolute;
  inset: 0;
  /* background-color: #007bff; */
  color: #f8f9fa;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.map-wrapper:hover .map-overlay {
  opacity: 1;
}

.map-overlay span {
  background:#ffffff;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow:0 5px 20px rgba(0, 0, 0, 0.1);
  color:#007bff;
  font-weight: 600;
}

/* --- Info Section --- */
.info-section {
  flex: 1;
  min-width: 360px;
  padding-right: 16px;
}
.info-section > *:not(:last-child) {
  margin-bottom: 9px;
}

.title-with-rating {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-align: left;
}

.rating-below {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6c757d;
  margin-bottom: 12px;
}

.stars, .half {
  color: #ffc107;
}

.review-text {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Info Items --- */
.info-item,
.info-item-lok {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.info-item i,
.info-item-lok i {
  color: #007bff;
  flex-shrink: 0;
  text-align: center;
}

.info-item i {
  font-size: 1.2rem;
  width: 28px;
}

.info-item-lok i {
  font-size: 1.4rem;
  width: 28px;
}

.info-item strong,
.info-item-lok strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  color: #343a40;
  font-weight: 600;
}

.info-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}


/* --- Service Section --- */
.service-section-maps {
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 12px;
}

.service-section-maps h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.service-section-maps h3 i {
  color: #007bff;
  margin-right: 8px;
  width: 24px;
  font-size: 1.4rem;
}

.service-cards-maps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 12px 0;
}

.service-card-maps {
  background: #ffffff;
  padding: 12px;
  border-radius: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
}

.service-card-maps:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card-maps i {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 4px;
}

.service-card-maps h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

/* --- Action Buttons --- */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.btn-primary {
  background-color: #007bff;
  color:#f8f9fa;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover {
  background-color: #0060ad;
  transform: translateY(-2px);
  box-shadow:0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-disabled {
  background-color: #f5f5f5;
  color: #6c757d;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.1);
  opacity: 0.8;
}
.btn-disabled:hover {
  background-color: #f0f0f0;
  cursor: not-allowed;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .access-container {
    flex-direction: column;
    padding: 16px;
    margin: 16px auto;
    border-radius: 10px;
  }

  .map-section,
  .info-section {
    min-width: unset;
    width: 100%;
    padding: 0;
  }

  .map-wrapper {
    aspect-ratio: 4 / 3;
  }

  .info-section {
    padding-top: 16px;
  }

  .title-with-rating {
    text-align: center;
    font-size: 1.8rem;
  }

  .rating-below {
    justify-content: center;
  }

  .info-item {
    justify-content: center;
  }
.info-item-lok {
  justify-content: left;
}
  .info-pair {
    /* flex-direction: column; */
    justify-content: left;
    /* align-items: center; */
  }

  .service-section h3 {
    justify-content: center;
  }

  .service-cards-maps {
    grid-template-columns: 1fr 1fr;

  }

  .action-buttons {
    justify-content: center;
    font-size: 13px;
    /* width: 20px; */

  }

  .btn-primary,
  .btn-disabled {
    width: 150px;
    /* height: 60px; */
    /* font-size: 13px; */
    max-width: 210px;
    padding: 8px 12px;
  }
}


/*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%);
  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;
    align-items: flex-start;
    min-height: 50vh;
    background: #f0f4f8;
    padding: 2rem;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box; 
}

.status-panel {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 280px;
    width: 100%;
    box-sizing: border-box;
}

.status-panel h3 {
    margin-bottom: 1rem;
    color: #007bff;
    font-size: 1.2rem; 
    text-align: center; 
}

.status-panel ul {
    list-style: none;
    padding: 0;
}

.status-panel li {
    font-size: 1rem;
    margin: 0.6rem 0;
    display: flex; 
    align-items: center;
}

.status-panel span {
    display: inline-block;
    width: 1.5rem;
    text-align: center;
    font-weight: bold;
    color: #28a745;
    font-size: 1.1rem;
}

#status-list span {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.form-container {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 60%; 
    box-sizing: border-box;
}

.form-heading {
    font-size: 1.8rem;
    color: #005073;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.divider-gradient {
    height: 4px;
    width: 80%; 
    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;
    line-height: 1.5;
}

.section-title-form {
    font-size: 1.3rem; 
    font-weight: 600;
    margin-bottom: 0.5rem; 
    color: #333;
}

.section-description {
    font-size: 0.95rem; 
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

h2 { 
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.6rem; 
    font-weight: 500;
    color: #444;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #444; 
}

input[type="text"],
select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem; 
    border: 1px solid #ddd; 
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #007BFF;
    border: none;
    padding: 0.8rem 2rem;
    color: #fff;
    border-radius: 8px; 
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px; 
    width: auto;
}

.btn-primary:hover {
    background-color: #0056b3;
}


/* --- Responsiveness for Mobile --- */
@media (max-width: 768px) {
    .form-wrapper {
        flex-direction: column;
        align-items: center; 
        padding: 1.5rem; 
        min-height: auto; 
    }

    .status-panel {
        margin-right: 0; 
        margin-bottom: 20px;
        max-width: 300px; 
    }

    .form-container {
        width: 100%;
        padding: 1.5rem; 
        max-width: 500px; 
    }

    .form-heading {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .divider-gradient {
        width: 90%;
        margin-bottom: 20px;
    }

    .warning-box {
        padding: 0.8rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .section-title-form {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .section-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    input[type="text"],
    select {
        padding: 0.65rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .checkbox-wrapper {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .btn-primary {
        width: 100%;
        padding: 0.8rem;
        margin-top: 10px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 1rem;
    }
    .status-panel {
        max-width: 100%; 
        padding: 1rem;
        margin-bottom: 15px;
    }
    .status-panel h3 {
        font-size: 1.1rem;
    }
    .status-panel li {
        font-size: 0.9rem;
    }
    .form-container {
        padding: 1.2rem;
    }
    .form-heading {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .divider-gradient {
        width: 95%;
        margin-bottom: 15px;
    }
    .section-title-form {
        font-size: 1rem;
    }
    .section-description {
        font-size: 0.8rem;
    }
    label {
        font-size: 0.85rem;
    }
    input[type="text"],
    select {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    .checkbox-wrapper {
        font-size: 0.85rem;
    }
}


    /*Bagian Footer*/
.footer {
    background: #1a2a3a;
    color: #f8f9fa;
    font-family: #6c757d;
    position: relative;
    padding: 40px 20px;
    padding-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

/* Penyesuaian Wave */
.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="50" viewBox="0 0 1440 50" xmlns="http://www.w3.org/2000/svg"><path fill="%23f0f4f8" fill-opacity="1" d="M0,20 C360,0 1080,40 1440,20 L1440,50 L0,50 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:20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    min-width: 280px;
    padding: 10px;
    box-sizing: border-box;
}

.footer-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color:#007bff;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    margin-left: 0;
    margin-right: 0;
}

.footer-left p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-center h3,
.footer-right h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #f8f9fa;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 6px;
    font-family:'Nunito', sans-serif;
    font-weight: 600;
}

.footer-center ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-center ul li {
    margin-bottom: 10px;
}

.footer-center ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-center ul li a:hover {
    color:#f8f9fa;
    transform: translateX(5px);
}

.footer-right p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-icons a {
    color:#f8f9fa;
    font-size: 24px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icons a:hover {
    color: #007bff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px) rotate(5deg);
    border-color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center; 
        padding: 0 20px; 
    }

    .footer-left, .footer-center, .footer-right {
        min-width: auto;
        padding: 0; 
    }

    .footer-left h2 {
        font-size: 24px;
    }

    .footer-center h3,
    .footer-right h3 {
        font-size: 20px;
        margin: 0 auto 20px; 
    }

    .social-icons {
        justify-content: center; 
    }

    .footer-bottom {
        margin-top: 20px;
    }
}

/* untuk bagian tampilan mobile */
@media (max-width: 480px) {
    .footer {
        padding: 20px 10px 20px;
    }
    .footer-wave {
        top: -40px;
        height: 40px;
    }
    .footer-left h2 {
        font-size: 22px;
    }
    .social-icons a {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }
}

/*BAGIAN BLOG*/
.blog-hero {
    position: relative;
    height: 450px; /* Tinggi yang sedikit lebih rendah untuk kesan modern */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.blog-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay yang lebih transparan */
    z-index: 1;
}

.blog-hero .blog-container {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.blog-hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Efek bayangan teks yang lebih dramatis */
    color: #fff;
}

.hero-button {
    display: inline-block;
    background-color: #ff6b6b; /* Warna tombol yang lebih menarik */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px; /* Tombol lebih membulat */
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    background-color: #ee5253;
    transform: translateY(-3px); /* Efek hover mengangkat tombol */
}

.hero-button i {
    margin-left: 10px;
}

.blog-main-content {
    display: grid;
    grid-template-columns: 3fr 1fr; /* Membagi menjadi area konten utama dan sidebar */
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsif dengan auto-fit */
    gap: 30px;
}

.blog-post {
    background-color: #ffffff;
    border-radius: 12px; /* Sudut lebih membulat */
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); /* Bayangan yang lebih menonjol */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-8px); /* Efek hover mengangkat kartu */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); /* Bayangan lebih kuat saat hover */
}

.blog-post.featured-post {
    grid-column: span 1; /* Awalnya 1 kolom */
}

@media (min-width: 768px) {
    .blog-post.featured-post {
        grid-column: span 2; /* Menjadi 2 kolom di layar yang lebih besar */
    }
}

.blog-post .post-thumbnail {
    position: relative;
    width: 100%;
    height: 220px; /* Tinggi thumbnail yang konsisten */
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blog-post .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-thumbnail img {
    transform: scale(1.05); /* Zoom in effect on image hover */
}

.blog-post .post-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #007bff;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.blog-post .post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-post .post-title {
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-post .post-title a {
    color: #2c3e50;
    transition: color 0.3s ease;
}

.blog-post .post-title a:hover {
    color: #007bff;
}

.blog-post .post-meta {
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.blog-post .post-meta span {
    margin-right: 15px;
}

.blog-post .post-meta i {
    margin-right: 5px;
    color: #007bff;
}

.blog-post .post-excerpt {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1; /* Memastikan excerpt mengambil ruang yang tersedia */
}

.blog-post .read-more {
    color: #007bff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-post .read-more:hover {
    color: #0056b3;
}

.blog-post .read-more i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.blog-post .read-more:hover i {
    transform: translateX(5px);
}

.blog-sidebar {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-widget {
    margin-bottom: 30px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.sidebar-widget h3 i {
    margin-right: 10px;
    color: #007bff;
}

.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.search-box input {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    font-size: 1em;
    outline: none;
}

.search-box button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #0056b3;
}

.categories-widget ul,
.latest-posts-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li,
.latest-posts-widget li {
    margin-bottom: 12px;
}

.categories-widget a,
.latest-posts-widget a {
    color: #555;
    font-weight: 400;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.categories-widget a:hover,
.latest-posts-widget a:hover {
    color: #007bff;
    padding-left: 5px
}

.blog-cta {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.blog-container-cta {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    box-sizing: border-box; 
}

.blog-container-cta h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2.2em; 
    font-weight: bold;
    line-height: 1.3; 
}

.blog-container-cta p {
    color: #666;
    margin-bottom: 30px; 
    font-size: 1.1em; 
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto; 
    margin-right: auto;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-form input[type="email"] {
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em; 
    width: 100%; 
    max-width: 350px; 
    box-sizing: border-box;
    transition: border-color 0.3s ease; 
}

.cta-form input[type="email"]:focus {
    border-color: #007bff;
    outline: none;
}

.cta-form button {
    background-color: #007bff;
    color: #fff;
    padding: 15px 25px;
    border: none; 
    border-radius: 5px;
    font-size: 1em; 
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.cta-form button i {
    margin-left: 5px;
}


@media (max-width: 992px) {
    .blog-hero h1 {
        font-size: 2.8em;
    }

    .blog-main-content {
        grid-template-columns: 1fr;
    }

    .blog-post.featured-post {
        grid-column: span 1;
    }

    .blog-sidebar {
        margin-top: 40px;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-form input,
    .cta-form button {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .blog-hero {
        height: 350px;
    }

    .blog-hero h1 {
        font-size: 2em;
    }

    .hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .blog-container {
        padding: 0 15px;
    }

    .blog-post-grid {
        grid-template-columns: 1fr; 
    }

    .blog-post .post-thumbnail {
        height: 180px;
    }

    .blog-post .post-content {
        padding: 20px;
    }

    .blog-post .post-title {
        font-size: 1.4em;
    }

    .sidebar-widget h3 {
        font-size: 1.2em;
    }

    .search-box input,
    .search-box button {
        padding: 10px 12px;
    }

    .blog-cta {
        padding: 40px 15px;
    }

    .blog-container-cta {
        padding: 30px; 
    }

    .blog-container-cta h2 {
        font-size: 1.8em;
    }

    .blog-container-cta p {
        font-size: 1em;
    }

    .cta-form {
        flex-direction: column;
        align-items: center;
    }

    .cta-form input[type="email"] {
        max-width: 100%; 
    }

    .cta-form button {
        width: 100%;
        max-width: 350px;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 1.8em;
    }
        .blog-cta {
        padding: 30px 10px; 
    }

    .blog-container-cta {
        padding: 20px; 
    }

    .blog-container-cta h2 {
        font-size: 1.5em; 
    }

    .blog-container-cta p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
}

/*Button Back*/
.back-button {
    display: inline-flex;
    align-items: center;
    margin: 20px 0 0 50px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.back-button i {
    margin-right: 8px;
    font-size: 1em;
}

@media (max-width: 768px) {
    .back-button {
        margin: 20px 0 0 20px;
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .back-button {
        margin: 15px 0 0 15px;
    }
}

/*Bagian Halaman ARTIKEL 1*/
.article-container-blog1 {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-header-blog1 {
  text-align: center;
  margin-bottom: 30px;
}

.article-header-blog1 .category-blog1 {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-header-blog1 h1 {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-meta-blog1 {
  font-size: 0.9em;
  color: #666;
}

.article-meta-blog1 span {
  margin: 0 10px;
}

.article-meta-blog1 i {
  margin-right: 5px;
  color: #666;
}

.article-thumbnail {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 40px;
}

.article-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-content-blog1 h2 {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.article-content-blog1 h3 {
  font-size: 1.4em;
  color: #343a40;
  margin-top: 25px;
  margin-bottom: 10px;
}

.article-content-blog1 p {
  margin-bottom: 1.5em;
  text-align: justify;
}

.article-content-blog1 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}

.article-content-blog1 ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.article-content-blog1 ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
.article-container-blog1 {
   margin: 30px 15px;             
   padding: 20px;             
} 

.article-header-blog1 h1 {            
   font-size: 1.8em;             
}

.article-thumbnail {            
   height: 250px;
   margin-bottom: 30px;             
}

.article-content-blog1 h2 {            
  font-size: 1.5em;
}
.article-content-blog1 h3 {            
   font-size: 1.2em;             
}
}        

@media (max-width: 480px) {
  .article-header-blog1 h1 {
    font-size: 1.5em;
}
 .article-thumbnail {
  height: 180px;
  }
}

/*Halaman ARTIKEL 2*/
.article-container-blog2 {
   max-width: 900px;
  margin: 60px auto;        
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-header-blog2 {
  text-align: center;
  margin-bottom: 30px;
}

.article-header-blog2 .category-blog2 {
  display: inline-block;
  background-color:#007bff;
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-header-blog2 h1 {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-meta-blog2 {
  font-size: 0.9em;
  color: #666;
}

.article-meta-blog2 span {
  margin: 0 10px;
}

.article-meta-blog2 i {
  margin-right: 5px;
  color: #666;
}

.article-thumbnail-blog2 {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 40px;
}

.article-thumbnail-blog2 img {
  width: 100%;
 height: 100%;
  object-fit: cover;
  display: block;
}

.article-content-blog2 h2 {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.article-content-blog2 h3 {
  font-size: 1.4em;
  color: #343a40;
  margin-top: 25px;
  margin-bottom: 10px;
}

.article-content-blog2 p {
  margin-bottom: 1.5em;
  text-align: justify;
}

.article-content-blog2 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}

.article-content-blog2 ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.article-content-blog2 ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
  position: absolute;
  left: 0;
  top: 0;
}
.highlight-block {
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
  .article-container-blog2 {          
     margin: 30px 15px;         
     padding: 20px;           
}
 .article-header-blog2 h1 {           
    font-size: 1.8em;            
}
.article-thumbnail-blog2 {            
     height: 250px;           
       margin-bottom: 30px;         
}
 .article-content-blog2 h2 {           
      font-size: 1.5em;          
}
.article-content-blog2 h3 {            
  font-size: 1.2em;              
  }
}

@media (max-width: 480px) {
.article-header-blog2 h1 {
    font-size: 1.5em;
}
.article-thumbnai-blog2 {
    height: 180px;
  }
}

/*Halaman ARTIKEL Blog 3*/
.article-container-blog3 {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-header-blog3 {
  text-align: center;
  margin-bottom: 30px;
}

.article-header-blog3 .category-blog3 {
  display: inline-block;
  background-color: #007bff; 
  color: #ffff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-header-blog3 h1 {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-meta-blog3 {
  font-size: 0.9em;
  color: #666;
}

.article-meta-blog3 span {
  margin: 0 10px;
}

.article-meta-blog3 i {
  margin-right: 5px;
  color: #666;
}

.article-thumbnai-blog3 {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 40px;
}

.article-thumbnail-blog3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-content-blog3 h2 {
  font-size: 1.8em;
 color: #007bff;
  margin-top: 35px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.article-content-blog3 h3 {
  font-size: 1.4em;
  color: #343a40;
  margin-top: 25px;
  margin-bottom: 10px;
}

.article-content-blog3 p {
  margin-bottom: 1.5em;
 text-align: justify;
}

.article-content-blog3 ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5em;
}

.article-content-blog3 ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.article-content-blog3 ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) {
  .article-container-blog3 {            
    margin: 30px 15px;
    padding: 20px;
            }
  .article-header-blog3 h1 {
    font-size: 1.8em;
}
  .article-thumbnail-blog3 {
    height: 250px;
    margin-bottom: 30px;
}
  .article-content-blog3 h2 {
    font-size: 1.5em;
}
  .article-content-blog3 h3 {
    font-size: 1.2em;
}}

@media (max-width: 480px) {
  .article-header-blog3 h1 {
    font-size: 1.5em;
}
  .article-thumbnail-blog3 {
    height: 180px;
}
}

/*Halaman ARTIKEL Blog 4*/
.article-container-blog4 {
  max-width: 900px;
   margin: 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-header-blog4 {
  text-align: center;
  margin-bottom: 30px;
}

.article-header-blog4 .category-blog4 {
  display: inline-block;
  background-color: #17a2b8;
  color: #fff;
  padding: 6px 15px;
 border-radius: 20px;
  font-size: 0.9em;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-header-blog4 h1 {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.article-meta-blog4 {
  font-size: 0.9em;
  color: #666;
}

.article-meta-blog4 span {
  margin: 0 10px;
}

.article-meta-blog4 i {
  margin-right: 5px;
  color: #666;
}
.article-thumbnail-blog4 {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 40px;
}

.article-thumbnail-blog4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

 .article-content-blog4 h2 {
   font-size: 1.8em;
  color: #007bff;
   margin-top: 35px;
   margin-bottom: 15px;
   border-left: 5px solid #007bff;
   padding-left: 15px;
}

.article-content-blog4 h3 {
  font-size: 1.4em;
   color: #343a40;
   margin-top: 25px;
   margin-bottom: 10px;
}

.article-content-blog4 p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.article-content-blog4 ul {
   list-style: none;
   padding: 0;
   margin-bottom: 1.5em;
}

.article-content-blog4 ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.article-content-blog4 ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #007bff;
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
.article-container-blog4 {
  margin: 30px 15px;
  padding: 20px;
}
.article-header-blog4 h1 {
    font-size: 1.8em;
}
.article-thumbnail-blog4 {
    height: 250px;
    margin-bottom: 30px;
}
.article-content-blog4 h2 {
  font-size: 1.5em;
}
.article-content-blog4 h3 {
  font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .article-header-blog4 h1 {
    font-size: 1.5em;
}
  .article-thumbnail-blog4 {
    height: 180px;
}
}