.floating-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(204, 153, 85, 0.1);
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(204, 153, 85, 0.3);
}

.floating-button i {
    color: var(--darker-color);
    transition: all 0.3s ease;
}

.whatsapp-button {
    right: 25px;
    background-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, #d9ae6c 100%);
}

.whatsapp-button:hover {
    background: linear-gradient(135deg, #d9ae6c 0%, var(--primary-color) 100%);
}

.whatsapp-button:hover i {
    color: var(--darker-color);
    transform: scale(1.1);
}

.call-button {
    left: 25px;
    background-color: #161616;
    background: linear-gradient(135deg, #161616 0%, #1a1a1a 100%);
    border: 1px solid rgba(204, 153, 85, 0.2);
}

.call-button i {
    color: var(--primary-color);
}

.call-button:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d9ae6c 100%);
    border-color: var(--primary-color);
}

.call-button:hover i {
    color: var(--darker-color);
    transform: scale(1.1);
}

/* Pulse animation for better visibility */
.floating-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 50%;
    border: 1px solid rgba(204, 153, 85, 0.3);
    animation: pulse 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.floating-button:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .floating-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
    }
    
    .whatsapp-button {
        right: 15px;
    }
    
    .call-button {
        left: 15px;
    }
}
