/***********************************FOOTER STYLES*********************************/
/* .footer {
    background-color: #7da6ff;
    color: white;
    font-family: sans-serif;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
    margin-top: 15%;
    margin-bottom: 10px
}
.footer-info {
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    flex: 1;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 8px;
    color: white;
}

.footer-section p,
.footer-section a {
    margin: 4px 0;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 30px;
        margin-top: 8%;
        margin-bottom: 12%;
        padding: 0 20px;
    }

    .footer-section {
        text-align: center;
        min-width: 100%;
    }

    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .footer-info {
        gap: 25px;
        padding: 0 15px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
}
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    color: #85A8F8;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    margin: 0 2px;
    box-shadow: 0 2px 8px rgba(62, 123, 250, 0.10);
}

.social-icons a:hover {
    background: #2761ea;
    color: #fff;
} */

.footer {
    background-color: #7da6ff;
    color: white;
    font-family: sans-serif;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
    margin-top: 15%;
    margin-bottom: 10px;
}

.footer-info {
    margin-top: 5%;
    margin-bottom: 10%;
    display: flex;
    flex: 1;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 8px;
    color: white;
}

.footer-section p,
.footer-section a {
    margin: 4px 0;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    color: #85A8F8;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    margin: 0 2px;
    box-shadow: 0 2px 8px rgba(62, 123, 250, 0.10);
}

.social-icons a:hover {
    background: #2761ea;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000000;
}

/* Desktop kecil - logo dan social icons tetap di tengah */
@media (max-width: 1024px) {
    .footer-content {
        justify-content: center;
    }
    
    .footer-logo {
        width: 100%;
        order: -1;
    }
    
    .footer-info {
        width: 100%;
    }
}

/* Tablet dan Mobile */
@media (max-width: 768px) {
    .footer {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        width: 180px;
        margin-top: 0;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 30px;
        margin-top: 8%;
        margin-bottom: 12%;
        padding: 0 20px;
        width: 100%;
    }

    .footer-section {
        text-align: center;
        min-width: 100%;
    }

    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 15px;
    }
    
    .footer-logo img {
        width: 160px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .footer-info {
        gap: 25px;
        padding: 0 15px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
}
/*******************************************PANAH UP dan whatsapp *******************************************/
/* Tombol scroll ke atas */
#scrollTopBtn {
  position: fixed;
  bottom: 32px;
  right: 25px;
  z-index: 999;
  background: #3563E9;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(62, 123, 250, 0.15);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#scrollTopBtn,
#floatingWaBtn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#scrollTopBtn.show,
#floatingWaBtn.show {
  opacity: 1;
  pointer-events: auto;
}

#floatingWaBtn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 999;
  background: #3563E9; /* hijau WhatsApp */
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(8, 200, 225, 0.15);
  transition: background 0.2s;
  text-decoration: none;
  animation: pulse-wa 1.2s infinite;
}
#floatingWaBtn:hover {
  background: #85A8F8;
  color: #fff;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 179, 211, 0.5), 0 2px 8px rgba(99, 157, 168, 0.15);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 196, 211, 0.5), 0 2px 8px rgba(37, 208, 211, 0.15);
    transform: scale(1);
  }
}

#scrollTopBtn:hover {
  background: #85A8F8;
  color: #fff;
}