/* Floating Action Buttons Wrapper */

.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* Base Float Button Styling */

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}


/* WhatsApp Button Theme */

.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}


/* Back to Top Button Theme */

.top-btn {
    background-color: #285638;
    /* Brand Green */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-btn:hover {
    background-color: #f57c00;
    /* Accent Orange */
}