#contact-floating-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    height: auto;
}

#contact-floating-box .toggle-button span {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#contact-floating-box #box-default-btn {
    background-color: #0073aa;
    color: #fff;
}

#contact-floating-box #box-default-btn:hover {
    background-color: #005a8c;
}

#contact-floating-box #box-close-btn {
    display: none; 
    background-color: #fff;
    color: #000;
}

#contact-floating-box #box-close-btn:hover {
    background-color: #f0f0f0;
}

#contact-floating-box .contact-options {
    position: absolute;
    bottom: 60px;
    right: 0;
    flex-direction: column;
}

#contact-floating-box.active #box-close-btn {
    display: flex;
}

#contact-floating-box.active #box-default-btn,
#contact-floating-box .contact-options {
    display: none;
}

#contact-floating-box .contact-options .contact-option {
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    text-decoration: none;
    background-color: #0073aa;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px; 
}

#contact-floating-box .contact-options .contact-option:last-child {
    margin-bottom: 0;
}

#contact-floating-box .contact-options .contact-option:hover {
    background-color: #005a8c;
}

.contact-option .tooltip-text {
    background: #000;
    color: #fff;
    text-align: center;
    font-size: 12px;
    border-radius: 20px;
    padding: 3px 20px;
    white-space: nowrap; 
    position: absolute;
    z-index: 10;
    right: 120%; 
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.contact-option .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 97%; 
    margin-top: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
}