/* socio media */
/* Floating Contact Styles */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    }
    
    .contact-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6aa121;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .contact-toggle-btn:hover {
    transform: scale(1.1);
    }
    
    .contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 15px;
    }
    
    .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    }
    
    .contact-item i {
    font-size: 24px;
    padding-left: 18px;
    }
    
    .contact-item span {
    font-size: 16px;
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
    }
    
    .contact-item:hover {
    width: 150px;
    border-radius: 30px;
    background-color: #f5f5f5;
    }
    
    .contact-item:hover span {
    opacity: 1;
    width: auto;
    padding-right: 15px;
    }
    
    /* Specific colors for each platform */
    .contact-item.chatbot { color: #6aa121; }
    .contact-item.whatsapp { color: #25D366; }
    .contact-item.messenger { color: #0084FF; }
    .contact-item.direct-call { color: #FF5733; } /* Orange for direct call */
    
    /* Animation for showing options */
    @keyframes slideUp {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
    }
    
    .contact-options.show {
    display: flex;
    animation: slideUp 0.3s ease forwards;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
    .floating-contact {
    bottom: 15px;
    right: 15px;
    }
    
    .contact-toggle-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    }
    
    .contact-options {
    bottom: 60px;
    gap: 10px;
    }
    
    .contact-item {
    width: 50px;
    height: 50px;
    }
    
    .contact-item i {
    font-size: 20px;
    padding-left: 15px;
    }
    
    .contact-item:hover {
    width: 120px;
    }
    
    .contact-item span {
    font-size: 14px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-contact {
    bottom: 10px;
    right: 10px;
    }
    
    .contact-toggle-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    }
    
    .contact-options {
    bottom: 50px;
    gap: 8px;
    }
    
    .contact-item {
    width: 40px;
    height: 40px;
    }
    
    .contact-item i {
    font-size: 18px;
    padding-left: 12px;
    }
    
    .contact-item:hover {
    width: 100px;
    }
    
    .contact-item span {
    font-size: 12px;
    }
    }