/* Social Media Component */
.b9-social-media {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.b9-social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--b9-primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 12px;
}

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

.b9-social-icon:hover {
    background-color: var(--b9-primary-hover);
    box-shadow: 0 4px 12px rgba(150, 203, 57, 0.4);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .b9-social-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
