/* Styling Dasar Tombol dan Posisi (dari sebelumnya) */
#whatsapp-button-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

#whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 150px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 28px;
    padding: 0 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#whatsapp-link:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

#whatsapp-link i {
    margin-right: 8px;
}

#whatsapp-text {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 1;
    transform: translateX(0);
}

/* ----------------------------------------------------- */
/* CSS BARU untuk Foto Profil */
/* ----------------------------------------------------- */
#profile-photo-container {
    position: fixed;
    bottom: 90px;
    /* Sesuaikan posisi agar di atas tombol WhatsApp (20px tombol + 60px tinggi tombol + 10px jarak) */
    left: 20px;
    z-index: 999;
    /* Sedikit di bawah tombol WhatsApp agar tidak menutupi, tapi tetap di atas konten lain */

    display: flex;
    /* Untuk menata foto dan label */
    flex-direction: column;
    align-items: center;

    /* Sembunyikan secara default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    /* Mulai dari bawah dan lebih kecil */
    transition: all 0.3s ease-out;
    /* Transisi untuk animasi muncul */
}

#profile-photo-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    /* Kembali ke posisi dan ukuran normal */
}

#profile-photo {
    width: 70px;
    /* Ukuran foto */
    height: 80px;
    border-radius: 0%;
    /* Membuat foto bulat */
}

#photo-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

/* Responsif (dari sebelumnya) */
@media (max-width: 600px) {
    #whatsapp-link {
        width: 130px;
        height: 50px;
        font-size: 24px;
        padding: 0 10px;
    }

    #whatsapp-text {
        font-size: 14px;
    }

    #profile-photo-container {
        bottom: 80px;
        /* Sesuaikan posisi untuk mobile (50px tombol + 10px jarak + 20px bottom) */
        right: 15px;
        /* Sesuaikan sedikit untuk mobile */
        padding: 8px;
    }

    #profile-photo {
        width: 50px;
        height: 50px;
    }

    #photo-label {
        font-size: 12px;
    }
}