/* Chat and WhatsApp icons */
.floating-icons {
    position: fixed;
    bottom: 120px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-icons a:hover {
    transform: scale(1.1);
}

.chat-icon {
    background-color: #0056b3;
}

.whatsapp-icon {
    background-color: #25D366;
}

.floating-icons i {
    font-size: 28px;
    color: white;
}

@media (max-width: 768px) {
    .floating-icons {
        bottom: 100px;
        right: 15px;
    }
    
    .floating-icons a {
        width: 50px;
        height: 50px;
    }
    
    .floating-icons i {
        font-size: 24px;
    }
}
