/* Floating Social Media Icons - Always Visible */
.floating-social-widget {
    position: fixed;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social-widget .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #669933;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.floating-social-widget .social-icon:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 20px rgba(102, 153, 51, 0.4);
}

.floating-social-widget .social-icon.email {
    background: #669933;
}

.floating-social-widget .social-icon.facebook {
    background: #3b5998;
}

.floating-social-widget .social-icon.twitter {
    background: #1da1f2;
}

.floating-social-widget .social-icon.instagram {
    background: #e4405f;
}

.floating-social-widget .social-icon.youtube {
    background: #ff0000;
}

.floating-social-widget .social-icon.cmi {
    background: #ffffff;
    border: 2px solid #669933;
    padding: 5px;
}

.floating-social-widget .social-icon.cmi img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-social-widget {
        right: 15px;
        bottom: 20px;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 120px;
    }
    
    .floating-social-widget .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .floating-social-widget {
        right: 10px;
        bottom: 15px;
        gap: 10px;
    }
    
    .floating-social-widget .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
