/* Floating Contacts Styles */
.fc-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* Main Button */
.fc-main-button {
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.fc-main-button:hover {
    transform: scale(1.1);
}

/* Icons in main button */
.fc-contact-icon, .fc-close-icon {
    color: white;
    font-size: 24px;
    position: absolute;
    transition: all 0.3s ease;
}

.fc-contact-icon {
    opacity: 1;
}

.fc-close-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
}

.fc-main-button.active .fc-contact-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

.fc-main-button.active .fc-close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
}

/* Popup container */
.fc-popup {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
}

/* Individual buttons */
.fc-button {
    text-decoration: none;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.fc-button:hover {
    transform: scale(1.05);
}

.fc-button-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    background-color: #333;
}

.fc-button-text {
    background-color: #333;
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 15px;
    border-radius: 4px;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    right: 70px;
}

.fc-whatsapp .fc-button-text {
    background-color: #333;
}

.fc-phone .fc-button-text {
    background-color: #333;
}

.fc-email .fc-button-text {
    background-color: #333;
}

.fc-button:hover .fc-button-text {
    opacity: 1;
    transform: translateX(0);
}

.fc-whatsapp .fc-button-icon {
    background-color: #333;
}

.fc-phone .fc-button-icon {
    background-color: #333;
}

.fc-email .fc-button-icon {
    background-color: #333;
}

/* Icons */
.fc-icon {
    color: white;
    font-size: 24px;
}

/* Tooltip */
.fc-tooltip {
    position: absolute;
    left: -80px;
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.fc-button:hover .fc-tooltip {
    opacity: 1;
}

/* Animation for popup */
@keyframes fc-popup-animation {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fc-popup.active {
    display: flex;
}

.fc-popup.active .fc-button {
    animation: fc-popup-animation 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fc-popup.active .fc-button:nth-child(3) {
    animation-delay: 0.1s;
}

.fc-popup.active .fc-button:nth-child(2) {
    animation-delay: 0.2s;
}

.fc-popup.active .fc-button:nth-child(1) {
    animation-delay: 0.3s;
} 