/* CSS untuk tombol-tombol sosial */
.social-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-button {
    width: 50px;
    height: 50px;
    background-color: #25d366; /* Warna WhatsApp */
    color: #fff;
    border: none;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    cursor: pointer;
}

.social-button.phone {
    background-color: #34b7f1; /* Warna Telepon */
}

/* Hover effect */
.social-button:hover {
    transform: scale(1.1);
}
