body {
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 100px 7%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 span {
    color: #ffd43b;
}

/* SECTION */
section h2 {
    letter-spacing: 1px;
}

section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ffd43b;
    display: block;
    margin-top: 10px;
}

section h4 {
    color: #2a5298;
    margin-bottom: 15px;
}

ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.bi-check-lg {
    color: #2a5298;
    font-size: 1.2rem;
    margin-right: 8px;
}

.section-padding {
    padding: 80px 7%;
}

.trust,
.community,
.produk,
.testimoni-galeri,
.profil {
    background: #f8f9fa;
}

.segmen, #manfaat {
    background-color: #fff;
}


/* PRODUCT CARD */
.product-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/*SWIPER*/
.testimonial-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }

.testimoni-galeri .swiper-slide {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}

.profil img {
    border: 6px solid #ffd43b;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: #fff;
    padding: 60px 0;
}

.cta h2 {
    font-size: 2.5rem;
}

.cta p {
    opacity: 0.9;
}

/*FAQ*/
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: #2a5298;
    color: #fff;
}

/* WA Floating Button 
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.wa-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  color: #fff;
} */

/* WA Floating Button + Pulse */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wa-pulse 1.8s infinite;
  transition: 0.3s ease;
}

.wa-float:hover {
  animation: none;
  background-color: #1ebe5d;
  transform: scale(1.1);
  color: #fff;
}

/* Pulse animation */
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile optimization */
@media (max-width: 576px) {
  .wa-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile optimization */
@media (max-width: 576px) {
  .wa-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}

/*FOOTER*/
footer {
    background: #111;
    color: #aaa;
    padding: 20px 0;
}

/*Media Query*/
/*Laptop*/
@media (max-width: 992px) {
    html {
        font-size: 80%;
    }
}

/*Tablet*/
@media (max-width: 768px) {
    html {
        font-size: 80%;
    }
}

/*Handphone*/
@media (max-width: 576px) {
    html {
        font-size: 80%;
    }
}